diff --git a/scripts/mkqtdecl4/mkqtdecl.conf b/scripts/mkqtdecl4/mkqtdecl.conf index 7d5bd0a27..44fe53660 100644 --- a/scripts/mkqtdecl4/mkqtdecl.conf +++ b/scripts/mkqtdecl4/mkqtdecl.conf @@ -5,7 +5,7 @@ def add_native_qapp_ctor_impl(cls) qapplication_ctor_code = <<'CODE' - static %CLS% *ctor_%CLS%_Adaptor_args(const std::vector &args) + static %CLS% *ctor_%CLS%_Adaptor_args(const std::vector &args%ADDARGS%) { // %CLS% needs static sources, so we give it some. static char **argv = 0; @@ -22,17 +22,25 @@ def add_native_qapp_ctor_impl(cls) argv[a - args_copy.begin ()] = (char *) a->c_str (); } - return new %CLS%_Adaptor (argc, argv); + return new %CLS%_Adaptor (argc, argv%ADDARGSCALL%); } - %CLS%_Adaptor (int &argc, char **argv) : %CLS% (argc, argv) { } + %CLS%_Adaptor (int &argc, char **argv%ADDARGS%) : %CLS% (argc, argv%ADDARGSCALL%) { } CODE qapplication_ctor_decl = <<'DECL' - gsi::constructor("new", &%CLS%_Adaptor::ctor_%CLS%_Adaptor_args, gsi::arg ("argv"), "@brief Creates a new %CLS% object\n\n@param argv The command line arguments to pass to Qt") + gsi::constructor("new", &%CLS%_Adaptor::ctor_%CLS%_Adaptor_args, gsi::arg ("argv")%ADDARGS%, "@brief Creates a new %CLS% object\n\n@param argv The command line arguments to pass to Qt%ADDDOC%") DECL - add_native_impl(cls + "_Adaptor", qapplication_ctor_code.gsub("%CLS%", cls), qapplication_ctor_decl.gsub("%CLS%", cls)) + if cls == "QApplication" + add_native_impl(cls + "_Adaptor", + qapplication_ctor_code.gsub("%CLS%", cls).gsub("%ADDARGS%", ", bool gui").gsub("%ADDARGSCALL%", ", gui"), + qapplication_ctor_decl.gsub("%CLS%", cls).gsub("%ADDARGS%", ", gsi::arg (\"gui\", false)").gsub("%ADDDOC%", "\\n@param gui If true, a GUI-enabled application is constructed")) + else + add_native_impl(cls + "_Adaptor", + qapplication_ctor_code.gsub("%CLS%", cls).gsub("%ADDARGS%", "").gsub("%ADDARGSCALL%", ""), + qapplication_ctor_decl.gsub("%CLS%", cls).gsub("%ADDARGS%", "").gsub("%ADDDOC%", "")) + end end diff --git a/scripts/mkqtdecl5/mkqtdecl.conf b/scripts/mkqtdecl5/mkqtdecl.conf index 1d224c20e..e043f0d9f 100644 --- a/scripts/mkqtdecl5/mkqtdecl.conf +++ b/scripts/mkqtdecl5/mkqtdecl.conf @@ -5,7 +5,7 @@ def add_native_qapp_ctor_impl(cls) qapplication_ctor_code = <<'CODE' - static %CLS% *ctor_%CLS%_Adaptor_args(const std::vector &args) + static %CLS% *ctor_%CLS%_Adaptor_args(const std::vector &args%ADDARGS%) { // %CLS% needs static sources, so we give it some. static char **argv = 0; @@ -22,17 +22,25 @@ def add_native_qapp_ctor_impl(cls) argv[a - args_copy.begin ()] = (char *) a->c_str (); } - return new %CLS%_Adaptor (argc, argv); + return new %CLS%_Adaptor (argc, argv%ADDARGSCALL%); } - %CLS%_Adaptor (int &argc, char **argv) : %CLS% (argc, argv) { } + %CLS%_Adaptor (int &argc, char **argv%ADDARGS%) : %CLS% (argc, argv%ADDARGSCALL%) { } CODE qapplication_ctor_decl = <<'DECL' - gsi::constructor("new", &%CLS%_Adaptor::ctor_%CLS%_Adaptor_args, gsi::arg ("argv"), "@brief Creates a new %CLS% object\n\n@param argv The command line arguments to pass to Qt") + gsi::constructor("new", &%CLS%_Adaptor::ctor_%CLS%_Adaptor_args, gsi::arg ("argv")%ADDARGS%, "@brief Creates a new %CLS% object\n\n@param argv The command line arguments to pass to Qt%ADDDOC%") DECL - add_native_impl(cls + "_Adaptor", qapplication_ctor_code.gsub("%CLS%", cls), qapplication_ctor_decl.gsub("%CLS%", cls)) + if cls == "QApplication" + add_native_impl(cls + "_Adaptor", + qapplication_ctor_code.gsub("%CLS%", cls).gsub("%ADDARGS%", ", bool gui").gsub("%ADDARGSCALL%", ", gui"), + qapplication_ctor_decl.gsub("%CLS%", cls).gsub("%ADDARGS%", ", gsi::arg (\"gui\", false)").gsub("%ADDDOC%", "\\n@param gui If true, a GUI-enabled application is constructed")) + else + add_native_impl(cls + "_Adaptor", + qapplication_ctor_code.gsub("%CLS%", cls).gsub("%ADDARGS%", "").gsub("%ADDARGSCALL%", ""), + qapplication_ctor_decl.gsub("%CLS%", cls).gsub("%ADDARGS%", "").gsub("%ADDDOC%", "")) + end end diff --git a/scripts/mkqtdecl_common/produce.rb b/scripts/mkqtdecl_common/produce.rb index 161f9c6f5..44e249175 100755 --- a/scripts/mkqtdecl_common/produce.rb +++ b/scripts/mkqtdecl_common/produce.rb @@ -1968,9 +1968,9 @@ END is_reimp = nil if bc_methods_by_name[mid] - sig = bd.call_sig + call_sig = bd.call_sig bc_methods_by_name[mid].each do |bd_base| - if bd_base.call_sig == sig + if bd_base.call_sig == call_sig bd_base.virtual && (is_reimp = bd_base) break end diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc index 362ebdc95..2a64ceb58 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc @@ -479,7 +479,7 @@ static void _call_f_mimeTypes_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QModelIndex &) const +// QModelIndex QAbstractItemModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -498,7 +498,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QObject *QAbstractItemModel::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -983,8 +983,8 @@ static gsi::Methods methods_QAbstractItemModel () { methods += new qt_gsi::GenericMethod ("match", "@brief Method QList QAbstractItemModel::match(const QModelIndex &start, int role, const QVariant &value, int hits, QFlags flags)\n", true, &_init_f_match_c7932, &_call_f_match_c7932); methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method QMimeData *QAbstractItemModel::mimeData(const QList &indexes)\n", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method QStringList QAbstractItemModel::mimeTypes()\n", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\n", true, &_init_f_parent_c2395, &_call_f_parent_c2395); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QAbstractItemModel::parent(const QModelIndex &child)\n", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QObject *QAbstractItemModel::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); methods += new qt_gsi::GenericMethod ("removeColumn", "@brief Method bool QAbstractItemModel::removeColumn(int column, const QModelIndex &parent)\n", false, &_init_f_removeColumn_3054, &_call_f_removeColumn_3054); methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QAbstractItemModel::removeColumns(int column, int count, const QModelIndex &parent)\n", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); methods += new qt_gsi::GenericMethod ("removeRow", "@brief Method bool QAbstractItemModel::removeRow(int row, const QModelIndex &parent)\n", false, &_init_f_removeRow_3054, &_call_f_removeRow_3054); diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc index ac85b70f7..790fb9394 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc @@ -58,7 +58,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QAbstractListModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -89,7 +89,7 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, int, const QModelIndex &) const +// QModelIndex QAbstractListModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -214,8 +214,8 @@ namespace gsi static gsi::Methods methods_QAbstractListModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QAbstractListModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QAbstractListModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); methods += gsi::qt_signal ("dataChanged(const QModelIndex &, const QModelIndex &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), "@brief Signal declaration for QAbstractListModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QAbstractListModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QAbstractListModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc index f728a19ee..880b9c3bf 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc @@ -58,7 +58,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QAbstractTableModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -89,7 +89,7 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, int, const QModelIndex &) const +// QModelIndex QAbstractTableModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -214,8 +214,8 @@ namespace gsi static gsi::Methods methods_QAbstractTableModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QAbstractTableModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QAbstractTableModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); methods += gsi::qt_signal ("dataChanged(const QModelIndex &, const QModelIndex &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), "@brief Signal declaration for QAbstractTableModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QAbstractTableModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QAbstractTableModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQBuffer.cc b/src/gsiqt/qt4/QtCore/gsiDeclQBuffer.cc index 4646a7a16..a1016b113 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQBuffer.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQBuffer.cc @@ -93,7 +93,7 @@ static void _call_ctor_QBuffer_2812 (const qt_gsi::GenericStaticMethod * /*decl* } -// () const +// bool QBuffer::atEnd() static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) @@ -138,7 +138,7 @@ static void _call_f_buffer_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QBuffer::canReadLine() static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) @@ -153,7 +153,7 @@ static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QBuffer::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -184,7 +184,7 @@ static void _call_f_data_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QFlags) +// bool QBuffer::open(QFlags openMode) static void _init_f_open_3242 (qt_gsi::GenericMethod *decl) @@ -203,7 +203,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// qint64 QBuffer::pos() static void _init_f_pos_c0 (qt_gsi::GenericMethod *decl) @@ -218,7 +218,7 @@ static void _call_f_pos_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (qint64) +// bool QBuffer::seek(qint64 off) static void _init_f_seek_986 (qt_gsi::GenericMethod *decl) @@ -300,7 +300,7 @@ static void _call_f_setData_2390 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// qint64 QBuffer::size() static void _init_f_size_c0 (qt_gsi::GenericMethod *decl) @@ -418,19 +418,19 @@ static gsi::Methods methods_QBuffer () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QBuffer::QBuffer(QObject *parent)\nThis method creates an object of class QBuffer.", &_init_ctor_QBuffer_1302, &_call_ctor_QBuffer_1302); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QBuffer::QBuffer(QByteArray *buf, QObject *parent)\nThis method creates an object of class QBuffer.", &_init_ctor_QBuffer_2812, &_call_ctor_QBuffer_2812); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); + methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method bool QBuffer::atEnd()\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); methods += new qt_gsi::GenericMethod ("buffer", "@brief Method QByteArray &QBuffer::buffer()\n", false, &_init_f_buffer_0, &_call_f_buffer_0); methods += new qt_gsi::GenericMethod ("buffer", "@brief Method const QByteArray &QBuffer::buffer()\n", true, &_init_f_buffer_c0, &_call_f_buffer_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method bool QBuffer::canReadLine()\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QBuffer::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod (":data", "@brief Method const QByteArray &QBuffer::data()\n", true, &_init_f_data_c0, &_call_f_data_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QFlags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); - methods += new qt_gsi::GenericMethod ("pos", "@brief Method () const\nThis is a reimplementation of QIODevice::pos", true, &_init_f_pos_c0, &_call_f_pos_c0); - methods += new qt_gsi::GenericMethod ("seek", "@brief Method (qint64)\nThis is a reimplementation of QIODevice::seek", false, &_init_f_seek_986, &_call_f_seek_986); + methods += new qt_gsi::GenericMethod ("open", "@brief Method bool QBuffer::open(QFlags openMode)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); + methods += new qt_gsi::GenericMethod ("pos", "@brief Method qint64 QBuffer::pos()\nThis is a reimplementation of QIODevice::pos", true, &_init_f_pos_c0, &_call_f_pos_c0); + methods += new qt_gsi::GenericMethod ("seek", "@brief Method bool QBuffer::seek(qint64 off)\nThis is a reimplementation of QIODevice::seek", false, &_init_f_seek_986, &_call_f_seek_986); methods += new qt_gsi::GenericMethod ("setBuffer", "@brief Method void QBuffer::setBuffer(QByteArray *a)\n", false, &_init_f_setBuffer_1618, &_call_f_setBuffer_1618); methods += new qt_gsi::GenericMethod ("setData|data=", "@brief Method void QBuffer::setData(const QByteArray &data)\n", false, &_init_f_setData_2309, &_call_f_setData_2309); methods += new qt_gsi::GenericMethod ("setData", "@brief Method void QBuffer::setData(const char *data, int len)\n", false, &_init_f_setData_2390, &_call_f_setData_2390); - methods += new qt_gsi::GenericMethod ("size", "@brief Method () const\nThis is a reimplementation of QIODevice::size", true, &_init_f_size_c0, &_call_f_size_c0); + methods += new qt_gsi::GenericMethod ("size", "@brief Method qint64 QBuffer::size()\nThis is a reimplementation of QIODevice::size", true, &_init_f_size_c0, &_call_f_size_c0); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QBuffer::aboutToClose()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QBuffer::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QBuffer::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQFile.cc b/src/gsiqt/qt4/QtCore/gsiDeclQFile.cc index 0ebcf61de..e6bd8b3a4 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQFile.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQFile.cc @@ -127,7 +127,7 @@ static void _call_ctor_QFile_3219 (const qt_gsi::GenericStaticMethod * /*decl*/, } -// () const +// bool QFile::atEnd() static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) @@ -142,7 +142,7 @@ static void _call_f_atEnd_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () +// void QFile::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -252,7 +252,7 @@ static void _call_f_handle_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QFile::isSequential() static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) @@ -286,7 +286,7 @@ static void _call_f_link_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (QFlags) +// bool QFile::open(QFlags flags) static void _init_f_open_3242 (qt_gsi::GenericMethod *decl) @@ -320,7 +320,7 @@ static void _call_f_permissions_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// qint64 QFile::pos() static void _init_f_pos_c0 (qt_gsi::GenericMethod *decl) @@ -403,7 +403,7 @@ static void _call_f_resize_986 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (qint64) +// bool QFile::seek(qint64 offset) static void _init_f_seek_986 (qt_gsi::GenericMethod *decl) @@ -461,7 +461,7 @@ static void _call_f_setPermissions_2778 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// qint64 QFile::size() static void _init_f_size_c0 (qt_gsi::GenericMethod *decl) @@ -855,27 +855,27 @@ static gsi::Methods methods_QFile () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QFile::QFile(QObject *parent)\nThis method creates an object of class QFile.", &_init_ctor_QFile_1302, &_call_ctor_QFile_1302); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QFile::QFile(const QString &name, QObject *parent)\nThis method creates an object of class QFile.", &_init_ctor_QFile_3219, &_call_ctor_QFile_3219); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method bool QFile::atEnd()\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QFile::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("copy", "@brief Method bool QFile::copy(const QString &newName)\n", false, &_init_f_copy_2025, &_call_f_copy_2025); methods += new qt_gsi::GenericMethod ("error", "@brief Method QFile::FileError QFile::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("exists", "@brief Method bool QFile::exists()\n", true, &_init_f_exists_c0, &_call_f_exists_c0); methods += new qt_gsi::GenericMethod (":fileName", "@brief Method QString QFile::fileName()\n", true, &_init_f_fileName_c0, &_call_f_fileName_c0); methods += new qt_gsi::GenericMethod ("flush", "@brief Method bool QFile::flush()\n", false, &_init_f_flush_0, &_call_f_flush_0); methods += new qt_gsi::GenericMethod ("handle", "@brief Method int QFile::handle()\n", true, &_init_f_handle_c0, &_call_f_handle_c0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); + methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method bool QFile::isSequential()\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); methods += new qt_gsi::GenericMethod ("link", "@brief Method bool QFile::link(const QString &newName)\n", false, &_init_f_link_2025, &_call_f_link_2025); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QFlags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); + methods += new qt_gsi::GenericMethod ("open", "@brief Method bool QFile::open(QFlags flags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); methods += new qt_gsi::GenericMethod ("permissions", "@brief Method QFlags QFile::permissions()\n", true, &_init_f_permissions_c0, &_call_f_permissions_c0); - methods += new qt_gsi::GenericMethod ("pos", "@brief Method () const\nThis is a reimplementation of QIODevice::pos", true, &_init_f_pos_c0, &_call_f_pos_c0); + methods += new qt_gsi::GenericMethod ("pos", "@brief Method qint64 QFile::pos()\nThis is a reimplementation of QIODevice::pos", true, &_init_f_pos_c0, &_call_f_pos_c0); methods += new qt_gsi::GenericMethod ("readLink", "@brief Method QString QFile::readLink()\n", true, &_init_f_readLink_c0, &_call_f_readLink_c0); methods += new qt_gsi::GenericMethod ("remove", "@brief Method bool QFile::remove()\n", false, &_init_f_remove_0, &_call_f_remove_0); methods += new qt_gsi::GenericMethod ("rename", "@brief Method bool QFile::rename(const QString &newName)\n", false, &_init_f_rename_2025, &_call_f_rename_2025); methods += new qt_gsi::GenericMethod ("resize", "@brief Method bool QFile::resize(qint64 sz)\n", false, &_init_f_resize_986, &_call_f_resize_986); - methods += new qt_gsi::GenericMethod ("seek", "@brief Method (qint64)\nThis is a reimplementation of QIODevice::seek", false, &_init_f_seek_986, &_call_f_seek_986); + methods += new qt_gsi::GenericMethod ("seek", "@brief Method bool QFile::seek(qint64 offset)\nThis is a reimplementation of QIODevice::seek", false, &_init_f_seek_986, &_call_f_seek_986); methods += new qt_gsi::GenericMethod ("setFileName|fileName=", "@brief Method void QFile::setFileName(const QString &name)\n", false, &_init_f_setFileName_2025, &_call_f_setFileName_2025); methods += new qt_gsi::GenericMethod ("setPermissions", "@brief Method bool QFile::setPermissions(QFlags permissionSpec)\n", false, &_init_f_setPermissions_2778, &_call_f_setPermissions_2778); - methods += new qt_gsi::GenericMethod ("size", "@brief Method () const\nThis is a reimplementation of QIODevice::size", true, &_init_f_size_c0, &_call_f_size_c0); + methods += new qt_gsi::GenericMethod ("size", "@brief Method qint64 QFile::size()\nThis is a reimplementation of QIODevice::size", true, &_init_f_size_c0, &_call_f_size_c0); methods += new qt_gsi::GenericMethod ("symLinkTarget", "@brief Method QString QFile::symLinkTarget()\n", true, &_init_f_symLinkTarget_c0, &_call_f_symLinkTarget_c0); methods += new qt_gsi::GenericMethod ("unsetError", "@brief Method void QFile::unsetError()\n", false, &_init_f_unsetError_0, &_call_f_unsetError_0); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QFile::aboutToClose()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQProcess.cc b/src/gsiqt/qt4/QtCore/gsiDeclQProcess.cc index 7685dcbbe..e0bb5b421 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQProcess.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQProcess.cc @@ -72,7 +72,7 @@ static void _call_ctor_QProcess_1302 (const qt_gsi::GenericStaticMethod * /*decl } -// () const +// bool QProcess::atEnd() static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) @@ -87,7 +87,7 @@ static void _call_f_atEnd_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// qint64 QProcess::bytesAvailable() static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) @@ -102,7 +102,7 @@ static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// qint64 QProcess::bytesToWrite() static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_bytesToWrite_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// bool QProcess::canReadLine() static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) @@ -132,7 +132,7 @@ static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QProcess::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -244,7 +244,7 @@ static void _call_f_exitStatus_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// bool QProcess::isSequential() static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) @@ -666,7 +666,7 @@ static void _call_f_terminate_0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int) +// bool QProcess::waitForBytesWritten(int msecs) static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) @@ -704,7 +704,7 @@ static void _call_f_waitForFinished_767 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) +// bool QProcess::waitForReadyRead(int msecs) static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) @@ -984,18 +984,18 @@ static gsi::Methods methods_QProcess () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QProcess::QProcess(QObject *parent)\nThis method creates an object of class QProcess.", &_init_ctor_QProcess_1302, &_call_ctor_QProcess_1302); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method bool QProcess::atEnd()\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); + methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method qint64 QProcess::bytesAvailable()\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); + methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method qint64 QProcess::bytesToWrite()\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); + methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method bool QProcess::canReadLine()\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QProcess::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("closeReadChannel", "@brief Method void QProcess::closeReadChannel(QProcess::ProcessChannel channel)\n", false, &_init_f_closeReadChannel_2800, &_call_f_closeReadChannel_2800); methods += new qt_gsi::GenericMethod ("closeWriteChannel", "@brief Method void QProcess::closeWriteChannel()\n", false, &_init_f_closeWriteChannel_0, &_call_f_closeWriteChannel_0); methods += new qt_gsi::GenericMethod (":environment", "@brief Method QStringList QProcess::environment()\n", true, &_init_f_environment_c0, &_call_f_environment_c0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QProcess::ProcessError QProcess::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("exitCode", "@brief Method int QProcess::exitCode()\n", true, &_init_f_exitCode_c0, &_call_f_exitCode_c0); methods += new qt_gsi::GenericMethod ("exitStatus", "@brief Method QProcess::ExitStatus QProcess::exitStatus()\n", true, &_init_f_exitStatus_c0, &_call_f_exitStatus_c0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); + methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method bool QProcess::isSequential()\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); methods += new qt_gsi::GenericMethod ("kill", "@brief Method void QProcess::kill()\n", false, &_init_f_kill_0, &_call_f_kill_0); methods += new qt_gsi::GenericMethod ("pid", "@brief Method Q_PID QProcess::pid()\n", true, &_init_f_pid_c0, &_call_f_pid_c0); methods += new qt_gsi::GenericMethod (":processChannelMode", "@brief Method QProcess::ProcessChannelMode QProcess::processChannelMode()\n", true, &_init_f_processChannelMode_c0, &_call_f_processChannelMode_c0); @@ -1018,9 +1018,9 @@ static gsi::Methods methods_QProcess () { methods += new qt_gsi::GenericMethod ("start", "@brief Method void QProcess::start(const QString &program, QFlags mode)\n", false, &_init_f_start_5159, &_call_f_start_5159); methods += new qt_gsi::GenericMethod ("state", "@brief Method QProcess::ProcessState QProcess::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); methods += new qt_gsi::GenericMethod ("terminate", "@brief Method void QProcess::terminate()\n", false, &_init_f_terminate_0, &_call_f_terminate_0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); + methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method bool QProcess::waitForBytesWritten(int msecs)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); methods += new qt_gsi::GenericMethod ("waitForFinished", "@brief Method bool QProcess::waitForFinished(int msecs)\n", false, &_init_f_waitForFinished_767, &_call_f_waitForFinished_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); + methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method bool QProcess::waitForReadyRead(int msecs)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); methods += new qt_gsi::GenericMethod ("waitForStarted", "@brief Method bool QProcess::waitForStarted(int msecs)\n", false, &_init_f_waitForStarted_767, &_call_f_waitForStarted_767); methods += new qt_gsi::GenericMethod (":workingDirectory", "@brief Method QString QProcess::workingDirectory()\n", true, &_init_f_workingDirectory_c0, &_call_f_workingDirectory_c0); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QProcess::aboutToClose()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTemporaryFile.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTemporaryFile.cc index 91c7f1265..0b4f8cc57 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTemporaryFile.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTemporaryFile.cc @@ -143,7 +143,7 @@ static void _call_f_autoRemove_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QString QTemporaryFile::fileName() static void _init_f_fileName_c0 (qt_gsi::GenericMethod *decl) @@ -173,7 +173,7 @@ static void _call_f_fileTemplate_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () +// bool QTemporaryFile::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -372,9 +372,9 @@ static gsi::Methods methods_QTemporaryFile () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTemporaryFile::QTemporaryFile(const QString &templateName, QObject *parent)\nThis method creates an object of class QTemporaryFile.", &_init_ctor_QTemporaryFile_3219, &_call_ctor_QTemporaryFile_3219); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":autoRemove", "@brief Method bool QTemporaryFile::autoRemove()\n", true, &_init_f_autoRemove_c0, &_call_f_autoRemove_c0); - methods += new qt_gsi::GenericMethod (":fileName", "@brief Method () const\n", true, &_init_f_fileName_c0, &_call_f_fileName_c0); + methods += new qt_gsi::GenericMethod (":fileName", "@brief Method QString QTemporaryFile::fileName()\n", true, &_init_f_fileName_c0, &_call_f_fileName_c0); methods += new qt_gsi::GenericMethod (":fileTemplate", "@brief Method QString QTemporaryFile::fileTemplate()\n", true, &_init_f_fileTemplate_c0, &_call_f_fileTemplate_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\n", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method bool QTemporaryFile::open()\n", false, &_init_f_open_0, &_call_f_open_0); methods += new qt_gsi::GenericMethod ("setAutoRemove|autoRemove=", "@brief Method void QTemporaryFile::setAutoRemove(bool b)\n", false, &_init_f_setAutoRemove_864, &_call_f_setAutoRemove_864); methods += new qt_gsi::GenericMethod ("setFileTemplate|fileTemplate=", "@brief Method void QTemporaryFile::setFileTemplate(const QString &name)\n", false, &_init_f_setFileTemplate_2025, &_call_f_setFileTemplate_2025); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QTemporaryFile::aboutToClose()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc index 06aa22c44..48a7a3c43 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc @@ -80,7 +80,7 @@ static void _call_f_brush_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QGraphicsItem *) const +// bool QAbstractGraphicsShapeItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QAbstractGraphicsShapeItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -175,8 +175,8 @@ namespace gsi static gsi::Methods methods_QAbstractGraphicsShapeItem () { gsi::Methods methods; methods += new qt_gsi::GenericMethod (":brush", "@brief Method QBrush QAbstractGraphicsShapeItem::brush()\n", true, &_init_f_brush_c0, &_call_f_brush_c0); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QAbstractGraphicsShapeItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QAbstractGraphicsShapeItem::opaqueArea()\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); methods += new qt_gsi::GenericMethod (":pen", "@brief Method QPen QAbstractGraphicsShapeItem::pen()\n", true, &_init_f_pen_c0, &_call_f_pen_c0); methods += new qt_gsi::GenericMethod ("setBrush|brush=", "@brief Method void QAbstractGraphicsShapeItem::setBrush(const QBrush &brush)\n", false, &_init_f_setBrush_1910, &_call_f_setBrush_1910); methods += new qt_gsi::GenericMethod ("setPen|pen=", "@brief Method void QAbstractGraphicsShapeItem::setPen(const QPen &pen)\n", false, &_init_f_setPen_1685, &_call_f_setPen_1685); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc index 904f015ee..6e86b8f91 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc @@ -379,7 +379,7 @@ static void _call_f_indexWidget_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (Qt::InputMethodQuery) const +// QVariant QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery query) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -1263,7 +1263,7 @@ static void _call_f_textElideMode_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QRegion &) +// void QAbstractItemView::update(const QRegion &) static void _init_f_update_2006 (qt_gsi::GenericMethod *decl) @@ -1283,7 +1283,7 @@ static void _call_f_update_2006 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) +// void QAbstractItemView::update(const QModelIndex &index) static void _init_f_update_2395 (qt_gsi::GenericMethod *decl) @@ -1454,7 +1454,7 @@ static gsi::Methods methods_QAbstractItemView () { methods += new qt_gsi::GenericMethod (":iconSize", "@brief Method QSize QAbstractItemView::iconSize()\n", true, &_init_f_iconSize_c0, &_call_f_iconSize_c0); methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method QModelIndex QAbstractItemView::indexAt(const QPoint &point)\n", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); methods += new qt_gsi::GenericMethod ("indexWidget", "@brief Method QWidget *QAbstractItemView::indexWidget(const QModelIndex &index)\n", true, &_init_f_indexWidget_c2395, &_call_f_indexWidget_c2395); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery query)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); methods += new qt_gsi::GenericMethod (":itemDelegate", "@brief Method QAbstractItemDelegate *QAbstractItemView::itemDelegate()\n", true, &_init_f_itemDelegate_c0, &_call_f_itemDelegate_c0); methods += new qt_gsi::GenericMethod ("itemDelegate", "@brief Method QAbstractItemDelegate *QAbstractItemView::itemDelegate(const QModelIndex &index)\n", true, &_init_f_itemDelegate_c2395, &_call_f_itemDelegate_c2395); methods += new qt_gsi::GenericMethod ("itemDelegateForColumn", "@brief Method QAbstractItemDelegate *QAbstractItemView::itemDelegateForColumn(int column)\n", true, &_init_f_itemDelegateForColumn_c767, &_call_f_itemDelegateForColumn_c767); @@ -1501,8 +1501,8 @@ static gsi::Methods methods_QAbstractItemView () { methods += new qt_gsi::GenericMethod ("sizeHintForRow", "@brief Method int QAbstractItemView::sizeHintForRow(int row)\n", true, &_init_f_sizeHintForRow_c767, &_call_f_sizeHintForRow_c767); methods += new qt_gsi::GenericMethod (":tabKeyNavigation", "@brief Method bool QAbstractItemView::tabKeyNavigation()\n", true, &_init_f_tabKeyNavigation_c0, &_call_f_tabKeyNavigation_c0); methods += new qt_gsi::GenericMethod (":textElideMode", "@brief Method Qt::TextElideMode QAbstractItemView::textElideMode()\n", true, &_init_f_textElideMode_c0, &_call_f_textElideMode_c0); - methods += new qt_gsi::GenericMethod ("update", "@brief Method (const QRegion &)\n", false, &_init_f_update_2006, &_call_f_update_2006); - methods += new qt_gsi::GenericMethod ("update", "@brief Method (const QModelIndex &)\n", false, &_init_f_update_2395, &_call_f_update_2395); + methods += new qt_gsi::GenericMethod ("update", "@brief Method void QAbstractItemView::update(const QRegion &)\n", false, &_init_f_update_2006, &_call_f_update_2006); + methods += new qt_gsi::GenericMethod ("update", "@brief Method void QAbstractItemView::update(const QModelIndex &index)\n", false, &_init_f_update_2395, &_call_f_update_2395); methods += new qt_gsi::GenericMethod (":verticalScrollMode", "@brief Method QAbstractItemView::ScrollMode QAbstractItemView::verticalScrollMode()\n", true, &_init_f_verticalScrollMode_c0, &_call_f_verticalScrollMode_c0); methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method QRect QAbstractItemView::visualRect(const QModelIndex &index)\n", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); methods += gsi::qt_signal ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QAbstractItemView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc index 36f3a84ec..61a97fd5c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc @@ -98,7 +98,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (int) +// void QAbstractPageSetupDialog::done(int result) static void _init_f_done_767 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () +// int QAbstractPageSetupDialog::exec() static void _init_f_exec_0 (qt_gsi::GenericMethod *decl) @@ -248,8 +248,8 @@ namespace gsi static gsi::Methods methods_QAbstractPageSetupDialog () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("done", "@brief Method (int)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); - methods += new qt_gsi::GenericMethod ("exec", "@brief Method ()\n", false, &_init_f_exec_0, &_call_f_exec_0); + methods += new qt_gsi::GenericMethod ("done", "@brief Method void QAbstractPageSetupDialog::done(int result)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); + methods += new qt_gsi::GenericMethod ("exec", "@brief Method int QAbstractPageSetupDialog::exec()\n", false, &_init_f_exec_0, &_call_f_exec_0); methods += new qt_gsi::GenericMethod ("printer", "@brief Method QPrinter *QAbstractPageSetupDialog::printer()\n", false, &_init_f_printer_0, &_call_f_printer_0); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QAbstractPageSetupDialog::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QAbstractPageSetupDialog::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc index c604a56de..03ca1b4a0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc @@ -133,7 +133,7 @@ static void _call_f_enabledOptions_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () +// int QAbstractPrintDialog::exec() static void _init_f_exec_0 (qt_gsi::GenericMethod *decl) @@ -465,7 +465,7 @@ static gsi::Methods methods_QAbstractPrintDialog () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("addEnabledOption", "@brief Method void QAbstractPrintDialog::addEnabledOption(QAbstractPrintDialog::PrintDialogOption option)\n", false, &_init_f_addEnabledOption_4320, &_call_f_addEnabledOption_4320); methods += new qt_gsi::GenericMethod (":enabledOptions", "@brief Method QFlags QAbstractPrintDialog::enabledOptions()\n", true, &_init_f_enabledOptions_c0, &_call_f_enabledOptions_c0); - methods += new qt_gsi::GenericMethod ("exec", "@brief Method ()\n", false, &_init_f_exec_0, &_call_f_exec_0); + methods += new qt_gsi::GenericMethod ("exec", "@brief Method int QAbstractPrintDialog::exec()\n", false, &_init_f_exec_0, &_call_f_exec_0); methods += new qt_gsi::GenericMethod ("fromPage", "@brief Method int QAbstractPrintDialog::fromPage()\n", true, &_init_f_fromPage_c0, &_call_f_fromPage_c0); methods += new qt_gsi::GenericMethod ("isOptionEnabled?", "@brief Method bool QAbstractPrintDialog::isOptionEnabled(QAbstractPrintDialog::PrintDialogOption option)\n", true, &_init_f_isOptionEnabled_c4320, &_call_f_isOptionEnabled_c4320); methods += new qt_gsi::GenericMethod ("maxPage", "@brief Method int QAbstractPrintDialog::maxPage()\n", true, &_init_f_maxPage_c0, &_call_f_maxPage_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc index a3db78caf..c2a546c86 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc @@ -60,7 +60,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &, int) const +// QVariant QAbstractProxyModel::data(const QModelIndex &proxyIndex, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -82,7 +82,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QModelIndex &) const +// QFlags QAbstractProxyModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, Qt::Orientation, int) const +// QVariant QAbstractProxyModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -126,7 +126,7 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QModelIndex &) const +// QMap QAbstractProxyModel::itemData(const QModelIndex &index) static void _init_f_itemData_c2395 (qt_gsi::GenericMethod *decl) @@ -221,7 +221,7 @@ static void _call_f_mapToSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// () +// void QAbstractProxyModel::revert() static void _init_f_revert_0 (qt_gsi::GenericMethod *decl) @@ -237,7 +237,7 @@ static void _call_f_revert_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &, const QVariant &, int) +// bool QAbstractProxyModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -262,7 +262,7 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, Qt::Orientation, const QVariant &, int) +// bool QAbstractProxyModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role) static void _init_f_setHeaderData_5242 (qt_gsi::GenericMethod *decl) @@ -325,7 +325,7 @@ static void _call_f_sourceModel_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// bool QAbstractProxyModel::submit() static void _init_f_submit_0 (qt_gsi::GenericMethod *decl) @@ -440,20 +440,20 @@ namespace gsi static gsi::Methods methods_QAbstractProxyModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); - methods += new qt_gsi::GenericMethod ("itemData", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::itemData", true, &_init_f_itemData_c2395, &_call_f_itemData_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QAbstractProxyModel::data(const QModelIndex &proxyIndex, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QAbstractProxyModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QAbstractProxyModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("itemData", "@brief Method QMap QAbstractProxyModel::itemData(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::itemData", true, &_init_f_itemData_c2395, &_call_f_itemData_c2395); methods += new qt_gsi::GenericMethod ("mapFromSource", "@brief Method QModelIndex QAbstractProxyModel::mapFromSource(const QModelIndex &sourceIndex)\n", true, &_init_f_mapFromSource_c2395, &_call_f_mapFromSource_c2395); methods += new qt_gsi::GenericMethod ("mapSelectionFromSource", "@brief Method QItemSelection QAbstractProxyModel::mapSelectionFromSource(const QItemSelection &selection)\n", true, &_init_f_mapSelectionFromSource_c2727, &_call_f_mapSelectionFromSource_c2727); methods += new qt_gsi::GenericMethod ("mapSelectionToSource", "@brief Method QItemSelection QAbstractProxyModel::mapSelectionToSource(const QItemSelection &selection)\n", true, &_init_f_mapSelectionToSource_c2727, &_call_f_mapSelectionToSource_c2727); methods += new qt_gsi::GenericMethod ("mapToSource", "@brief Method QModelIndex QAbstractProxyModel::mapToSource(const QModelIndex &proxyIndex)\n", true, &_init_f_mapToSource_c2395, &_call_f_mapToSource_c2395); - methods += new qt_gsi::GenericMethod ("revert", "@brief Method ()\nThis is a reimplementation of QAbstractItemModel::revert", false, &_init_f_revert_0, &_call_f_revert_0); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); - methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method (int, Qt::Orientation, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); + methods += new qt_gsi::GenericMethod ("revert", "@brief Method void QAbstractProxyModel::revert()\nThis is a reimplementation of QAbstractItemModel::revert", false, &_init_f_revert_0, &_call_f_revert_0); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QAbstractProxyModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method bool QAbstractProxyModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); methods += new qt_gsi::GenericMethod ("setSourceModel|sourceModel=", "@brief Method void QAbstractProxyModel::setSourceModel(QAbstractItemModel *sourceModel)\n", false, &_init_f_setSourceModel_2419, &_call_f_setSourceModel_2419); methods += new qt_gsi::GenericMethod (":sourceModel", "@brief Method QAbstractItemModel *QAbstractProxyModel::sourceModel()\n", true, &_init_f_sourceModel_c0, &_call_f_sourceModel_c0); - methods += new qt_gsi::GenericMethod ("submit", "@brief Method ()\nThis is a reimplementation of QAbstractItemModel::submit", false, &_init_f_submit_0, &_call_f_submit_0); + methods += new qt_gsi::GenericMethod ("submit", "@brief Method bool QAbstractProxyModel::submit()\nThis is a reimplementation of QAbstractItemModel::submit", false, &_init_f_submit_0, &_call_f_submit_0); methods += gsi::qt_signal ("dataChanged(const QModelIndex &, const QModelIndex &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), "@brief Signal declaration for QAbstractProxyModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QAbstractProxyModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QAbstractProxyModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc index 4068b1e69..104e03a3a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc @@ -181,7 +181,7 @@ static void _call_f_maximumViewportSize_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// QSize QAbstractScrollArea::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -335,7 +335,7 @@ static void _call_f_setViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QAbstractScrollArea::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -500,7 +500,7 @@ static gsi::Methods methods_QAbstractScrollArea () { methods += new qt_gsi::GenericMethod (":horizontalScrollBar", "@brief Method QScrollBar *QAbstractScrollArea::horizontalScrollBar()\n", true, &_init_f_horizontalScrollBar_c0, &_call_f_horizontalScrollBar_c0); methods += new qt_gsi::GenericMethod (":horizontalScrollBarPolicy", "@brief Method Qt::ScrollBarPolicy QAbstractScrollArea::horizontalScrollBarPolicy()\n", true, &_init_f_horizontalScrollBarPolicy_c0, &_call_f_horizontalScrollBarPolicy_c0); methods += new qt_gsi::GenericMethod ("maximumViewportSize", "@brief Method QSize QAbstractScrollArea::maximumViewportSize()\n", true, &_init_f_maximumViewportSize_c0, &_call_f_maximumViewportSize_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QAbstractScrollArea::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("scrollBarWidgets", "@brief Method QList QAbstractScrollArea::scrollBarWidgets(QFlags alignment)\n", false, &_init_f_scrollBarWidgets_2750, &_call_f_scrollBarWidgets_2750); methods += new qt_gsi::GenericMethod ("setCornerWidget|cornerWidget=", "@brief Method void QAbstractScrollArea::setCornerWidget(QWidget *widget)\n", false, &_init_f_setCornerWidget_1315, &_call_f_setCornerWidget_1315); methods += new qt_gsi::GenericMethod ("setHorizontalScrollBar|horizontalScrollBar=", "@brief Method void QAbstractScrollArea::setHorizontalScrollBar(QScrollBar *scrollbar)\n", false, &_init_f_setHorizontalScrollBar_1603, &_call_f_setHorizontalScrollBar_1603); @@ -508,7 +508,7 @@ static gsi::Methods methods_QAbstractScrollArea () { methods += new qt_gsi::GenericMethod ("setVerticalScrollBar|verticalScrollBar=", "@brief Method void QAbstractScrollArea::setVerticalScrollBar(QScrollBar *scrollbar)\n", false, &_init_f_setVerticalScrollBar_1603, &_call_f_setVerticalScrollBar_1603); methods += new qt_gsi::GenericMethod ("setVerticalScrollBarPolicy|verticalScrollBarPolicy=", "@brief Method void QAbstractScrollArea::setVerticalScrollBarPolicy(Qt::ScrollBarPolicy)\n", false, &_init_f_setVerticalScrollBarPolicy_2273, &_call_f_setVerticalScrollBarPolicy_2273); methods += new qt_gsi::GenericMethod ("setViewport|viewport=", "@brief Method void QAbstractScrollArea::setViewport(QWidget *widget)\n", false, &_init_f_setViewport_1315, &_call_f_setViewport_1315); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QAbstractScrollArea::sizeHint()\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":verticalScrollBar", "@brief Method QScrollBar *QAbstractScrollArea::verticalScrollBar()\n", true, &_init_f_verticalScrollBar_c0, &_call_f_verticalScrollBar_c0); methods += new qt_gsi::GenericMethod (":verticalScrollBarPolicy", "@brief Method Qt::ScrollBarPolicy QAbstractScrollArea::verticalScrollBarPolicy()\n", true, &_init_f_verticalScrollBarPolicy_c0, &_call_f_verticalScrollBarPolicy_c0); methods += new qt_gsi::GenericMethod (":viewport", "@brief Method QWidget *QAbstractScrollArea::viewport()\n", true, &_init_f_viewport_c0, &_call_f_viewport_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc index c09ecb456..640fd2ac7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc @@ -160,7 +160,7 @@ static void _call_f_correctionMode_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QEvent *) +// bool QAbstractSpinBox::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -229,7 +229,7 @@ static void _call_f_hasFrame_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (Qt::InputMethodQuery) const +// QVariant QAbstractSpinBox::inputMethodQuery(Qt::InputMethodQuery) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -309,7 +309,7 @@ static void _call_f_keyboardTracking_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QAbstractSpinBox::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -520,7 +520,7 @@ static void _call_f_setWrapping_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QAbstractSpinBox::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -758,16 +758,16 @@ static gsi::Methods methods_QAbstractSpinBox () { methods += new qt_gsi::GenericMethod (":buttonSymbols", "@brief Method QAbstractSpinBox::ButtonSymbols QAbstractSpinBox::buttonSymbols()\n", true, &_init_f_buttonSymbols_c0, &_call_f_buttonSymbols_c0); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QAbstractSpinBox::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); methods += new qt_gsi::GenericMethod (":correctionMode", "@brief Method QAbstractSpinBox::CorrectionMode QAbstractSpinBox::correctionMode()\n", true, &_init_f_correctionMode_c0, &_call_f_correctionMode_c0); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QAbstractSpinBox::event(QEvent *event)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); methods += new qt_gsi::GenericMethod ("fixup", "@brief Method void QAbstractSpinBox::fixup(QString &input)\n", true, &_init_f_fixup_c1330, &_call_f_fixup_c1330); methods += new qt_gsi::GenericMethod ("hasAcceptableInput|:acceptableInput", "@brief Method bool QAbstractSpinBox::hasAcceptableInput()\n", true, &_init_f_hasAcceptableInput_c0, &_call_f_hasAcceptableInput_c0); methods += new qt_gsi::GenericMethod ("hasFrame|:frame", "@brief Method bool QAbstractSpinBox::hasFrame()\n", true, &_init_f_hasFrame_c0, &_call_f_hasFrame_c0); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QAbstractSpinBox::inputMethodQuery(Qt::InputMethodQuery)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); methods += new qt_gsi::GenericMethod ("interpretText", "@brief Method void QAbstractSpinBox::interpretText()\n", false, &_init_f_interpretText_0, &_call_f_interpretText_0); methods += new qt_gsi::GenericMethod ("isAccelerated?|:accelerated", "@brief Method bool QAbstractSpinBox::isAccelerated()\n", true, &_init_f_isAccelerated_c0, &_call_f_isAccelerated_c0); methods += new qt_gsi::GenericMethod ("isReadOnly?|:readOnly", "@brief Method bool QAbstractSpinBox::isReadOnly()\n", true, &_init_f_isReadOnly_c0, &_call_f_isReadOnly_c0); methods += new qt_gsi::GenericMethod (":keyboardTracking", "@brief Method bool QAbstractSpinBox::keyboardTracking()\n", true, &_init_f_keyboardTracking_c0, &_call_f_keyboardTracking_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QAbstractSpinBox::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method void QAbstractSpinBox::selectAll()\n", false, &_init_f_selectAll_0, &_call_f_selectAll_0); methods += new qt_gsi::GenericMethod ("setAccelerated|accelerated=", "@brief Method void QAbstractSpinBox::setAccelerated(bool on)\n", false, &_init_f_setAccelerated_864, &_call_f_setAccelerated_864); methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QAbstractSpinBox::setAlignment(QFlags flag)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); @@ -778,7 +778,7 @@ static gsi::Methods methods_QAbstractSpinBox () { methods += new qt_gsi::GenericMethod ("setReadOnly|readOnly=", "@brief Method void QAbstractSpinBox::setReadOnly(bool r)\n", false, &_init_f_setReadOnly_864, &_call_f_setReadOnly_864); methods += new qt_gsi::GenericMethod ("setSpecialValueText|specialValueText=", "@brief Method void QAbstractSpinBox::setSpecialValueText(const QString &txt)\n", false, &_init_f_setSpecialValueText_2025, &_call_f_setSpecialValueText_2025); methods += new qt_gsi::GenericMethod ("setWrapping|wrapping=", "@brief Method void QAbstractSpinBox::setWrapping(bool w)\n", false, &_init_f_setWrapping_864, &_call_f_setWrapping_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QAbstractSpinBox::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":specialValueText", "@brief Method QString QAbstractSpinBox::specialValueText()\n", true, &_init_f_specialValueText_c0, &_call_f_specialValueText_c0); methods += new qt_gsi::GenericMethod ("stepBy", "@brief Method void QAbstractSpinBox::stepBy(int steps)\n", false, &_init_f_stepBy_767, &_call_f_stepBy_767); methods += new qt_gsi::GenericMethod ("stepDown", "@brief Method void QAbstractSpinBox::stepDown()\n", false, &_init_f_stepDown_0, &_call_f_stepDown_0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc index 91cf8a50b..172f19745 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc @@ -40,7 +40,7 @@ // ----------------------------------------------------------------------- // class QAccessibleApplication -// (int, QAccessible::Text, int) const +// QString QAccessibleApplication::actionText(int action, QAccessible::Text t, int child) static void _init_f_actionText_c3378 (qt_gsi::GenericMethod *decl) @@ -65,7 +65,7 @@ static void _call_f_actionText_c3378 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int, int) const +// int QAccessibleApplication::childAt(int x, int y) static void _init_f_childAt_c1426 (qt_gsi::GenericMethod *decl) @@ -87,7 +87,7 @@ static void _call_f_childAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QAccessibleApplication::childCount() static void _init_f_childCount_c0 (qt_gsi::GenericMethod *decl) @@ -102,7 +102,7 @@ static void _call_f_childCount_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, int, const QList &) +// bool QAccessibleApplication::doAction(int action, int child, const QList ¶ms) static void _init_f_doAction_4052 (qt_gsi::GenericMethod *decl) @@ -127,7 +127,7 @@ static void _call_f_doAction_4052 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QAccessibleInterface *) const +// int QAccessibleApplication::indexOfChild(const QAccessibleInterface *) static void _init_f_indexOfChild_c3317 (qt_gsi::GenericMethod *decl) @@ -146,7 +146,7 @@ static void _call_f_indexOfChild_c3317 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, const QAccessibleInterface *, int) const +// QFlags QAccessibleApplication::relationTo(int, const QAccessibleInterface *, int) static void _init_f_relationTo_c4635 (qt_gsi::GenericMethod *decl) @@ -171,7 +171,7 @@ static void _call_f_relationTo_c4635 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int) const +// QAccessible::Role QAccessibleApplication::role(int child) static void _init_f_role_c767 (qt_gsi::GenericMethod *decl) @@ -190,7 +190,7 @@ static void _call_f_role_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int) const +// QFlags QAccessibleApplication::state(int child) static void _init_f_state_c767 (qt_gsi::GenericMethod *decl) @@ -209,7 +209,7 @@ static void _call_f_state_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (QAccessible::Text, int) const +// QString QAccessibleApplication::text(QAccessible::Text t, int child) static void _init_f_text_c2719 (qt_gsi::GenericMethod *decl) @@ -231,7 +231,7 @@ static void _call_f_text_c2719 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (int) const +// int QAccessibleApplication::userActionCount(int child) static void _init_f_userActionCount_c767 (qt_gsi::GenericMethod *decl) @@ -255,16 +255,16 @@ namespace gsi static gsi::Methods methods_QAccessibleApplication () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("actionText", "@brief Method (int, QAccessible::Text, int) const\nThis is a reimplementation of QAccessibleObject::actionText", true, &_init_f_actionText_c3378, &_call_f_actionText_c3378); - methods += new qt_gsi::GenericMethod ("childAt", "@brief Method (int, int) const\nThis is a reimplementation of QAccessibleInterface::childAt", true, &_init_f_childAt_c1426, &_call_f_childAt_c1426); - methods += new qt_gsi::GenericMethod ("childCount", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::childCount", true, &_init_f_childCount_c0, &_call_f_childCount_c0); - methods += new qt_gsi::GenericMethod ("doAction", "@brief Method (int, int, const QList &)\nThis is a reimplementation of QAccessibleObject::doAction", false, &_init_f_doAction_4052, &_call_f_doAction_4052); - methods += new qt_gsi::GenericMethod ("indexOfChild", "@brief Method (const QAccessibleInterface *) const\nThis is a reimplementation of QAccessibleInterface::indexOfChild", true, &_init_f_indexOfChild_c3317, &_call_f_indexOfChild_c3317); - methods += new qt_gsi::GenericMethod ("relationTo", "@brief Method (int, const QAccessibleInterface *, int) const\nThis is a reimplementation of QAccessibleInterface::relationTo", true, &_init_f_relationTo_c4635, &_call_f_relationTo_c4635); - methods += new qt_gsi::GenericMethod ("role", "@brief Method (int) const\nThis is a reimplementation of QAccessibleInterface::role", true, &_init_f_role_c767, &_call_f_role_c767); - methods += new qt_gsi::GenericMethod ("state", "@brief Method (int) const\nThis is a reimplementation of QAccessibleInterface::state", true, &_init_f_state_c767, &_call_f_state_c767); - methods += new qt_gsi::GenericMethod ("text", "@brief Method (QAccessible::Text, int) const\nThis is a reimplementation of QAccessibleInterface::text", true, &_init_f_text_c2719, &_call_f_text_c2719); - methods += new qt_gsi::GenericMethod ("userActionCount", "@brief Method (int) const\nThis is a reimplementation of QAccessibleObject::userActionCount", true, &_init_f_userActionCount_c767, &_call_f_userActionCount_c767); + methods += new qt_gsi::GenericMethod ("actionText", "@brief Method QString QAccessibleApplication::actionText(int action, QAccessible::Text t, int child)\nThis is a reimplementation of QAccessibleObject::actionText", true, &_init_f_actionText_c3378, &_call_f_actionText_c3378); + methods += new qt_gsi::GenericMethod ("childAt", "@brief Method int QAccessibleApplication::childAt(int x, int y)\nThis is a reimplementation of QAccessibleInterface::childAt", true, &_init_f_childAt_c1426, &_call_f_childAt_c1426); + methods += new qt_gsi::GenericMethod ("childCount", "@brief Method int QAccessibleApplication::childCount()\nThis is a reimplementation of QAccessibleInterface::childCount", true, &_init_f_childCount_c0, &_call_f_childCount_c0); + methods += new qt_gsi::GenericMethod ("doAction", "@brief Method bool QAccessibleApplication::doAction(int action, int child, const QList ¶ms)\nThis is a reimplementation of QAccessibleObject::doAction", false, &_init_f_doAction_4052, &_call_f_doAction_4052); + methods += new qt_gsi::GenericMethod ("indexOfChild", "@brief Method int QAccessibleApplication::indexOfChild(const QAccessibleInterface *)\nThis is a reimplementation of QAccessibleInterface::indexOfChild", true, &_init_f_indexOfChild_c3317, &_call_f_indexOfChild_c3317); + methods += new qt_gsi::GenericMethod ("relationTo", "@brief Method QFlags QAccessibleApplication::relationTo(int, const QAccessibleInterface *, int)\nThis is a reimplementation of QAccessibleInterface::relationTo", true, &_init_f_relationTo_c4635, &_call_f_relationTo_c4635); + methods += new qt_gsi::GenericMethod ("role", "@brief Method QAccessible::Role QAccessibleApplication::role(int child)\nThis is a reimplementation of QAccessibleInterface::role", true, &_init_f_role_c767, &_call_f_role_c767); + methods += new qt_gsi::GenericMethod ("state", "@brief Method QFlags QAccessibleApplication::state(int child)\nThis is a reimplementation of QAccessibleInterface::state", true, &_init_f_state_c767, &_call_f_state_c767); + methods += new qt_gsi::GenericMethod ("text", "@brief Method QString QAccessibleApplication::text(QAccessible::Text t, int child)\nThis is a reimplementation of QAccessibleInterface::text", true, &_init_f_text_c2719, &_call_f_text_c2719); + methods += new qt_gsi::GenericMethod ("userActionCount", "@brief Method int QAccessibleApplication::userActionCount(int child)\nThis is a reimplementation of QAccessibleObject::userActionCount", true, &_init_f_userActionCount_c767, &_call_f_userActionCount_c767); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleObject.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleObject.cc index 7ac19746e..7f1e919a9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleObject.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleObject.cc @@ -40,7 +40,7 @@ // ----------------------------------------------------------------------- // class QAccessibleObject -// (int, QAccessible::Text, int) const +// QString QAccessibleObject::actionText(int action, QAccessible::Text t, int child) static void _init_f_actionText_c3378 (qt_gsi::GenericMethod *decl) @@ -65,7 +65,7 @@ static void _call_f_actionText_c3378 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int, int, const QList &) +// bool QAccessibleObject::doAction(int action, int child, const QList ¶ms) static void _init_f_doAction_4052 (qt_gsi::GenericMethod *decl) @@ -90,7 +90,7 @@ static void _call_f_doAction_4052 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// bool QAccessibleObject::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -105,7 +105,7 @@ static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QObject *QAccessibleObject::object() static void _init_f_object_c0 (qt_gsi::GenericMethod *decl) @@ -120,7 +120,7 @@ static void _call_f_object_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int) const +// QRect QAccessibleObject::rect(int child) static void _init_f_rect_c767 (qt_gsi::GenericMethod *decl) @@ -139,7 +139,7 @@ static void _call_f_rect_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (QAccessible::Text, int, const QString &) +// void QAccessibleObject::setText(QAccessible::Text t, int child, const QString &text) static void _init_f_setText_4636 (qt_gsi::GenericMethod *decl) @@ -165,7 +165,7 @@ static void _call_f_setText_4636 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// int QAccessibleObject::userActionCount(int child) static void _init_f_userActionCount_c767 (qt_gsi::GenericMethod *decl) @@ -190,13 +190,13 @@ namespace gsi static gsi::Methods methods_QAccessibleObject () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("actionText", "@brief Method (int, QAccessible::Text, int) const\nThis is a reimplementation of QAccessibleInterface::actionText", true, &_init_f_actionText_c3378, &_call_f_actionText_c3378); - methods += new qt_gsi::GenericMethod ("doAction", "@brief Method (int, int, const QList &)\nThis is a reimplementation of QAccessibleInterface::doAction", false, &_init_f_doAction_4052, &_call_f_doAction_4052); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::isValid", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod ("object", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::object", true, &_init_f_object_c0, &_call_f_object_c0); - methods += new qt_gsi::GenericMethod ("rect", "@brief Method (int) const\nThis is a reimplementation of QAccessibleInterface::rect", true, &_init_f_rect_c767, &_call_f_rect_c767); - methods += new qt_gsi::GenericMethod ("setText", "@brief Method (QAccessible::Text, int, const QString &)\nThis is a reimplementation of QAccessibleInterface::setText", false, &_init_f_setText_4636, &_call_f_setText_4636); - methods += new qt_gsi::GenericMethod ("userActionCount", "@brief Method (int) const\nThis is a reimplementation of QAccessibleInterface::userActionCount", true, &_init_f_userActionCount_c767, &_call_f_userActionCount_c767); + methods += new qt_gsi::GenericMethod ("actionText", "@brief Method QString QAccessibleObject::actionText(int action, QAccessible::Text t, int child)\nThis is a reimplementation of QAccessibleInterface::actionText", true, &_init_f_actionText_c3378, &_call_f_actionText_c3378); + methods += new qt_gsi::GenericMethod ("doAction", "@brief Method bool QAccessibleObject::doAction(int action, int child, const QList ¶ms)\nThis is a reimplementation of QAccessibleInterface::doAction", false, &_init_f_doAction_4052, &_call_f_doAction_4052); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QAccessibleObject::isValid()\nThis is a reimplementation of QAccessibleInterface::isValid", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("object", "@brief Method QObject *QAccessibleObject::object()\nThis is a reimplementation of QAccessibleInterface::object", true, &_init_f_object_c0, &_call_f_object_c0); + methods += new qt_gsi::GenericMethod ("rect", "@brief Method QRect QAccessibleObject::rect(int child)\nThis is a reimplementation of QAccessibleInterface::rect", true, &_init_f_rect_c767, &_call_f_rect_c767); + methods += new qt_gsi::GenericMethod ("setText", "@brief Method void QAccessibleObject::setText(QAccessible::Text t, int child, const QString &text)\nThis is a reimplementation of QAccessibleInterface::setText", false, &_init_f_setText_4636, &_call_f_setText_4636); + methods += new qt_gsi::GenericMethod ("userActionCount", "@brief Method int QAccessibleObject::userActionCount(int child)\nThis is a reimplementation of QAccessibleInterface::userActionCount", true, &_init_f_userActionCount_c767, &_call_f_userActionCount_c767); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleWidget.cc index 85752b541..bdbc12921 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleWidget.cc @@ -66,7 +66,7 @@ static void _call_ctor_QAccessibleWidget_5165 (const qt_gsi::GenericStaticMethod } -// (int, QAccessible::Text, int) const +// QString QAccessibleWidget::actionText(int action, QAccessible::Text t, int child) static void _init_f_actionText_c3378 (qt_gsi::GenericMethod *decl) @@ -91,7 +91,7 @@ static void _call_f_actionText_c3378 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int, int) const +// int QAccessibleWidget::childAt(int x, int y) static void _init_f_childAt_c1426 (qt_gsi::GenericMethod *decl) @@ -113,7 +113,7 @@ static void _call_f_childAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QAccessibleWidget::childCount() static void _init_f_childCount_c0 (qt_gsi::GenericMethod *decl) @@ -128,7 +128,7 @@ static void _call_f_childCount_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, int, const QList &) +// bool QAccessibleWidget::doAction(int action, int child, const QList ¶ms) static void _init_f_doAction_4052 (qt_gsi::GenericMethod *decl) @@ -153,7 +153,7 @@ static void _call_f_doAction_4052 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QAccessibleInterface *) const +// int QAccessibleWidget::indexOfChild(const QAccessibleInterface *child) static void _init_f_indexOfChild_c3317 (qt_gsi::GenericMethod *decl) @@ -172,7 +172,7 @@ static void _call_f_indexOfChild_c3317 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) const +// QRect QAccessibleWidget::rect(int child) static void _init_f_rect_c767 (qt_gsi::GenericMethod *decl) @@ -191,7 +191,7 @@ static void _call_f_rect_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int, const QAccessibleInterface *, int) const +// QFlags QAccessibleWidget::relationTo(int child, const QAccessibleInterface *other, int otherChild) static void _init_f_relationTo_c4635 (qt_gsi::GenericMethod *decl) @@ -216,7 +216,7 @@ static void _call_f_relationTo_c4635 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int) const +// QAccessible::Role QAccessibleWidget::role(int child) static void _init_f_role_c767 (qt_gsi::GenericMethod *decl) @@ -235,7 +235,7 @@ static void _call_f_role_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int) const +// QFlags QAccessibleWidget::state(int child) static void _init_f_state_c767 (qt_gsi::GenericMethod *decl) @@ -254,7 +254,7 @@ static void _call_f_state_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (QAccessible::Text, int) const +// QString QAccessibleWidget::text(QAccessible::Text t, int child) static void _init_f_text_c2719 (qt_gsi::GenericMethod *decl) @@ -276,7 +276,7 @@ static void _call_f_text_c2719 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (int) const +// int QAccessibleWidget::userActionCount(int child) static void _init_f_userActionCount_c767 (qt_gsi::GenericMethod *decl) @@ -302,17 +302,17 @@ namespace gsi static gsi::Methods methods_QAccessibleWidget () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAccessibleWidget::QAccessibleWidget(QWidget *o, QAccessible::Role r, const QString &name)\nThis method creates an object of class QAccessibleWidget.", &_init_ctor_QAccessibleWidget_5165, &_call_ctor_QAccessibleWidget_5165); - methods += new qt_gsi::GenericMethod ("actionText", "@brief Method (int, QAccessible::Text, int) const\nThis is a reimplementation of QAccessibleObject::actionText", true, &_init_f_actionText_c3378, &_call_f_actionText_c3378); - methods += new qt_gsi::GenericMethod ("childAt", "@brief Method (int, int) const\nThis is a reimplementation of QAccessibleInterface::childAt", true, &_init_f_childAt_c1426, &_call_f_childAt_c1426); - methods += new qt_gsi::GenericMethod ("childCount", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::childCount", true, &_init_f_childCount_c0, &_call_f_childCount_c0); - methods += new qt_gsi::GenericMethod ("doAction", "@brief Method (int, int, const QList &)\nThis is a reimplementation of QAccessibleObject::doAction", false, &_init_f_doAction_4052, &_call_f_doAction_4052); - methods += new qt_gsi::GenericMethod ("indexOfChild", "@brief Method (const QAccessibleInterface *) const\nThis is a reimplementation of QAccessibleInterface::indexOfChild", true, &_init_f_indexOfChild_c3317, &_call_f_indexOfChild_c3317); - methods += new qt_gsi::GenericMethod ("rect", "@brief Method (int) const\nThis is a reimplementation of QAccessibleObject::rect", true, &_init_f_rect_c767, &_call_f_rect_c767); - methods += new qt_gsi::GenericMethod ("relationTo", "@brief Method (int, const QAccessibleInterface *, int) const\nThis is a reimplementation of QAccessibleInterface::relationTo", true, &_init_f_relationTo_c4635, &_call_f_relationTo_c4635); - methods += new qt_gsi::GenericMethod ("role", "@brief Method (int) const\nThis is a reimplementation of QAccessibleInterface::role", true, &_init_f_role_c767, &_call_f_role_c767); - methods += new qt_gsi::GenericMethod ("state", "@brief Method (int) const\nThis is a reimplementation of QAccessibleInterface::state", true, &_init_f_state_c767, &_call_f_state_c767); - methods += new qt_gsi::GenericMethod ("text", "@brief Method (QAccessible::Text, int) const\nThis is a reimplementation of QAccessibleInterface::text", true, &_init_f_text_c2719, &_call_f_text_c2719); - methods += new qt_gsi::GenericMethod ("userActionCount", "@brief Method (int) const\nThis is a reimplementation of QAccessibleObject::userActionCount", true, &_init_f_userActionCount_c767, &_call_f_userActionCount_c767); + methods += new qt_gsi::GenericMethod ("actionText", "@brief Method QString QAccessibleWidget::actionText(int action, QAccessible::Text t, int child)\nThis is a reimplementation of QAccessibleObject::actionText", true, &_init_f_actionText_c3378, &_call_f_actionText_c3378); + methods += new qt_gsi::GenericMethod ("childAt", "@brief Method int QAccessibleWidget::childAt(int x, int y)\nThis is a reimplementation of QAccessibleInterface::childAt", true, &_init_f_childAt_c1426, &_call_f_childAt_c1426); + methods += new qt_gsi::GenericMethod ("childCount", "@brief Method int QAccessibleWidget::childCount()\nThis is a reimplementation of QAccessibleInterface::childCount", true, &_init_f_childCount_c0, &_call_f_childCount_c0); + methods += new qt_gsi::GenericMethod ("doAction", "@brief Method bool QAccessibleWidget::doAction(int action, int child, const QList ¶ms)\nThis is a reimplementation of QAccessibleObject::doAction", false, &_init_f_doAction_4052, &_call_f_doAction_4052); + methods += new qt_gsi::GenericMethod ("indexOfChild", "@brief Method int QAccessibleWidget::indexOfChild(const QAccessibleInterface *child)\nThis is a reimplementation of QAccessibleInterface::indexOfChild", true, &_init_f_indexOfChild_c3317, &_call_f_indexOfChild_c3317); + methods += new qt_gsi::GenericMethod ("rect", "@brief Method QRect QAccessibleWidget::rect(int child)\nThis is a reimplementation of QAccessibleObject::rect", true, &_init_f_rect_c767, &_call_f_rect_c767); + methods += new qt_gsi::GenericMethod ("relationTo", "@brief Method QFlags QAccessibleWidget::relationTo(int child, const QAccessibleInterface *other, int otherChild)\nThis is a reimplementation of QAccessibleInterface::relationTo", true, &_init_f_relationTo_c4635, &_call_f_relationTo_c4635); + methods += new qt_gsi::GenericMethod ("role", "@brief Method QAccessible::Role QAccessibleWidget::role(int child)\nThis is a reimplementation of QAccessibleInterface::role", true, &_init_f_role_c767, &_call_f_role_c767); + methods += new qt_gsi::GenericMethod ("state", "@brief Method QFlags QAccessibleWidget::state(int child)\nThis is a reimplementation of QAccessibleInterface::state", true, &_init_f_state_c767, &_call_f_state_c767); + methods += new qt_gsi::GenericMethod ("text", "@brief Method QString QAccessibleWidget::text(QAccessible::Text t, int child)\nThis is a reimplementation of QAccessibleInterface::text", true, &_init_f_text_c2719, &_call_f_text_c2719); + methods += new qt_gsi::GenericMethod ("userActionCount", "@brief Method int QAccessibleWidget::userActionCount(int child)\nThis is a reimplementation of QAccessibleObject::userActionCount", true, &_init_f_userActionCount_c767, &_call_f_userActionCount_c767); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc b/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc index 2d506b9e0..2a33e2264 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc @@ -86,7 +86,7 @@ static void _call_f_inputContext_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QObject *, QEvent *) +// bool QApplication::notify(QObject *, QEvent *) static void _init_f_notify_2411 (qt_gsi::GenericMethod *decl) @@ -1488,7 +1488,7 @@ static gsi::Methods methods_QApplication () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":autoSipEnabled", "@brief Method bool QApplication::autoSipEnabled()\n", true, &_init_f_autoSipEnabled_c0, &_call_f_autoSipEnabled_c0); methods += new qt_gsi::GenericMethod (":inputContext", "@brief Method QInputContext *QApplication::inputContext()\n", true, &_init_f_inputContext_c0, &_call_f_inputContext_c0); - methods += new qt_gsi::GenericMethod ("notify", "@brief Method (QObject *, QEvent *)\nThis is a reimplementation of QCoreApplication::notify", false, &_init_f_notify_2411, &_call_f_notify_2411); + methods += new qt_gsi::GenericMethod ("notify", "@brief Method bool QApplication::notify(QObject *, QEvent *)\nThis is a reimplementation of QCoreApplication::notify", false, &_init_f_notify_2411, &_call_f_notify_2411); methods += new qt_gsi::GenericMethod ("setAutoSipEnabled|autoSipEnabled=", "@brief Method void QApplication::setAutoSipEnabled(const bool enabled)\n", false, &_init_f_setAutoSipEnabled_1559, &_call_f_setAutoSipEnabled_1559); methods += new qt_gsi::GenericMethod ("setInputContext|inputContext=", "@brief Method void QApplication::setInputContext(QInputContext *)\n", false, &_init_f_setInputContext_1972, &_call_f_setInputContext_1972); methods += new qt_gsi::GenericMethod ("setStyleSheet|styleSheet=", "@brief Method void QApplication::setStyleSheet(const QString &sheet)\n", false, &_init_f_setStyleSheet_2025, &_call_f_setStyleSheet_2025); @@ -1589,7 +1589,7 @@ GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QApplication () { return decl_ class QApplication_Adaptor : public QApplication, public qt_gsi::QtObjectBase { public: - static QApplication *ctor_QApplication_Adaptor_args(const std::vector &args) + static QApplication *ctor_QApplication_Adaptor_args(const std::vector &args, bool gui) { // QApplication needs static sources, so we give it some. static char **argv = 0; @@ -1606,10 +1606,10 @@ public: argv[a - args_copy.begin ()] = (char *) a->c_str (); } - return new QApplication_Adaptor (argc, argv); + return new QApplication_Adaptor (argc, argv, gui); } - QApplication_Adaptor (int &argc, char **argv) : QApplication (argc, argv) { } + QApplication_Adaptor (int &argc, char **argv, bool gui) : QApplication (argc, argv, gui) { } virtual ~QApplication_Adaptor(); @@ -2110,7 +2110,7 @@ static gsi::Methods methods_QApplication_Adaptor () { } gsi::Class decl_QApplication_Adaptor (qtdecl_QApplication (), "QtGui", "QApplication", - gsi::constructor("new", &QApplication_Adaptor::ctor_QApplication_Adaptor_args, gsi::arg ("argv"), "@brief Creates a new QApplication object\n\n@param argv The command line arguments to pass to Qt") + gsi::constructor("new", &QApplication_Adaptor::ctor_QApplication_Adaptor_args, gsi::arg ("argv"), gsi::arg ("gui", false), "@brief Creates a new QApplication object\n\n@param argv The command line arguments to pass to Qt\n@param gui If true, a GUI-enabled application is constructed") + methods_QApplication_Adaptor (), "@qt\n@brief Binding of QApplication"); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc b/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc index be0f717db..e8423237c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc @@ -64,7 +64,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QPixmap &) +// QBitmap &QBitmap::operator=(const QPixmap &) static void _init_f_operator_eq__2017 (qt_gsi::GenericMethod *decl) @@ -83,7 +83,7 @@ static void _call_f_operator_eq__2017 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QMatrix &) const +// QBitmap QBitmap::transformed(const QMatrix &) static void _init_f_transformed_c2023 (qt_gsi::GenericMethod *decl) @@ -102,7 +102,7 @@ static void _call_f_transformed_c2023 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QTransform &) const +// QBitmap QBitmap::transformed(const QTransform &matrix) static void _init_f_transformed_c2350 (qt_gsi::GenericMethod *decl) @@ -174,9 +174,9 @@ namespace gsi static gsi::Methods methods_QBitmap () { gsi::Methods methods; methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QBitmap::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QPixmap &)\n", false, &_init_f_operator_eq__2017, &_call_f_operator_eq__2017); - methods += new qt_gsi::GenericMethod ("transformed", "@brief Method (const QMatrix &) const\n", true, &_init_f_transformed_c2023, &_call_f_transformed_c2023); - methods += new qt_gsi::GenericMethod ("transformed", "@brief Method (const QTransform &) const\n", true, &_init_f_transformed_c2350, &_call_f_transformed_c2350); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QBitmap &QBitmap::operator=(const QPixmap &)\n", false, &_init_f_operator_eq__2017, &_call_f_operator_eq__2017); + methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QBitmap QBitmap::transformed(const QMatrix &)\n", true, &_init_f_transformed_c2023, &_call_f_transformed_c2023); + methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QBitmap QBitmap::transformed(const QTransform &matrix)\n", true, &_init_f_transformed_c2350, &_call_f_transformed_c2350); methods += new qt_gsi::GenericStaticMethod ("fromData", "@brief Static method QBitmap QBitmap::fromData(const QSize &size, const unsigned char *bits, QImage::Format monoFormat)\nThis method is static and can be called without an instance.", &_init_f_fromData_6058, &_call_f_fromData_6058); methods += new qt_gsi::GenericStaticMethod ("fromImage", "@brief Static method QBitmap QBitmap::fromImage(const QImage &image, QFlags flags)\nThis method is static and can be called without an instance.", &_init_f_fromImage_5137, &_call_f_fromImage_5137); return methods; diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc index ff6d32eb3..c179b8bb5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc @@ -61,7 +61,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QLayoutItem *) +// void QBoxLayout::addItem(QLayoutItem *) static void _init_f_addItem_1740 (qt_gsi::GenericMethod *decl) @@ -185,7 +185,7 @@ static void _call_f_addStrut_767 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (QWidget *, int, QFlags) +// void QBoxLayout::addWidget(QWidget *, int stretch, QFlags alignment) static void _init_f_addWidget_4616 (qt_gsi::GenericMethod *decl) @@ -211,7 +211,7 @@ static void _call_f_addWidget_4616 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QBoxLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -241,7 +241,7 @@ static void _call_f_direction_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QFlags QBoxLayout::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -256,7 +256,7 @@ static void _call_f_expandingDirections_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// bool QBoxLayout::hasHeightForWidth() static void _init_f_hasHeightForWidth_c0 (qt_gsi::GenericMethod *decl) @@ -271,7 +271,7 @@ static void _call_f_hasHeightForWidth_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QBoxLayout::heightForWidth(int) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -414,7 +414,7 @@ static void _call_f_insertWidget_5275 (const qt_gsi::GenericMethod * /*decl*/, v } -// () +// void QBoxLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -430,7 +430,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QLayoutItem *QBoxLayout::itemAt(int) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -449,7 +449,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QSize QBoxLayout::maximumSize() static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl) @@ -464,7 +464,7 @@ static void _call_f_maximumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int) const +// int QBoxLayout::minimumHeightForWidth(int) static void _init_f_minimumHeightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -483,7 +483,7 @@ static void _call_f_minimumHeightForWidth_c767 (const qt_gsi::GenericMethod * /* } -// () const +// QSize QBoxLayout::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -518,7 +518,7 @@ static void _call_f_setDirection_2497 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QRect &) +// void QBoxLayout::setGeometry(const QRect &) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -538,7 +538,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int) +// void QBoxLayout::setSpacing(int spacing) static void _init_f_setSpacing_767 (qt_gsi::GenericMethod *decl) @@ -625,7 +625,7 @@ static void _call_f_setStretchFactor_2000 (const qt_gsi::GenericMethod * /*decl* } -// () const +// QSize QBoxLayout::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -640,7 +640,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QBoxLayout::spacing() static void _init_f_spacing_c0 (qt_gsi::GenericMethod *decl) @@ -674,7 +674,7 @@ static void _call_f_stretch_c767 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) +// QLayoutItem *QBoxLayout::takeAt(int) static void _init_f_takeAt_767 (qt_gsi::GenericMethod *decl) @@ -793,38 +793,38 @@ namespace gsi static gsi::Methods methods_QBoxLayout () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("addItem", "@brief Method (QLayoutItem *)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); + methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QBoxLayout::addItem(QLayoutItem *)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); methods += new qt_gsi::GenericMethod ("addLayout", "@brief Method void QBoxLayout::addLayout(QLayout *layout, int stretch)\n", false, &_init_f_addLayout_2000, &_call_f_addLayout_2000); methods += new qt_gsi::GenericMethod ("addSpacerItem", "@brief Method void QBoxLayout::addSpacerItem(QSpacerItem *spacerItem)\n", false, &_init_f_addSpacerItem_1708, &_call_f_addSpacerItem_1708); methods += new qt_gsi::GenericMethod ("addSpacing", "@brief Method void QBoxLayout::addSpacing(int size)\n", false, &_init_f_addSpacing_767, &_call_f_addSpacing_767); methods += new qt_gsi::GenericMethod ("addStretch", "@brief Method void QBoxLayout::addStretch(int stretch)\n", false, &_init_f_addStretch_767, &_call_f_addStretch_767); methods += new qt_gsi::GenericMethod ("addStrut", "@brief Method void QBoxLayout::addStrut(int)\n", false, &_init_f_addStrut_767, &_call_f_addStrut_767); - methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method (QWidget *, int, QFlags)\n", false, &_init_f_addWidget_4616, &_call_f_addWidget_4616); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method void QBoxLayout::addWidget(QWidget *, int stretch, QFlags alignment)\n", false, &_init_f_addWidget_4616, &_call_f_addWidget_4616); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QBoxLayout::count()\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":direction", "@brief Method QBoxLayout::Direction QBoxLayout::direction()\n", true, &_init_f_direction_c0, &_call_f_direction_c0); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); - methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method () const\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QBoxLayout::expandingDirections()\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QBoxLayout::hasHeightForWidth()\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QBoxLayout::heightForWidth(int)\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod ("insertLayout", "@brief Method void QBoxLayout::insertLayout(int index, QLayout *layout, int stretch)\n", false, &_init_f_insertLayout_2659, &_call_f_insertLayout_2659); methods += new qt_gsi::GenericMethod ("insertSpacerItem", "@brief Method void QBoxLayout::insertSpacerItem(int index, QSpacerItem *spacerItem)\n", false, &_init_f_insertSpacerItem_2367, &_call_f_insertSpacerItem_2367); methods += new qt_gsi::GenericMethod ("insertSpacing", "@brief Method void QBoxLayout::insertSpacing(int index, int size)\n", false, &_init_f_insertSpacing_1426, &_call_f_insertSpacing_1426); methods += new qt_gsi::GenericMethod ("insertStretch", "@brief Method void QBoxLayout::insertStretch(int index, int stretch)\n", false, &_init_f_insertStretch_1426, &_call_f_insertStretch_1426); methods += new qt_gsi::GenericMethod ("insertWidget", "@brief Method void QBoxLayout::insertWidget(int index, QWidget *widget, int stretch, QFlags alignment)\n", false, &_init_f_insertWidget_5275, &_call_f_insertWidget_5275); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); - methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayout::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); - methods += new qt_gsi::GenericMethod ("minimumHeightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::minimumHeightForWidth", true, &_init_f_minimumHeightForWidth_c767, &_call_f_minimumHeightForWidth_c767); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QBoxLayout::invalidate()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QBoxLayout::itemAt(int)\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method QSize QBoxLayout::maximumSize()\nThis is a reimplementation of QLayout::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumHeightForWidth", "@brief Method int QBoxLayout::minimumHeightForWidth(int)\nThis is a reimplementation of QLayoutItem::minimumHeightForWidth", true, &_init_f_minimumHeightForWidth_c767, &_call_f_minimumHeightForWidth_c767); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QBoxLayout::minimumSize()\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); methods += new qt_gsi::GenericMethod ("setDirection|direction=", "@brief Method void QBoxLayout::setDirection(QBoxLayout::Direction)\n", false, &_init_f_setDirection_2497, &_call_f_setDirection_2497); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); - methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method (int)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QBoxLayout::setGeometry(const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QBoxLayout::setSpacing(int spacing)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); methods += new qt_gsi::GenericMethod ("setStretch", "@brief Method void QBoxLayout::setStretch(int index, int stretch)\n", false, &_init_f_setStretch_1426, &_call_f_setStretch_1426); methods += new qt_gsi::GenericMethod ("setStretchFactor", "@brief Method bool QBoxLayout::setStretchFactor(QWidget *w, int stretch)\n", false, &_init_f_setStretchFactor_1974, &_call_f_setStretchFactor_1974); methods += new qt_gsi::GenericMethod ("setStretchFactor", "@brief Method bool QBoxLayout::setStretchFactor(QLayout *l, int stretch)\n", false, &_init_f_setStretchFactor_2000, &_call_f_setStretchFactor_2000); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod (":spacing", "@brief Method () const\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QBoxLayout::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":spacing", "@brief Method int QBoxLayout::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); methods += new qt_gsi::GenericMethod ("stretch", "@brief Method int QBoxLayout::stretch(int index)\n", true, &_init_f_stretch_c767, &_call_f_stretch_c767); - methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method (int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); + methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method QLayoutItem *QBoxLayout::takeAt(int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QBoxLayout::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QBoxLayout::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QBoxLayout::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc index 4c958d320..4d3cfbb27 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc @@ -68,7 +68,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QCDEStyle::drawControl(QStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w) static void _init_f_drawControl_c8285 (qt_gsi::GenericMethod *decl) @@ -97,7 +97,7 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QCDEStyle::drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w) static void _init_f_drawPrimitive_c8501 (qt_gsi::GenericMethod *decl) @@ -126,7 +126,7 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, } -// (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const +// int QCDEStyle::pixelMetric(QStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget) static void _init_f_pixelMetric_c6642 (qt_gsi::GenericMethod *decl) @@ -151,7 +151,7 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QPalette QCDEStyle::standardPalette() static void _init_f_standardPalette_c0 (qt_gsi::GenericMethod *decl) @@ -266,10 +266,10 @@ namespace gsi static gsi::Methods methods_QCDEStyle () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QMotifStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); - methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QMotifStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); - methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QMotifStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); - methods += new qt_gsi::GenericMethod ("standardPalette", "@brief Method () const\nThis is a reimplementation of QMotifStyle::standardPalette", true, &_init_f_standardPalette_c0, &_call_f_standardPalette_c0); + methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method void QCDEStyle::drawControl(QStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QMotifStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); + methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method void QCDEStyle::drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QMotifStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); + methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method int QCDEStyle::pixelMetric(QStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget)\nThis is a reimplementation of QMotifStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); + methods += new qt_gsi::GenericMethod ("standardPalette", "@brief Method QPalette QCDEStyle::standardPalette()\nThis is a reimplementation of QMotifStyle::standardPalette", true, &_init_f_standardPalette_c0, &_call_f_standardPalette_c0); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QCDEStyle::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QCDEStyle::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QCDEStyle::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc index f875f4580..51a2e7300 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc @@ -283,7 +283,7 @@ static void _call_f_minimumDate_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QCalendarWidget::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -791,7 +791,7 @@ static void _call_f_showToday_0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QSize QCalendarWidget::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -967,7 +967,7 @@ static gsi::Methods methods_QCalendarWidget () { methods += new qt_gsi::GenericMethod ("isNavigationBarVisible?|:navigationBarVisible", "@brief Method bool QCalendarWidget::isNavigationBarVisible()\n", true, &_init_f_isNavigationBarVisible_c0, &_call_f_isNavigationBarVisible_c0); methods += new qt_gsi::GenericMethod (":maximumDate", "@brief Method QDate QCalendarWidget::maximumDate()\n", true, &_init_f_maximumDate_c0, &_call_f_maximumDate_c0); methods += new qt_gsi::GenericMethod (":minimumDate", "@brief Method QDate QCalendarWidget::minimumDate()\n", true, &_init_f_minimumDate_c0, &_call_f_minimumDate_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QCalendarWidget::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("monthShown", "@brief Method int QCalendarWidget::monthShown()\n", true, &_init_f_monthShown_c0, &_call_f_monthShown_c0); methods += new qt_gsi::GenericMethod (":selectedDate", "@brief Method QDate QCalendarWidget::selectedDate()\n", true, &_init_f_selectedDate_c0, &_call_f_selectedDate_c0); methods += new qt_gsi::GenericMethod (":selectionMode", "@brief Method QCalendarWidget::SelectionMode QCalendarWidget::selectionMode()\n", true, &_init_f_selectionMode_c0, &_call_f_selectionMode_c0); @@ -994,7 +994,7 @@ static gsi::Methods methods_QCalendarWidget () { methods += new qt_gsi::GenericMethod ("showPreviousYear", "@brief Method void QCalendarWidget::showPreviousYear()\n", false, &_init_f_showPreviousYear_0, &_call_f_showPreviousYear_0); methods += new qt_gsi::GenericMethod ("showSelectedDate", "@brief Method void QCalendarWidget::showSelectedDate()\n", false, &_init_f_showSelectedDate_0, &_call_f_showSelectedDate_0); methods += new qt_gsi::GenericMethod ("showToday", "@brief Method void QCalendarWidget::showToday()\n", false, &_init_f_showToday_0, &_call_f_showToday_0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QCalendarWidget::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":verticalHeaderFormat", "@brief Method QCalendarWidget::VerticalHeaderFormat QCalendarWidget::verticalHeaderFormat()\n", true, &_init_f_verticalHeaderFormat_c0, &_call_f_verticalHeaderFormat_c0); methods += new qt_gsi::GenericMethod ("weekdayTextFormat", "@brief Method QTextCharFormat QCalendarWidget::weekdayTextFormat(Qt::DayOfWeek dayOfWeek)\n", true, &_init_f_weekdayTextFormat_c1612, &_call_f_weekdayTextFormat_c1612); methods += new qt_gsi::GenericMethod ("yearShown", "@brief Method int QCalendarWidget::yearShown()\n", true, &_init_f_yearShown_c0, &_call_f_yearShown_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc index 48af4a04c..388d3b3eb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc @@ -169,7 +169,7 @@ static void _call_f_setTristate_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QCheckBox::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -288,7 +288,7 @@ static gsi::Methods methods_QCheckBox () { methods += new qt_gsi::GenericMethod ("isTristate?|:tristate", "@brief Method bool QCheckBox::isTristate()\n", true, &_init_f_isTristate_c0, &_call_f_isTristate_c0); methods += new qt_gsi::GenericMethod ("setCheckState|checkState=", "@brief Method void QCheckBox::setCheckState(Qt::CheckState state)\n", false, &_init_f_setCheckState_1740, &_call_f_setCheckState_1740); methods += new qt_gsi::GenericMethod ("setTristate|tristate=", "@brief Method void QCheckBox::setTristate(bool y)\n", false, &_init_f_setTristate_864, &_call_f_setTristate_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QCheckBox::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("clicked(bool)", "clicked", gsi::arg("checked"), "@brief Signal declaration for QCheckBox::clicked(bool checked)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QCheckBox::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QCheckBox::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc index d16d1441b..4caea208d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc @@ -68,7 +68,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const +// void QCleanlooksStyle::drawComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex *option, QPainter *painter, const QWidget *widget) static void _init_f_drawComplexControl_c9027 (qt_gsi::GenericMethod *decl) @@ -97,7 +97,7 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de } -// (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QCleanlooksStyle::drawControl(QStyle::ControlElement ce, const QStyleOption *option, QPainter *painter, const QWidget *widget) static void _init_f_drawControl_c8285 (qt_gsi::GenericMethod *decl) @@ -126,7 +126,7 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QPainter *, const QRect &, int, const QPixmap &) const +// void QCleanlooksStyle::drawItemPixmap(QPainter *painter, const QRect &rect, int alignment, const QPixmap &pixmap) static void _init_f_drawItemPixmap_c5678 (qt_gsi::GenericMethod *decl) @@ -155,7 +155,7 @@ static void _call_f_drawItemPixmap_c5678 (const qt_gsi::GenericMethod * /*decl*/ } -// (QPainter *, const QRect &, int, const QPalette &, bool, const QString &, QPalette::ColorRole) const +// void QCleanlooksStyle::drawItemText(QPainter *painter, const QRect &rect, int flags, const QPalette &pal, bool enabled, const QString &text, QPalette::ColorRole textRole) static void _init_f_drawItemText_c10604 (qt_gsi::GenericMethod *decl) @@ -193,7 +193,7 @@ static void _call_f_drawItemText_c10604 (const qt_gsi::GenericMethod * /*decl*/, } -// (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QCleanlooksStyle::drawPrimitive(QStyle::PrimitiveElement elem, const QStyleOption *option, QPainter *painter, const QWidget *widget) static void _init_f_drawPrimitive_c8501 (qt_gsi::GenericMethod *decl) @@ -222,7 +222,7 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, } -// (QIcon::Mode, const QPixmap &, const QStyleOption *) const +// QPixmap QCleanlooksStyle::generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap, const QStyleOption *opt) static void _init_f_generatedIconPixmap_c5776 (qt_gsi::GenericMethod *decl) @@ -247,7 +247,7 @@ static void _call_f_generatedIconPixmap_c5776 (const qt_gsi::GenericMethod * /*d } -// (QStyle::ComplexControl, const QStyleOptionComplex *, const QPoint &, const QWidget *) const +// QStyle::SubControl QCleanlooksStyle::hitTestComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, const QPoint &pt, const QWidget *w) static void _init_f_hitTestComplexControl_c9517 (qt_gsi::GenericMethod *decl) @@ -275,7 +275,7 @@ static void _call_f_hitTestComplexControl_c9517 (const qt_gsi::GenericMethod * / } -// (const QRect &, int, const QPixmap &) const +// QRect QCleanlooksStyle::itemPixmapRect(const QRect &r, int flags, const QPixmap &pixmap) static void _init_f_itemPixmapRect_c4360 (qt_gsi::GenericMethod *decl) @@ -300,7 +300,7 @@ static void _call_f_itemPixmapRect_c4360 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const +// int QCleanlooksStyle::pixelMetric(QStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget) static void _init_f_pixelMetric_c6642 (qt_gsi::GenericMethod *decl) @@ -325,7 +325,7 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QWidget *) +// void QCleanlooksStyle::polish(QWidget *widget) static void _init_f_polish_1315 (qt_gsi::GenericMethod *decl) @@ -345,7 +345,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QApplication *) +// void QCleanlooksStyle::polish(QApplication *app) static void _init_f_polish_1843 (qt_gsi::GenericMethod *decl) @@ -365,7 +365,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QPalette &) +// void QCleanlooksStyle::polish(QPalette &pal) static void _init_f_polish_1418 (qt_gsi::GenericMethod *decl) @@ -385,7 +385,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const +// QSize QCleanlooksStyle::sizeFromContents(QStyle::ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget) static void _init_f_sizeFromContents_c8477 (qt_gsi::GenericMethod *decl) @@ -413,7 +413,7 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl } -// () const +// QPalette QCleanlooksStyle::standardPalette() static void _init_f_standardPalette_c0 (qt_gsi::GenericMethod *decl) @@ -428,7 +428,7 @@ static void _call_f_standardPalette_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const +// QPixmap QCleanlooksStyle::standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget) static void _init_f_standardPixmap_c6956 (qt_gsi::GenericMethod *decl) @@ -453,7 +453,7 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const +// int QCleanlooksStyle::styleHint(QStyle::StyleHint hint, const QStyleOption *option, const QWidget *widget, QStyleHintReturn *returnData) static void _init_f_styleHint_c8615 (qt_gsi::GenericMethod *decl) @@ -481,7 +481,7 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QStyle::SubControl, const QWidget *) const +// QRect QCleanlooksStyle::subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QStyle::SubControl sc, const QWidget *widget) static void _init_f_subControlRect_c9798 (qt_gsi::GenericMethod *decl) @@ -509,7 +509,7 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::SubElement, const QStyleOption *, const QWidget *) const +// QRect QCleanlooksStyle::subElementRect(QStyle::SubElement r, const QStyleOption *opt, const QWidget *widget) static void _init_f_subElementRect_c6528 (qt_gsi::GenericMethod *decl) @@ -534,7 +534,7 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ } -// (QWidget *) +// void QCleanlooksStyle::unpolish(QWidget *widget) static void _init_f_unpolish_1315 (qt_gsi::GenericMethod *decl) @@ -554,7 +554,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QApplication *) +// void QCleanlooksStyle::unpolish(QApplication *app) static void _init_f_unpolish_1843 (qt_gsi::GenericMethod *decl) @@ -674,26 +674,26 @@ namespace gsi static gsi::Methods methods_QCleanlooksStyle () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); - methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); - methods += new qt_gsi::GenericMethod ("drawItemPixmap", "@brief Method (QPainter *, const QRect &, int, const QPixmap &) const\nThis is a reimplementation of QStyle::drawItemPixmap", true, &_init_f_drawItemPixmap_c5678, &_call_f_drawItemPixmap_c5678); - methods += new qt_gsi::GenericMethod ("drawItemText", "@brief Method (QPainter *, const QRect &, int, const QPalette &, bool, const QString &, QPalette::ColorRole) const\nThis is a reimplementation of QStyle::drawItemText", true, &_init_f_drawItemText_c10604, &_call_f_drawItemText_c10604); - methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); - methods += new qt_gsi::GenericMethod ("generatedIconPixmap", "@brief Method (QIcon::Mode, const QPixmap &, const QStyleOption *) const\nThis is a reimplementation of QCommonStyle::generatedIconPixmap", true, &_init_f_generatedIconPixmap_c5776, &_call_f_generatedIconPixmap_c5776); - methods += new qt_gsi::GenericMethod ("hitTestComplexControl", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, const QPoint &, const QWidget *) const\nThis is a reimplementation of QCommonStyle::hitTestComplexControl", true, &_init_f_hitTestComplexControl_c9517, &_call_f_hitTestComplexControl_c9517); - methods += new qt_gsi::GenericMethod ("itemPixmapRect", "@brief Method (const QRect &, int, const QPixmap &) const\nThis is a reimplementation of QStyle::itemPixmapRect", true, &_init_f_itemPixmapRect_c4360, &_call_f_itemPixmapRect_c4360); - methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QWidget *)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QApplication *)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QPalette &)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); - methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); - methods += new qt_gsi::GenericMethod ("standardPalette", "@brief Method () const\nThis is a reimplementation of QStyle::standardPalette", true, &_init_f_standardPalette_c0, &_call_f_standardPalette_c0); - methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); - methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const\nThis is a reimplementation of QWindowsStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); - methods += new qt_gsi::GenericMethod ("subControlRect", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QStyle::SubControl, const QWidget *) const\nThis is a reimplementation of QCommonStyle::subControlRect", true, &_init_f_subControlRect_c9798, &_call_f_subControlRect_c9798); - methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method (QStyle::SubElement, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QWidget *)\nThis is a reimplementation of QWindowsStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QApplication *)\nThis is a reimplementation of QWindowsStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); + methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method void QCleanlooksStyle::drawComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex *option, QPainter *painter, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); + methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method void QCleanlooksStyle::drawControl(QStyle::ControlElement ce, const QStyleOption *option, QPainter *painter, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); + methods += new qt_gsi::GenericMethod ("drawItemPixmap", "@brief Method void QCleanlooksStyle::drawItemPixmap(QPainter *painter, const QRect &rect, int alignment, const QPixmap &pixmap)\nThis is a reimplementation of QStyle::drawItemPixmap", true, &_init_f_drawItemPixmap_c5678, &_call_f_drawItemPixmap_c5678); + methods += new qt_gsi::GenericMethod ("drawItemText", "@brief Method void QCleanlooksStyle::drawItemText(QPainter *painter, const QRect &rect, int flags, const QPalette &pal, bool enabled, const QString &text, QPalette::ColorRole textRole)\nThis is a reimplementation of QStyle::drawItemText", true, &_init_f_drawItemText_c10604, &_call_f_drawItemText_c10604); + methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method void QCleanlooksStyle::drawPrimitive(QStyle::PrimitiveElement elem, const QStyleOption *option, QPainter *painter, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); + methods += new qt_gsi::GenericMethod ("generatedIconPixmap", "@brief Method QPixmap QCleanlooksStyle::generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap, const QStyleOption *opt)\nThis is a reimplementation of QCommonStyle::generatedIconPixmap", true, &_init_f_generatedIconPixmap_c5776, &_call_f_generatedIconPixmap_c5776); + methods += new qt_gsi::GenericMethod ("hitTestComplexControl", "@brief Method QStyle::SubControl QCleanlooksStyle::hitTestComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, const QPoint &pt, const QWidget *w)\nThis is a reimplementation of QCommonStyle::hitTestComplexControl", true, &_init_f_hitTestComplexControl_c9517, &_call_f_hitTestComplexControl_c9517); + methods += new qt_gsi::GenericMethod ("itemPixmapRect", "@brief Method QRect QCleanlooksStyle::itemPixmapRect(const QRect &r, int flags, const QPixmap &pixmap)\nThis is a reimplementation of QStyle::itemPixmapRect", true, &_init_f_itemPixmapRect_c4360, &_call_f_itemPixmapRect_c4360); + methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method int QCleanlooksStyle::pixelMetric(QStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QCleanlooksStyle::polish(QWidget *widget)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QCleanlooksStyle::polish(QApplication *app)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QCleanlooksStyle::polish(QPalette &pal)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); + methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method QSize QCleanlooksStyle::sizeFromContents(QStyle::ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); + methods += new qt_gsi::GenericMethod ("standardPalette", "@brief Method QPalette QCleanlooksStyle::standardPalette()\nThis is a reimplementation of QStyle::standardPalette", true, &_init_f_standardPalette_c0, &_call_f_standardPalette_c0); + methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method QPixmap QCleanlooksStyle::standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); + methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method int QCleanlooksStyle::styleHint(QStyle::StyleHint hint, const QStyleOption *option, const QWidget *widget, QStyleHintReturn *returnData)\nThis is a reimplementation of QWindowsStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); + methods += new qt_gsi::GenericMethod ("subControlRect", "@brief Method QRect QCleanlooksStyle::subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QStyle::SubControl sc, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::subControlRect", true, &_init_f_subControlRect_c9798, &_call_f_subControlRect_c9798); + methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method QRect QCleanlooksStyle::subElementRect(QStyle::SubElement r, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QCleanlooksStyle::unpolish(QWidget *widget)\nThis is a reimplementation of QWindowsStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QCleanlooksStyle::unpolish(QApplication *app)\nThis is a reimplementation of QWindowsStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QCleanlooksStyle::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QCleanlooksStyle::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QCleanlooksStyle::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc index ab1136436..db2c41851 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc @@ -113,7 +113,7 @@ static void _call_f_currentColor_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () +// void QColorDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -129,7 +129,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QColorDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -245,7 +245,7 @@ static void _call_f_setOptions_4168 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (bool) +// void QColorDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -540,14 +540,14 @@ static gsi::Methods methods_QColorDialog () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":currentColor", "@brief Method QColor QColorDialog::currentColor()\n", true, &_init_f_currentColor_c0, &_call_f_currentColor_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\n", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QColorDialog::open()\n", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QColorDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod (":options", "@brief Method QFlags QColorDialog::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); methods += new qt_gsi::GenericMethod ("selectedColor", "@brief Method QColor QColorDialog::selectedColor()\n", true, &_init_f_selectedColor_c0, &_call_f_selectedColor_c0); methods += new qt_gsi::GenericMethod ("setCurrentColor|currentColor=", "@brief Method void QColorDialog::setCurrentColor(const QColor &color)\n", false, &_init_f_setCurrentColor_1905, &_call_f_setCurrentColor_1905); methods += new qt_gsi::GenericMethod ("setOption", "@brief Method void QColorDialog::setOption(QColorDialog::ColorDialogOption option, bool on)\n", false, &_init_f_setOption_4228, &_call_f_setOption_4228); methods += new qt_gsi::GenericMethod ("setOptions|options=", "@brief Method void QColorDialog::setOptions(QFlags options)\n", false, &_init_f_setOptions_4168, &_call_f_setOptions_4168); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QColorDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QColorDialog::testOption(QColorDialog::ColorDialogOption option)\n", true, &_init_f_testOption_c3472, &_call_f_testOption_c3472); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QColorDialog::accepted()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("colorSelected(const QColor &)", "colorSelected", gsi::arg("color"), "@brief Signal declaration for QColorDialog::colorSelected(const QColor &color)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc index b6b10e005..ed60a95b2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc @@ -120,7 +120,7 @@ static void _call_f_columnWidths_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPoint &) const +// QModelIndex QColumnView::indexAt(const QPoint &point) static void _init_f_indexAt_c1916 (qt_gsi::GenericMethod *decl) @@ -169,7 +169,7 @@ static void _call_f_resizeGripsVisible_c0 (const qt_gsi::GenericMethod * /*decl* } -// (const QModelIndex &, QAbstractItemView::ScrollHint) +// void QColumnView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) static void _init_f_scrollTo_5576 (qt_gsi::GenericMethod *decl) @@ -192,7 +192,7 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QColumnView::selectAll() static void _init_f_selectAll_0 (qt_gsi::GenericMethod *decl) @@ -228,7 +228,7 @@ static void _call_f_setColumnWidths_2259 (const qt_gsi::GenericMethod * /*decl*/ } -// (QAbstractItemModel *) +// void QColumnView::setModel(QAbstractItemModel *model) static void _init_f_setModel_2419 (qt_gsi::GenericMethod *decl) @@ -288,7 +288,7 @@ static void _call_f_setResizeGripsVisible_864 (const qt_gsi::GenericMethod * /*d } -// (const QModelIndex &) +// void QColumnView::setRootIndex(const QModelIndex &index) static void _init_f_setRootIndex_2395 (qt_gsi::GenericMethod *decl) @@ -308,7 +308,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QItemSelectionModel *) +// void QColumnView::setSelectionModel(QItemSelectionModel *selectionModel) static void _init_f_setSelectionModel_2533 (qt_gsi::GenericMethod *decl) @@ -328,7 +328,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl } -// () const +// QSize QColumnView::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -343,7 +343,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// QRect QColumnView::visualRect(const QModelIndex &index) static void _init_f_visualRect_c2395 (qt_gsi::GenericMethod *decl) @@ -463,19 +463,19 @@ static gsi::Methods methods_QColumnView () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":columnWidths", "@brief Method QList QColumnView::columnWidths()\n", true, &_init_f_columnWidths_c0, &_call_f_columnWidths_c0); - methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method (const QPoint &) const\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); + methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method QModelIndex QColumnView::indexAt(const QPoint &point)\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); methods += new qt_gsi::GenericMethod (":previewWidget", "@brief Method QWidget *QColumnView::previewWidget()\n", true, &_init_f_previewWidget_c0, &_call_f_previewWidget_c0); methods += new qt_gsi::GenericMethod (":resizeGripsVisible", "@brief Method bool QColumnView::resizeGripsVisible()\n", true, &_init_f_resizeGripsVisible_c0, &_call_f_resizeGripsVisible_c0); - methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method (const QModelIndex &, QAbstractItemView::ScrollHint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); - methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::selectAll", false, &_init_f_selectAll_0, &_call_f_selectAll_0); + methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method void QColumnView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); + methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method void QColumnView::selectAll()\nThis is a reimplementation of QAbstractItemView::selectAll", false, &_init_f_selectAll_0, &_call_f_selectAll_0); methods += new qt_gsi::GenericMethod ("setColumnWidths|columnWidths=", "@brief Method void QColumnView::setColumnWidths(const QList &list)\n", false, &_init_f_setColumnWidths_2259, &_call_f_setColumnWidths_2259); - methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); + methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method void QColumnView::setModel(QAbstractItemModel *model)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); methods += new qt_gsi::GenericMethod ("setPreviewWidget|previewWidget=", "@brief Method void QColumnView::setPreviewWidget(QWidget *widget)\n", false, &_init_f_setPreviewWidget_1315, &_call_f_setPreviewWidget_1315); methods += new qt_gsi::GenericMethod ("setResizeGripsVisible|resizeGripsVisible=", "@brief Method void QColumnView::setResizeGripsVisible(bool visible)\n", false, &_init_f_setResizeGripsVisible_864, &_call_f_setResizeGripsVisible_864); - methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); - methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method (QItemSelectionModel *)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); + methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method void QColumnView::setRootIndex(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); + methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method void QColumnView::setSelectionModel(QItemSelectionModel *selectionModel)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QColumnView::sizeHint()\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method QRect QColumnView::visualRect(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); methods += gsi::qt_signal ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QColumnView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("clicked(const QModelIndex &)", "clicked", gsi::arg("index"), "@brief Signal declaration for QColumnView::clicked(const QModelIndex &index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QColumnView::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc index 6167f5a82..2fe4e17bd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc @@ -311,7 +311,7 @@ static void _call_f_duplicatesEnabled_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QEvent *) +// bool QComboBox::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -686,7 +686,7 @@ static void _call_f_minimumContentsLength_c0 (const qt_gsi::GenericMethod * /*de } -// () const +// QSize QComboBox::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1289,7 +1289,7 @@ static void _call_f_sizeAdjustPolicy_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QComboBox::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1446,7 +1446,7 @@ static gsi::Methods methods_QComboBox () { methods += new qt_gsi::GenericMethod (":currentIndex", "@brief Method int QComboBox::currentIndex()\n", true, &_init_f_currentIndex_c0, &_call_f_currentIndex_c0); methods += new qt_gsi::GenericMethod (":currentText", "@brief Method QString QComboBox::currentText()\n", true, &_init_f_currentText_c0, &_call_f_currentText_c0); methods += new qt_gsi::GenericMethod (":duplicatesEnabled", "@brief Method bool QComboBox::duplicatesEnabled()\n", true, &_init_f_duplicatesEnabled_c0, &_call_f_duplicatesEnabled_c0); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QComboBox::event(QEvent *event)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); methods += new qt_gsi::GenericMethod ("findData", "@brief Method int QComboBox::findData(const QVariant &data, int role, QFlags flags)\n", true, &_init_f_findData_c4986, &_call_f_findData_c4986); methods += new qt_gsi::GenericMethod ("findText", "@brief Method int QComboBox::findText(const QString &text, QFlags flags)\n", true, &_init_f_findText_c4233, &_call_f_findText_c4233); methods += new qt_gsi::GenericMethod ("hasFrame|:frame", "@brief Method bool QComboBox::hasFrame()\n", true, &_init_f_hasFrame_c0, &_call_f_hasFrame_c0); @@ -1466,7 +1466,7 @@ static gsi::Methods methods_QComboBox () { methods += new qt_gsi::GenericMethod (":maxCount", "@brief Method int QComboBox::maxCount()\n", true, &_init_f_maxCount_c0, &_call_f_maxCount_c0); methods += new qt_gsi::GenericMethod (":maxVisibleItems", "@brief Method int QComboBox::maxVisibleItems()\n", true, &_init_f_maxVisibleItems_c0, &_call_f_maxVisibleItems_c0); methods += new qt_gsi::GenericMethod (":minimumContentsLength", "@brief Method int QComboBox::minimumContentsLength()\n", true, &_init_f_minimumContentsLength_c0, &_call_f_minimumContentsLength_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QComboBox::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":model", "@brief Method QAbstractItemModel *QComboBox::model()\n", true, &_init_f_model_c0, &_call_f_model_c0); methods += new qt_gsi::GenericMethod (":modelColumn", "@brief Method int QComboBox::modelColumn()\n", true, &_init_f_modelColumn_c0, &_call_f_modelColumn_c0); methods += new qt_gsi::GenericMethod ("removeItem", "@brief Method void QComboBox::removeItem(int index)\n", false, &_init_f_removeItem_767, &_call_f_removeItem_767); @@ -1497,7 +1497,7 @@ static gsi::Methods methods_QComboBox () { methods += new qt_gsi::GenericMethod ("setView|view=", "@brief Method void QComboBox::setView(QAbstractItemView *itemView)\n", false, &_init_f_setView_2333, &_call_f_setView_2333); methods += new qt_gsi::GenericMethod ("showPopup", "@brief Method void QComboBox::showPopup()\n", false, &_init_f_showPopup_0, &_call_f_showPopup_0); methods += new qt_gsi::GenericMethod (":sizeAdjustPolicy", "@brief Method QComboBox::SizeAdjustPolicy QComboBox::sizeAdjustPolicy()\n", true, &_init_f_sizeAdjustPolicy_c0, &_call_f_sizeAdjustPolicy_c0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QComboBox::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":validator", "@brief Method const QValidator *QComboBox::validator()\n", true, &_init_f_validator_c0, &_call_f_validator_c0); methods += new qt_gsi::GenericMethod (":view", "@brief Method QAbstractItemView *QComboBox::view()\n", true, &_init_f_view_c0, &_call_f_view_c0); methods += gsi::qt_signal ("activated(int)", "activated", gsi::arg("index"), "@brief Signal declaration for QComboBox::activated(int index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc index 9b218b7a5..3760719f9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc @@ -68,7 +68,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const +// void QCommonStyle::drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QPainter *p, const QWidget *w) static void _init_f_drawComplexControl_c9027 (qt_gsi::GenericMethod *decl) @@ -97,7 +97,7 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de } -// (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QCommonStyle::drawControl(QStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w) static void _init_f_drawControl_c8285 (qt_gsi::GenericMethod *decl) @@ -126,7 +126,7 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QCommonStyle::drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w) static void _init_f_drawPrimitive_c8501 (qt_gsi::GenericMethod *decl) @@ -155,7 +155,7 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, } -// (QIcon::Mode, const QPixmap &, const QStyleOption *) const +// QPixmap QCommonStyle::generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap, const QStyleOption *opt) static void _init_f_generatedIconPixmap_c5776 (qt_gsi::GenericMethod *decl) @@ -180,7 +180,7 @@ static void _call_f_generatedIconPixmap_c5776 (const qt_gsi::GenericMethod * /*d } -// (QStyle::ComplexControl, const QStyleOptionComplex *, const QPoint &, const QWidget *) const +// QStyle::SubControl QCommonStyle::hitTestComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, const QPoint &pt, const QWidget *w) static void _init_f_hitTestComplexControl_c9517 (qt_gsi::GenericMethod *decl) @@ -208,7 +208,7 @@ static void _call_f_hitTestComplexControl_c9517 (const qt_gsi::GenericMethod * / } -// (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const +// int QCommonStyle::pixelMetric(QStyle::PixelMetric m, const QStyleOption *opt, const QWidget *widget) static void _init_f_pixelMetric_c6642 (qt_gsi::GenericMethod *decl) @@ -233,7 +233,7 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QPalette &) +// void QCommonStyle::polish(QPalette &) static void _init_f_polish_1418 (qt_gsi::GenericMethod *decl) @@ -253,7 +253,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QApplication *) +// void QCommonStyle::polish(QApplication *app) static void _init_f_polish_1843 (qt_gsi::GenericMethod *decl) @@ -273,7 +273,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QWidget *) +// void QCommonStyle::polish(QWidget *widget) static void _init_f_polish_1315 (qt_gsi::GenericMethod *decl) @@ -293,7 +293,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const +// QSize QCommonStyle::sizeFromContents(QStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *widget) static void _init_f_sizeFromContents_c8477 (qt_gsi::GenericMethod *decl) @@ -321,7 +321,7 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl } -// (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const +// QPixmap QCommonStyle::standardPixmap(QStyle::StandardPixmap sp, const QStyleOption *opt, const QWidget *widget) static void _init_f_standardPixmap_c6956 (qt_gsi::GenericMethod *decl) @@ -346,7 +346,7 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const +// int QCommonStyle::styleHint(QStyle::StyleHint sh, const QStyleOption *opt, const QWidget *w, QStyleHintReturn *shret) static void _init_f_styleHint_c8615 (qt_gsi::GenericMethod *decl) @@ -374,7 +374,7 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QStyle::SubControl, const QWidget *) const +// QRect QCommonStyle::subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QStyle::SubControl sc, const QWidget *w) static void _init_f_subControlRect_c9798 (qt_gsi::GenericMethod *decl) @@ -402,7 +402,7 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::SubElement, const QStyleOption *, const QWidget *) const +// QRect QCommonStyle::subElementRect(QStyle::SubElement r, const QStyleOption *opt, const QWidget *widget) static void _init_f_subElementRect_c6528 (qt_gsi::GenericMethod *decl) @@ -427,7 +427,7 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ } -// (QWidget *) +// void QCommonStyle::unpolish(QWidget *widget) static void _init_f_unpolish_1315 (qt_gsi::GenericMethod *decl) @@ -447,7 +447,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QApplication *) +// void QCommonStyle::unpolish(QApplication *application) static void _init_f_unpolish_1843 (qt_gsi::GenericMethod *decl) @@ -567,22 +567,22 @@ namespace gsi static gsi::Methods methods_QCommonStyle () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const\nThis is a reimplementation of QStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); - methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); - methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); - methods += new qt_gsi::GenericMethod ("generatedIconPixmap", "@brief Method (QIcon::Mode, const QPixmap &, const QStyleOption *) const\nThis is a reimplementation of QStyle::generatedIconPixmap", true, &_init_f_generatedIconPixmap_c5776, &_call_f_generatedIconPixmap_c5776); - methods += new qt_gsi::GenericMethod ("hitTestComplexControl", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, const QPoint &, const QWidget *) const\nThis is a reimplementation of QStyle::hitTestComplexControl", true, &_init_f_hitTestComplexControl_c9517, &_call_f_hitTestComplexControl_c9517); - methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QPalette &)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QApplication *)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QWidget *)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); - methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const\nThis is a reimplementation of QStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); - methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); - methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const\nThis is a reimplementation of QStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); - methods += new qt_gsi::GenericMethod ("subControlRect", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QStyle::SubControl, const QWidget *) const\nThis is a reimplementation of QStyle::subControlRect", true, &_init_f_subControlRect_c9798, &_call_f_subControlRect_c9798); - methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method (QStyle::SubElement, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QWidget *)\nThis is a reimplementation of QStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QApplication *)\nThis is a reimplementation of QStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); + methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method void QCommonStyle::drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); + methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method void QCommonStyle::drawControl(QStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); + methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method void QCommonStyle::drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); + methods += new qt_gsi::GenericMethod ("generatedIconPixmap", "@brief Method QPixmap QCommonStyle::generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap, const QStyleOption *opt)\nThis is a reimplementation of QStyle::generatedIconPixmap", true, &_init_f_generatedIconPixmap_c5776, &_call_f_generatedIconPixmap_c5776); + methods += new qt_gsi::GenericMethod ("hitTestComplexControl", "@brief Method QStyle::SubControl QCommonStyle::hitTestComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, const QPoint &pt, const QWidget *w)\nThis is a reimplementation of QStyle::hitTestComplexControl", true, &_init_f_hitTestComplexControl_c9517, &_call_f_hitTestComplexControl_c9517); + methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method int QCommonStyle::pixelMetric(QStyle::PixelMetric m, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QCommonStyle::polish(QPalette &)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QCommonStyle::polish(QApplication *app)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QCommonStyle::polish(QWidget *widget)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); + methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method QSize QCommonStyle::sizeFromContents(QStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *widget)\nThis is a reimplementation of QStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); + methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method QPixmap QCommonStyle::standardPixmap(QStyle::StandardPixmap sp, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); + methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method int QCommonStyle::styleHint(QStyle::StyleHint sh, const QStyleOption *opt, const QWidget *w, QStyleHintReturn *shret)\nThis is a reimplementation of QStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); + methods += new qt_gsi::GenericMethod ("subControlRect", "@brief Method QRect QCommonStyle::subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QStyle::SubControl sc, const QWidget *w)\nThis is a reimplementation of QStyle::subControlRect", true, &_init_f_subControlRect_c9798, &_call_f_subControlRect_c9798); + methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method QRect QCommonStyle::subElementRect(QStyle::SubElement r, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QCommonStyle::unpolish(QWidget *widget)\nThis is a reimplementation of QStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QCommonStyle::unpolish(QApplication *application)\nThis is a reimplementation of QStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QCommonStyle::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QCommonStyle::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QCommonStyle::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc index b82beefbe..951d9b2bb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc @@ -133,7 +133,7 @@ static void _call_f_calendarWidget_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () +// void QDateTimeEdit::clear() static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) @@ -335,7 +335,7 @@ static void _call_f_displayedSections_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QEvent *) +// bool QDateTimeEdit::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -886,7 +886,7 @@ static void _call_f_setTimeSpec_1543 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QDateTimeEdit::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -901,7 +901,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int) +// void QDateTimeEdit::stepBy(int steps) static void _init_f_stepBy_767 (qt_gsi::GenericMethod *decl) @@ -1053,7 +1053,7 @@ static gsi::Methods methods_QDateTimeEdit () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":calendarPopup", "@brief Method bool QDateTimeEdit::calendarPopup()\n", true, &_init_f_calendarPopup_c0, &_call_f_calendarPopup_c0); methods += new qt_gsi::GenericMethod (":calendarWidget", "@brief Method QCalendarWidget *QDateTimeEdit::calendarWidget()\n", true, &_init_f_calendarWidget_c0, &_call_f_calendarWidget_c0); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method ()\nThis is a reimplementation of QAbstractSpinBox::clear", false, &_init_f_clear_0, &_call_f_clear_0); + methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QDateTimeEdit::clear()\nThis is a reimplementation of QAbstractSpinBox::clear", false, &_init_f_clear_0, &_call_f_clear_0); methods += new qt_gsi::GenericMethod ("clearMaximumDate", "@brief Method void QDateTimeEdit::clearMaximumDate()\n", false, &_init_f_clearMaximumDate_0, &_call_f_clearMaximumDate_0); methods += new qt_gsi::GenericMethod ("clearMaximumDateTime", "@brief Method void QDateTimeEdit::clearMaximumDateTime()\n", false, &_init_f_clearMaximumDateTime_0, &_call_f_clearMaximumDateTime_0); methods += new qt_gsi::GenericMethod ("clearMaximumTime", "@brief Method void QDateTimeEdit::clearMaximumTime()\n", false, &_init_f_clearMaximumTime_0, &_call_f_clearMaximumTime_0); @@ -1066,7 +1066,7 @@ static gsi::Methods methods_QDateTimeEdit () { methods += new qt_gsi::GenericMethod (":dateTime", "@brief Method QDateTime QDateTimeEdit::dateTime()\n", true, &_init_f_dateTime_c0, &_call_f_dateTime_c0); methods += new qt_gsi::GenericMethod (":displayFormat", "@brief Method QString QDateTimeEdit::displayFormat()\n", true, &_init_f_displayFormat_c0, &_call_f_displayFormat_c0); methods += new qt_gsi::GenericMethod (":displayedSections", "@brief Method QFlags QDateTimeEdit::displayedSections()\n", true, &_init_f_displayedSections_c0, &_call_f_displayedSections_c0); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QAbstractSpinBox::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QDateTimeEdit::event(QEvent *event)\nThis is a reimplementation of QAbstractSpinBox::event", false, &_init_f_event_1217, &_call_f_event_1217); methods += new qt_gsi::GenericMethod (":maximumDate", "@brief Method QDate QDateTimeEdit::maximumDate()\n", true, &_init_f_maximumDate_c0, &_call_f_maximumDate_c0); methods += new qt_gsi::GenericMethod (":maximumDateTime", "@brief Method QDateTime QDateTimeEdit::maximumDateTime()\n", true, &_init_f_maximumDateTime_c0, &_call_f_maximumDateTime_c0); methods += new qt_gsi::GenericMethod (":maximumTime", "@brief Method QTime QDateTimeEdit::maximumTime()\n", true, &_init_f_maximumTime_c0, &_call_f_maximumTime_c0); @@ -1095,8 +1095,8 @@ static gsi::Methods methods_QDateTimeEdit () { methods += new qt_gsi::GenericMethod ("setTime|time=", "@brief Method void QDateTimeEdit::setTime(const QTime &time)\n", false, &_init_f_setTime_1793, &_call_f_setTime_1793); methods += new qt_gsi::GenericMethod ("setTimeRange", "@brief Method void QDateTimeEdit::setTimeRange(const QTime &min, const QTime &max)\n", false, &_init_f_setTimeRange_3478, &_call_f_setTimeRange_3478); methods += new qt_gsi::GenericMethod ("setTimeSpec|timeSpec=", "@brief Method void QDateTimeEdit::setTimeSpec(Qt::TimeSpec spec)\n", false, &_init_f_setTimeSpec_1543, &_call_f_setTimeSpec_1543); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractSpinBox::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod ("stepBy", "@brief Method (int)\nThis is a reimplementation of QAbstractSpinBox::stepBy", false, &_init_f_stepBy_767, &_call_f_stepBy_767); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QDateTimeEdit::sizeHint()\nThis is a reimplementation of QAbstractSpinBox::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("stepBy", "@brief Method void QDateTimeEdit::stepBy(int steps)\nThis is a reimplementation of QAbstractSpinBox::stepBy", false, &_init_f_stepBy_767, &_call_f_stepBy_767); methods += new qt_gsi::GenericMethod (":time", "@brief Method QTime QDateTimeEdit::time()\n", true, &_init_f_time_c0, &_call_f_time_c0); methods += new qt_gsi::GenericMethod (":timeSpec", "@brief Method Qt::TimeSpec QDateTimeEdit::timeSpec()\n", true, &_init_f_timeSpec_c0, &_call_f_timeSpec_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QDateTimeEdit::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc index 066db1dc7..3aaeb3fd3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc @@ -98,7 +98,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// QSize QDial::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -218,7 +218,7 @@ static void _call_f_setWrapping_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QDial::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -348,14 +348,14 @@ namespace gsi static gsi::Methods methods_QDial () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QDial::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":notchSize", "@brief Method int QDial::notchSize()\n", true, &_init_f_notchSize_c0, &_call_f_notchSize_c0); methods += new qt_gsi::GenericMethod (":notchTarget", "@brief Method double QDial::notchTarget()\n", true, &_init_f_notchTarget_c0, &_call_f_notchTarget_c0); methods += new qt_gsi::GenericMethod (":notchesVisible", "@brief Method bool QDial::notchesVisible()\n", true, &_init_f_notchesVisible_c0, &_call_f_notchesVisible_c0); methods += new qt_gsi::GenericMethod ("setNotchTarget|notchTarget=", "@brief Method void QDial::setNotchTarget(double target)\n", false, &_init_f_setNotchTarget_1071, &_call_f_setNotchTarget_1071); methods += new qt_gsi::GenericMethod ("setNotchesVisible|notchesVisible=", "@brief Method void QDial::setNotchesVisible(bool visible)\n", false, &_init_f_setNotchesVisible_864, &_call_f_setNotchesVisible_864); methods += new qt_gsi::GenericMethod ("setWrapping|wrapping=", "@brief Method void QDial::setWrapping(bool on)\n", false, &_init_f_setWrapping_864, &_call_f_setWrapping_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QDial::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":wrapping", "@brief Method bool QDial::wrapping()\n", true, &_init_f_wrapping_c0, &_call_f_wrapping_c0); methods += gsi::qt_signal ("actionTriggered(int)", "actionTriggered", gsi::arg("action"), "@brief Signal declaration for QDial::actionTriggered(int action)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QDial::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc index 88b60e4e3..68ec91f3c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc @@ -178,7 +178,7 @@ static void _call_f_isSizeGripEnabled_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QSize QDialog::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -355,7 +355,7 @@ static void _call_f_setSizeGripEnabled_864 (const qt_gsi::GenericMethod * /*decl } -// (bool) +// void QDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -395,7 +395,7 @@ static void _call_f_showExtension_864 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QSize QDialog::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -515,7 +515,7 @@ static gsi::Methods methods_QDialog () { methods += new qt_gsi::GenericMethod ("exec", "@brief Method int QDialog::exec()\n", false, &_init_f_exec_0, &_call_f_exec_0); methods += new qt_gsi::GenericMethod (":extension", "@brief Method QWidget *QDialog::extension()\n", true, &_init_f_extension_c0, &_call_f_extension_c0); methods += new qt_gsi::GenericMethod ("isSizeGripEnabled?|:sizeGripEnabled", "@brief Method bool QDialog::isSizeGripEnabled()\n", true, &_init_f_isSizeGripEnabled_c0, &_call_f_isSizeGripEnabled_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QDialog::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("open", "@brief Method void QDialog::open()\n", false, &_init_f_open_0, &_call_f_open_0); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method Qt::Orientation QDialog::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); methods += new qt_gsi::GenericMethod ("reject", "@brief Method void QDialog::reject()\n", false, &_init_f_reject_0, &_call_f_reject_0); @@ -525,9 +525,9 @@ static gsi::Methods methods_QDialog () { methods += new qt_gsi::GenericMethod ("setOrientation|orientation=", "@brief Method void QDialog::setOrientation(Qt::Orientation orientation)\n", false, &_init_f_setOrientation_1913, &_call_f_setOrientation_1913); methods += new qt_gsi::GenericMethod ("setResult|result=", "@brief Method void QDialog::setResult(int r)\n", false, &_init_f_setResult_767, &_call_f_setResult_767); methods += new qt_gsi::GenericMethod ("setSizeGripEnabled|sizeGripEnabled=", "@brief Method void QDialog::setSizeGripEnabled(bool)\n", false, &_init_f_setSizeGripEnabled_864, &_call_f_setSizeGripEnabled_864); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QDialog::setVisible(bool visible)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("showExtension", "@brief Method void QDialog::showExtension(bool)\n", false, &_init_f_showExtension_864, &_call_f_showExtension_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QDialog::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QDialog::accepted()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QDialog::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QDialog::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc index 6e8141a76..763c78a29 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc @@ -61,7 +61,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &) const +// int QDirModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int) const +// QVariant QDirModel::data(const QModelIndex &index, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -102,7 +102,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QDirModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -224,7 +224,7 @@ static void _call_f_filter_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QModelIndex &) const +// QFlags QDirModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -243,7 +243,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QDirModel::hasChildren(const QModelIndex &index) static void _init_f_hasChildren_c2395 (qt_gsi::GenericMethod *decl) @@ -262,7 +262,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, Qt::Orientation, int) const +// QVariant QDirModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -302,7 +302,7 @@ static void _call_f_iconProvider_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (int, int, const QModelIndex &) const +// QModelIndex QDirModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -327,7 +327,7 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QString &, int) const +// QModelIndex QDirModel::index(const QString &path, int column) static void _init_f_index_c2684 (qt_gsi::GenericMethod *decl) @@ -398,7 +398,7 @@ static void _call_f_lazyChildCount_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QList &) const +// QMimeData *QDirModel::mimeData(const QList &indexes) static void _init_f_mimeData_c3010 (qt_gsi::GenericMethod *decl) @@ -417,7 +417,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QStringList QDirModel::mimeTypes() static void _init_f_mimeTypes_c0 (qt_gsi::GenericMethod *decl) @@ -469,7 +469,7 @@ static void _call_f_nameFilters_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// QModelIndex QDirModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -488,7 +488,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QObject *QDirModel::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -576,7 +576,7 @@ static void _call_f_rmdir_2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QModelIndex &) const +// int QDirModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -595,7 +595,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, const QVariant &, int) +// bool QDirModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -760,7 +760,7 @@ static void _call_f_setSorting_2418 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (int, Qt::SortOrder) +// void QDirModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -798,7 +798,7 @@ static void _call_f_sorting_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QFlags QDirModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -913,35 +913,35 @@ namespace gsi static gsi::Methods methods_QDirModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QDirModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QDirModel::data(const QModelIndex &index, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QDirModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); methods += new qt_gsi::GenericMethod ("fileIcon", "@brief Method QIcon QDirModel::fileIcon(const QModelIndex &index)\n", true, &_init_f_fileIcon_c2395, &_call_f_fileIcon_c2395); methods += new qt_gsi::GenericMethod ("fileInfo", "@brief Method QFileInfo QDirModel::fileInfo(const QModelIndex &index)\n", true, &_init_f_fileInfo_c2395, &_call_f_fileInfo_c2395); methods += new qt_gsi::GenericMethod ("fileName", "@brief Method QString QDirModel::fileName(const QModelIndex &index)\n", true, &_init_f_fileName_c2395, &_call_f_fileName_c2395); methods += new qt_gsi::GenericMethod ("filePath", "@brief Method QString QDirModel::filePath(const QModelIndex &index)\n", true, &_init_f_filePath_c2395, &_call_f_filePath_c2395); methods += new qt_gsi::GenericMethod (":filter", "@brief Method QFlags QDirModel::filter()\n", true, &_init_f_filter_c0, &_call_f_filter_c0); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QDirModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method bool QDirModel::hasChildren(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QDirModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); methods += new qt_gsi::GenericMethod (":iconProvider", "@brief Method QFileIconProvider *QDirModel::iconProvider()\n", true, &_init_f_iconProvider_c0, &_call_f_iconProvider_c0); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (const QString &, int) const\n", true, &_init_f_index_c2684, &_call_f_index_c2684); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QDirModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QDirModel::index(const QString &path, int column)\n", true, &_init_f_index_c2684, &_call_f_index_c2684); methods += new qt_gsi::GenericMethod ("isDir?", "@brief Method bool QDirModel::isDir(const QModelIndex &index)\n", true, &_init_f_isDir_c2395, &_call_f_isDir_c2395); methods += new qt_gsi::GenericMethod ("isReadOnly?|:readOnly", "@brief Method bool QDirModel::isReadOnly()\n", true, &_init_f_isReadOnly_c0, &_call_f_isReadOnly_c0); methods += new qt_gsi::GenericMethod (":lazyChildCount", "@brief Method bool QDirModel::lazyChildCount()\n", true, &_init_f_lazyChildCount_c0, &_call_f_lazyChildCount_c0); - methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method (const QList &) const\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); - methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); + methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method QMimeData *QDirModel::mimeData(const QList &indexes)\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); + methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method QStringList QDirModel::mimeTypes()\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); methods += new qt_gsi::GenericMethod ("mkdir", "@brief Method QModelIndex QDirModel::mkdir(const QModelIndex &parent, const QString &name)\n", false, &_init_f_mkdir_4312, &_call_f_mkdir_4312); methods += new qt_gsi::GenericMethod (":nameFilters", "@brief Method QStringList QDirModel::nameFilters()\n", true, &_init_f_nameFilters_c0, &_call_f_nameFilters_c0); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QDirModel::parent(const QModelIndex &child)\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QObject *QDirModel::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); methods += new qt_gsi::GenericMethod ("refresh", "@brief Method void QDirModel::refresh(const QModelIndex &parent)\n", false, &_init_f_refresh_2395, &_call_f_refresh_2395); methods += new qt_gsi::GenericMethod ("remove", "@brief Method bool QDirModel::remove(const QModelIndex &index)\n", false, &_init_f_remove_2395, &_call_f_remove_2395); methods += new qt_gsi::GenericMethod (":resolveSymlinks", "@brief Method bool QDirModel::resolveSymlinks()\n", true, &_init_f_resolveSymlinks_c0, &_call_f_resolveSymlinks_c0); methods += new qt_gsi::GenericMethod ("rmdir", "@brief Method bool QDirModel::rmdir(const QModelIndex &index)\n", false, &_init_f_rmdir_2395, &_call_f_rmdir_2395); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QDirModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QDirModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setFilter|filter=", "@brief Method void QDirModel::setFilter(QFlags filters)\n", false, &_init_f_setFilter_2230, &_call_f_setFilter_2230); methods += new qt_gsi::GenericMethod ("setIconProvider|iconProvider=", "@brief Method void QDirModel::setIconProvider(QFileIconProvider *provider)\n", false, &_init_f_setIconProvider_2323, &_call_f_setIconProvider_2323); methods += new qt_gsi::GenericMethod ("setLazyChildCount|lazyChildCount=", "@brief Method void QDirModel::setLazyChildCount(bool enable)\n", false, &_init_f_setLazyChildCount_864, &_call_f_setLazyChildCount_864); @@ -949,9 +949,9 @@ static gsi::Methods methods_QDirModel () { methods += new qt_gsi::GenericMethod ("setReadOnly|readOnly=", "@brief Method void QDirModel::setReadOnly(bool enable)\n", false, &_init_f_setReadOnly_864, &_call_f_setReadOnly_864); methods += new qt_gsi::GenericMethod ("setResolveSymlinks|resolveSymlinks=", "@brief Method void QDirModel::setResolveSymlinks(bool enable)\n", false, &_init_f_setResolveSymlinks_864, &_call_f_setResolveSymlinks_864); methods += new qt_gsi::GenericMethod ("setSorting|sorting=", "@brief Method void QDirModel::setSorting(QFlags sort)\n", false, &_init_f_setSorting_2418, &_call_f_setSorting_2418); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QDirModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); methods += new qt_gsi::GenericMethod (":sorting", "@brief Method QFlags QDirModel::sorting()\n", true, &_init_f_sorting_c0, &_call_f_sorting_c0); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QDirModel::supportedDropActions()\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += gsi::qt_signal ("dataChanged(const QModelIndex &, const QModelIndex &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), "@brief Signal declaration for QDirModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QDirModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QDirModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc index 72b6aa5cf..b2ed8dde5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc @@ -129,7 +129,7 @@ static void _call_f_decimals_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QString &) const +// void QDoubleSpinBox::fixup(QString &str) static void _init_f_fixup_c1330 (qt_gsi::GenericMethod *decl) @@ -406,7 +406,7 @@ static void _call_f_textFromValue_c1071 (const qt_gsi::GenericMethod * /*decl*/, } -// (QString &, int &) const +// QValidator::State QDoubleSpinBox::validate(QString &input, int &pos) static void _init_f_validate_c2171 (qt_gsi::GenericMethod *decl) @@ -564,7 +564,7 @@ static gsi::Methods methods_QDoubleSpinBox () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":cleanText", "@brief Method QString QDoubleSpinBox::cleanText()\n", true, &_init_f_cleanText_c0, &_call_f_cleanText_c0); methods += new qt_gsi::GenericMethod (":decimals", "@brief Method int QDoubleSpinBox::decimals()\n", true, &_init_f_decimals_c0, &_call_f_decimals_c0); - methods += new qt_gsi::GenericMethod ("fixup", "@brief Method (QString &) const\nThis is a reimplementation of QAbstractSpinBox::fixup", true, &_init_f_fixup_c1330, &_call_f_fixup_c1330); + methods += new qt_gsi::GenericMethod ("fixup", "@brief Method void QDoubleSpinBox::fixup(QString &str)\nThis is a reimplementation of QAbstractSpinBox::fixup", true, &_init_f_fixup_c1330, &_call_f_fixup_c1330); methods += new qt_gsi::GenericMethod (":maximum", "@brief Method double QDoubleSpinBox::maximum()\n", true, &_init_f_maximum_c0, &_call_f_maximum_c0); methods += new qt_gsi::GenericMethod (":minimum", "@brief Method double QDoubleSpinBox::minimum()\n", true, &_init_f_minimum_c0, &_call_f_minimum_c0); methods += new qt_gsi::GenericMethod (":prefix", "@brief Method QString QDoubleSpinBox::prefix()\n", true, &_init_f_prefix_c0, &_call_f_prefix_c0); @@ -579,7 +579,7 @@ static gsi::Methods methods_QDoubleSpinBox () { methods += new qt_gsi::GenericMethod (":singleStep", "@brief Method double QDoubleSpinBox::singleStep()\n", true, &_init_f_singleStep_c0, &_call_f_singleStep_c0); methods += new qt_gsi::GenericMethod (":suffix", "@brief Method QString QDoubleSpinBox::suffix()\n", true, &_init_f_suffix_c0, &_call_f_suffix_c0); methods += new qt_gsi::GenericMethod ("textFromValue", "@brief Method QString QDoubleSpinBox::textFromValue(double val)\n", true, &_init_f_textFromValue_c1071, &_call_f_textFromValue_c1071); - methods += new qt_gsi::GenericMethod ("validate", "@brief Method (QString &, int &) const\nThis is a reimplementation of QAbstractSpinBox::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); + methods += new qt_gsi::GenericMethod ("validate", "@brief Method QValidator::State QDoubleSpinBox::validate(QString &input, int &pos)\nThis is a reimplementation of QAbstractSpinBox::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); methods += new qt_gsi::GenericMethod (":value", "@brief Method double QDoubleSpinBox::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); methods += new qt_gsi::GenericMethod ("valueFromText", "@brief Method double QDoubleSpinBox::valueFromText(const QString &text)\n", true, &_init_f_valueFromText_c2025, &_call_f_valueFromText_c2025); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QDoubleSpinBox::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc index d376d4e04..abd61f896 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc @@ -221,7 +221,7 @@ static void _call_f_top_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QString &, int &) const +// QValidator::State QDoubleValidator::validate(QString &, int &) static void _init_f_validate_c2171 (qt_gsi::GenericMethod *decl) @@ -352,7 +352,7 @@ static gsi::Methods methods_QDoubleValidator () { methods += new qt_gsi::GenericMethod ("setRange", "@brief Method void QDoubleValidator::setRange(double bottom, double top, int decimals)\n", false, &_init_f_setRange_2693, &_call_f_setRange_2693); methods += new qt_gsi::GenericMethod ("setTop|top=", "@brief Method void QDoubleValidator::setTop(double)\n", false, &_init_f_setTop_1071, &_call_f_setTop_1071); methods += new qt_gsi::GenericMethod (":top", "@brief Method double QDoubleValidator::top()\n", true, &_init_f_top_c0, &_call_f_top_c0); - methods += new qt_gsi::GenericMethod ("validate", "@brief Method (QString &, int &) const\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); + methods += new qt_gsi::GenericMethod ("validate", "@brief Method QValidator::State QDoubleValidator::validate(QString &, int &)\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QDoubleValidator::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QDoubleValidator::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QDoubleValidator::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc index ed00b11c8..66b82402e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc @@ -40,7 +40,7 @@ // ----------------------------------------------------------------------- // class QDragMoveEvent -// () +// void QDragMoveEvent::accept() static void _init_f_accept_0 (qt_gsi::GenericMethod *decl) @@ -56,7 +56,7 @@ static void _call_f_accept_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QRect &) +// void QDragMoveEvent::accept(const QRect &r) static void _init_f_accept_1792 (qt_gsi::GenericMethod *decl) @@ -91,7 +91,7 @@ static void _call_f_answerRect_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QDragMoveEvent::ignore() static void _init_f_ignore_0 (qt_gsi::GenericMethod *decl) @@ -107,7 +107,7 @@ static void _call_f_ignore_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QRect &) +// void QDragMoveEvent::ignore(const QRect &r) static void _init_f_ignore_1792 (qt_gsi::GenericMethod *decl) @@ -132,11 +132,11 @@ namespace gsi static gsi::Methods methods_QDragMoveEvent () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("accept", "@brief Method ()\n", false, &_init_f_accept_0, &_call_f_accept_0); - methods += new qt_gsi::GenericMethod ("accept", "@brief Method (const QRect &)\n", false, &_init_f_accept_1792, &_call_f_accept_1792); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QDragMoveEvent::accept()\n", false, &_init_f_accept_0, &_call_f_accept_0); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QDragMoveEvent::accept(const QRect &r)\n", false, &_init_f_accept_1792, &_call_f_accept_1792); methods += new qt_gsi::GenericMethod ("answerRect", "@brief Method QRect QDragMoveEvent::answerRect()\n", true, &_init_f_answerRect_c0, &_call_f_answerRect_c0); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method ()\n", false, &_init_f_ignore_0, &_call_f_ignore_0); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method (const QRect &)\n", false, &_init_f_ignore_1792, &_call_f_ignore_1792); + methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QDragMoveEvent::ignore()\n", false, &_init_f_ignore_0, &_call_f_ignore_0); + methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QDragMoveEvent::ignore(const QRect &r)\n", false, &_init_f_ignore_1792, &_call_f_ignore_1792); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc index b75d3b65e..069b1d33b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc @@ -70,7 +70,7 @@ static void _call_f_dropAction_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const char *) const +// QByteArray QDropEvent::encodedData(const char *) static void _init_f_encodedData_c1731 (qt_gsi::GenericMethod *decl) @@ -89,7 +89,7 @@ static void _call_f_encodedData_c1731 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int) const +// const char *QDropEvent::format(int n) static void _init_f_format_c767 (qt_gsi::GenericMethod *decl) @@ -198,7 +198,7 @@ static void _call_f_proposedAction_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const char *) const +// bool QDropEvent::provides(const char *) static void _init_f_provides_c1731 (qt_gsi::GenericMethod *decl) @@ -304,15 +304,15 @@ static gsi::Methods methods_QDropEvent () { gsi::Methods methods; methods += new qt_gsi::GenericMethod ("acceptProposedAction", "@brief Method void QDropEvent::acceptProposedAction()\n", false, &_init_f_acceptProposedAction_0, &_call_f_acceptProposedAction_0); methods += new qt_gsi::GenericMethod (":dropAction", "@brief Method Qt::DropAction QDropEvent::dropAction()\n", true, &_init_f_dropAction_c0, &_call_f_dropAction_c0); - methods += new qt_gsi::GenericMethod ("encodedData", "@brief Method (const char *) const\nThis is a reimplementation of QMimeSource::encodedData", true, &_init_f_encodedData_c1731, &_call_f_encodedData_c1731); - methods += new qt_gsi::GenericMethod ("format", "@brief Method (int) const\nThis is a reimplementation of QMimeSource::format", true, &_init_f_format_c767, &_call_f_format_c767); + methods += new qt_gsi::GenericMethod ("encodedData", "@brief Method QByteArray QDropEvent::encodedData(const char *)\nThis is a reimplementation of QMimeSource::encodedData", true, &_init_f_encodedData_c1731, &_call_f_encodedData_c1731); + methods += new qt_gsi::GenericMethod ("format", "@brief Method const char *QDropEvent::format(int n)\nThis is a reimplementation of QMimeSource::format", true, &_init_f_format_c767, &_call_f_format_c767); methods += new qt_gsi::GenericMethod ("keyboardModifiers", "@brief Method QFlags QDropEvent::keyboardModifiers()\n", true, &_init_f_keyboardModifiers_c0, &_call_f_keyboardModifiers_c0); methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method const QMimeData *QDropEvent::mimeData()\n", true, &_init_f_mimeData_c0, &_call_f_mimeData_c0); methods += new qt_gsi::GenericMethod ("mouseButtons", "@brief Method QFlags QDropEvent::mouseButtons()\n", true, &_init_f_mouseButtons_c0, &_call_f_mouseButtons_c0); methods += new qt_gsi::GenericMethod ("pos", "@brief Method const QPoint &QDropEvent::pos()\n", true, &_init_f_pos_c0, &_call_f_pos_c0); methods += new qt_gsi::GenericMethod ("possibleActions", "@brief Method QFlags QDropEvent::possibleActions()\n", true, &_init_f_possibleActions_c0, &_call_f_possibleActions_c0); methods += new qt_gsi::GenericMethod ("proposedAction", "@brief Method Qt::DropAction QDropEvent::proposedAction()\n", true, &_init_f_proposedAction_c0, &_call_f_proposedAction_c0); - methods += new qt_gsi::GenericMethod ("provides", "@brief Method (const char *) const\nThis is a reimplementation of QMimeSource::provides", true, &_init_f_provides_c1731, &_call_f_provides_c1731); + methods += new qt_gsi::GenericMethod ("provides", "@brief Method bool QDropEvent::provides(const char *)\nThis is a reimplementation of QMimeSource::provides", true, &_init_f_provides_c1731, &_call_f_provides_c1731); methods += new qt_gsi::GenericMethod ("setDropAction|dropAction=", "@brief Method void QDropEvent::setDropAction(Qt::DropAction action)\n", false, &_init_f_setDropAction_1760, &_call_f_setDropAction_1760); methods += new qt_gsi::GenericMethod ("source", "@brief Method QWidget *QDropEvent::source()\n", true, &_init_f_source_c0, &_call_f_source_c0); methods += new qt_gsi::GenericMethod ("asQEvent", "@brief Delivers the base class interface QEvent of QDropEvent\nClass QDropEvent is derived from multiple base classes. This method delivers the QEvent base class aspect.", false, &_init_f_QDropEvent_as_QEvent, &_call_f_QDropEvent_as_QEvent); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc index 2cdc9efb4..34d2f389d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc @@ -316,7 +316,7 @@ static void _call_f_nameFilters_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QFileDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -332,7 +332,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QFileDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -1005,7 +1005,7 @@ static void _call_f_setViewMode_2409 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (bool) +// void QFileDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -1318,8 +1318,8 @@ static gsi::Methods methods_QFileDialog () { methods += new qt_gsi::GenericMethod (":itemDelegate", "@brief Method QAbstractItemDelegate *QFileDialog::itemDelegate()\n", true, &_init_f_itemDelegate_c0, &_call_f_itemDelegate_c0); methods += new qt_gsi::GenericMethod ("labelText", "@brief Method QString QFileDialog::labelText(QFileDialog::DialogLabel label)\n", true, &_init_f_labelText_c2681, &_call_f_labelText_c2681); methods += new qt_gsi::GenericMethod (":nameFilters", "@brief Method QStringList QFileDialog::nameFilters()\n", true, &_init_f_nameFilters_c0, &_call_f_nameFilters_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\n", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QFileDialog::open()\n", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QFileDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod (":options", "@brief Method QFlags QFileDialog::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); methods += new qt_gsi::GenericMethod (":proxyModel", "@brief Method QAbstractProxyModel *QFileDialog::proxyModel()\n", true, &_init_f_proxyModel_c0, &_call_f_proxyModel_c0); methods += new qt_gsi::GenericMethod (":resolveSymlinks", "@brief Method bool QFileDialog::resolveSymlinks()\n", true, &_init_f_resolveSymlinks_c0, &_call_f_resolveSymlinks_c0); @@ -1354,7 +1354,7 @@ static gsi::Methods methods_QFileDialog () { methods += new qt_gsi::GenericMethod ("setResolveSymlinks|resolveSymlinks=", "@brief Method void QFileDialog::setResolveSymlinks(bool enabled)\n", false, &_init_f_setResolveSymlinks_864, &_call_f_setResolveSymlinks_864); methods += new qt_gsi::GenericMethod ("setSidebarUrls|sidebarUrls=", "@brief Method void QFileDialog::setSidebarUrls(const QList &urls)\n", false, &_init_f_setSidebarUrls_2316, &_call_f_setSidebarUrls_2316); methods += new qt_gsi::GenericMethod ("setViewMode|viewMode=", "@brief Method void QFileDialog::setViewMode(QFileDialog::ViewMode mode)\n", false, &_init_f_setViewMode_2409, &_call_f_setViewMode_2409); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QFileDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod (":sidebarUrls", "@brief Method QList QFileDialog::sidebarUrls()\n", true, &_init_f_sidebarUrls_c0, &_call_f_sidebarUrls_c0); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QFileDialog::testOption(QFileDialog::Option option)\n", true, &_init_f_testOption_c2242, &_call_f_testOption_c2242); methods += new qt_gsi::GenericMethod (":viewMode", "@brief Method QFileDialog::ViewMode QFileDialog::viewMode()\n", true, &_init_f_viewMode_c0, &_call_f_viewMode_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc index 1f450f25e..b34506017 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc @@ -63,7 +63,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &) const +// bool QFileSystemModel::canFetchMore(const QModelIndex &parent) static void _init_f_canFetchMore_c2395 (qt_gsi::GenericMethod *decl) @@ -82,7 +82,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &) const +// int QFileSystemModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int) const +// QVariant QFileSystemModel::data(const QModelIndex &index, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -123,7 +123,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QFileSystemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -154,7 +154,7 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &) +// void QFileSystemModel::fetchMore(const QModelIndex &parent) static void _init_f_fetchMore_2395 (qt_gsi::GenericMethod *decl) @@ -265,7 +265,7 @@ static void _call_f_filter_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QModelIndex &) const +// QFlags QFileSystemModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -284,7 +284,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QFileSystemModel::hasChildren(const QModelIndex &parent) static void _init_f_hasChildren_c2395 (qt_gsi::GenericMethod *decl) @@ -303,7 +303,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, Qt::Orientation, int) const +// QVariant QFileSystemModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -343,7 +343,7 @@ static void _call_f_iconProvider_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (int, int, const QModelIndex &) const +// QModelIndex QFileSystemModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -368,7 +368,7 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QString &, int) const +// QModelIndex QFileSystemModel::index(const QString &path, int column) static void _init_f_index_c2684 (qt_gsi::GenericMethod *decl) @@ -443,7 +443,7 @@ static void _call_f_lastModified_c2395 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QList &) const +// QMimeData *QFileSystemModel::mimeData(const QList &indexes) static void _init_f_mimeData_c3010 (qt_gsi::GenericMethod *decl) @@ -462,7 +462,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QStringList QFileSystemModel::mimeTypes() static void _init_f_mimeTypes_c0 (qt_gsi::GenericMethod *decl) @@ -548,7 +548,7 @@ static void _call_f_nameFilters_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// QModelIndex QFileSystemModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -669,7 +669,7 @@ static void _call_f_rootPath_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// int QFileSystemModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -688,7 +688,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, const QVariant &, int) +// bool QFileSystemModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -871,7 +871,7 @@ static void _call_f_size_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (int, Qt::SortOrder) +// void QFileSystemModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -894,7 +894,7 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QFlags QFileSystemModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -1028,40 +1028,40 @@ namespace gsi static gsi::Methods methods_QFileSystemModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); - methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); + methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method bool QFileSystemModel::canFetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QFileSystemModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QFileSystemModel::data(const QModelIndex &index, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QFileSystemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method void QFileSystemModel::fetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); methods += new qt_gsi::GenericMethod ("fileIcon", "@brief Method QIcon QFileSystemModel::fileIcon(const QModelIndex &index)\n", true, &_init_f_fileIcon_c2395, &_call_f_fileIcon_c2395); methods += new qt_gsi::GenericMethod ("fileInfo", "@brief Method QFileInfo QFileSystemModel::fileInfo(const QModelIndex &index)\n", true, &_init_f_fileInfo_c2395, &_call_f_fileInfo_c2395); methods += new qt_gsi::GenericMethod ("fileName", "@brief Method QString QFileSystemModel::fileName(const QModelIndex &index)\n", true, &_init_f_fileName_c2395, &_call_f_fileName_c2395); methods += new qt_gsi::GenericMethod ("filePath", "@brief Method QString QFileSystemModel::filePath(const QModelIndex &index)\n", true, &_init_f_filePath_c2395, &_call_f_filePath_c2395); methods += new qt_gsi::GenericMethod (":filter", "@brief Method QFlags QFileSystemModel::filter()\n", true, &_init_f_filter_c0, &_call_f_filter_c0); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QFileSystemModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method bool QFileSystemModel::hasChildren(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QFileSystemModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); methods += new qt_gsi::GenericMethod (":iconProvider", "@brief Method QFileIconProvider *QFileSystemModel::iconProvider()\n", true, &_init_f_iconProvider_c0, &_call_f_iconProvider_c0); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (const QString &, int) const\n", true, &_init_f_index_c2684, &_call_f_index_c2684); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QFileSystemModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QFileSystemModel::index(const QString &path, int column)\n", true, &_init_f_index_c2684, &_call_f_index_c2684); methods += new qt_gsi::GenericMethod ("isDir?", "@brief Method bool QFileSystemModel::isDir(const QModelIndex &index)\n", true, &_init_f_isDir_c2395, &_call_f_isDir_c2395); methods += new qt_gsi::GenericMethod ("isReadOnly?|:readOnly", "@brief Method bool QFileSystemModel::isReadOnly()\n", true, &_init_f_isReadOnly_c0, &_call_f_isReadOnly_c0); methods += new qt_gsi::GenericMethod ("lastModified", "@brief Method QDateTime QFileSystemModel::lastModified(const QModelIndex &index)\n", true, &_init_f_lastModified_c2395, &_call_f_lastModified_c2395); - methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method (const QList &) const\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); - methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); + methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method QMimeData *QFileSystemModel::mimeData(const QList &indexes)\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); + methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method QStringList QFileSystemModel::mimeTypes()\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); methods += new qt_gsi::GenericMethod ("mkdir", "@brief Method QModelIndex QFileSystemModel::mkdir(const QModelIndex &parent, const QString &name)\n", false, &_init_f_mkdir_4312, &_call_f_mkdir_4312); methods += new qt_gsi::GenericMethod ("myComputer", "@brief Method QVariant QFileSystemModel::myComputer(int role)\n", true, &_init_f_myComputer_c767, &_call_f_myComputer_c767); methods += new qt_gsi::GenericMethod (":nameFilterDisables", "@brief Method bool QFileSystemModel::nameFilterDisables()\n", true, &_init_f_nameFilterDisables_c0, &_call_f_nameFilterDisables_c0); methods += new qt_gsi::GenericMethod (":nameFilters", "@brief Method QStringList QFileSystemModel::nameFilters()\n", true, &_init_f_nameFilters_c0, &_call_f_nameFilters_c0); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QFileSystemModel::parent(const QModelIndex &child)\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); methods += new qt_gsi::GenericMethod ("permissions", "@brief Method QFlags QFileSystemModel::permissions(const QModelIndex &index)\n", true, &_init_f_permissions_c2395, &_call_f_permissions_c2395); methods += new qt_gsi::GenericMethod ("remove", "@brief Method bool QFileSystemModel::remove(const QModelIndex &index)\n", true, &_init_f_remove_c2395, &_call_f_remove_c2395); methods += new qt_gsi::GenericMethod (":resolveSymlinks", "@brief Method bool QFileSystemModel::resolveSymlinks()\n", true, &_init_f_resolveSymlinks_c0, &_call_f_resolveSymlinks_c0); methods += new qt_gsi::GenericMethod ("rmdir", "@brief Method bool QFileSystemModel::rmdir(const QModelIndex &index)\n", true, &_init_f_rmdir_c2395, &_call_f_rmdir_c2395); methods += new qt_gsi::GenericMethod ("rootDirectory", "@brief Method QDir QFileSystemModel::rootDirectory()\n", true, &_init_f_rootDirectory_c0, &_call_f_rootDirectory_c0); methods += new qt_gsi::GenericMethod ("rootPath", "@brief Method QString QFileSystemModel::rootPath()\n", true, &_init_f_rootPath_c0, &_call_f_rootPath_c0); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QFileSystemModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QFileSystemModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setFilter|filter=", "@brief Method void QFileSystemModel::setFilter(QFlags filters)\n", false, &_init_f_setFilter_2230, &_call_f_setFilter_2230); methods += new qt_gsi::GenericMethod ("setIconProvider|iconProvider=", "@brief Method void QFileSystemModel::setIconProvider(QFileIconProvider *provider)\n", false, &_init_f_setIconProvider_2323, &_call_f_setIconProvider_2323); methods += new qt_gsi::GenericMethod ("setNameFilterDisables|nameFilterDisables=", "@brief Method void QFileSystemModel::setNameFilterDisables(bool enable)\n", false, &_init_f_setNameFilterDisables_864, &_call_f_setNameFilterDisables_864); @@ -1070,8 +1070,8 @@ static gsi::Methods methods_QFileSystemModel () { methods += new qt_gsi::GenericMethod ("setResolveSymlinks|resolveSymlinks=", "@brief Method void QFileSystemModel::setResolveSymlinks(bool enable)\n", false, &_init_f_setResolveSymlinks_864, &_call_f_setResolveSymlinks_864); methods += new qt_gsi::GenericMethod ("setRootPath", "@brief Method QModelIndex QFileSystemModel::setRootPath(const QString &path)\n", false, &_init_f_setRootPath_2025, &_call_f_setRootPath_2025); methods += new qt_gsi::GenericMethod ("size", "@brief Method qint64 QFileSystemModel::size(const QModelIndex &index)\n", true, &_init_f_size_c2395, &_call_f_size_c2395); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QFileSystemModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QFileSystemModel::supportedDropActions()\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += new qt_gsi::GenericMethod ("type", "@brief Method QString QFileSystemModel::type(const QModelIndex &index)\n", true, &_init_f_type_c2395, &_call_f_type_c2395); methods += gsi::qt_signal ("dataChanged(const QModelIndex &, const QModelIndex &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), "@brief Signal declaration for QFileSystemModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QFileSystemModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc index 28bcf6793..0c3dda7de 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc @@ -195,7 +195,7 @@ static void _call_f_setWritingSystem_3214 (const qt_gsi::GenericMethod * /*decl* } -// () const +// QSize QFontComboBox::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -330,7 +330,7 @@ static gsi::Methods methods_QFontComboBox () { methods += new qt_gsi::GenericMethod ("setCurrentFont|currentFont=", "@brief Method void QFontComboBox::setCurrentFont(const QFont &f)\n", false, &_init_f_setCurrentFont_1801, &_call_f_setCurrentFont_1801); methods += new qt_gsi::GenericMethod ("setFontFilters|fontFilters=", "@brief Method void QFontComboBox::setFontFilters(QFlags filters)\n", false, &_init_f_setFontFilters_3550, &_call_f_setFontFilters_3550); methods += new qt_gsi::GenericMethod ("setWritingSystem|writingSystem=", "@brief Method void QFontComboBox::setWritingSystem(QFontDatabase::WritingSystem)\n", false, &_init_f_setWritingSystem_3214, &_call_f_setWritingSystem_3214); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QComboBox::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QFontComboBox::sizeHint()\nThis is a reimplementation of QComboBox::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":writingSystem", "@brief Method QFontDatabase::WritingSystem QFontComboBox::writingSystem()\n", true, &_init_f_writingSystem_c0, &_call_f_writingSystem_c0); methods += gsi::qt_signal ("activated(int)", "activated", gsi::arg("index"), "@brief Signal declaration for QFontComboBox::activated(int index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("activated(const QString &)", "activated_qs", gsi::arg("arg1"), "@brief Signal declaration for QFontComboBox::activated(const QString &)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc index aaf87f747..7ea03db36 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc @@ -112,7 +112,7 @@ static void _call_f_currentFont_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QFontDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -128,7 +128,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QFontDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -244,7 +244,7 @@ static void _call_f_setOptions_3960 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (bool) +// void QFontDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -490,14 +490,14 @@ static gsi::Methods methods_QFontDialog () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":currentFont", "@brief Method QFont QFontDialog::currentFont()\n", true, &_init_f_currentFont_c0, &_call_f_currentFont_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\n", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QFontDialog::open()\n", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QFontDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod (":options", "@brief Method QFlags QFontDialog::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); methods += new qt_gsi::GenericMethod ("selectedFont", "@brief Method QFont QFontDialog::selectedFont()\n", true, &_init_f_selectedFont_c0, &_call_f_selectedFont_c0); methods += new qt_gsi::GenericMethod ("setCurrentFont|currentFont=", "@brief Method void QFontDialog::setCurrentFont(const QFont &font)\n", false, &_init_f_setCurrentFont_1801, &_call_f_setCurrentFont_1801); methods += new qt_gsi::GenericMethod ("setOption", "@brief Method void QFontDialog::setOption(QFontDialog::FontDialogOption option, bool on)\n", false, &_init_f_setOption_4020, &_call_f_setOption_4020); methods += new qt_gsi::GenericMethod ("setOptions|options=", "@brief Method void QFontDialog::setOptions(QFlags options)\n", false, &_init_f_setOptions_3960, &_call_f_setOptions_3960); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QFontDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QFontDialog::testOption(QFontDialog::FontDialogOption option)\n", true, &_init_f_testOption_c3264, &_call_f_testOption_c3264); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QFontDialog::accepted()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("currentFontChanged(const QFont &)", "currentFontChanged", gsi::arg("font"), "@brief Signal declaration for QFontDialog::currentFontChanged(const QFont &font)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc index ad5f00822..97397304c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc @@ -61,7 +61,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QLayoutItem *) +// void QFormLayout::addItem(QLayoutItem *item) static void _init_f_addItem_1740 (qt_gsi::GenericMethod *decl) @@ -213,7 +213,7 @@ static void _call_f_addRow_1341 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QFormLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -228,7 +228,7 @@ static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QFlags QFormLayout::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -351,7 +351,7 @@ static void _call_f_getWidgetPosition_c4714 (const qt_gsi::GenericMethod * /*dec } -// () const +// bool QFormLayout::hasHeightForWidth() static void _init_f_hasHeightForWidth_c0 (qt_gsi::GenericMethod *decl) @@ -366,7 +366,7 @@ static void _call_f_hasHeightForWidth_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QFormLayout::heightForWidth(int width) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -550,7 +550,7 @@ static void _call_f_insertRow_2000 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QFormLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -566,7 +566,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, QFormLayout::ItemRole) const +// QLayoutItem *QFormLayout::itemAt(int row, QFormLayout::ItemRole role) static void _init_f_itemAt_c3135 (qt_gsi::GenericMethod *decl) @@ -588,7 +588,7 @@ static void _call_f_itemAt_c3135 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QLayoutItem *QFormLayout::itemAt(int index) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -660,7 +660,7 @@ static void _call_f_labelForField_c1341 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QFormLayout::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -745,7 +745,7 @@ static void _call_f_setFormAlignment_2750 (const qt_gsi::GenericMethod * /*decl* } -// (const QRect &) +// void QFormLayout::setGeometry(const QRect &rect) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -877,7 +877,7 @@ static void _call_f_setRowWrapPolicy_3021 (const qt_gsi::GenericMethod * /*decl* } -// (int) +// void QFormLayout::setSpacing(int) static void _init_f_setSpacing_767 (qt_gsi::GenericMethod *decl) @@ -943,7 +943,7 @@ static void _call_f_setWidget_4342 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QFormLayout::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -958,7 +958,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QFormLayout::spacing() static void _init_f_spacing_c0 (qt_gsi::GenericMethod *decl) @@ -973,7 +973,7 @@ static void _call_f_spacing_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (int) +// QLayoutItem *QFormLayout::takeAt(int index) static void _init_f_takeAt_767 (qt_gsi::GenericMethod *decl) @@ -1107,22 +1107,22 @@ namespace gsi static gsi::Methods methods_QFormLayout () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("addItem", "@brief Method (QLayoutItem *)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); + methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QFormLayout::addItem(QLayoutItem *item)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(QWidget *label, QWidget *field)\n", false, &_init_f_addRow_2522, &_call_f_addRow_2522); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(QWidget *label, QLayout *field)\n", false, &_init_f_addRow_2548, &_call_f_addRow_2548); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(const QString &labelText, QWidget *field)\n", false, &_init_f_addRow_3232, &_call_f_addRow_3232); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(const QString &labelText, QLayout *field)\n", false, &_init_f_addRow_3258, &_call_f_addRow_3258); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(QWidget *widget)\n", false, &_init_f_addRow_1315, &_call_f_addRow_1315); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(QLayout *layout)\n", false, &_init_f_addRow_1341, &_call_f_addRow_1341); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QFormLayout::count()\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QFormLayout::expandingDirections()\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); methods += new qt_gsi::GenericMethod (":fieldGrowthPolicy", "@brief Method QFormLayout::FieldGrowthPolicy QFormLayout::fieldGrowthPolicy()\n", true, &_init_f_fieldGrowthPolicy_c0, &_call_f_fieldGrowthPolicy_c0); methods += new qt_gsi::GenericMethod (":formAlignment", "@brief Method QFlags QFormLayout::formAlignment()\n", true, &_init_f_formAlignment_c0, &_call_f_formAlignment_c0); methods += new qt_gsi::GenericMethod ("getItemPosition", "@brief Method void QFormLayout::getItemPosition(int index, int *rowPtr, QFormLayout::ItemRole *rolePtr)\n", true, &_init_f_getItemPosition_c4166, &_call_f_getItemPosition_c4166); methods += new qt_gsi::GenericMethod ("getLayoutPosition", "@brief Method void QFormLayout::getLayoutPosition(QLayout *layout, int *rowPtr, QFormLayout::ItemRole *rolePtr)\n", true, &_init_f_getLayoutPosition_c4740, &_call_f_getLayoutPosition_c4740); methods += new qt_gsi::GenericMethod ("getWidgetPosition", "@brief Method void QFormLayout::getWidgetPosition(QWidget *widget, int *rowPtr, QFormLayout::ItemRole *rolePtr)\n", true, &_init_f_getWidgetPosition_c4714, &_call_f_getWidgetPosition_c4714); - methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method () const\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QFormLayout::hasHeightForWidth()\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QFormLayout::heightForWidth(int width)\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod (":horizontalSpacing", "@brief Method int QFormLayout::horizontalSpacing()\n", true, &_init_f_horizontalSpacing_c0, &_call_f_horizontalSpacing_c0); methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QFormLayout::insertRow(int row, QWidget *label, QWidget *field)\n", false, &_init_f_insertRow_3181, &_call_f_insertRow_3181); methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QFormLayout::insertRow(int row, QWidget *label, QLayout *field)\n", false, &_init_f_insertRow_3207, &_call_f_insertRow_3207); @@ -1130,29 +1130,29 @@ static gsi::Methods methods_QFormLayout () { methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QFormLayout::insertRow(int row, const QString &labelText, QLayout *field)\n", false, &_init_f_insertRow_3917, &_call_f_insertRow_3917); methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QFormLayout::insertRow(int row, QWidget *widget)\n", false, &_init_f_insertRow_1974, &_call_f_insertRow_1974); methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QFormLayout::insertRow(int row, QLayout *layout)\n", false, &_init_f_insertRow_2000, &_call_f_insertRow_2000); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int, QFormLayout::ItemRole) const\n", true, &_init_f_itemAt_c3135, &_call_f_itemAt_c3135); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QFormLayout::invalidate()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QFormLayout::itemAt(int row, QFormLayout::ItemRole role)\n", true, &_init_f_itemAt_c3135, &_call_f_itemAt_c3135); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QFormLayout::itemAt(int index)\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); methods += new qt_gsi::GenericMethod (":labelAlignment", "@brief Method QFlags QFormLayout::labelAlignment()\n", true, &_init_f_labelAlignment_c0, &_call_f_labelAlignment_c0); methods += new qt_gsi::GenericMethod ("labelForField", "@brief Method QWidget *QFormLayout::labelForField(QWidget *field)\n", true, &_init_f_labelForField_c1315, &_call_f_labelForField_c1315); methods += new qt_gsi::GenericMethod ("labelForField", "@brief Method QWidget *QFormLayout::labelForField(QLayout *field)\n", true, &_init_f_labelForField_c1341, &_call_f_labelForField_c1341); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QFormLayout::minimumSize()\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QFormLayout::rowCount()\n", true, &_init_f_rowCount_c0, &_call_f_rowCount_c0); methods += new qt_gsi::GenericMethod (":rowWrapPolicy", "@brief Method QFormLayout::RowWrapPolicy QFormLayout::rowWrapPolicy()\n", true, &_init_f_rowWrapPolicy_c0, &_call_f_rowWrapPolicy_c0); methods += new qt_gsi::GenericMethod ("setFieldGrowthPolicy|fieldGrowthPolicy=", "@brief Method void QFormLayout::setFieldGrowthPolicy(QFormLayout::FieldGrowthPolicy policy)\n", false, &_init_f_setFieldGrowthPolicy_3418, &_call_f_setFieldGrowthPolicy_3418); methods += new qt_gsi::GenericMethod ("setFormAlignment|formAlignment=", "@brief Method void QFormLayout::setFormAlignment(QFlags alignment)\n", false, &_init_f_setFormAlignment_2750, &_call_f_setFormAlignment_2750); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QFormLayout::setGeometry(const QRect &rect)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); methods += new qt_gsi::GenericMethod ("setHorizontalSpacing|horizontalSpacing=", "@brief Method void QFormLayout::setHorizontalSpacing(int spacing)\n", false, &_init_f_setHorizontalSpacing_767, &_call_f_setHorizontalSpacing_767); methods += new qt_gsi::GenericMethod ("setItem", "@brief Method void QFormLayout::setItem(int row, QFormLayout::ItemRole role, QLayoutItem *item)\n", false, &_init_f_setItem_4767, &_call_f_setItem_4767); methods += new qt_gsi::GenericMethod ("setLabelAlignment|labelAlignment=", "@brief Method void QFormLayout::setLabelAlignment(QFlags alignment)\n", false, &_init_f_setLabelAlignment_2750, &_call_f_setLabelAlignment_2750); methods += new qt_gsi::GenericMethod ("setLayout", "@brief Method void QFormLayout::setLayout(int row, QFormLayout::ItemRole role, QLayout *layout)\n", false, &_init_f_setLayout_4368, &_call_f_setLayout_4368); methods += new qt_gsi::GenericMethod ("setRowWrapPolicy|rowWrapPolicy=", "@brief Method void QFormLayout::setRowWrapPolicy(QFormLayout::RowWrapPolicy policy)\n", false, &_init_f_setRowWrapPolicy_3021, &_call_f_setRowWrapPolicy_3021); - methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method (int)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); + methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QFormLayout::setSpacing(int)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); methods += new qt_gsi::GenericMethod ("setVerticalSpacing|verticalSpacing=", "@brief Method void QFormLayout::setVerticalSpacing(int spacing)\n", false, &_init_f_setVerticalSpacing_767, &_call_f_setVerticalSpacing_767); methods += new qt_gsi::GenericMethod ("setWidget", "@brief Method void QFormLayout::setWidget(int row, QFormLayout::ItemRole role, QWidget *widget)\n", false, &_init_f_setWidget_4342, &_call_f_setWidget_4342); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod (":spacing", "@brief Method () const\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); - methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method (int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QFormLayout::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":spacing", "@brief Method int QFormLayout::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); + methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method QLayoutItem *QFormLayout::takeAt(int index)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); methods += new qt_gsi::GenericMethod (":verticalSpacing", "@brief Method int QFormLayout::verticalSpacing()\n", true, &_init_f_verticalSpacing_c0, &_call_f_verticalSpacing_c0); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QFormLayout::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QFormLayout::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc index f5ae5ac42..1a5b691a2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc @@ -322,7 +322,7 @@ static void _call_f_setMidLineWidth_767 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QFrame::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -450,7 +450,7 @@ static gsi::Methods methods_QFrame () { methods += new qt_gsi::GenericMethod ("setFrameStyle|frameStyle=", "@brief Method void QFrame::setFrameStyle(int)\n", false, &_init_f_setFrameStyle_767, &_call_f_setFrameStyle_767); methods += new qt_gsi::GenericMethod ("setLineWidth|lineWidth=", "@brief Method void QFrame::setLineWidth(int)\n", false, &_init_f_setLineWidth_767, &_call_f_setLineWidth_767); methods += new qt_gsi::GenericMethod ("setMidLineWidth|midLineWidth=", "@brief Method void QFrame::setMidLineWidth(int)\n", false, &_init_f_setMidLineWidth_767, &_call_f_setMidLineWidth_767); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QFrame::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QFrame::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QFrame::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QFrame::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGestureEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGestureEvent.cc index 04eae0ff6..5aa446c6c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGestureEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGestureEvent.cc @@ -39,7 +39,7 @@ // ----------------------------------------------------------------------- // class QGestureEvent -// () +// void QGestureEvent::accept() static void _init_f_accept_0 (qt_gsi::GenericMethod *decl) @@ -55,7 +55,7 @@ static void _call_f_accept_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QGesture *) +// void QGestureEvent::accept(QGesture *) static void _init_f_accept_1438 (qt_gsi::GenericMethod *decl) @@ -75,7 +75,7 @@ static void _call_f_accept_1438 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (Qt::GestureType) +// void QGestureEvent::accept(Qt::GestureType) static void _init_f_accept_1902 (qt_gsi::GenericMethod *decl) @@ -159,7 +159,7 @@ static void _call_f_gestures_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// void QGestureEvent::ignore() static void _init_f_ignore_0 (qt_gsi::GenericMethod *decl) @@ -175,7 +175,7 @@ static void _call_f_ignore_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QGesture *) +// void QGestureEvent::ignore(QGesture *) static void _init_f_ignore_1438 (qt_gsi::GenericMethod *decl) @@ -195,7 +195,7 @@ static void _call_f_ignore_1438 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (Qt::GestureType) +// void QGestureEvent::ignore(Qt::GestureType) static void _init_f_ignore_1902 (qt_gsi::GenericMethod *decl) @@ -215,7 +215,7 @@ static void _call_f_ignore_1902 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// bool QGestureEvent::isAccepted() static void _init_f_isAccepted_c0 (qt_gsi::GenericMethod *decl) @@ -230,7 +230,7 @@ static void _call_f_isAccepted_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QGesture *) const +// bool QGestureEvent::isAccepted(QGesture *) static void _init_f_isAccepted_c1438 (qt_gsi::GenericMethod *decl) @@ -249,7 +249,7 @@ static void _call_f_isAccepted_c1438 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (Qt::GestureType) const +// bool QGestureEvent::isAccepted(Qt::GestureType) static void _init_f_isAccepted_c1902 (qt_gsi::GenericMethod *decl) @@ -287,7 +287,7 @@ static void _call_f_mapToGraphicsScene_c1986 (const qt_gsi::GenericMethod * /*de } -// (bool) +// void QGestureEvent::setAccepted(bool accepted) static void _init_f_setAccepted_864 (qt_gsi::GenericMethod *decl) @@ -307,7 +307,7 @@ static void _call_f_setAccepted_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QGesture *, bool) +// void QGestureEvent::setAccepted(QGesture *, bool) static void _init_f_setAccepted_2194 (qt_gsi::GenericMethod *decl) @@ -330,7 +330,7 @@ static void _call_f_setAccepted_2194 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (Qt::GestureType, bool) +// void QGestureEvent::setAccepted(Qt::GestureType, bool) static void _init_f_setAccepted_2658 (qt_gsi::GenericMethod *decl) @@ -393,23 +393,23 @@ namespace gsi static gsi::Methods methods_QGestureEvent () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("accept", "@brief Method ()\n", false, &_init_f_accept_0, &_call_f_accept_0); - methods += new qt_gsi::GenericMethod ("accept", "@brief Method (QGesture *)\n", false, &_init_f_accept_1438, &_call_f_accept_1438); - methods += new qt_gsi::GenericMethod ("accept", "@brief Method (Qt::GestureType)\n", false, &_init_f_accept_1902, &_call_f_accept_1902); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QGestureEvent::accept()\n", false, &_init_f_accept_0, &_call_f_accept_0); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QGestureEvent::accept(QGesture *)\n", false, &_init_f_accept_1438, &_call_f_accept_1438); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QGestureEvent::accept(Qt::GestureType)\n", false, &_init_f_accept_1902, &_call_f_accept_1902); methods += new qt_gsi::GenericMethod ("activeGestures", "@brief Method QList QGestureEvent::activeGestures()\n", true, &_init_f_activeGestures_c0, &_call_f_activeGestures_c0); methods += new qt_gsi::GenericMethod ("canceledGestures", "@brief Method QList QGestureEvent::canceledGestures()\n", true, &_init_f_canceledGestures_c0, &_call_f_canceledGestures_c0); methods += new qt_gsi::GenericMethod ("gesture", "@brief Method QGesture *QGestureEvent::gesture(Qt::GestureType type)\n", true, &_init_f_gesture_c1902, &_call_f_gesture_c1902); methods += new qt_gsi::GenericMethod ("gestures", "@brief Method QList QGestureEvent::gestures()\n", true, &_init_f_gestures_c0, &_call_f_gestures_c0); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method ()\n", false, &_init_f_ignore_0, &_call_f_ignore_0); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method (QGesture *)\n", false, &_init_f_ignore_1438, &_call_f_ignore_1438); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method (Qt::GestureType)\n", false, &_init_f_ignore_1902, &_call_f_ignore_1902); - methods += new qt_gsi::GenericMethod ("isAccepted?|:accepted", "@brief Method () const\n", true, &_init_f_isAccepted_c0, &_call_f_isAccepted_c0); - methods += new qt_gsi::GenericMethod ("isAccepted?", "@brief Method (QGesture *) const\n", true, &_init_f_isAccepted_c1438, &_call_f_isAccepted_c1438); - methods += new qt_gsi::GenericMethod ("isAccepted?", "@brief Method (Qt::GestureType) const\n", true, &_init_f_isAccepted_c1902, &_call_f_isAccepted_c1902); + methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QGestureEvent::ignore()\n", false, &_init_f_ignore_0, &_call_f_ignore_0); + methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QGestureEvent::ignore(QGesture *)\n", false, &_init_f_ignore_1438, &_call_f_ignore_1438); + methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QGestureEvent::ignore(Qt::GestureType)\n", false, &_init_f_ignore_1902, &_call_f_ignore_1902); + methods += new qt_gsi::GenericMethod ("isAccepted?|:accepted", "@brief Method bool QGestureEvent::isAccepted()\n", true, &_init_f_isAccepted_c0, &_call_f_isAccepted_c0); + methods += new qt_gsi::GenericMethod ("isAccepted?", "@brief Method bool QGestureEvent::isAccepted(QGesture *)\n", true, &_init_f_isAccepted_c1438, &_call_f_isAccepted_c1438); + methods += new qt_gsi::GenericMethod ("isAccepted?", "@brief Method bool QGestureEvent::isAccepted(Qt::GestureType)\n", true, &_init_f_isAccepted_c1902, &_call_f_isAccepted_c1902); methods += new qt_gsi::GenericMethod ("mapToGraphicsScene", "@brief Method QPointF QGestureEvent::mapToGraphicsScene(const QPointF &gesturePoint)\n", true, &_init_f_mapToGraphicsScene_c1986, &_call_f_mapToGraphicsScene_c1986); - methods += new qt_gsi::GenericMethod ("setAccepted|accepted=", "@brief Method (bool)\n", false, &_init_f_setAccepted_864, &_call_f_setAccepted_864); - methods += new qt_gsi::GenericMethod ("setAccepted", "@brief Method (QGesture *, bool)\n", false, &_init_f_setAccepted_2194, &_call_f_setAccepted_2194); - methods += new qt_gsi::GenericMethod ("setAccepted", "@brief Method (Qt::GestureType, bool)\n", false, &_init_f_setAccepted_2658, &_call_f_setAccepted_2658); + methods += new qt_gsi::GenericMethod ("setAccepted|accepted=", "@brief Method void QGestureEvent::setAccepted(bool accepted)\n", false, &_init_f_setAccepted_864, &_call_f_setAccepted_864); + methods += new qt_gsi::GenericMethod ("setAccepted", "@brief Method void QGestureEvent::setAccepted(QGesture *, bool)\n", false, &_init_f_setAccepted_2194, &_call_f_setAccepted_2194); + methods += new qt_gsi::GenericMethod ("setAccepted", "@brief Method void QGestureEvent::setAccepted(Qt::GestureType, bool)\n", false, &_init_f_setAccepted_2658, &_call_f_setAccepted_2658); methods += new qt_gsi::GenericMethod ("setWidget|widget=", "@brief Method void QGestureEvent::setWidget(QWidget *widget)\n", false, &_init_f_setWidget_1315, &_call_f_setWidget_1315); methods += new qt_gsi::GenericMethod (":widget", "@brief Method QWidget *QGestureEvent::widget()\n", true, &_init_f_widget_c0, &_call_f_widget_c0); return methods; diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc index 0b185ab1c..e944bf019 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc @@ -154,7 +154,7 @@ static void _call_f_anchor_8538 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QGraphicsAnchorLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -184,7 +184,7 @@ static void _call_f_horizontalSpacing_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// () +// void QGraphicsAnchorLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -200,7 +200,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QGraphicsLayoutItem *QGraphicsAnchorLayout::itemAt(int index) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -219,7 +219,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int) +// void QGraphicsAnchorLayout::removeAt(int index) static void _init_f_removeAt_767 (qt_gsi::GenericMethod *decl) @@ -239,7 +239,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QRectF &) +// void QGraphicsAnchorLayout::setGeometry(const QRectF &rect) static void _init_f_setGeometry_1862 (qt_gsi::GenericMethod *decl) @@ -343,12 +343,12 @@ static gsi::Methods methods_QGraphicsAnchorLayout () { methods += new qt_gsi::GenericMethod ("addAnchors", "@brief Method void QGraphicsAnchorLayout::addAnchors(QGraphicsLayoutItem *firstItem, QGraphicsLayoutItem *secondItem, QFlags orientations)\n", false, &_init_f_addAnchors_7507, &_call_f_addAnchors_7507); methods += new qt_gsi::GenericMethod ("addCornerAnchors", "@brief Method void QGraphicsAnchorLayout::addCornerAnchors(QGraphicsLayoutItem *firstItem, Qt::Corner firstCorner, QGraphicsLayoutItem *secondItem, Qt::Corner secondCorner)\n", false, &_init_f_addCornerAnchors_7522, &_call_f_addCornerAnchors_7522); methods += new qt_gsi::GenericMethod ("anchor", "@brief Method QGraphicsAnchor *QGraphicsAnchorLayout::anchor(QGraphicsLayoutItem *firstItem, Qt::AnchorPoint firstEdge, QGraphicsLayoutItem *secondItem, Qt::AnchorPoint secondEdge)\n", false, &_init_f_anchor_8538, &_call_f_anchor_8538); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QGraphicsAnchorLayout::count()\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":horizontalSpacing", "@brief Method double QGraphicsAnchorLayout::horizontalSpacing()\n", true, &_init_f_horizontalSpacing_c0, &_call_f_horizontalSpacing_c0); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); - methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method (int)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRectF &)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QGraphicsAnchorLayout::invalidate()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QGraphicsLayoutItem *QGraphicsAnchorLayout::itemAt(int index)\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method void QGraphicsAnchorLayout::removeAt(int index)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGraphicsAnchorLayout::setGeometry(const QRectF &rect)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); methods += new qt_gsi::GenericMethod ("setHorizontalSpacing|horizontalSpacing=", "@brief Method void QGraphicsAnchorLayout::setHorizontalSpacing(double spacing)\n", false, &_init_f_setHorizontalSpacing_1071, &_call_f_setHorizontalSpacing_1071); methods += new qt_gsi::GenericMethod ("setSpacing", "@brief Method void QGraphicsAnchorLayout::setSpacing(double spacing)\n", false, &_init_f_setSpacing_1071, &_call_f_setSpacing_1071); methods += new qt_gsi::GenericMethod ("setVerticalSpacing|verticalSpacing=", "@brief Method void QGraphicsAnchorLayout::setVerticalSpacing(double spacing)\n", false, &_init_f_setVerticalSpacing_1071, &_call_f_setVerticalSpacing_1071); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc index 8d56f95cb..1c04a0772 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc @@ -88,7 +88,7 @@ static void _call_f_blurRadius_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QRectF &) const +// QRectF QGraphicsBlurEffect::boundingRectFor(const QRectF &rect) static void _init_f_boundingRectFor_c1862 (qt_gsi::GenericMethod *decl) @@ -249,7 +249,7 @@ static gsi::Methods methods_QGraphicsBlurEffect () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":blurHints", "@brief Method QFlags QGraphicsBlurEffect::blurHints()\n", true, &_init_f_blurHints_c0, &_call_f_blurHints_c0); methods += new qt_gsi::GenericMethod (":blurRadius", "@brief Method double QGraphicsBlurEffect::blurRadius()\n", true, &_init_f_blurRadius_c0, &_call_f_blurRadius_c0); - methods += new qt_gsi::GenericMethod ("boundingRectFor", "@brief Method (const QRectF &) const\nThis is a reimplementation of QGraphicsEffect::boundingRectFor", true, &_init_f_boundingRectFor_c1862, &_call_f_boundingRectFor_c1862); + methods += new qt_gsi::GenericMethod ("boundingRectFor", "@brief Method QRectF QGraphicsBlurEffect::boundingRectFor(const QRectF &rect)\nThis is a reimplementation of QGraphicsEffect::boundingRectFor", true, &_init_f_boundingRectFor_c1862, &_call_f_boundingRectFor_c1862); methods += new qt_gsi::GenericMethod ("setBlurHints|blurHints=", "@brief Method void QGraphicsBlurEffect::setBlurHints(QFlags hints)\n", false, &_init_f_setBlurHints_3948, &_call_f_setBlurHints_3948); methods += new qt_gsi::GenericMethod ("setBlurRadius|blurRadius=", "@brief Method void QGraphicsBlurEffect::setBlurRadius(double blurRadius)\n", false, &_init_f_setBlurRadius_1071, &_call_f_setBlurRadius_1071); methods += gsi::qt_signal > ("blurHintsChanged(QFlags)", "blurHintsChanged", gsi::arg("hints"), "@brief Signal declaration for QGraphicsBlurEffect::blurHintsChanged(QFlags hints)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc index f90141dc9..6ec9152e6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc @@ -75,7 +75,7 @@ static void _call_f_blurRadius_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QRectF &) const +// QRectF QGraphicsDropShadowEffect::boundingRectFor(const QRectF &rect) static void _init_f_boundingRectFor_c1862 (qt_gsi::GenericMethod *decl) @@ -398,7 +398,7 @@ static gsi::Methods methods_QGraphicsDropShadowEffect () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":blurRadius", "@brief Method double QGraphicsDropShadowEffect::blurRadius()\n", true, &_init_f_blurRadius_c0, &_call_f_blurRadius_c0); - methods += new qt_gsi::GenericMethod ("boundingRectFor", "@brief Method (const QRectF &) const\nThis is a reimplementation of QGraphicsEffect::boundingRectFor", true, &_init_f_boundingRectFor_c1862, &_call_f_boundingRectFor_c1862); + methods += new qt_gsi::GenericMethod ("boundingRectFor", "@brief Method QRectF QGraphicsDropShadowEffect::boundingRectFor(const QRectF &rect)\nThis is a reimplementation of QGraphicsEffect::boundingRectFor", true, &_init_f_boundingRectFor_c1862, &_call_f_boundingRectFor_c1862); methods += new qt_gsi::GenericMethod (":color", "@brief Method QColor QGraphicsDropShadowEffect::color()\n", true, &_init_f_color_c0, &_call_f_color_c0); methods += new qt_gsi::GenericMethod (":offset", "@brief Method QPointF QGraphicsDropShadowEffect::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0); methods += new qt_gsi::GenericMethod ("setBlurRadius|blurRadius=", "@brief Method void QGraphicsDropShadowEffect::setBlurRadius(double blurRadius)\n", false, &_init_f_setBlurRadius_1071, &_call_f_setBlurRadius_1071); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc index 827560e9e..5f05106d9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc @@ -65,7 +65,7 @@ // ----------------------------------------------------------------------- // class QGraphicsEllipseItem -// () const +// QRectF QGraphicsEllipseItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsEllipseItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QGraphicsItem *) const +// bool QGraphicsEllipseItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsEllipseItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsEllipseItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -263,7 +263,7 @@ static void _call_f_setStartAngle_767 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QPainterPath QGraphicsEllipseItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -308,7 +308,7 @@ static void _call_f_startAngle_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QGraphicsEllipseItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -328,20 +328,20 @@ namespace gsi static gsi::Methods methods_QGraphicsEllipseItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsEllipseItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsEllipseItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsEllipseItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsEllipseItem::opaqueArea()\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsEllipseItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":rect", "@brief Method QRectF QGraphicsEllipseItem::rect()\n", true, &_init_f_rect_c0, &_call_f_rect_c0); methods += new qt_gsi::GenericMethod ("setRect|rect=", "@brief Method void QGraphicsEllipseItem::setRect(const QRectF &rect)\n", false, &_init_f_setRect_1862, &_call_f_setRect_1862); methods += new qt_gsi::GenericMethod ("setRect", "@brief Method void QGraphicsEllipseItem::setRect(double x, double y, double w, double h)\n", false, &_init_f_setRect_3960, &_call_f_setRect_3960); methods += new qt_gsi::GenericMethod ("setSpanAngle|spanAngle=", "@brief Method void QGraphicsEllipseItem::setSpanAngle(int angle)\n", false, &_init_f_setSpanAngle_767, &_call_f_setSpanAngle_767); methods += new qt_gsi::GenericMethod ("setStartAngle|startAngle=", "@brief Method void QGraphicsEllipseItem::setStartAngle(int angle)\n", false, &_init_f_setStartAngle_767, &_call_f_setStartAngle_767); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsEllipseItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += new qt_gsi::GenericMethod (":spanAngle", "@brief Method int QGraphicsEllipseItem::spanAngle()\n", true, &_init_f_spanAngle_c0, &_call_f_spanAngle_c0); methods += new qt_gsi::GenericMethod (":startAngle", "@brief Method int QGraphicsEllipseItem::startAngle()\n", true, &_init_f_startAngle_c0, &_call_f_startAngle_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsEllipseItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc index 70271c87c..7c84614ac 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc @@ -254,7 +254,7 @@ static void _call_f_columnStretchFactor_c767 (const qt_gsi::GenericMethod * /*de } -// () const +// int QGraphicsGridLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -284,7 +284,7 @@ static void _call_f_horizontalSpacing_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// () +// void QGraphicsGridLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -300,7 +300,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, int) const +// QGraphicsLayoutItem *QGraphicsGridLayout::itemAt(int row, int column) static void _init_f_itemAt_c1426 (qt_gsi::GenericMethod *decl) @@ -322,7 +322,7 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QGraphicsLayoutItem *QGraphicsGridLayout::itemAt(int index) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -341,7 +341,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int) +// void QGraphicsGridLayout::removeAt(int index) static void _init_f_removeAt_767 (qt_gsi::GenericMethod *decl) @@ -674,7 +674,7 @@ static void _call_f_setColumnStretchFactor_1426 (const qt_gsi::GenericMethod * / } -// (const QRectF &) +// void QGraphicsGridLayout::setGeometry(const QRectF &rect) static void _init_f_setGeometry_1862 (qt_gsi::GenericMethod *decl) @@ -915,7 +915,7 @@ static void _call_f_setVerticalSpacing_1071 (const qt_gsi::GenericMethod * /*dec } -// (Qt::SizeHint, const QSizeF &) const +// QSizeF QGraphicsGridLayout::sizeHint(Qt::SizeHint which, const QSizeF &constraint) static void _init_f_sizeHint_c3330 (qt_gsi::GenericMethod *decl) @@ -967,12 +967,12 @@ static gsi::Methods methods_QGraphicsGridLayout () { methods += new qt_gsi::GenericMethod ("columnPreferredWidth", "@brief Method double QGraphicsGridLayout::columnPreferredWidth(int column)\n", true, &_init_f_columnPreferredWidth_c767, &_call_f_columnPreferredWidth_c767); methods += new qt_gsi::GenericMethod ("columnSpacing", "@brief Method double QGraphicsGridLayout::columnSpacing(int column)\n", true, &_init_f_columnSpacing_c767, &_call_f_columnSpacing_c767); methods += new qt_gsi::GenericMethod ("columnStretchFactor", "@brief Method int QGraphicsGridLayout::columnStretchFactor(int column)\n", true, &_init_f_columnStretchFactor_c767, &_call_f_columnStretchFactor_c767); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QGraphicsGridLayout::count()\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":horizontalSpacing", "@brief Method double QGraphicsGridLayout::horizontalSpacing()\n", true, &_init_f_horizontalSpacing_c0, &_call_f_horizontalSpacing_c0); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int, int) const\n", true, &_init_f_itemAt_c1426, &_call_f_itemAt_c1426); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); - methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method (int)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QGraphicsGridLayout::invalidate()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QGraphicsLayoutItem *QGraphicsGridLayout::itemAt(int row, int column)\n", true, &_init_f_itemAt_c1426, &_call_f_itemAt_c1426); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QGraphicsLayoutItem *QGraphicsGridLayout::itemAt(int index)\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method void QGraphicsGridLayout::removeAt(int index)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); methods += new qt_gsi::GenericMethod ("rowAlignment", "@brief Method QFlags QGraphicsGridLayout::rowAlignment(int row)\n", true, &_init_f_rowAlignment_c767, &_call_f_rowAlignment_c767); methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QGraphicsGridLayout::rowCount()\n", true, &_init_f_rowCount_c0, &_call_f_rowCount_c0); methods += new qt_gsi::GenericMethod ("rowMaximumHeight", "@brief Method double QGraphicsGridLayout::rowMaximumHeight(int row)\n", true, &_init_f_rowMaximumHeight_c767, &_call_f_rowMaximumHeight_c767); @@ -988,7 +988,7 @@ static gsi::Methods methods_QGraphicsGridLayout () { methods += new qt_gsi::GenericMethod ("setColumnPreferredWidth", "@brief Method void QGraphicsGridLayout::setColumnPreferredWidth(int column, double width)\n", false, &_init_f_setColumnPreferredWidth_1730, &_call_f_setColumnPreferredWidth_1730); methods += new qt_gsi::GenericMethod ("setColumnSpacing", "@brief Method void QGraphicsGridLayout::setColumnSpacing(int column, double spacing)\n", false, &_init_f_setColumnSpacing_1730, &_call_f_setColumnSpacing_1730); methods += new qt_gsi::GenericMethod ("setColumnStretchFactor", "@brief Method void QGraphicsGridLayout::setColumnStretchFactor(int column, int stretch)\n", false, &_init_f_setColumnStretchFactor_1426, &_call_f_setColumnStretchFactor_1426); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRectF &)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGraphicsGridLayout::setGeometry(const QRectF &rect)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); methods += new qt_gsi::GenericMethod ("setHorizontalSpacing|horizontalSpacing=", "@brief Method void QGraphicsGridLayout::setHorizontalSpacing(double spacing)\n", false, &_init_f_setHorizontalSpacing_1071, &_call_f_setHorizontalSpacing_1071); methods += new qt_gsi::GenericMethod ("setRowAlignment", "@brief Method void QGraphicsGridLayout::setRowAlignment(int row, QFlags alignment)\n", false, &_init_f_setRowAlignment_3409, &_call_f_setRowAlignment_3409); methods += new qt_gsi::GenericMethod ("setRowFixedHeight", "@brief Method void QGraphicsGridLayout::setRowFixedHeight(int row, double height)\n", false, &_init_f_setRowFixedHeight_1730, &_call_f_setRowFixedHeight_1730); @@ -999,7 +999,7 @@ static gsi::Methods methods_QGraphicsGridLayout () { methods += new qt_gsi::GenericMethod ("setRowStretchFactor", "@brief Method void QGraphicsGridLayout::setRowStretchFactor(int row, int stretch)\n", false, &_init_f_setRowStretchFactor_1426, &_call_f_setRowStretchFactor_1426); methods += new qt_gsi::GenericMethod ("setSpacing", "@brief Method void QGraphicsGridLayout::setSpacing(double spacing)\n", false, &_init_f_setSpacing_1071, &_call_f_setSpacing_1071); methods += new qt_gsi::GenericMethod ("setVerticalSpacing|verticalSpacing=", "@brief Method void QGraphicsGridLayout::setVerticalSpacing(double spacing)\n", false, &_init_f_setVerticalSpacing_1071, &_call_f_setVerticalSpacing_1071); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method (Qt::SizeHint, const QSizeF &) const\nThis is a reimplementation of QGraphicsLayoutItem::sizeHint", true, &_init_f_sizeHint_c3330, &_call_f_sizeHint_c3330); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSizeF QGraphicsGridLayout::sizeHint(Qt::SizeHint which, const QSizeF &constraint)\nThis is a reimplementation of QGraphicsLayoutItem::sizeHint", true, &_init_f_sizeHint_c3330, &_call_f_sizeHint_c3330); methods += new qt_gsi::GenericMethod (":verticalSpacing", "@brief Method double QGraphicsGridLayout::verticalSpacing()\n", true, &_init_f_verticalSpacing_c0, &_call_f_verticalSpacing_c0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc index 3fa2b8a0f..9fd8557a5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc @@ -83,7 +83,7 @@ static void _call_f_addToGroup_1919 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QRectF QGraphicsItemGroup::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -98,7 +98,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QGraphicsItem *) const +// bool QGraphicsItemGroup::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsItemGroup::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -132,7 +132,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsItemGroup::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -178,7 +178,7 @@ static void _call_f_removeFromGroup_1919 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// int QGraphicsItemGroup::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -199,12 +199,12 @@ namespace gsi static gsi::Methods methods_QGraphicsItemGroup () { gsi::Methods methods; methods += new qt_gsi::GenericMethod ("addToGroup", "@brief Method void QGraphicsItemGroup::addToGroup(QGraphicsItem *item)\n", false, &_init_f_addToGroup_1919, &_call_f_addToGroup_1919); - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsItemGroup::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsItemGroup::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsItemGroup::opaqueArea()\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsItemGroup::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod ("removeFromGroup", "@brief Method void QGraphicsItemGroup::removeFromGroup(QGraphicsItem *item)\n", false, &_init_f_removeFromGroup_1919, &_call_f_removeFromGroup_1919); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsItemGroup::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc index 553c26620..86a3dfdd5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc @@ -73,7 +73,7 @@ static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (double *, double *, double *, double *) const +// void QGraphicsLayout::getContentsMargins(double *left, double *top, double *right, double *bottom) static void _init_f_getContentsMargins_c4704 (qt_gsi::GenericMethod *decl) @@ -201,7 +201,7 @@ static void _call_f_setContentsMargins_3960 (const qt_gsi::GenericMethod * /*dec } -// () +// void QGraphicsLayout::updateGeometry() static void _init_f_updateGeometry_0 (qt_gsi::GenericMethod *decl) @@ -244,13 +244,13 @@ static gsi::Methods methods_QGraphicsLayout () { gsi::Methods methods; methods += new qt_gsi::GenericMethod ("activate", "@brief Method void QGraphicsLayout::activate()\n", false, &_init_f_activate_0, &_call_f_activate_0); methods += new qt_gsi::GenericMethod ("count", "@brief Method int QGraphicsLayout::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); - methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method (double *, double *, double *, double *) const\nThis is a reimplementation of QGraphicsLayoutItem::getContentsMargins", true, &_init_f_getContentsMargins_c4704, &_call_f_getContentsMargins_c4704); + methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method void QGraphicsLayout::getContentsMargins(double *left, double *top, double *right, double *bottom)\nThis is a reimplementation of QGraphicsLayoutItem::getContentsMargins", true, &_init_f_getContentsMargins_c4704, &_call_f_getContentsMargins_c4704); methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QGraphicsLayout::invalidate()\n", false, &_init_f_invalidate_0, &_call_f_invalidate_0); methods += new qt_gsi::GenericMethod ("isActivated?", "@brief Method bool QGraphicsLayout::isActivated()\n", true, &_init_f_isActivated_c0, &_call_f_isActivated_c0); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QGraphicsLayoutItem *QGraphicsLayout::itemAt(int i)\n", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method void QGraphicsLayout::removeAt(int index)\n", false, &_init_f_removeAt_767, &_call_f_removeAt_767); methods += new qt_gsi::GenericMethod ("setContentsMargins", "@brief Method void QGraphicsLayout::setContentsMargins(double left, double top, double right, double bottom)\n", false, &_init_f_setContentsMargins_3960, &_call_f_setContentsMargins_3960); - methods += new qt_gsi::GenericMethod ("updateGeometry", "@brief Method ()\nThis is a reimplementation of QGraphicsLayoutItem::updateGeometry", false, &_init_f_updateGeometry_0, &_call_f_updateGeometry_0); + methods += new qt_gsi::GenericMethod ("updateGeometry", "@brief Method void QGraphicsLayout::updateGeometry()\nThis is a reimplementation of QGraphicsLayoutItem::updateGeometry", false, &_init_f_updateGeometry_0, &_call_f_updateGeometry_0); methods += new qt_gsi::GenericMethod ("widgetEvent", "@brief Method void QGraphicsLayout::widgetEvent(QEvent *e)\n", false, &_init_f_widgetEvent_1217, &_call_f_widgetEvent_1217); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc index 195f59272..b12b7cfef 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc @@ -65,7 +65,7 @@ // ----------------------------------------------------------------------- // class QGraphicsLineItem -// () const +// QRectF QGraphicsLineItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsLineItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QGraphicsItem *) const +// bool QGraphicsLineItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_line_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QPainterPath QGraphicsLineItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -148,7 +148,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsLineItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -258,7 +258,7 @@ static void _call_f_setPen_1685 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QPainterPath QGraphicsLineItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -273,7 +273,7 @@ static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QGraphicsLineItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -293,18 +293,18 @@ namespace gsi static gsi::Methods methods_QGraphicsLineItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsLineItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsLineItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsLineItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); methods += new qt_gsi::GenericMethod (":line", "@brief Method QLineF QGraphicsLineItem::line()\n", true, &_init_f_line_c0, &_call_f_line_c0); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsLineItem::opaqueArea()\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsLineItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":pen", "@brief Method QPen QGraphicsLineItem::pen()\n", true, &_init_f_pen_c0, &_call_f_pen_c0); methods += new qt_gsi::GenericMethod ("setLine|line=", "@brief Method void QGraphicsLineItem::setLine(const QLineF &line)\n", false, &_init_f_setLine_1856, &_call_f_setLine_1856); methods += new qt_gsi::GenericMethod ("setLine", "@brief Method void QGraphicsLineItem::setLine(double x1, double y1, double x2, double y2)\n", false, &_init_f_setLine_3960, &_call_f_setLine_3960); methods += new qt_gsi::GenericMethod ("setPen|pen=", "@brief Method void QGraphicsLineItem::setPen(const QPen &pen)\n", false, &_init_f_setPen_1685, &_call_f_setPen_1685); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsLineItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsLineItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc index 62a5be438..45da781f6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc @@ -101,7 +101,7 @@ static void _call_f_alignment_c2557 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// int QGraphicsLinearLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -182,7 +182,7 @@ static void _call_f_insertStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, } -// () +// void QGraphicsLinearLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -198,7 +198,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QGraphicsLayoutItem *QGraphicsLinearLayout::itemAt(int index) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -251,7 +251,7 @@ static void _call_f_orientation_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int) +// void QGraphicsLinearLayout::removeAt(int index) static void _init_f_removeAt_767 (qt_gsi::GenericMethod *decl) @@ -314,7 +314,7 @@ static void _call_f_setAlignment_5199 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QRectF &) +// void QGraphicsLinearLayout::setGeometry(const QRectF &rect) static void _init_f_setGeometry_1862 (qt_gsi::GenericMethod *decl) @@ -420,7 +420,7 @@ static void _call_f_setStretchFactor_3216 (const qt_gsi::GenericMethod * /*decl* } -// (Qt::SizeHint, const QSizeF &) const +// QSizeF QGraphicsLinearLayout::sizeHint(Qt::SizeHint which, const QSizeF &constraint) static void _init_f_sizeHint_c3330 (qt_gsi::GenericMethod *decl) @@ -484,23 +484,23 @@ static gsi::Methods methods_QGraphicsLinearLayout () { methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QGraphicsLinearLayout::addItem(QGraphicsLayoutItem *item)\n", false, &_init_f_addItem_2557, &_call_f_addItem_2557); methods += new qt_gsi::GenericMethod ("addStretch", "@brief Method void QGraphicsLinearLayout::addStretch(int stretch)\n", false, &_init_f_addStretch_767, &_call_f_addStretch_767); methods += new qt_gsi::GenericMethod ("alignment", "@brief Method QFlags QGraphicsLinearLayout::alignment(QGraphicsLayoutItem *item)\n", true, &_init_f_alignment_c2557, &_call_f_alignment_c2557); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QGraphicsLinearLayout::count()\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod ("dump", "@brief Method void QGraphicsLinearLayout::dump(int indent)\n", true, &_init_f_dump_c767, &_call_f_dump_c767); methods += new qt_gsi::GenericMethod ("insertItem", "@brief Method void QGraphicsLinearLayout::insertItem(int index, QGraphicsLayoutItem *item)\n", false, &_init_f_insertItem_3216, &_call_f_insertItem_3216); methods += new qt_gsi::GenericMethod ("insertStretch", "@brief Method void QGraphicsLinearLayout::insertStretch(int index, int stretch)\n", false, &_init_f_insertStretch_1426, &_call_f_insertStretch_1426); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QGraphicsLinearLayout::invalidate()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QGraphicsLayoutItem *QGraphicsLinearLayout::itemAt(int index)\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); methods += new qt_gsi::GenericMethod ("itemSpacing", "@brief Method double QGraphicsLinearLayout::itemSpacing(int index)\n", true, &_init_f_itemSpacing_c767, &_call_f_itemSpacing_c767); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method Qt::Orientation QGraphicsLinearLayout::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); - methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method (int)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); + methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method void QGraphicsLinearLayout::removeAt(int index)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); methods += new qt_gsi::GenericMethod ("removeItem", "@brief Method void QGraphicsLinearLayout::removeItem(QGraphicsLayoutItem *item)\n", false, &_init_f_removeItem_2557, &_call_f_removeItem_2557); methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method void QGraphicsLinearLayout::setAlignment(QGraphicsLayoutItem *item, QFlags alignment)\n", false, &_init_f_setAlignment_5199, &_call_f_setAlignment_5199); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRectF &)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGraphicsLinearLayout::setGeometry(const QRectF &rect)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); methods += new qt_gsi::GenericMethod ("setItemSpacing", "@brief Method void QGraphicsLinearLayout::setItemSpacing(int index, double spacing)\n", false, &_init_f_setItemSpacing_1730, &_call_f_setItemSpacing_1730); methods += new qt_gsi::GenericMethod ("setOrientation|orientation=", "@brief Method void QGraphicsLinearLayout::setOrientation(Qt::Orientation orientation)\n", false, &_init_f_setOrientation_1913, &_call_f_setOrientation_1913); methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QGraphicsLinearLayout::setSpacing(double spacing)\n", false, &_init_f_setSpacing_1071, &_call_f_setSpacing_1071); methods += new qt_gsi::GenericMethod ("setStretchFactor", "@brief Method void QGraphicsLinearLayout::setStretchFactor(QGraphicsLayoutItem *item, int stretch)\n", false, &_init_f_setStretchFactor_3216, &_call_f_setStretchFactor_3216); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method (Qt::SizeHint, const QSizeF &) const\nThis is a reimplementation of QGraphicsLayoutItem::sizeHint", true, &_init_f_sizeHint_c3330, &_call_f_sizeHint_c3330); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSizeF QGraphicsLinearLayout::sizeHint(Qt::SizeHint which, const QSizeF &constraint)\nThis is a reimplementation of QGraphicsLayoutItem::sizeHint", true, &_init_f_sizeHint_c3330, &_call_f_sizeHint_c3330); methods += new qt_gsi::GenericMethod (":spacing", "@brief Method double QGraphicsLinearLayout::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); methods += new qt_gsi::GenericMethod ("stretchFactor", "@brief Method int QGraphicsLinearLayout::stretchFactor(QGraphicsLayoutItem *item)\n", true, &_init_f_stretchFactor_c2557, &_call_f_stretchFactor_c2557); return methods; diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc index 8d1b86a06..bfdd04cfc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc @@ -79,7 +79,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// const QList &QGraphicsObject::children() static void _init_f_children_c0 (qt_gsi::GenericMethod *decl) @@ -282,7 +282,7 @@ namespace gsi static gsi::Methods methods_QGraphicsObject () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod (":children", "@brief Method () const\n", true, &_init_f_children_c0, &_call_f_children_c0); + methods += new qt_gsi::GenericMethod (":children", "@brief Method const QList &QGraphicsObject::children()\n", true, &_init_f_children_c0, &_call_f_children_c0); methods += new qt_gsi::GenericMethod ("grabGesture", "@brief Method void QGraphicsObject::grabGesture(Qt::GestureType type, QFlags flags)\n", false, &_init_f_grabGesture_4352, &_call_f_grabGesture_4352); methods += new qt_gsi::GenericMethod ("ungrabGesture", "@brief Method void QGraphicsObject::ungrabGesture(Qt::GestureType type)\n", false, &_init_f_ungrabGesture_1902, &_call_f_ungrabGesture_1902); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QGraphicsObject::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc index 3cc4d8d48..4b3dc2623 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc @@ -65,7 +65,7 @@ // ----------------------------------------------------------------------- // class QGraphicsPathItem -// () const +// QRectF QGraphicsPathItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsPathItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QGraphicsItem *) const +// bool QGraphicsPathItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsPathItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsPathItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -194,7 +194,7 @@ static void _call_f_setPath_2514 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QPainterPath QGraphicsPathItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -209,7 +209,7 @@ static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QGraphicsPathItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -229,15 +229,15 @@ namespace gsi static gsi::Methods methods_QGraphicsPathItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsPathItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsPathItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsPathItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsPathItem::opaqueArea()\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsPathItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":path", "@brief Method QPainterPath QGraphicsPathItem::path()\n", true, &_init_f_path_c0, &_call_f_path_c0); methods += new qt_gsi::GenericMethod ("setPath|path=", "@brief Method void QGraphicsPathItem::setPath(const QPainterPath &path)\n", false, &_init_f_setPath_2514, &_call_f_setPath_2514); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsPathItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsPathItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc index f3d7c01ef..34e38bb5f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc @@ -64,7 +64,7 @@ // ----------------------------------------------------------------------- // class QGraphicsPixmapItem -// () const +// QRectF QGraphicsPixmapItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -79,7 +79,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsPixmapItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -98,7 +98,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QGraphicsItem *) const +// bool QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -132,7 +132,7 @@ static void _call_f_offset_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QPainterPath QGraphicsPixmapItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -147,7 +147,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsPixmapItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -291,7 +291,7 @@ static void _call_f_setTransformationMode_2633 (const qt_gsi::GenericMethod * /* } -// () const +// QPainterPath QGraphicsPixmapItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -336,7 +336,7 @@ static void _call_f_transformationMode_c0 (const qt_gsi::GenericMethod * /*decl* } -// () const +// int QGraphicsPixmapItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -356,22 +356,22 @@ namespace gsi static gsi::Methods methods_QGraphicsPixmapItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsPixmapItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsPixmapItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); methods += new qt_gsi::GenericMethod (":offset", "@brief Method QPointF QGraphicsPixmapItem::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsPixmapItem::opaqueArea()\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsPixmapItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":pixmap", "@brief Method QPixmap QGraphicsPixmapItem::pixmap()\n", true, &_init_f_pixmap_c0, &_call_f_pixmap_c0); methods += new qt_gsi::GenericMethod ("setOffset|offset=", "@brief Method void QGraphicsPixmapItem::setOffset(const QPointF &offset)\n", false, &_init_f_setOffset_1986, &_call_f_setOffset_1986); methods += new qt_gsi::GenericMethod ("setOffset", "@brief Method void QGraphicsPixmapItem::setOffset(double x, double y)\n", false, &_init_f_setOffset_2034, &_call_f_setOffset_2034); methods += new qt_gsi::GenericMethod ("setPixmap|pixmap=", "@brief Method void QGraphicsPixmapItem::setPixmap(const QPixmap &pixmap)\n", false, &_init_f_setPixmap_2017, &_call_f_setPixmap_2017); methods += new qt_gsi::GenericMethod ("setShapeMode|shapeMode=", "@brief Method void QGraphicsPixmapItem::setShapeMode(QGraphicsPixmapItem::ShapeMode mode)\n", false, &_init_f_setShapeMode_3358, &_call_f_setShapeMode_3358); methods += new qt_gsi::GenericMethod ("setTransformationMode|transformationMode=", "@brief Method void QGraphicsPixmapItem::setTransformationMode(Qt::TransformationMode mode)\n", false, &_init_f_setTransformationMode_2633, &_call_f_setTransformationMode_2633); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsPixmapItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += new qt_gsi::GenericMethod (":shapeMode", "@brief Method QGraphicsPixmapItem::ShapeMode QGraphicsPixmapItem::shapeMode()\n", true, &_init_f_shapeMode_c0, &_call_f_shapeMode_c0); methods += new qt_gsi::GenericMethod (":transformationMode", "@brief Method Qt::TransformationMode QGraphicsPixmapItem::transformationMode()\n", true, &_init_f_transformationMode_c0, &_call_f_transformationMode_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsPixmapItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc index 0990973ce..346a7bb89 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc @@ -65,7 +65,7 @@ // ----------------------------------------------------------------------- // class QGraphicsPolygonItem -// () const +// QRectF QGraphicsPolygonItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsPolygonItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -114,7 +114,7 @@ static void _call_f_fillRule_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QGraphicsItem *) const +// bool QGraphicsPolygonItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsPolygonItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -148,7 +148,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsPolygonItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -229,7 +229,7 @@ static void _call_f_setPolygon_2208 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QPainterPath QGraphicsPolygonItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -244,7 +244,7 @@ static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QGraphicsPolygonItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -264,17 +264,17 @@ namespace gsi static gsi::Methods methods_QGraphicsPolygonItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsPolygonItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsPolygonItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); methods += new qt_gsi::GenericMethod (":fillRule", "@brief Method Qt::FillRule QGraphicsPolygonItem::fillRule()\n", true, &_init_f_fillRule_c0, &_call_f_fillRule_c0); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsPolygonItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsPolygonItem::opaqueArea()\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsPolygonItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":polygon", "@brief Method QPolygonF QGraphicsPolygonItem::polygon()\n", true, &_init_f_polygon_c0, &_call_f_polygon_c0); methods += new qt_gsi::GenericMethod ("setFillRule|fillRule=", "@brief Method void QGraphicsPolygonItem::setFillRule(Qt::FillRule rule)\n", false, &_init_f_setFillRule_1548, &_call_f_setFillRule_1548); methods += new qt_gsi::GenericMethod ("setPolygon|polygon=", "@brief Method void QGraphicsPolygonItem::setPolygon(const QPolygonF &polygon)\n", false, &_init_f_setPolygon_2208, &_call_f_setPolygon_2208); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsPolygonItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsPolygonItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc index 3aa30f06b..539a68679 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc @@ -114,7 +114,7 @@ static void _call_f_createProxyForChildWidget_1315 (const qt_gsi::GenericMethod } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsProxyWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -140,7 +140,7 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QRectF &) +// void QGraphicsProxyWidget::setGeometry(const QRectF &rect) static void _init_f_setGeometry_1862 (qt_gsi::GenericMethod *decl) @@ -199,7 +199,7 @@ static void _call_f_subWidgetRect_c2010 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QGraphicsProxyWidget::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -330,11 +330,11 @@ static gsi::Methods methods_QGraphicsProxyWidget () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("createProxyForChildWidget", "@brief Method QGraphicsProxyWidget *QGraphicsProxyWidget::createProxyForChildWidget(QWidget *child)\n", false, &_init_f_createProxyForChildWidget_1315, &_call_f_createProxyForChildWidget_1315); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsWidget::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRectF &)\nThis is a reimplementation of QGraphicsWidget::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsProxyWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsWidget::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGraphicsProxyWidget::setGeometry(const QRectF &rect)\nThis is a reimplementation of QGraphicsWidget::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); methods += new qt_gsi::GenericMethod ("setWidget|widget=", "@brief Method void QGraphicsProxyWidget::setWidget(QWidget *widget)\n", false, &_init_f_setWidget_1315, &_call_f_setWidget_1315); methods += new qt_gsi::GenericMethod ("subWidgetRect", "@brief Method QRectF QGraphicsProxyWidget::subWidgetRect(const QWidget *widget)\n", true, &_init_f_subWidgetRect_c2010, &_call_f_subWidgetRect_c2010); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsWidget::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsProxyWidget::type()\nThis is a reimplementation of QGraphicsWidget::type", true, &_init_f_type_c0, &_call_f_type_c0); methods += new qt_gsi::GenericMethod (":widget", "@brief Method QWidget *QGraphicsProxyWidget::widget()\n", true, &_init_f_widget_c0, &_call_f_widget_c0); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QGraphicsProxyWidget::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("enabledChanged()", "enabledChanged", "@brief Signal declaration for QGraphicsProxyWidget::enabledChanged()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc index 795d08d50..76d85ba60 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc @@ -65,7 +65,7 @@ // ----------------------------------------------------------------------- // class QGraphicsRectItem -// () const +// QRectF QGraphicsRectItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsRectItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QGraphicsItem *) const +// bool QGraphicsRectItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsRectItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsRectItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -223,7 +223,7 @@ static void _call_f_setRect_3960 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QPainterPath QGraphicsRectItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -238,7 +238,7 @@ static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QGraphicsRectItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -258,16 +258,16 @@ namespace gsi static gsi::Methods methods_QGraphicsRectItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsRectItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsRectItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsRectItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsRectItem::opaqueArea()\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsRectItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":rect", "@brief Method QRectF QGraphicsRectItem::rect()\n", true, &_init_f_rect_c0, &_call_f_rect_c0); methods += new qt_gsi::GenericMethod ("setRect|rect=", "@brief Method void QGraphicsRectItem::setRect(const QRectF &rect)\n", false, &_init_f_setRect_1862, &_call_f_setRect_1862); methods += new qt_gsi::GenericMethod ("setRect", "@brief Method void QGraphicsRectItem::setRect(double x, double y, double w, double h)\n", false, &_init_f_setRect_3960, &_call_f_setRect_3960); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsRectItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsRectItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc index 90b7c4dea..42f8bb247 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc @@ -71,7 +71,7 @@ static void _call_f_angle_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QMatrix4x4 *) const +// void QGraphicsRotation::applyTo(QMatrix4x4 *matrix) static void _init_f_applyTo_c1556 (qt_gsi::GenericMethod *decl) @@ -302,7 +302,7 @@ static gsi::Methods methods_QGraphicsRotation () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":angle", "@brief Method double QGraphicsRotation::angle()\n", true, &_init_f_angle_c0, &_call_f_angle_c0); - methods += new qt_gsi::GenericMethod ("applyTo", "@brief Method (QMatrix4x4 *) const\nThis is a reimplementation of QGraphicsTransform::applyTo", true, &_init_f_applyTo_c1556, &_call_f_applyTo_c1556); + methods += new qt_gsi::GenericMethod ("applyTo", "@brief Method void QGraphicsRotation::applyTo(QMatrix4x4 *matrix)\nThis is a reimplementation of QGraphicsTransform::applyTo", true, &_init_f_applyTo_c1556, &_call_f_applyTo_c1556); methods += new qt_gsi::GenericMethod (":axis", "@brief Method QVector3D QGraphicsRotation::axis()\n", true, &_init_f_axis_c0, &_call_f_axis_c0); methods += new qt_gsi::GenericMethod (":origin", "@brief Method QVector3D QGraphicsRotation::origin()\n", true, &_init_f_origin_c0, &_call_f_origin_c0); methods += new qt_gsi::GenericMethod ("setAngle|angle=", "@brief Method void QGraphicsRotation::setAngle(double)\n", false, &_init_f_setAngle_1071, &_call_f_setAngle_1071); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc index 81f21ff3e..1145a522f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc @@ -56,7 +56,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QMatrix4x4 *) const +// void QGraphicsScale::applyTo(QMatrix4x4 *matrix) static void _init_f_applyTo_c1556 (qt_gsi::GenericMethod *decl) @@ -316,7 +316,7 @@ namespace gsi static gsi::Methods methods_QGraphicsScale () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("applyTo", "@brief Method (QMatrix4x4 *) const\nThis is a reimplementation of QGraphicsTransform::applyTo", true, &_init_f_applyTo_c1556, &_call_f_applyTo_c1556); + methods += new qt_gsi::GenericMethod ("applyTo", "@brief Method void QGraphicsScale::applyTo(QMatrix4x4 *matrix)\nThis is a reimplementation of QGraphicsTransform::applyTo", true, &_init_f_applyTo_c1556, &_call_f_applyTo_c1556); methods += new qt_gsi::GenericMethod (":origin", "@brief Method QVector3D QGraphicsScale::origin()\n", true, &_init_f_origin_c0, &_call_f_origin_c0); methods += new qt_gsi::GenericMethod ("setOrigin|origin=", "@brief Method void QGraphicsScale::setOrigin(const QVector3D &point)\n", false, &_init_f_setOrigin_2140, &_call_f_setOrigin_2140); methods += new qt_gsi::GenericMethod ("setXScale|xScale=", "@brief Method void QGraphicsScale::setXScale(double)\n", false, &_init_f_setXScale_1071, &_call_f_setXScale_1071); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc index be03b1cb4..fe72a7074 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc @@ -66,7 +66,7 @@ // ----------------------------------------------------------------------- // class QGraphicsSimpleTextItem -// () const +// QRectF QGraphicsSimpleTextItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -81,7 +81,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsSimpleTextItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -115,7 +115,7 @@ static void _call_f_font_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QGraphicsItem *) const +// bool QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -134,7 +134,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsSimpleTextItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -149,7 +149,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsSimpleTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -215,7 +215,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QPainterPath QGraphicsSimpleTextItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -245,7 +245,7 @@ static void _call_f_text_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QGraphicsSimpleTextItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -265,17 +265,17 @@ namespace gsi static gsi::Methods methods_QGraphicsSimpleTextItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsSimpleTextItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsSimpleTextItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); methods += new qt_gsi::GenericMethod (":font", "@brief Method QFont QGraphicsSimpleTextItem::font()\n", true, &_init_f_font_c0, &_call_f_font_c0); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsSimpleTextItem::opaqueArea()\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsSimpleTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod ("setFont|font=", "@brief Method void QGraphicsSimpleTextItem::setFont(const QFont &font)\n", false, &_init_f_setFont_1801, &_call_f_setFont_1801); methods += new qt_gsi::GenericMethod ("setText|text=", "@brief Method void QGraphicsSimpleTextItem::setText(const QString &text)\n", false, &_init_f_setText_2025, &_call_f_setText_2025); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsSimpleTextItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += new qt_gsi::GenericMethod (":text", "@brief Method QString QGraphicsSimpleTextItem::text()\n", true, &_init_f_text_c0, &_call_f_text_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsSimpleTextItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc index e45fc8317..942fc8d6c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc @@ -100,7 +100,7 @@ static void _call_f_adjustSize_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QRectF QGraphicsTextItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -115,7 +115,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsTextItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -179,7 +179,7 @@ static void _call_f_font_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QGraphicsItem *) const +// bool QGraphicsTextItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -198,7 +198,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsTextItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -228,7 +228,7 @@ static void _call_f_openExternalLinks_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -454,7 +454,7 @@ static void _call_f_setTextWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QPainterPath QGraphicsTextItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -559,7 +559,7 @@ static void _call_f_toPlainText_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QGraphicsTextItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -675,15 +675,15 @@ static gsi::Methods methods_QGraphicsTextItem () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("adjustSize", "@brief Method void QGraphicsTextItem::adjustSize()\n", false, &_init_f_adjustSize_0, &_call_f_adjustSize_0); - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsTextItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsTextItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); methods += new qt_gsi::GenericMethod (":defaultTextColor", "@brief Method QColor QGraphicsTextItem::defaultTextColor()\n", true, &_init_f_defaultTextColor_c0, &_call_f_defaultTextColor_c0); methods += new qt_gsi::GenericMethod (":document", "@brief Method QTextDocument *QGraphicsTextItem::document()\n", true, &_init_f_document_c0, &_call_f_document_c0); methods += new qt_gsi::GenericMethod (":font", "@brief Method QFont QGraphicsTextItem::font()\n", true, &_init_f_font_c0, &_call_f_font_c0); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsTextItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsTextItem::opaqueArea()\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); methods += new qt_gsi::GenericMethod (":openExternalLinks", "@brief Method bool QGraphicsTextItem::openExternalLinks()\n", true, &_init_f_openExternalLinks_c0, &_call_f_openExternalLinks_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod ("setDefaultTextColor|defaultTextColor=", "@brief Method void QGraphicsTextItem::setDefaultTextColor(const QColor &c)\n", false, &_init_f_setDefaultTextColor_1905, &_call_f_setDefaultTextColor_1905); methods += new qt_gsi::GenericMethod ("setDocument|document=", "@brief Method void QGraphicsTextItem::setDocument(QTextDocument *document)\n", false, &_init_f_setDocument_1955, &_call_f_setDocument_1955); methods += new qt_gsi::GenericMethod ("setFont|font=", "@brief Method void QGraphicsTextItem::setFont(const QFont &font)\n", false, &_init_f_setFont_1801, &_call_f_setFont_1801); @@ -694,14 +694,14 @@ static gsi::Methods methods_QGraphicsTextItem () { methods += new qt_gsi::GenericMethod ("setTextCursor|textCursor=", "@brief Method void QGraphicsTextItem::setTextCursor(const QTextCursor &cursor)\n", false, &_init_f_setTextCursor_2453, &_call_f_setTextCursor_2453); methods += new qt_gsi::GenericMethod ("setTextInteractionFlags|textInteractionFlags=", "@brief Method void QGraphicsTextItem::setTextInteractionFlags(QFlags flags)\n", false, &_init_f_setTextInteractionFlags_3396, &_call_f_setTextInteractionFlags_3396); methods += new qt_gsi::GenericMethod ("setTextWidth|textWidth=", "@brief Method void QGraphicsTextItem::setTextWidth(double width)\n", false, &_init_f_setTextWidth_1071, &_call_f_setTextWidth_1071); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsTextItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += new qt_gsi::GenericMethod (":tabChangesFocus", "@brief Method bool QGraphicsTextItem::tabChangesFocus()\n", true, &_init_f_tabChangesFocus_c0, &_call_f_tabChangesFocus_c0); methods += new qt_gsi::GenericMethod (":textCursor", "@brief Method QTextCursor QGraphicsTextItem::textCursor()\n", true, &_init_f_textCursor_c0, &_call_f_textCursor_c0); methods += new qt_gsi::GenericMethod (":textInteractionFlags", "@brief Method QFlags QGraphicsTextItem::textInteractionFlags()\n", true, &_init_f_textInteractionFlags_c0, &_call_f_textInteractionFlags_c0); methods += new qt_gsi::GenericMethod (":textWidth", "@brief Method double QGraphicsTextItem::textWidth()\n", true, &_init_f_textWidth_c0, &_call_f_textWidth_c0); methods += new qt_gsi::GenericMethod ("toHtml", "@brief Method QString QGraphicsTextItem::toHtml()\n", true, &_init_f_toHtml_c0, &_call_f_toHtml_c0); methods += new qt_gsi::GenericMethod ("toPlainText", "@brief Method QString QGraphicsTextItem::toPlainText()\n", true, &_init_f_toPlainText_c0, &_call_f_toPlainText_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsTextItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QGraphicsTextItem::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("enabledChanged()", "enabledChanged", "@brief Signal declaration for QGraphicsTextItem::enabledChanged()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("linkActivated(const QString &)", "linkActivated", gsi::arg("arg1"), "@brief Signal declaration for QGraphicsTextItem::linkActivated(const QString &)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc index d686cadbb..6cdb297e9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc @@ -410,7 +410,7 @@ static void _call_f_foregroundBrush_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (Qt::InputMethodQuery) const +// QVariant QGraphicsView::inputMethodQuery(Qt::InputMethodQuery query) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -958,7 +958,7 @@ static void _call_f_optimizationFlags_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QPainter *, const QRectF &, const QRect &, Qt::AspectRatioMode) +// void QGraphicsView::render(QPainter *painter, const QRectF &target, const QRect &source, Qt::AspectRatioMode aspectRatioMode) static void _init_f_render_7013 (qt_gsi::GenericMethod *decl) @@ -1577,7 +1577,7 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QGraphicsView::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1829,7 +1829,7 @@ static gsi::Methods methods_QGraphicsView () { methods += new qt_gsi::GenericMethod ("fitInView", "@brief Method void QGraphicsView::fitInView(double x, double y, double w, double h, Qt::AspectRatioMode aspectRadioMode)\n", false, &_init_f_fitInView_6109, &_call_f_fitInView_6109); methods += new qt_gsi::GenericMethod ("fitInView", "@brief Method void QGraphicsView::fitInView(const QGraphicsItem *item, Qt::AspectRatioMode aspectRadioMode)\n", false, &_init_f_fitInView_4763, &_call_f_fitInView_4763); methods += new qt_gsi::GenericMethod (":foregroundBrush", "@brief Method QBrush QGraphicsView::foregroundBrush()\n", true, &_init_f_foregroundBrush_c0, &_call_f_foregroundBrush_c0); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QGraphicsView::inputMethodQuery(Qt::InputMethodQuery query)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); methods += new qt_gsi::GenericMethod ("invalidateScene", "@brief Method void QGraphicsView::invalidateScene(const QRectF &rect, QFlags layers)\n", false, &_init_f_invalidateScene_5397, &_call_f_invalidateScene_5397); methods += new qt_gsi::GenericMethod ("isInteractive?|:interactive", "@brief Method bool QGraphicsView::isInteractive()\n", true, &_init_f_isInteractive_c0, &_call_f_isInteractive_c0); methods += new qt_gsi::GenericMethod ("isTransformed?", "@brief Method bool QGraphicsView::isTransformed()\n", true, &_init_f_isTransformed_c0, &_call_f_isTransformed_c0); @@ -1856,7 +1856,7 @@ static gsi::Methods methods_QGraphicsView () { methods += new qt_gsi::GenericMethod ("mapToScene", "@brief Method QPolygonF QGraphicsView::mapToScene(int x, int y, int w, int h)\n", true, &_init_f_mapToScene_c2744, &_call_f_mapToScene_c2744); methods += new qt_gsi::GenericMethod (":matrix", "@brief Method QMatrix QGraphicsView::matrix()\n", true, &_init_f_matrix_c0, &_call_f_matrix_c0); methods += new qt_gsi::GenericMethod (":optimizationFlags", "@brief Method QFlags QGraphicsView::optimizationFlags()\n", true, &_init_f_optimizationFlags_c0, &_call_f_optimizationFlags_c0); - methods += new qt_gsi::GenericMethod ("render", "@brief Method (QPainter *, const QRectF &, const QRect &, Qt::AspectRatioMode)\n", false, &_init_f_render_7013, &_call_f_render_7013); + methods += new qt_gsi::GenericMethod ("render", "@brief Method void QGraphicsView::render(QPainter *painter, const QRectF &target, const QRect &source, Qt::AspectRatioMode aspectRatioMode)\n", false, &_init_f_render_7013, &_call_f_render_7013); methods += new qt_gsi::GenericMethod (":renderHints", "@brief Method QFlags QGraphicsView::renderHints()\n", true, &_init_f_renderHints_c0, &_call_f_renderHints_c0); methods += new qt_gsi::GenericMethod ("resetCachedContent", "@brief Method void QGraphicsView::resetCachedContent()\n", false, &_init_f_resetCachedContent_0, &_call_f_resetCachedContent_0); methods += new qt_gsi::GenericMethod ("resetMatrix", "@brief Method void QGraphicsView::resetMatrix()\n", false, &_init_f_resetMatrix_0, &_call_f_resetMatrix_0); @@ -1887,7 +1887,7 @@ static gsi::Methods methods_QGraphicsView () { methods += new qt_gsi::GenericMethod ("setTransformationAnchor|transformationAnchor=", "@brief Method void QGraphicsView::setTransformationAnchor(QGraphicsView::ViewportAnchor anchor)\n", false, &_init_f_setTransformationAnchor_3328, &_call_f_setTransformationAnchor_3328); methods += new qt_gsi::GenericMethod ("setViewportUpdateMode|viewportUpdateMode=", "@brief Method void QGraphicsView::setViewportUpdateMode(QGraphicsView::ViewportUpdateMode mode)\n", false, &_init_f_setViewportUpdateMode_3725, &_call_f_setViewportUpdateMode_3725); methods += new qt_gsi::GenericMethod ("shear", "@brief Method void QGraphicsView::shear(double sh, double sv)\n", false, &_init_f_shear_2034, &_call_f_shear_2034); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QGraphicsView::sizeHint()\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":transform", "@brief Method QTransform QGraphicsView::transform()\n", true, &_init_f_transform_c0, &_call_f_transform_c0); methods += new qt_gsi::GenericMethod (":transformationAnchor", "@brief Method QGraphicsView::ViewportAnchor QGraphicsView::transformationAnchor()\n", true, &_init_f_transformationAnchor_c0, &_call_f_transformationAnchor_c0); methods += new qt_gsi::GenericMethod ("translate", "@brief Method void QGraphicsView::translate(double dx, double dy)\n", false, &_init_f_translate_2034, &_call_f_translate_2034); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc index 2c02dc39c..1a1e112df 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc @@ -165,7 +165,7 @@ static void _call_f_adjustSize_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QRectF QGraphicsWidget::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -180,7 +180,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// const QList &QGraphicsWidget::children() static void _init_f_children_c0 (qt_gsi::GenericMethod *decl) @@ -255,7 +255,7 @@ static void _call_f_font_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (double *, double *, double *, double *) const +// void QGraphicsWidget::getContentsMargins(double *left, double *top, double *right, double *bottom) static void _init_f_getContentsMargins_c4704 (qt_gsi::GenericMethod *decl) @@ -426,7 +426,7 @@ static void _call_f_layoutDirection_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -683,7 +683,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QRectF &) +// void QGraphicsWidget::setGeometry(const QRectF &rect) static void _init_f_setGeometry_1862 (qt_gsi::GenericMethod *decl) @@ -703,7 +703,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (double, double, double, double) +// void QGraphicsWidget::setGeometry(double x, double y, double w, double h) static void _init_f_setGeometry_3960 (qt_gsi::GenericMethod *decl) @@ -927,7 +927,7 @@ static void _call_f_setWindowTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsWidget::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -991,7 +991,7 @@ static void _call_f_testAttribute_c2309 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QGraphicsWidget::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -1285,13 +1285,13 @@ static gsi::Methods methods_QGraphicsWidget () { methods += new qt_gsi::GenericMethod ("addAction", "@brief Method void QGraphicsWidget::addAction(QAction *action)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); methods += new qt_gsi::GenericMethod ("addActions", "@brief Method void QGraphicsWidget::addActions(QList actions)\n", false, &_init_f_addActions_1780, &_call_f_addActions_1780); methods += new qt_gsi::GenericMethod ("adjustSize", "@brief Method void QGraphicsWidget::adjustSize()\n", false, &_init_f_adjustSize_0, &_call_f_adjustSize_0); - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod (":children", "@brief Method () const\n", true, &_init_f_children_c0, &_call_f_children_c0); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsWidget::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod (":children", "@brief Method const QList &QGraphicsWidget::children()\n", true, &_init_f_children_c0, &_call_f_children_c0); methods += new qt_gsi::GenericMethod ("close", "@brief Method bool QGraphicsWidget::close()\n", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod (":focusPolicy", "@brief Method Qt::FocusPolicy QGraphicsWidget::focusPolicy()\n", true, &_init_f_focusPolicy_c0, &_call_f_focusPolicy_c0); methods += new qt_gsi::GenericMethod ("focusWidget", "@brief Method QGraphicsWidget *QGraphicsWidget::focusWidget()\n", true, &_init_f_focusWidget_c0, &_call_f_focusWidget_c0); methods += new qt_gsi::GenericMethod (":font", "@brief Method QFont QGraphicsWidget::font()\n", true, &_init_f_font_c0, &_call_f_font_c0); - methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method (double *, double *, double *, double *) const\nThis is a reimplementation of QGraphicsLayoutItem::getContentsMargins", true, &_init_f_getContentsMargins_c4704, &_call_f_getContentsMargins_c4704); + methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method void QGraphicsWidget::getContentsMargins(double *left, double *top, double *right, double *bottom)\nThis is a reimplementation of QGraphicsLayoutItem::getContentsMargins", true, &_init_f_getContentsMargins_c4704, &_call_f_getContentsMargins_c4704); methods += new qt_gsi::GenericMethod ("getWindowFrameMargins", "@brief Method void QGraphicsWidget::getWindowFrameMargins(double *left, double *top, double *right, double *bottom)\n", true, &_init_f_getWindowFrameMargins_c4704, &_call_f_getWindowFrameMargins_c4704); methods += new qt_gsi::GenericMethod ("grabShortcut", "@brief Method int QGraphicsWidget::grabShortcut(const QKeySequence &sequence, Qt::ShortcutContext context)\n", false, &_init_f_grabShortcut_4758, &_call_f_grabShortcut_4758); methods += new qt_gsi::GenericMethod ("insertAction", "@brief Method void QGraphicsWidget::insertAction(QAction *before, QAction *action)\n", false, &_init_f_insertAction_2510, &_call_f_insertAction_2510); @@ -1299,7 +1299,7 @@ static gsi::Methods methods_QGraphicsWidget () { methods += new qt_gsi::GenericMethod ("isActiveWindow?", "@brief Method bool QGraphicsWidget::isActiveWindow()\n", true, &_init_f_isActiveWindow_c0, &_call_f_isActiveWindow_c0); methods += new qt_gsi::GenericMethod (":layout", "@brief Method QGraphicsLayout *QGraphicsWidget::layout()\n", true, &_init_f_layout_c0, &_call_f_layout_c0); methods += new qt_gsi::GenericMethod (":layoutDirection", "@brief Method Qt::LayoutDirection QGraphicsWidget::layoutDirection()\n", true, &_init_f_layoutDirection_c0, &_call_f_layoutDirection_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod ("paintWindowFrame", "@brief Method void QGraphicsWidget::paintWindowFrame(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\n", false, &_init_f_paintWindowFrame_6301, &_call_f_paintWindowFrame_6301); methods += new qt_gsi::GenericMethod (":palette", "@brief Method QPalette QGraphicsWidget::palette()\n", true, &_init_f_palette_c0, &_call_f_palette_c0); methods += new qt_gsi::GenericMethod ("rect", "@brief Method QRectF QGraphicsWidget::rect()\n", true, &_init_f_rect_c0, &_call_f_rect_c0); @@ -1311,8 +1311,8 @@ static gsi::Methods methods_QGraphicsWidget () { methods += new qt_gsi::GenericMethod ("setContentsMargins", "@brief Method void QGraphicsWidget::setContentsMargins(double left, double top, double right, double bottom)\n", false, &_init_f_setContentsMargins_3960, &_call_f_setContentsMargins_3960); methods += new qt_gsi::GenericMethod ("setFocusPolicy|focusPolicy=", "@brief Method void QGraphicsWidget::setFocusPolicy(Qt::FocusPolicy policy)\n", false, &_init_f_setFocusPolicy_1885, &_call_f_setFocusPolicy_1885); methods += new qt_gsi::GenericMethod ("setFont|font=", "@brief Method void QGraphicsWidget::setFont(const QFont &font)\n", false, &_init_f_setFont_1801, &_call_f_setFont_1801); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRectF &)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); - methods += new qt_gsi::GenericMethod ("setGeometry", "@brief Method (double, double, double, double)\n", false, &_init_f_setGeometry_3960, &_call_f_setGeometry_3960); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGraphicsWidget::setGeometry(const QRectF &rect)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); + methods += new qt_gsi::GenericMethod ("setGeometry", "@brief Method void QGraphicsWidget::setGeometry(double x, double y, double w, double h)\n", false, &_init_f_setGeometry_3960, &_call_f_setGeometry_3960); methods += new qt_gsi::GenericMethod ("setLayout|layout=", "@brief Method void QGraphicsWidget::setLayout(QGraphicsLayout *layout)\n", false, &_init_f_setLayout_2158, &_call_f_setLayout_2158); methods += new qt_gsi::GenericMethod ("setLayoutDirection|layoutDirection=", "@brief Method void QGraphicsWidget::setLayoutDirection(Qt::LayoutDirection direction)\n", false, &_init_f_setLayoutDirection_2316, &_call_f_setLayoutDirection_2316); methods += new qt_gsi::GenericMethod ("setPalette|palette=", "@brief Method void QGraphicsWidget::setPalette(const QPalette &palette)\n", false, &_init_f_setPalette_2113, &_call_f_setPalette_2113); @@ -1322,11 +1322,11 @@ static gsi::Methods methods_QGraphicsWidget () { methods += new qt_gsi::GenericMethod ("setWindowFlags|windowFlags=", "@brief Method void QGraphicsWidget::setWindowFlags(QFlags wFlags)\n", false, &_init_f_setWindowFlags_2495, &_call_f_setWindowFlags_2495); methods += new qt_gsi::GenericMethod ("setWindowFrameMargins", "@brief Method void QGraphicsWidget::setWindowFrameMargins(double left, double top, double right, double bottom)\n", false, &_init_f_setWindowFrameMargins_3960, &_call_f_setWindowFrameMargins_3960); methods += new qt_gsi::GenericMethod ("setWindowTitle|windowTitle=", "@brief Method void QGraphicsWidget::setWindowTitle(const QString &title)\n", false, &_init_f_setWindowTitle_2025, &_call_f_setWindowTitle_2025); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsWidget::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += new qt_gsi::GenericMethod (":size", "@brief Method QSizeF QGraphicsWidget::size()\n", true, &_init_f_size_c0, &_call_f_size_c0); methods += new qt_gsi::GenericMethod (":style", "@brief Method QStyle *QGraphicsWidget::style()\n", true, &_init_f_style_c0, &_call_f_style_c0); methods += new qt_gsi::GenericMethod ("testAttribute", "@brief Method bool QGraphicsWidget::testAttribute(Qt::WidgetAttribute attribute)\n", true, &_init_f_testAttribute_c2309, &_call_f_testAttribute_c2309); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsWidget::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); methods += new qt_gsi::GenericMethod ("unsetLayoutDirection", "@brief Method void QGraphicsWidget::unsetLayoutDirection()\n", false, &_init_f_unsetLayoutDirection_0, &_call_f_unsetLayoutDirection_0); methods += new qt_gsi::GenericMethod ("unsetWindowFrameMargins", "@brief Method void QGraphicsWidget::unsetWindowFrameMargins()\n", false, &_init_f_unsetWindowFrameMargins_0, &_call_f_unsetWindowFrameMargins_0); methods += new qt_gsi::GenericMethod (":windowFlags", "@brief Method QFlags QGraphicsWidget::windowFlags()\n", true, &_init_f_windowFlags_c0, &_call_f_windowFlags_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc index b32f71423..dced0b232 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc @@ -61,7 +61,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QLayoutItem *, int, int, int, int, QFlags) +// void QGridLayout::addItem(QLayoutItem *item, int row, int column, int rowSpan, int columnSpan, QFlags) static void _init_f_addItem_7018 (qt_gsi::GenericMethod *decl) @@ -162,7 +162,7 @@ static void _call_f_addLayout_6619 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *) +// void QGridLayout::addWidget(QWidget *w) static void _init_f_addWidget_1315 (qt_gsi::GenericMethod *decl) @@ -182,7 +182,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *, int, int, QFlags) +// void QGridLayout::addWidget(QWidget *, int row, int column, QFlags) static void _init_f_addWidget_5275 (qt_gsi::GenericMethod *decl) @@ -211,7 +211,7 @@ static void _call_f_addWidget_5275 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *, int, int, int, int, QFlags) +// void QGridLayout::addWidget(QWidget *, int row, int column, int rowSpan, int columnSpan, QFlags) static void _init_f_addWidget_6593 (qt_gsi::GenericMethod *decl) @@ -321,7 +321,7 @@ static void _call_f_columnStretch_c767 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QGridLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -336,7 +336,7 @@ static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QFlags QGridLayout::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -383,7 +383,7 @@ static void _call_f_getItemPosition_4147 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// bool QGridLayout::hasHeightForWidth() static void _init_f_hasHeightForWidth_c0 (qt_gsi::GenericMethod *decl) @@ -398,7 +398,7 @@ static void _call_f_hasHeightForWidth_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QGridLayout::heightForWidth(int) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -432,7 +432,7 @@ static void _call_f_horizontalSpacing_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// () +// void QGridLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -448,7 +448,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QLayoutItem *QGridLayout::itemAt(int index) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -489,7 +489,7 @@ static void _call_f_itemAtPosition_c1426 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QSize QGridLayout::maximumSize() static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl) @@ -504,7 +504,7 @@ static void _call_f_maximumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int) const +// int QGridLayout::minimumHeightForWidth(int) static void _init_f_minimumHeightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -523,7 +523,7 @@ static void _call_f_minimumHeightForWidth_c767 (const qt_gsi::GenericMethod * /* } -// () const +// QSize QGridLayout::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -675,7 +675,7 @@ static void _call_f_setDefaultPositioning_2572 (const qt_gsi::GenericMethod * /* } -// (const QRect &) +// void QGridLayout::setGeometry(const QRect &) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -781,7 +781,7 @@ static void _call_f_setRowStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) +// void QGridLayout::setSpacing(int spacing) static void _init_f_setSpacing_767 (qt_gsi::GenericMethod *decl) @@ -821,7 +821,7 @@ static void _call_f_setVerticalSpacing_767 (const qt_gsi::GenericMethod * /*decl } -// () const +// QSize QGridLayout::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -836,7 +836,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QGridLayout::spacing() static void _init_f_spacing_c0 (qt_gsi::GenericMethod *decl) @@ -851,7 +851,7 @@ static void _call_f_spacing_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (int) +// QLayoutItem *QGridLayout::takeAt(int index) static void _init_f_takeAt_767 (qt_gsi::GenericMethod *decl) @@ -985,28 +985,28 @@ namespace gsi static gsi::Methods methods_QGridLayout () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("addItem", "@brief Method (QLayoutItem *, int, int, int, int, QFlags)\n", false, &_init_f_addItem_7018, &_call_f_addItem_7018); + methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QGridLayout::addItem(QLayoutItem *item, int row, int column, int rowSpan, int columnSpan, QFlags)\n", false, &_init_f_addItem_7018, &_call_f_addItem_7018); methods += new qt_gsi::GenericMethod ("addLayout", "@brief Method void QGridLayout::addLayout(QLayout *, int row, int column, QFlags)\n", false, &_init_f_addLayout_5301, &_call_f_addLayout_5301); methods += new qt_gsi::GenericMethod ("addLayout", "@brief Method void QGridLayout::addLayout(QLayout *, int row, int column, int rowSpan, int columnSpan, QFlags)\n", false, &_init_f_addLayout_6619, &_call_f_addLayout_6619); - methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method (QWidget *)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); - methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method (QWidget *, int, int, QFlags)\n", false, &_init_f_addWidget_5275, &_call_f_addWidget_5275); - methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method (QWidget *, int, int, int, int, QFlags)\n", false, &_init_f_addWidget_6593, &_call_f_addWidget_6593); + methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method void QGridLayout::addWidget(QWidget *w)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); + methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method void QGridLayout::addWidget(QWidget *, int row, int column, QFlags)\n", false, &_init_f_addWidget_5275, &_call_f_addWidget_5275); + methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method void QGridLayout::addWidget(QWidget *, int row, int column, int rowSpan, int columnSpan, QFlags)\n", false, &_init_f_addWidget_6593, &_call_f_addWidget_6593); methods += new qt_gsi::GenericMethod ("cellRect", "@brief Method QRect QGridLayout::cellRect(int row, int column)\n", true, &_init_f_cellRect_c1426, &_call_f_cellRect_c1426); methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QGridLayout::columnCount()\n", true, &_init_f_columnCount_c0, &_call_f_columnCount_c0); methods += new qt_gsi::GenericMethod ("columnMinimumWidth", "@brief Method int QGridLayout::columnMinimumWidth(int column)\n", true, &_init_f_columnMinimumWidth_c767, &_call_f_columnMinimumWidth_c767); methods += new qt_gsi::GenericMethod ("columnStretch", "@brief Method int QGridLayout::columnStretch(int column)\n", true, &_init_f_columnStretch_c767, &_call_f_columnStretch_c767); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QGridLayout::count()\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QGridLayout::expandingDirections()\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); methods += new qt_gsi::GenericMethod ("getItemPosition", "@brief Method void QGridLayout::getItemPosition(int idx, int *row, int *column, int *rowSpan, int *columnSpan)\n", false, &_init_f_getItemPosition_4147, &_call_f_getItemPosition_4147); - methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method () const\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QGridLayout::hasHeightForWidth()\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QGridLayout::heightForWidth(int)\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod (":horizontalSpacing", "@brief Method int QGridLayout::horizontalSpacing()\n", true, &_init_f_horizontalSpacing_c0, &_call_f_horizontalSpacing_c0); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QGridLayout::invalidate()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QGridLayout::itemAt(int index)\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); methods += new qt_gsi::GenericMethod ("itemAtPosition", "@brief Method QLayoutItem *QGridLayout::itemAtPosition(int row, int column)\n", true, &_init_f_itemAtPosition_c1426, &_call_f_itemAtPosition_c1426); - methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayout::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); - methods += new qt_gsi::GenericMethod ("minimumHeightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::minimumHeightForWidth", true, &_init_f_minimumHeightForWidth_c767, &_call_f_minimumHeightForWidth_c767); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method QSize QGridLayout::maximumSize()\nThis is a reimplementation of QLayout::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumHeightForWidth", "@brief Method int QGridLayout::minimumHeightForWidth(int)\nThis is a reimplementation of QLayoutItem::minimumHeightForWidth", true, &_init_f_minimumHeightForWidth_c767, &_call_f_minimumHeightForWidth_c767); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QGridLayout::minimumSize()\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); methods += new qt_gsi::GenericMethod (":originCorner", "@brief Method Qt::Corner QGridLayout::originCorner()\n", true, &_init_f_originCorner_c0, &_call_f_originCorner_c0); methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QGridLayout::rowCount()\n", true, &_init_f_rowCount_c0, &_call_f_rowCount_c0); methods += new qt_gsi::GenericMethod ("rowMinimumHeight", "@brief Method int QGridLayout::rowMinimumHeight(int row)\n", true, &_init_f_rowMinimumHeight_c767, &_call_f_rowMinimumHeight_c767); @@ -1014,16 +1014,16 @@ static gsi::Methods methods_QGridLayout () { methods += new qt_gsi::GenericMethod ("setColumnMinimumWidth", "@brief Method void QGridLayout::setColumnMinimumWidth(int column, int minSize)\n", false, &_init_f_setColumnMinimumWidth_1426, &_call_f_setColumnMinimumWidth_1426); methods += new qt_gsi::GenericMethod ("setColumnStretch", "@brief Method void QGridLayout::setColumnStretch(int column, int stretch)\n", false, &_init_f_setColumnStretch_1426, &_call_f_setColumnStretch_1426); methods += new qt_gsi::GenericMethod ("setDefaultPositioning", "@brief Method void QGridLayout::setDefaultPositioning(int n, Qt::Orientation orient)\n", false, &_init_f_setDefaultPositioning_2572, &_call_f_setDefaultPositioning_2572); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGridLayout::setGeometry(const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); methods += new qt_gsi::GenericMethod ("setHorizontalSpacing|horizontalSpacing=", "@brief Method void QGridLayout::setHorizontalSpacing(int spacing)\n", false, &_init_f_setHorizontalSpacing_767, &_call_f_setHorizontalSpacing_767); methods += new qt_gsi::GenericMethod ("setOriginCorner|originCorner=", "@brief Method void QGridLayout::setOriginCorner(Qt::Corner)\n", false, &_init_f_setOriginCorner_1366, &_call_f_setOriginCorner_1366); methods += new qt_gsi::GenericMethod ("setRowMinimumHeight", "@brief Method void QGridLayout::setRowMinimumHeight(int row, int minSize)\n", false, &_init_f_setRowMinimumHeight_1426, &_call_f_setRowMinimumHeight_1426); methods += new qt_gsi::GenericMethod ("setRowStretch", "@brief Method void QGridLayout::setRowStretch(int row, int stretch)\n", false, &_init_f_setRowStretch_1426, &_call_f_setRowStretch_1426); - methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method (int)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); + methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QGridLayout::setSpacing(int spacing)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); methods += new qt_gsi::GenericMethod ("setVerticalSpacing|verticalSpacing=", "@brief Method void QGridLayout::setVerticalSpacing(int spacing)\n", false, &_init_f_setVerticalSpacing_767, &_call_f_setVerticalSpacing_767); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod (":spacing", "@brief Method () const\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); - methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method (int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QGridLayout::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":spacing", "@brief Method int QGridLayout::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); + methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method QLayoutItem *QGridLayout::takeAt(int index)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); methods += new qt_gsi::GenericMethod (":verticalSpacing", "@brief Method int QGridLayout::verticalSpacing()\n", true, &_init_f_verticalSpacing_c0, &_call_f_verticalSpacing_c0); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QGridLayout::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QGridLayout::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc index 1cc52f155..914b72248 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc @@ -158,7 +158,7 @@ static void _call_f_isFlat_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QSize QGroupBox::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -392,7 +392,7 @@ static gsi::Methods methods_QGroupBox () { methods += new qt_gsi::GenericMethod ("isCheckable?|:checkable", "@brief Method bool QGroupBox::isCheckable()\n", true, &_init_f_isCheckable_c0, &_call_f_isCheckable_c0); methods += new qt_gsi::GenericMethod ("isChecked?|:checked", "@brief Method bool QGroupBox::isChecked()\n", true, &_init_f_isChecked_c0, &_call_f_isChecked_c0); methods += new qt_gsi::GenericMethod ("isFlat?|:flat", "@brief Method bool QGroupBox::isFlat()\n", true, &_init_f_isFlat_c0, &_call_f_isFlat_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QGroupBox::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QGroupBox::setAlignment(int alignment)\n", false, &_init_f_setAlignment_767, &_call_f_setAlignment_767); methods += new qt_gsi::GenericMethod ("setCheckable|checkable=", "@brief Method void QGroupBox::setCheckable(bool checkable)\n", false, &_init_f_setCheckable_864, &_call_f_setCheckable_864); methods += new qt_gsi::GenericMethod ("setChecked|checked=", "@brief Method void QGroupBox::setChecked(bool checked)\n", false, &_init_f_setChecked_864, &_call_f_setChecked_864); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc index f5568bc98..056ae09f7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc @@ -165,7 +165,7 @@ static void _call_f_defaultSectionSize_c0 (const qt_gsi::GenericMethod * /*decl* } -// () +// void QHeaderView::doItemsLayout() static void _init_f_doItemsLayout_0 (qt_gsi::GenericMethod *decl) @@ -483,7 +483,7 @@ static void _call_f_orientation_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QHeaderView::reset() static void _init_f_reset_0 (qt_gsi::GenericMethod *decl) @@ -821,7 +821,7 @@ static void _call_f_setMinimumSectionSize_767 (const qt_gsi::GenericMethod * /*d } -// (QAbstractItemModel *) +// void QHeaderView::setModel(QAbstractItemModel *model) static void _init_f_setModel_2419 (qt_gsi::GenericMethod *decl) @@ -1066,7 +1066,7 @@ static void _call_f_showSection_767 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QHeaderView::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1306,7 +1306,7 @@ static gsi::Methods methods_QHeaderView () { methods += new qt_gsi::GenericMethod ("count", "@brief Method int QHeaderView::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":defaultAlignment", "@brief Method QFlags QHeaderView::defaultAlignment()\n", true, &_init_f_defaultAlignment_c0, &_call_f_defaultAlignment_c0); methods += new qt_gsi::GenericMethod (":defaultSectionSize", "@brief Method int QHeaderView::defaultSectionSize()\n", true, &_init_f_defaultSectionSize_c0, &_call_f_defaultSectionSize_c0); - methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); + methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method void QHeaderView::doItemsLayout()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); methods += new qt_gsi::GenericMethod ("headerDataChanged", "@brief Method void QHeaderView::headerDataChanged(Qt::Orientation orientation, int logicalFirst, int logicalLast)\n", false, &_init_f_headerDataChanged_3231, &_call_f_headerDataChanged_3231); methods += new qt_gsi::GenericMethod ("hiddenSectionCount", "@brief Method int QHeaderView::hiddenSectionCount()\n", true, &_init_f_hiddenSectionCount_c0, &_call_f_hiddenSectionCount_c0); methods += new qt_gsi::GenericMethod ("hideSection", "@brief Method void QHeaderView::hideSection(int logicalIndex)\n", false, &_init_f_hideSection_767, &_call_f_hideSection_767); @@ -1324,7 +1324,7 @@ static gsi::Methods methods_QHeaderView () { methods += new qt_gsi::GenericMethod ("moveSection", "@brief Method void QHeaderView::moveSection(int from, int to)\n", false, &_init_f_moveSection_1426, &_call_f_moveSection_1426); methods += new qt_gsi::GenericMethod (":offset", "@brief Method int QHeaderView::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0); methods += new qt_gsi::GenericMethod ("orientation", "@brief Method Qt::Orientation QHeaderView::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); - methods += new qt_gsi::GenericMethod ("reset", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); + methods += new qt_gsi::GenericMethod ("reset", "@brief Method void QHeaderView::reset()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); methods += new qt_gsi::GenericMethod ("resizeMode", "@brief Method QHeaderView::ResizeMode QHeaderView::resizeMode(int logicalIndex)\n", true, &_init_f_resizeMode_c767, &_call_f_resizeMode_c767); methods += new qt_gsi::GenericMethod ("resizeSection", "@brief Method void QHeaderView::resizeSection(int logicalIndex, int size)\n", false, &_init_f_resizeSection_1426, &_call_f_resizeSection_1426); methods += new qt_gsi::GenericMethod ("resizeSections", "@brief Method void QHeaderView::resizeSections(QHeaderView::ResizeMode mode)\n", false, &_init_f_resizeSections_2644, &_call_f_resizeSections_2644); @@ -1342,7 +1342,7 @@ static gsi::Methods methods_QHeaderView () { methods += new qt_gsi::GenericMethod ("setDefaultSectionSize|defaultSectionSize=", "@brief Method void QHeaderView::setDefaultSectionSize(int size)\n", false, &_init_f_setDefaultSectionSize_767, &_call_f_setDefaultSectionSize_767); methods += new qt_gsi::GenericMethod ("setHighlightSections|highlightSections=", "@brief Method void QHeaderView::setHighlightSections(bool highlight)\n", false, &_init_f_setHighlightSections_864, &_call_f_setHighlightSections_864); methods += new qt_gsi::GenericMethod ("setMinimumSectionSize|minimumSectionSize=", "@brief Method void QHeaderView::setMinimumSectionSize(int size)\n", false, &_init_f_setMinimumSectionSize_767, &_call_f_setMinimumSectionSize_767); - methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); + methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method void QHeaderView::setModel(QAbstractItemModel *model)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); methods += new qt_gsi::GenericMethod ("setMovable|movable=", "@brief Method void QHeaderView::setMovable(bool movable)\n", false, &_init_f_setMovable_864, &_call_f_setMovable_864); methods += new qt_gsi::GenericMethod ("setOffset|offset=", "@brief Method void QHeaderView::setOffset(int offset)\n", false, &_init_f_setOffset_767, &_call_f_setOffset_767); methods += new qt_gsi::GenericMethod ("setOffsetToLastSection", "@brief Method void QHeaderView::setOffsetToLastSection()\n", false, &_init_f_setOffsetToLastSection_0, &_call_f_setOffsetToLastSection_0); @@ -1354,7 +1354,7 @@ static gsi::Methods methods_QHeaderView () { methods += new qt_gsi::GenericMethod ("setSortIndicatorShown|sortIndicatorShown=", "@brief Method void QHeaderView::setSortIndicatorShown(bool show)\n", false, &_init_f_setSortIndicatorShown_864, &_call_f_setSortIndicatorShown_864); methods += new qt_gsi::GenericMethod ("setStretchLastSection|stretchLastSection=", "@brief Method void QHeaderView::setStretchLastSection(bool stretch)\n", false, &_init_f_setStretchLastSection_864, &_call_f_setStretchLastSection_864); methods += new qt_gsi::GenericMethod ("showSection", "@brief Method void QHeaderView::showSection(int logicalIndex)\n", false, &_init_f_showSection_767, &_call_f_showSection_767); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QHeaderView::sizeHint()\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("sortIndicatorOrder", "@brief Method Qt::SortOrder QHeaderView::sortIndicatorOrder()\n", true, &_init_f_sortIndicatorOrder_c0, &_call_f_sortIndicatorOrder_c0); methods += new qt_gsi::GenericMethod ("sortIndicatorSection", "@brief Method int QHeaderView::sortIndicatorSection()\n", true, &_init_f_sortIndicatorSection_c0, &_call_f_sortIndicatorSection_c0); methods += new qt_gsi::GenericMethod (":stretchLastSection", "@brief Method bool QHeaderView::stretchLastSection()\n", true, &_init_f_stretchLastSection_c0, &_call_f_stretchLastSection_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc index 5fe982de0..586fdc6ac 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc @@ -153,7 +153,7 @@ static void _call_f_color_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// int QImage::colorCount() static void _init_f_colorCount_c0 (qt_gsi::GenericMethod *decl) @@ -337,7 +337,7 @@ static void _call_f_createMaskFromColor_c3198 (const qt_gsi::GenericMethod * /*d } -// () const +// int QImage::depth() static void _init_f_depth_c0 (qt_gsi::GenericMethod *decl) @@ -448,7 +448,7 @@ static void _call_f_hasAlphaChannel_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QImage::height() static void _init_f_height_c0 (qt_gsi::GenericMethod *decl) @@ -656,7 +656,7 @@ static void _call_f_numBytes_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QImage::numColors() static void _init_f_numColors_c0 (qt_gsi::GenericMethod *decl) @@ -705,7 +705,7 @@ static void _call_f_operator_excl__eq__c1877 (const qt_gsi::GenericMethod * /*de } -// (const QImage &) +// QImage &QImage::operator=(const QImage &) static void _init_f_operator_eq__1877 (qt_gsi::GenericMethod *decl) @@ -743,7 +743,7 @@ static void _call_f_operator_eq__eq__c1877 (const qt_gsi::GenericMethod * /*decl } -// () const +// QPaintEngine *QImage::paintEngine() static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl) @@ -1498,7 +1498,7 @@ static void _call_f_valid_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QImage::width() static void _init_f_width_c0 (qt_gsi::GenericMethod *decl) @@ -1622,7 +1622,7 @@ static gsi::Methods methods_QImage () { methods += new qt_gsi::GenericMethod ("bytesPerLine", "@brief Method int QImage::bytesPerLine()\n", true, &_init_f_bytesPerLine_c0, &_call_f_bytesPerLine_c0); methods += new qt_gsi::GenericMethod ("cacheKey", "@brief Method qint64 QImage::cacheKey()\n", true, &_init_f_cacheKey_c0, &_call_f_cacheKey_c0); methods += new qt_gsi::GenericMethod ("color", "@brief Method unsigned int QImage::color(int i)\n", true, &_init_f_color_c767, &_call_f_color_c767); - methods += new qt_gsi::GenericMethod (":colorCount", "@brief Method () const\n", true, &_init_f_colorCount_c0, &_call_f_colorCount_c0); + methods += new qt_gsi::GenericMethod (":colorCount", "@brief Method int QImage::colorCount()\n", true, &_init_f_colorCount_c0, &_call_f_colorCount_c0); methods += new qt_gsi::GenericMethod (":colorTable", "@brief Method QVector QImage::colorTable()\n", true, &_init_f_colorTable_c0, &_call_f_colorTable_c0); methods += new qt_gsi::GenericMethod ("convertToFormat", "@brief Method QImage QImage::convertToFormat(QImage::Format f, QFlags flags)\n", true, &_init_f_convertToFormat_c4993, &_call_f_convertToFormat_c4993); methods += new qt_gsi::GenericMethod ("convertToFormat", "@brief Method QImage QImage::convertToFormat(QImage::Format f, const QVector &colorTable, QFlags flags)\n", true, &_init_f_convertToFormat_c7392, &_call_f_convertToFormat_c7392); @@ -1631,14 +1631,14 @@ static gsi::Methods methods_QImage () { methods += new qt_gsi::GenericMethod ("createAlphaMask", "@brief Method QImage QImage::createAlphaMask(QFlags flags)\n", true, &_init_f_createAlphaMask_c3368, &_call_f_createAlphaMask_c3368); methods += new qt_gsi::GenericMethod ("createHeuristicMask", "@brief Method QImage QImage::createHeuristicMask(bool clipTight)\n", true, &_init_f_createHeuristicMask_c864, &_call_f_createHeuristicMask_c864); methods += new qt_gsi::GenericMethod ("createMaskFromColor", "@brief Method QImage QImage::createMaskFromColor(unsigned int color, Qt::MaskMode mode)\n", true, &_init_f_createMaskFromColor_c3198, &_call_f_createMaskFromColor_c3198); - methods += new qt_gsi::GenericMethod ("depth", "@brief Method () const\n", true, &_init_f_depth_c0, &_call_f_depth_c0); + methods += new qt_gsi::GenericMethod ("depth", "@brief Method int QImage::depth()\n", true, &_init_f_depth_c0, &_call_f_depth_c0); methods += new qt_gsi::GenericMethod ("detach", "@brief Method void QImage::detach()\n", false, &_init_f_detach_0, &_call_f_detach_0); methods += new qt_gsi::GenericMethod (":dotsPerMeterX", "@brief Method int QImage::dotsPerMeterX()\n", true, &_init_f_dotsPerMeterX_c0, &_call_f_dotsPerMeterX_c0); methods += new qt_gsi::GenericMethod (":dotsPerMeterY", "@brief Method int QImage::dotsPerMeterY()\n", true, &_init_f_dotsPerMeterY_c0, &_call_f_dotsPerMeterY_c0); methods += new qt_gsi::GenericMethod ("fill", "@brief Method void QImage::fill(unsigned int pixel)\n", false, &_init_f_fill_1772, &_call_f_fill_1772); methods += new qt_gsi::GenericMethod ("format", "@brief Method QImage::Format QImage::format()\n", true, &_init_f_format_c0, &_call_f_format_c0); methods += new qt_gsi::GenericMethod ("hasAlphaChannel", "@brief Method bool QImage::hasAlphaChannel()\n", true, &_init_f_hasAlphaChannel_c0, &_call_f_hasAlphaChannel_c0); - methods += new qt_gsi::GenericMethod ("height", "@brief Method () const\n", true, &_init_f_height_c0, &_call_f_height_c0); + methods += new qt_gsi::GenericMethod ("height", "@brief Method int QImage::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); methods += new qt_gsi::GenericMethod ("invertPixels", "@brief Method void QImage::invertPixels(QImage::InvertMode)\n", false, &_init_f_invertPixels_2137, &_call_f_invertPixels_2137); methods += new qt_gsi::GenericMethod ("isDetached?", "@brief Method bool QImage::isDetached()\n", true, &_init_f_isDetached_c0, &_call_f_isDetached_c0); methods += new qt_gsi::GenericMethod ("isGrayscale?", "@brief Method bool QImage::isGrayscale()\n", true, &_init_f_isGrayscale_c0, &_call_f_isGrayscale_c0); @@ -1649,12 +1649,12 @@ static gsi::Methods methods_QImage () { methods += new qt_gsi::GenericMethod ("loadFromData", "@brief Method bool QImage::loadFromData(const QByteArray &data, const char *aformat)\n", false, &_init_f_loadFromData_3932, &_call_f_loadFromData_3932); methods += new qt_gsi::GenericMethod ("mirrored", "@brief Method QImage QImage::mirrored(bool horizontally, bool vertically)\n", true, &_init_f_mirrored_c1620, &_call_f_mirrored_c1620); methods += new qt_gsi::GenericMethod ("numBytes", "@brief Method int QImage::numBytes()\n", true, &_init_f_numBytes_c0, &_call_f_numBytes_c0); - methods += new qt_gsi::GenericMethod (":numColors", "@brief Method () const\n", true, &_init_f_numColors_c0, &_call_f_numColors_c0); + methods += new qt_gsi::GenericMethod (":numColors", "@brief Method int QImage::numColors()\n", true, &_init_f_numColors_c0, &_call_f_numColors_c0); methods += new qt_gsi::GenericMethod (":offset", "@brief Method QPoint QImage::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0); methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QImage::operator!=(const QImage &)\n", true, &_init_f_operator_excl__eq__c1877, &_call_f_operator_excl__eq__c1877); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QImage &)\n", false, &_init_f_operator_eq__1877, &_call_f_operator_eq__1877); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QImage &QImage::operator=(const QImage &)\n", false, &_init_f_operator_eq__1877, &_call_f_operator_eq__1877); methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QImage::operator==(const QImage &)\n", true, &_init_f_operator_eq__eq__c1877, &_call_f_operator_eq__eq__c1877); - methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); + methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method QPaintEngine *QImage::paintEngine()\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); methods += new qt_gsi::GenericMethod ("pixel", "@brief Method unsigned int QImage::pixel(int x, int y)\n", true, &_init_f_pixel_c1426, &_call_f_pixel_c1426); methods += new qt_gsi::GenericMethod ("pixel", "@brief Method unsigned int QImage::pixel(const QPoint &pt)\n", true, &_init_f_pixel_c1916, &_call_f_pixel_c1916); methods += new qt_gsi::GenericMethod ("pixelIndex", "@brief Method int QImage::pixelIndex(int x, int y)\n", true, &_init_f_pixelIndex_c1426, &_call_f_pixelIndex_c1426); @@ -1691,7 +1691,7 @@ static gsi::Methods methods_QImage () { methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QImage QImage::transformed(const QTransform &matrix, Qt::TransformationMode mode)\n", true, &_init_f_transformed_c4875, &_call_f_transformed_c4875); methods += new qt_gsi::GenericMethod ("valid", "@brief Method bool QImage::valid(int x, int y)\n", true, &_init_f_valid_c1426, &_call_f_valid_c1426); methods += new qt_gsi::GenericMethod ("valid", "@brief Method bool QImage::valid(const QPoint &pt)\n", true, &_init_f_valid_c1916, &_call_f_valid_c1916); - methods += new qt_gsi::GenericMethod ("width", "@brief Method () const\n", true, &_init_f_width_c0, &_call_f_width_c0); + methods += new qt_gsi::GenericMethod ("width", "@brief Method int QImage::width()\n", true, &_init_f_width_c0, &_call_f_width_c0); methods += new qt_gsi::GenericStaticMethod ("fromData", "@brief Static method QImage QImage::fromData(const unsigned char *data, int size, const char *format)\nThis method is static and can be called without an instance.", &_init_f_fromData_5018, &_call_f_fromData_5018); methods += new qt_gsi::GenericStaticMethod ("fromData", "@brief Static method QImage QImage::fromData(const QByteArray &data, const char *format)\nThis method is static and can be called without an instance.", &_init_f_fromData_3932, &_call_f_fromData_3932); methods += new qt_gsi::GenericStaticMethod ("trueMatrix", "@brief Static method QMatrix QImage::trueMatrix(const QMatrix &, int w, int h)\nThis method is static and can be called without an instance.", &_init_f_trueMatrix_3341, &_call_f_trueMatrix_3341); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc index 74f16e431..d3e6037ac 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc @@ -127,7 +127,7 @@ static void _call_f_comboBoxItems_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int) +// void QInputDialog::done(int result) static void _init_f_done_767 (qt_gsi::GenericMethod *decl) @@ -312,7 +312,7 @@ static void _call_f_labelText_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QSize QInputDialog::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -342,7 +342,7 @@ static void _call_f_okButtonText_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () +// void QInputDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -358,7 +358,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QInputDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -805,7 +805,7 @@ static void _call_f_setTextValue_2025 (const qt_gsi::GenericMethod * /*decl*/, v } -// (bool) +// void QInputDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -825,7 +825,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QInputDialog::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1197,7 +1197,7 @@ static gsi::Methods methods_QInputDialog () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":cancelButtonText", "@brief Method QString QInputDialog::cancelButtonText()\n", true, &_init_f_cancelButtonText_c0, &_call_f_cancelButtonText_c0); methods += new qt_gsi::GenericMethod (":comboBoxItems", "@brief Method QStringList QInputDialog::comboBoxItems()\n", true, &_init_f_comboBoxItems_c0, &_call_f_comboBoxItems_c0); - methods += new qt_gsi::GenericMethod ("done", "@brief Method (int)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); + methods += new qt_gsi::GenericMethod ("done", "@brief Method void QInputDialog::done(int result)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); methods += new qt_gsi::GenericMethod (":doubleDecimals", "@brief Method int QInputDialog::doubleDecimals()\n", true, &_init_f_doubleDecimals_c0, &_call_f_doubleDecimals_c0); methods += new qt_gsi::GenericMethod (":doubleMaximum", "@brief Method double QInputDialog::doubleMaximum()\n", true, &_init_f_doubleMaximum_c0, &_call_f_doubleMaximum_c0); methods += new qt_gsi::GenericMethod (":doubleMinimum", "@brief Method double QInputDialog::doubleMinimum()\n", true, &_init_f_doubleMinimum_c0, &_call_f_doubleMinimum_c0); @@ -1209,10 +1209,10 @@ static gsi::Methods methods_QInputDialog () { methods += new qt_gsi::GenericMethod (":intValue", "@brief Method int QInputDialog::intValue()\n", true, &_init_f_intValue_c0, &_call_f_intValue_c0); methods += new qt_gsi::GenericMethod ("isComboBoxEditable?|:comboBoxEditable", "@brief Method bool QInputDialog::isComboBoxEditable()\n", true, &_init_f_isComboBoxEditable_c0, &_call_f_isComboBoxEditable_c0); methods += new qt_gsi::GenericMethod (":labelText", "@brief Method QString QInputDialog::labelText()\n", true, &_init_f_labelText_c0, &_call_f_labelText_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QDialog::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QInputDialog::minimumSizeHint()\nThis is a reimplementation of QDialog::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":okButtonText", "@brief Method QString QInputDialog::okButtonText()\n", true, &_init_f_okButtonText_c0, &_call_f_okButtonText_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\n", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QInputDialog::open()\n", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QInputDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod (":options", "@brief Method QFlags QInputDialog::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); methods += new qt_gsi::GenericMethod ("setCancelButtonText|cancelButtonText=", "@brief Method void QInputDialog::setCancelButtonText(const QString &text)\n", false, &_init_f_setCancelButtonText_2025, &_call_f_setCancelButtonText_2025); methods += new qt_gsi::GenericMethod ("setComboBoxEditable|comboBoxEditable=", "@brief Method void QInputDialog::setComboBoxEditable(bool editable)\n", false, &_init_f_setComboBoxEditable_864, &_call_f_setComboBoxEditable_864); @@ -1234,8 +1234,8 @@ static gsi::Methods methods_QInputDialog () { methods += new qt_gsi::GenericMethod ("setOptions|options=", "@brief Method void QInputDialog::setOptions(QFlags options)\n", false, &_init_f_setOptions_4202, &_call_f_setOptions_4202); methods += new qt_gsi::GenericMethod ("setTextEchoMode|textEchoMode=", "@brief Method void QInputDialog::setTextEchoMode(QLineEdit::EchoMode mode)\n", false, &_init_f_setTextEchoMode_2187, &_call_f_setTextEchoMode_2187); methods += new qt_gsi::GenericMethod ("setTextValue|textValue=", "@brief Method void QInputDialog::setTextValue(const QString &text)\n", false, &_init_f_setTextValue_2025, &_call_f_setTextValue_2025); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QInputDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QInputDialog::sizeHint()\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QInputDialog::testOption(QInputDialog::InputDialogOption option)\n", true, &_init_f_testOption_c3506, &_call_f_testOption_c3506); methods += new qt_gsi::GenericMethod (":textEchoMode", "@brief Method QLineEdit::EchoMode QInputDialog::textEchoMode()\n", true, &_init_f_textEchoMode_c0, &_call_f_textEchoMode_c0); methods += new qt_gsi::GenericMethod (":textValue", "@brief Method QString QInputDialog::textValue()\n", true, &_init_f_textValue_c0, &_call_f_textValue_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc index 27659f58a..3e5fc22d5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc @@ -148,7 +148,7 @@ static void _call_f_top_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QString &, int &) const +// QValidator::State QIntValidator::validate(QString &, int &) static void _init_f_validate_c2171 (qt_gsi::GenericMethod *decl) @@ -275,7 +275,7 @@ static gsi::Methods methods_QIntValidator () { methods += new qt_gsi::GenericMethod ("setRange", "@brief Method void QIntValidator::setRange(int bottom, int top)\n", false, &_init_f_setRange_1426, &_call_f_setRange_1426); methods += new qt_gsi::GenericMethod ("setTop|top=", "@brief Method void QIntValidator::setTop(int)\n", false, &_init_f_setTop_767, &_call_f_setTop_767); methods += new qt_gsi::GenericMethod (":top", "@brief Method int QIntValidator::top()\n", true, &_init_f_top_c0, &_call_f_top_c0); - methods += new qt_gsi::GenericMethod ("validate", "@brief Method (QString &, int &) const\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); + methods += new qt_gsi::GenericMethod ("validate", "@brief Method QValidator::State QIntValidator::validate(QString &, int &)\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QIntValidator::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QIntValidator::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QIntValidator::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc index f1e4dd2f4..c010bbee7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc @@ -68,7 +68,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const +// QWidget *QItemDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_createEditor_c6860 (qt_gsi::GenericMethod *decl) @@ -123,7 +123,7 @@ static void _call_f_itemEditorFactory_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const +// void QItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_paint_c6971 (qt_gsi::GenericMethod *decl) @@ -169,7 +169,7 @@ static void _call_f_setClipping_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QWidget *, const QModelIndex &) const +// void QItemDelegate::setEditorData(QWidget *editor, const QModelIndex &index) static void _init_f_setEditorData_c3602 (qt_gsi::GenericMethod *decl) @@ -212,7 +212,7 @@ static void _call_f_setItemEditorFactory_2445 (const qt_gsi::GenericMethod * /*d } -// (QWidget *, QAbstractItemModel *, const QModelIndex &) const +// void QItemDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) static void _init_f_setModelData_c5913 (qt_gsi::GenericMethod *decl) @@ -238,7 +238,7 @@ static void _call_f_setModelData_c5913 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QStyleOptionViewItem &, const QModelIndex &) const +// QSize QItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_sizeHint_c5653 (qt_gsi::GenericMethod *decl) @@ -260,7 +260,7 @@ static void _call_f_sizeHint_c5653 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const +// void QItemDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_updateEditorGeometry_c6860 (qt_gsi::GenericMethod *decl) @@ -386,16 +386,16 @@ namespace gsi static gsi::Methods methods_QItemDelegate () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("createEditor", "@brief Method (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::createEditor", true, &_init_f_createEditor_c6860, &_call_f_createEditor_c6860); + methods += new qt_gsi::GenericMethod ("createEditor", "@brief Method QWidget *QItemDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::createEditor", true, &_init_f_createEditor_c6860, &_call_f_createEditor_c6860); methods += new qt_gsi::GenericMethod ("hasClipping|:clipping", "@brief Method bool QItemDelegate::hasClipping()\n", true, &_init_f_hasClipping_c0, &_call_f_hasClipping_c0); methods += new qt_gsi::GenericMethod (":itemEditorFactory", "@brief Method QItemEditorFactory *QItemDelegate::itemEditorFactory()\n", true, &_init_f_itemEditorFactory_c0, &_call_f_itemEditorFactory_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::paint", true, &_init_f_paint_c6971, &_call_f_paint_c6971); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::paint", true, &_init_f_paint_c6971, &_call_f_paint_c6971); methods += new qt_gsi::GenericMethod ("setClipping|clipping=", "@brief Method void QItemDelegate::setClipping(bool clip)\n", false, &_init_f_setClipping_864, &_call_f_setClipping_864); - methods += new qt_gsi::GenericMethod ("setEditorData", "@brief Method (QWidget *, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::setEditorData", true, &_init_f_setEditorData_c3602, &_call_f_setEditorData_c3602); + methods += new qt_gsi::GenericMethod ("setEditorData", "@brief Method void QItemDelegate::setEditorData(QWidget *editor, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::setEditorData", true, &_init_f_setEditorData_c3602, &_call_f_setEditorData_c3602); methods += new qt_gsi::GenericMethod ("setItemEditorFactory|itemEditorFactory=", "@brief Method void QItemDelegate::setItemEditorFactory(QItemEditorFactory *factory)\n", false, &_init_f_setItemEditorFactory_2445, &_call_f_setItemEditorFactory_2445); - methods += new qt_gsi::GenericMethod ("setModelData", "@brief Method (QWidget *, QAbstractItemModel *, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::setModelData", true, &_init_f_setModelData_c5913, &_call_f_setModelData_c5913); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method (const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::sizeHint", true, &_init_f_sizeHint_c5653, &_call_f_sizeHint_c5653); - methods += new qt_gsi::GenericMethod ("updateEditorGeometry", "@brief Method (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::updateEditorGeometry", true, &_init_f_updateEditorGeometry_c6860, &_call_f_updateEditorGeometry_c6860); + methods += new qt_gsi::GenericMethod ("setModelData", "@brief Method void QItemDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::setModelData", true, &_init_f_setModelData_c5913, &_call_f_setModelData_c5913); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::sizeHint", true, &_init_f_sizeHint_c5653, &_call_f_sizeHint_c5653); + methods += new qt_gsi::GenericMethod ("updateEditorGeometry", "@brief Method void QItemDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::updateEditorGeometry", true, &_init_f_updateEditorGeometry_c6860, &_call_f_updateEditorGeometry_c6860); methods += gsi::qt_signal::target_type & > ("closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint)", "closeEditor", gsi::arg("editor"), gsi::arg("hint"), "@brief Signal declaration for QItemDelegate::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("commitData(QWidget *)", "commitData", gsi::arg("editor"), "@brief Signal declaration for QItemDelegate::commitData(QWidget *editor)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QItemDelegate::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQKeyEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQKeyEvent.cc index ca963a854..2c74c045d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQKeyEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQKeyEvent.cc @@ -115,7 +115,7 @@ static void _call_f_matches_c2869 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QFlags QKeyEvent::modifiers() static void _init_f_modifiers_c0 (qt_gsi::GenericMethod *decl) @@ -243,7 +243,7 @@ static gsi::Methods methods_QKeyEvent () { methods += new qt_gsi::GenericMethod ("isAutoRepeat?", "@brief Method bool QKeyEvent::isAutoRepeat()\n", true, &_init_f_isAutoRepeat_c0, &_call_f_isAutoRepeat_c0); methods += new qt_gsi::GenericMethod ("key", "@brief Method int QKeyEvent::key()\n", true, &_init_f_key_c0, &_call_f_key_c0); methods += new qt_gsi::GenericMethod ("matches", "@brief Method bool QKeyEvent::matches(QKeySequence::StandardKey key)\n", true, &_init_f_matches_c2869, &_call_f_matches_c2869); - methods += new qt_gsi::GenericMethod (":modifiers", "@brief Method () const\n", true, &_init_f_modifiers_c0, &_call_f_modifiers_c0); + methods += new qt_gsi::GenericMethod (":modifiers", "@brief Method QFlags QKeyEvent::modifiers()\n", true, &_init_f_modifiers_c0, &_call_f_modifiers_c0); methods += new qt_gsi::GenericMethod ("nativeModifiers", "@brief Method quint32 QKeyEvent::nativeModifiers()\n", true, &_init_f_nativeModifiers_c0, &_call_f_nativeModifiers_c0); methods += new qt_gsi::GenericMethod ("nativeScanCode", "@brief Method quint32 QKeyEvent::nativeScanCode()\n", true, &_init_f_nativeScanCode_c0, &_call_f_nativeScanCode_c0); methods += new qt_gsi::GenericMethod ("nativeVirtualKey", "@brief Method quint32 QKeyEvent::nativeVirtualKey()\n", true, &_init_f_nativeVirtualKey_c0, &_call_f_nativeVirtualKey_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc index 20c958f0b..d78e69e92 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc @@ -434,7 +434,7 @@ static void _call_f_setSmallDecimalPoint_864 (const qt_gsi::GenericMethod * /*de } -// () const +// QSize QLCDNumber::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -598,7 +598,7 @@ static gsi::Methods methods_QLCDNumber () { methods += new qt_gsi::GenericMethod ("setOctMode", "@brief Method void QLCDNumber::setOctMode()\n", false, &_init_f_setOctMode_0, &_call_f_setOctMode_0); methods += new qt_gsi::GenericMethod ("setSegmentStyle|segmentStyle=", "@brief Method void QLCDNumber::setSegmentStyle(QLCDNumber::SegmentStyle)\n", false, &_init_f_setSegmentStyle_2713, &_call_f_setSegmentStyle_2713); methods += new qt_gsi::GenericMethod ("setSmallDecimalPoint|smallDecimalPoint=", "@brief Method void QLCDNumber::setSmallDecimalPoint(bool)\n", false, &_init_f_setSmallDecimalPoint_864, &_call_f_setSmallDecimalPoint_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QLCDNumber::sizeHint()\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":smallDecimalPoint", "@brief Method bool QLCDNumber::smallDecimalPoint()\n", true, &_init_f_smallDecimalPoint_c0, &_call_f_smallDecimalPoint_c0); methods += new qt_gsi::GenericMethod (":value", "@brief Method double QLCDNumber::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QLCDNumber::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc index 7783e1afe..4f6155b65 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc @@ -161,7 +161,7 @@ static void _call_f_hasScaledContents_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QLabel::heightForWidth(int) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -210,7 +210,7 @@ static void _call_f_margin_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QSize QLabel::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -585,7 +585,7 @@ static void _call_f_setWordWrap_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QLabel::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -764,10 +764,10 @@ static gsi::Methods methods_QLabel () { methods += new qt_gsi::GenericMethod (":buddy", "@brief Method QWidget *QLabel::buddy()\n", true, &_init_f_buddy_c0, &_call_f_buddy_c0); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QLabel::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); methods += new qt_gsi::GenericMethod ("hasScaledContents|:scaledContents", "@brief Method bool QLabel::hasScaledContents()\n", true, &_init_f_hasScaledContents_c0, &_call_f_hasScaledContents_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QWidget::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QLabel::heightForWidth(int)\nThis is a reimplementation of QWidget::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod (":indent", "@brief Method int QLabel::indent()\n", true, &_init_f_indent_c0, &_call_f_indent_c0); methods += new qt_gsi::GenericMethod (":margin", "@brief Method int QLabel::margin()\n", true, &_init_f_margin_c0, &_call_f_margin_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QLabel::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":movie", "@brief Method QMovie *QLabel::movie()\n", true, &_init_f_movie_c0, &_call_f_movie_c0); methods += new qt_gsi::GenericMethod (":openExternalLinks", "@brief Method bool QLabel::openExternalLinks()\n", true, &_init_f_openExternalLinks_c0, &_call_f_openExternalLinks_c0); methods += new qt_gsi::GenericMethod ("picture", "@brief Method const QPicture *QLabel::picture()\n", true, &_init_f_picture_c0, &_call_f_picture_c0); @@ -787,7 +787,7 @@ static gsi::Methods methods_QLabel () { methods += new qt_gsi::GenericMethod ("setTextFormat|textFormat=", "@brief Method void QLabel::setTextFormat(Qt::TextFormat)\n", false, &_init_f_setTextFormat_1787, &_call_f_setTextFormat_1787); methods += new qt_gsi::GenericMethod ("setTextInteractionFlags|textInteractionFlags=", "@brief Method void QLabel::setTextInteractionFlags(QFlags flags)\n", false, &_init_f_setTextInteractionFlags_3396, &_call_f_setTextInteractionFlags_3396); methods += new qt_gsi::GenericMethod ("setWordWrap|wordWrap=", "@brief Method void QLabel::setWordWrap(bool on)\n", false, &_init_f_setWordWrap_864, &_call_f_setWordWrap_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QLabel::sizeHint()\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":text", "@brief Method QString QLabel::text()\n", true, &_init_f_text_c0, &_call_f_text_c0); methods += new qt_gsi::GenericMethod (":textFormat", "@brief Method Qt::TextFormat QLabel::textFormat()\n", true, &_init_f_textFormat_c0, &_call_f_textFormat_c0); methods += new qt_gsi::GenericMethod (":textInteractionFlags", "@brief Method QFlags QLabel::textInteractionFlags()\n", true, &_init_f_textInteractionFlags_c0, &_call_f_textInteractionFlags_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc index f1bf9d4d2..068ca4795 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc @@ -161,7 +161,7 @@ static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QFlags QLayout::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -176,7 +176,7 @@ static void _call_f_expandingDirections_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// QRect QLayout::geometry() static void _init_f_geometry_c0 (qt_gsi::GenericMethod *decl) @@ -239,7 +239,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -255,7 +255,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// bool QLayout::isEmpty() static void _init_f_isEmpty_c0 (qt_gsi::GenericMethod *decl) @@ -304,7 +304,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// QLayout *QLayout::layout() static void _init_f_layout_0 (qt_gsi::GenericMethod *decl) @@ -334,7 +334,7 @@ static void _call_f_margin_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QSize QLayout::maximumSize() static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl) @@ -364,7 +364,7 @@ static void _call_f_menuBar_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QLayout::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -434,7 +434,7 @@ static void _call_f_removeWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QWidget *, QFlags) +// bool QLayout::setAlignment(QWidget *w, QFlags alignment) static void _init_f_setAlignment_3957 (qt_gsi::GenericMethod *decl) @@ -456,7 +456,7 @@ static void _call_f_setAlignment_3957 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QLayout *, QFlags) +// bool QLayout::setAlignment(QLayout *l, QFlags alignment) static void _init_f_setAlignment_3983 (qt_gsi::GenericMethod *decl) @@ -478,7 +478,7 @@ static void _call_f_setAlignment_3983 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QFlags) +// void QLayout::setAlignment(QFlags a) static void _init_f_setAlignment_2750 (qt_gsi::GenericMethod *decl) @@ -567,7 +567,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QRect &) +// void QLayout::setGeometry(const QRect &) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -969,29 +969,29 @@ static gsi::Methods methods_QLayout () { methods += new qt_gsi::GenericMethod (":contentsMargins", "@brief Method QMargins QLayout::contentsMargins()\n", true, &_init_f_contentsMargins_c0, &_call_f_contentsMargins_c0); methods += new qt_gsi::GenericMethod ("contentsRect", "@brief Method QRect QLayout::contentsRect()\n", true, &_init_f_contentsRect_c0, &_call_f_contentsRect_c0); methods += new qt_gsi::GenericMethod ("count", "@brief Method int QLayout::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); - methods += new qt_gsi::GenericMethod (":geometry", "@brief Method () const\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QLayout::expandingDirections()\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod (":geometry", "@brief Method QRect QLayout::geometry()\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method void QLayout::getContentsMargins(int *left, int *top, int *right, int *bottom)\n", true, &_init_f_getContentsMargins_c3488, &_call_f_getContentsMargins_c3488); methods += new qt_gsi::GenericMethod ("indexOf", "@brief Method int QLayout::indexOf(QWidget *)\n", true, &_init_f_indexOf_c1315, &_call_f_indexOf_c1315); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QLayoutItem::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method () const\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QLayout::invalidate()\nThis is a reimplementation of QLayoutItem::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method bool QLayout::isEmpty()\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); methods += new qt_gsi::GenericMethod ("isEnabled?|:enabled", "@brief Method bool QLayout::isEnabled()\n", true, &_init_f_isEnabled_c0, &_call_f_isEnabled_c0); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QLayout::itemAt(int index)\n", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); - methods += new qt_gsi::GenericMethod ("layout", "@brief Method ()\nThis is a reimplementation of QLayoutItem::layout", false, &_init_f_layout_0, &_call_f_layout_0); + methods += new qt_gsi::GenericMethod ("layout", "@brief Method QLayout *QLayout::layout()\nThis is a reimplementation of QLayoutItem::layout", false, &_init_f_layout_0, &_call_f_layout_0); methods += new qt_gsi::GenericMethod (":margin", "@brief Method int QLayout::margin()\n", true, &_init_f_margin_c0, &_call_f_margin_c0); - methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); + methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method QSize QLayout::maximumSize()\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); methods += new qt_gsi::GenericMethod (":menuBar", "@brief Method QWidget *QLayout::menuBar()\n", true, &_init_f_menuBar_c0, &_call_f_menuBar_c0); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QLayout::minimumSize()\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); methods += new qt_gsi::GenericMethod ("parentWidget", "@brief Method QWidget *QLayout::parentWidget()\n", true, &_init_f_parentWidget_c0, &_call_f_parentWidget_c0); methods += new qt_gsi::GenericMethod ("removeItem", "@brief Method void QLayout::removeItem(QLayoutItem *)\n", false, &_init_f_removeItem_1740, &_call_f_removeItem_1740); methods += new qt_gsi::GenericMethod ("removeWidget", "@brief Method void QLayout::removeWidget(QWidget *w)\n", false, &_init_f_removeWidget_1315, &_call_f_removeWidget_1315); - methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method (QWidget *, QFlags)\n", false, &_init_f_setAlignment_3957, &_call_f_setAlignment_3957); - methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method (QLayout *, QFlags)\n", false, &_init_f_setAlignment_3983, &_call_f_setAlignment_3983); - methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method (QFlags)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); + methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method bool QLayout::setAlignment(QWidget *w, QFlags alignment)\n", false, &_init_f_setAlignment_3957, &_call_f_setAlignment_3957); + methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method bool QLayout::setAlignment(QLayout *l, QFlags alignment)\n", false, &_init_f_setAlignment_3983, &_call_f_setAlignment_3983); + methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QLayout::setAlignment(QFlags a)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); methods += new qt_gsi::GenericMethod ("setContentsMargins", "@brief Method void QLayout::setContentsMargins(int left, int top, int right, int bottom)\n", false, &_init_f_setContentsMargins_2744, &_call_f_setContentsMargins_2744); methods += new qt_gsi::GenericMethod ("setContentsMargins|contentsMargins=", "@brief Method void QLayout::setContentsMargins(const QMargins &margins)\n", false, &_init_f_setContentsMargins_2115, &_call_f_setContentsMargins_2115); methods += new qt_gsi::GenericMethod ("setEnabled|enabled=", "@brief Method void QLayout::setEnabled(bool)\n", false, &_init_f_setEnabled_864, &_call_f_setEnabled_864); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QLayout::setGeometry(const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); methods += new qt_gsi::GenericMethod ("setMargin|margin=", "@brief Method void QLayout::setMargin(int)\n", false, &_init_f_setMargin_767, &_call_f_setMargin_767); methods += new qt_gsi::GenericMethod ("setMenuBar|menuBar=", "@brief Method void QLayout::setMenuBar(QWidget *w)\n", false, &_init_f_setMenuBar_1315, &_call_f_setMenuBar_1315); methods += new qt_gsi::GenericMethod ("setSizeConstraint|sizeConstraint=", "@brief Method void QLayout::setSizeConstraint(QLayout::SizeConstraint)\n", false, &_init_f_setSizeConstraint_2743, &_call_f_setSizeConstraint_2743); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc index deaf7078d..fd5b4d82e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc @@ -427,7 +427,7 @@ static void _call_f_end_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QEvent *) +// bool QLineEdit::event(QEvent *) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -555,7 +555,7 @@ static void _call_f_inputMask_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (Qt::InputMethodQuery) const +// QVariant QLineEdit::inputMethodQuery(Qt::InputMethodQuery) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -669,7 +669,7 @@ static void _call_f_maxLength_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QSize QLineEdit::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1074,7 +1074,7 @@ static void _call_f_setValidator_2332 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QSize QLineEdit::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1269,21 +1269,21 @@ static gsi::Methods methods_QLineEdit () { methods += new qt_gsi::GenericMethod (":dragEnabled", "@brief Method bool QLineEdit::dragEnabled()\n", true, &_init_f_dragEnabled_c0, &_call_f_dragEnabled_c0); methods += new qt_gsi::GenericMethod (":echoMode", "@brief Method QLineEdit::EchoMode QLineEdit::echoMode()\n", true, &_init_f_echoMode_c0, &_call_f_echoMode_c0); methods += new qt_gsi::GenericMethod ("end", "@brief Method void QLineEdit::end(bool mark)\n", false, &_init_f_end_864, &_call_f_end_864); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QLineEdit::event(QEvent *)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); methods += new qt_gsi::GenericMethod ("getTextMargins", "@brief Method void QLineEdit::getTextMargins(int *left, int *top, int *right, int *bottom)\n", true, &_init_f_getTextMargins_c3488, &_call_f_getTextMargins_c3488); methods += new qt_gsi::GenericMethod ("hasAcceptableInput|:acceptableInput", "@brief Method bool QLineEdit::hasAcceptableInput()\n", true, &_init_f_hasAcceptableInput_c0, &_call_f_hasAcceptableInput_c0); methods += new qt_gsi::GenericMethod ("hasFrame|:frame", "@brief Method bool QLineEdit::hasFrame()\n", true, &_init_f_hasFrame_c0, &_call_f_hasFrame_c0); methods += new qt_gsi::GenericMethod (":hasSelectedText", "@brief Method bool QLineEdit::hasSelectedText()\n", true, &_init_f_hasSelectedText_c0, &_call_f_hasSelectedText_c0); methods += new qt_gsi::GenericMethod ("home", "@brief Method void QLineEdit::home(bool mark)\n", false, &_init_f_home_864, &_call_f_home_864); methods += new qt_gsi::GenericMethod (":inputMask", "@brief Method QString QLineEdit::inputMask()\n", true, &_init_f_inputMask_c0, &_call_f_inputMask_c0); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QLineEdit::inputMethodQuery(Qt::InputMethodQuery)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); methods += new qt_gsi::GenericMethod ("insert", "@brief Method void QLineEdit::insert(const QString &)\n", false, &_init_f_insert_2025, &_call_f_insert_2025); methods += new qt_gsi::GenericMethod ("isModified?|:modified", "@brief Method bool QLineEdit::isModified()\n", true, &_init_f_isModified_c0, &_call_f_isModified_c0); methods += new qt_gsi::GenericMethod ("isReadOnly?|:readOnly", "@brief Method bool QLineEdit::isReadOnly()\n", true, &_init_f_isReadOnly_c0, &_call_f_isReadOnly_c0); methods += new qt_gsi::GenericMethod ("isRedoAvailable?|:redoAvailable", "@brief Method bool QLineEdit::isRedoAvailable()\n", true, &_init_f_isRedoAvailable_c0, &_call_f_isRedoAvailable_c0); methods += new qt_gsi::GenericMethod ("isUndoAvailable?|:undoAvailable", "@brief Method bool QLineEdit::isUndoAvailable()\n", true, &_init_f_isUndoAvailable_c0, &_call_f_isUndoAvailable_c0); methods += new qt_gsi::GenericMethod (":maxLength", "@brief Method int QLineEdit::maxLength()\n", true, &_init_f_maxLength_c0, &_call_f_maxLength_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QLineEdit::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("paste", "@brief Method void QLineEdit::paste()\n", false, &_init_f_paste_0, &_call_f_paste_0); methods += new qt_gsi::GenericMethod ("redo", "@brief Method void QLineEdit::redo()\n", false, &_init_f_redo_0, &_call_f_redo_0); methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method void QLineEdit::selectAll()\n", false, &_init_f_selectAll_0, &_call_f_selectAll_0); @@ -1304,7 +1304,7 @@ static gsi::Methods methods_QLineEdit () { methods += new qt_gsi::GenericMethod ("setTextMargins", "@brief Method void QLineEdit::setTextMargins(int left, int top, int right, int bottom)\n", false, &_init_f_setTextMargins_2744, &_call_f_setTextMargins_2744); methods += new qt_gsi::GenericMethod ("setTextMargins|textMargins=", "@brief Method void QLineEdit::setTextMargins(const QMargins &margins)\n", false, &_init_f_setTextMargins_2115, &_call_f_setTextMargins_2115); methods += new qt_gsi::GenericMethod ("setValidator|validator=", "@brief Method void QLineEdit::setValidator(const QValidator *)\n", false, &_init_f_setValidator_2332, &_call_f_setValidator_2332); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QLineEdit::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":text", "@brief Method QString QLineEdit::text()\n", true, &_init_f_text_c0, &_call_f_text_c0); methods += new qt_gsi::GenericMethod (":textMargins", "@brief Method QMargins QLineEdit::textMargins()\n", true, &_init_f_textMargins_c0, &_call_f_textMargins_c0); methods += new qt_gsi::GenericMethod ("undo", "@brief Method void QLineEdit::undo()\n", false, &_init_f_undo_0, &_call_f_undo_0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc index cebead7ef..dac7d70b3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc @@ -135,7 +135,7 @@ static void _call_f_clearPropertyFlags_0 (const qt_gsi::GenericMethod * /*decl*/ } -// () +// void QListView::doItemsLayout() static void _init_f_doItemsLayout_0 (qt_gsi::GenericMethod *decl) @@ -181,7 +181,7 @@ static void _call_f_gridSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QPoint &) const +// QModelIndex QListView::indexAt(const QPoint &p) static void _init_f_indexAt_c1916 (qt_gsi::GenericMethod *decl) @@ -294,7 +294,7 @@ static void _call_f_movement_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// void QListView::reset() static void _init_f_reset_0 (qt_gsi::GenericMethod *decl) @@ -325,7 +325,7 @@ static void _call_f_resizeMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, QAbstractItemView::ScrollHint) +// void QListView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) static void _init_f_scrollTo_5576 (qt_gsi::GenericMethod *decl) @@ -488,7 +488,7 @@ static void _call_f_setResizeMode_2471 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &) +// void QListView::setRootIndex(const QModelIndex &index) static void _init_f_setRootIndex_2395 (qt_gsi::GenericMethod *decl) @@ -696,7 +696,7 @@ static void _call_f_viewMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// QRect QListView::visualRect(const QModelIndex &index) static void _init_f_visualRect_c2395 (qt_gsi::GenericMethod *decl) @@ -832,19 +832,19 @@ static gsi::Methods methods_QListView () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":batchSize", "@brief Method int QListView::batchSize()\n", true, &_init_f_batchSize_c0, &_call_f_batchSize_c0); methods += new qt_gsi::GenericMethod ("clearPropertyFlags", "@brief Method void QListView::clearPropertyFlags()\n", false, &_init_f_clearPropertyFlags_0, &_call_f_clearPropertyFlags_0); - methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); + methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method void QListView::doItemsLayout()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); methods += new qt_gsi::GenericMethod (":flow", "@brief Method QListView::Flow QListView::flow()\n", true, &_init_f_flow_c0, &_call_f_flow_c0); methods += new qt_gsi::GenericMethod (":gridSize", "@brief Method QSize QListView::gridSize()\n", true, &_init_f_gridSize_c0, &_call_f_gridSize_c0); - methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method (const QPoint &) const\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); + methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method QModelIndex QListView::indexAt(const QPoint &p)\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); methods += new qt_gsi::GenericMethod ("isRowHidden?", "@brief Method bool QListView::isRowHidden(int row)\n", true, &_init_f_isRowHidden_c767, &_call_f_isRowHidden_c767); methods += new qt_gsi::GenericMethod ("isSelectionRectVisible?|:selectionRectVisible", "@brief Method bool QListView::isSelectionRectVisible()\n", true, &_init_f_isSelectionRectVisible_c0, &_call_f_isSelectionRectVisible_c0); methods += new qt_gsi::GenericMethod ("isWrapping?|:isWrapping", "@brief Method bool QListView::isWrapping()\n", true, &_init_f_isWrapping_c0, &_call_f_isWrapping_c0); methods += new qt_gsi::GenericMethod (":layoutMode", "@brief Method QListView::LayoutMode QListView::layoutMode()\n", true, &_init_f_layoutMode_c0, &_call_f_layoutMode_c0); methods += new qt_gsi::GenericMethod (":modelColumn", "@brief Method int QListView::modelColumn()\n", true, &_init_f_modelColumn_c0, &_call_f_modelColumn_c0); methods += new qt_gsi::GenericMethod (":movement", "@brief Method QListView::Movement QListView::movement()\n", true, &_init_f_movement_c0, &_call_f_movement_c0); - methods += new qt_gsi::GenericMethod ("reset", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); + methods += new qt_gsi::GenericMethod ("reset", "@brief Method void QListView::reset()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); methods += new qt_gsi::GenericMethod (":resizeMode", "@brief Method QListView::ResizeMode QListView::resizeMode()\n", true, &_init_f_resizeMode_c0, &_call_f_resizeMode_c0); - methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method (const QModelIndex &, QAbstractItemView::ScrollHint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); + methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method void QListView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); methods += new qt_gsi::GenericMethod ("setBatchSize|batchSize=", "@brief Method void QListView::setBatchSize(int batchSize)\n", false, &_init_f_setBatchSize_767, &_call_f_setBatchSize_767); methods += new qt_gsi::GenericMethod ("setFlow|flow=", "@brief Method void QListView::setFlow(QListView::Flow flow)\n", false, &_init_f_setFlow_1864, &_call_f_setFlow_1864); methods += new qt_gsi::GenericMethod ("setGridSize|gridSize=", "@brief Method void QListView::setGridSize(const QSize &size)\n", false, &_init_f_setGridSize_1805, &_call_f_setGridSize_1805); @@ -852,7 +852,7 @@ static gsi::Methods methods_QListView () { methods += new qt_gsi::GenericMethod ("setModelColumn|modelColumn=", "@brief Method void QListView::setModelColumn(int column)\n", false, &_init_f_setModelColumn_767, &_call_f_setModelColumn_767); methods += new qt_gsi::GenericMethod ("setMovement|movement=", "@brief Method void QListView::setMovement(QListView::Movement movement)\n", false, &_init_f_setMovement_2299, &_call_f_setMovement_2299); methods += new qt_gsi::GenericMethod ("setResizeMode|resizeMode=", "@brief Method void QListView::setResizeMode(QListView::ResizeMode mode)\n", false, &_init_f_setResizeMode_2471, &_call_f_setResizeMode_2471); - methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); + methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method void QListView::setRootIndex(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); methods += new qt_gsi::GenericMethod ("setRowHidden", "@brief Method void QListView::setRowHidden(int row, bool hide)\n", false, &_init_f_setRowHidden_1523, &_call_f_setRowHidden_1523); methods += new qt_gsi::GenericMethod ("setSelectionRectVisible|selectionRectVisible=", "@brief Method void QListView::setSelectionRectVisible(bool show)\n", false, &_init_f_setSelectionRectVisible_864, &_call_f_setSelectionRectVisible_864); methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QListView::setSpacing(int space)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); @@ -863,7 +863,7 @@ static gsi::Methods methods_QListView () { methods += new qt_gsi::GenericMethod (":spacing", "@brief Method int QListView::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); methods += new qt_gsi::GenericMethod (":uniformItemSizes", "@brief Method bool QListView::uniformItemSizes()\n", true, &_init_f_uniformItemSizes_c0, &_call_f_uniformItemSizes_c0); methods += new qt_gsi::GenericMethod (":viewMode", "@brief Method QListView::ViewMode QListView::viewMode()\n", true, &_init_f_viewMode_c0, &_call_f_viewMode_c0); - methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); + methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method QRect QListView::visualRect(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); methods += new qt_gsi::GenericMethod (":wordWrap", "@brief Method bool QListView::wordWrap()\n", true, &_init_f_wordWrap_c0, &_call_f_wordWrap_c0); methods += gsi::qt_signal ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QListView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("clicked(const QModelIndex &)", "clicked", gsi::arg("index"), "@brief Signal declaration for QListView::clicked(const QModelIndex &index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc index 43aa90c23..4a5811735 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc @@ -183,7 +183,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QListWidgetItem *) +// void QListWidget::closePersistentEditor(QListWidgetItem *item) static void _init_f_closePersistentEditor_2126 (qt_gsi::GenericMethod *decl) @@ -248,7 +248,7 @@ static void _call_f_currentRow_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QDropEvent *) +// void QListWidget::dropEvent(QDropEvent *event) static void _init_f_dropEvent_1622 (qt_gsi::GenericMethod *decl) @@ -512,7 +512,7 @@ static void _call_f_itemWidget_c2126 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (QListWidgetItem *) +// void QListWidget::openPersistentEditor(QListWidgetItem *item) static void _init_f_openPersistentEditor_2126 (qt_gsi::GenericMethod *decl) @@ -946,11 +946,11 @@ static gsi::Methods methods_QListWidget () { methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QListWidget::addItem(QListWidgetItem *item)\n", false, &_init_f_addItem_2126, &_call_f_addItem_2126); methods += new qt_gsi::GenericMethod ("addItems", "@brief Method void QListWidget::addItems(const QStringList &labels)\n", false, &_init_f_addItems_2437, &_call_f_addItems_2437); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QListWidget::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method (QListWidgetItem *)\n", false, &_init_f_closePersistentEditor_2126, &_call_f_closePersistentEditor_2126); + methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method void QListWidget::closePersistentEditor(QListWidgetItem *item)\n", false, &_init_f_closePersistentEditor_2126, &_call_f_closePersistentEditor_2126); methods += new qt_gsi::GenericMethod (":count", "@brief Method int QListWidget::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":currentItem", "@brief Method QListWidgetItem *QListWidget::currentItem()\n", true, &_init_f_currentItem_c0, &_call_f_currentItem_c0); methods += new qt_gsi::GenericMethod (":currentRow", "@brief Method int QListWidget::currentRow()\n", true, &_init_f_currentRow_c0, &_call_f_currentRow_c0); - methods += new qt_gsi::GenericMethod ("dropEvent", "@brief Method (QDropEvent *)\nThis is a reimplementation of QListView::dropEvent", false, &_init_f_dropEvent_1622, &_call_f_dropEvent_1622); + methods += new qt_gsi::GenericMethod ("dropEvent", "@brief Method void QListWidget::dropEvent(QDropEvent *event)\nThis is a reimplementation of QListView::dropEvent", false, &_init_f_dropEvent_1622, &_call_f_dropEvent_1622); methods += new qt_gsi::GenericMethod ("editItem", "@brief Method void QListWidget::editItem(QListWidgetItem *item)\n", false, &_init_f_editItem_2126, &_call_f_editItem_2126); methods += new qt_gsi::GenericMethod ("findItems", "@brief Method QList QListWidget::findItems(const QString &text, QFlags flags)\n", true, &_init_f_findItems_c4233, &_call_f_findItems_c4233); methods += new qt_gsi::GenericMethod ("insertItem", "@brief Method void QListWidget::insertItem(int row, QListWidgetItem *item)\n", false, &_init_f_insertItem_2785, &_call_f_insertItem_2785); @@ -963,7 +963,7 @@ static gsi::Methods methods_QListWidget () { methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QListWidgetItem *QListWidget::itemAt(const QPoint &p)\n", true, &_init_f_itemAt_c1916, &_call_f_itemAt_c1916); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QListWidgetItem *QListWidget::itemAt(int x, int y)\n", true, &_init_f_itemAt_c1426, &_call_f_itemAt_c1426); methods += new qt_gsi::GenericMethod ("itemWidget", "@brief Method QWidget *QListWidget::itemWidget(QListWidgetItem *item)\n", true, &_init_f_itemWidget_c2126, &_call_f_itemWidget_c2126); - methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method (QListWidgetItem *)\n", false, &_init_f_openPersistentEditor_2126, &_call_f_openPersistentEditor_2126); + methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method void QListWidget::openPersistentEditor(QListWidgetItem *item)\n", false, &_init_f_openPersistentEditor_2126, &_call_f_openPersistentEditor_2126); methods += new qt_gsi::GenericMethod ("removeItemWidget", "@brief Method void QListWidget::removeItemWidget(QListWidgetItem *item)\n", false, &_init_f_removeItemWidget_2126, &_call_f_removeItemWidget_2126); methods += new qt_gsi::GenericMethod ("row", "@brief Method int QListWidget::row(const QListWidgetItem *item)\n", true, &_init_f_row_c2821, &_call_f_row_c2821); methods += new qt_gsi::GenericMethod ("scrollToItem", "@brief Method void QListWidget::scrollToItem(const QListWidgetItem *item, QAbstractItemView::ScrollHint hint)\n", false, &_init_f_scrollToItem_6002, &_call_f_scrollToItem_6002); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc index ed626a3c2..c1eb308fc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc @@ -277,7 +277,7 @@ static void _call_f_documentMode_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QMdiArea::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -475,7 +475,7 @@ static void _call_f_setViewMode_2092 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QMdiArea::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -700,7 +700,7 @@ static gsi::Methods methods_QMdiArea () { methods += new qt_gsi::GenericMethod ("closeAllSubWindows", "@brief Method void QMdiArea::closeAllSubWindows()\n", false, &_init_f_closeAllSubWindows_0, &_call_f_closeAllSubWindows_0); methods += new qt_gsi::GenericMethod ("currentSubWindow", "@brief Method QMdiSubWindow *QMdiArea::currentSubWindow()\n", true, &_init_f_currentSubWindow_c0, &_call_f_currentSubWindow_c0); methods += new qt_gsi::GenericMethod (":documentMode", "@brief Method bool QMdiArea::documentMode()\n", true, &_init_f_documentMode_c0, &_call_f_documentMode_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QMdiArea::minimumSizeHint()\nThis is a reimplementation of QAbstractScrollArea::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("removeSubWindow", "@brief Method void QMdiArea::removeSubWindow(QWidget *widget)\n", false, &_init_f_removeSubWindow_1315, &_call_f_removeSubWindow_1315); methods += new qt_gsi::GenericMethod ("setActivationOrder|activationOrder=", "@brief Method void QMdiArea::setActivationOrder(QMdiArea::WindowOrder order)\n", false, &_init_f_setActivationOrder_2432, &_call_f_setActivationOrder_2432); methods += new qt_gsi::GenericMethod ("setActiveSubWindow|activeSubWindow=", "@brief Method void QMdiArea::setActiveSubWindow(QMdiSubWindow *window)\n", false, &_init_f_setActiveSubWindow_1915, &_call_f_setActiveSubWindow_1915); @@ -710,7 +710,7 @@ static gsi::Methods methods_QMdiArea () { methods += new qt_gsi::GenericMethod ("setTabPosition|tabPosition=", "@brief Method void QMdiArea::setTabPosition(QTabWidget::TabPosition position)\n", false, &_init_f_setTabPosition_2656, &_call_f_setTabPosition_2656); methods += new qt_gsi::GenericMethod ("setTabShape|tabShape=", "@brief Method void QMdiArea::setTabShape(QTabWidget::TabShape shape)\n", false, &_init_f_setTabShape_2300, &_call_f_setTabShape_2300); methods += new qt_gsi::GenericMethod ("setViewMode|viewMode=", "@brief Method void QMdiArea::setViewMode(QMdiArea::ViewMode mode)\n", false, &_init_f_setViewMode_2092, &_call_f_setViewMode_2092); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QMdiArea::sizeHint()\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("subWindowList", "@brief Method QList QMdiArea::subWindowList(QMdiArea::WindowOrder order)\n", true, &_init_f_subWindowList_c2432, &_call_f_subWindowList_c2432); methods += new qt_gsi::GenericMethod (":tabPosition", "@brief Method QTabWidget::TabPosition QMdiArea::tabPosition()\n", true, &_init_f_tabPosition_c0, &_call_f_tabPosition_c0); methods += new qt_gsi::GenericMethod (":tabShape", "@brief Method QTabWidget::TabShape QMdiArea::tabShape()\n", true, &_init_f_tabShape_c0, &_call_f_tabShape_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc index 114d9d4a6..c28d0fcb4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc @@ -189,7 +189,7 @@ static void _call_f_mdiArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QMdiSubWindow::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -339,7 +339,7 @@ static void _call_f_showSystemMenu_0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QMdiSubWindow::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -509,7 +509,7 @@ static gsi::Methods methods_QMdiSubWindow () { methods += new qt_gsi::GenericMethod ("maximizedButtonsWidget", "@brief Method QWidget *QMdiSubWindow::maximizedButtonsWidget()\n", true, &_init_f_maximizedButtonsWidget_c0, &_call_f_maximizedButtonsWidget_c0); methods += new qt_gsi::GenericMethod ("maximizedSystemMenuIconWidget", "@brief Method QWidget *QMdiSubWindow::maximizedSystemMenuIconWidget()\n", true, &_init_f_maximizedSystemMenuIconWidget_c0, &_call_f_maximizedSystemMenuIconWidget_c0); methods += new qt_gsi::GenericMethod ("mdiArea", "@brief Method QMdiArea *QMdiSubWindow::mdiArea()\n", true, &_init_f_mdiArea_c0, &_call_f_mdiArea_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QMdiSubWindow::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setKeyboardPageStep|keyboardPageStep=", "@brief Method void QMdiSubWindow::setKeyboardPageStep(int step)\n", false, &_init_f_setKeyboardPageStep_767, &_call_f_setKeyboardPageStep_767); methods += new qt_gsi::GenericMethod ("setKeyboardSingleStep|keyboardSingleStep=", "@brief Method void QMdiSubWindow::setKeyboardSingleStep(int step)\n", false, &_init_f_setKeyboardSingleStep_767, &_call_f_setKeyboardSingleStep_767); methods += new qt_gsi::GenericMethod ("setOption", "@brief Method void QMdiSubWindow::setOption(QMdiSubWindow::SubWindowOption option, bool on)\n", false, &_init_f_setOption_4164, &_call_f_setOption_4164); @@ -517,7 +517,7 @@ static gsi::Methods methods_QMdiSubWindow () { methods += new qt_gsi::GenericMethod ("setWidget|widget=", "@brief Method void QMdiSubWindow::setWidget(QWidget *widget)\n", false, &_init_f_setWidget_1315, &_call_f_setWidget_1315); methods += new qt_gsi::GenericMethod ("showShaded", "@brief Method void QMdiSubWindow::showShaded()\n", false, &_init_f_showShaded_0, &_call_f_showShaded_0); methods += new qt_gsi::GenericMethod ("showSystemMenu", "@brief Method void QMdiSubWindow::showSystemMenu()\n", false, &_init_f_showSystemMenu_0, &_call_f_showSystemMenu_0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QMdiSubWindow::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":systemMenu", "@brief Method QMenu *QMdiSubWindow::systemMenu()\n", true, &_init_f_systemMenu_c0, &_call_f_systemMenu_c0); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QMdiSubWindow::testOption(QMdiSubWindow::SubWindowOption)\n", true, &_init_f_testOption_c3408, &_call_f_testOption_c3408); methods += new qt_gsi::GenericMethod (":widget", "@brief Method QWidget *QMdiSubWindow::widget()\n", true, &_init_f_widget_c0, &_call_f_widget_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc index d77721da8..b32478e55 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc @@ -151,7 +151,7 @@ static void _call_f_activeAction_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QAction *) +// void QMenu::addAction(QAction *action) static void _init_f_addAction_1309 (qt_gsi::GenericMethod *decl) @@ -171,7 +171,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) +// QAction *QMenu::addAction(const QString &text) static void _init_f_addAction_2025 (qt_gsi::GenericMethod *decl) @@ -190,7 +190,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QIcon &, const QString &) +// QAction *QMenu::addAction(const QIcon &icon, const QString &text) static void _init_f_addAction_3704 (qt_gsi::GenericMethod *decl) @@ -212,7 +212,7 @@ static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &, const QObject *, const char *, const QKeySequence &) +// QAction *QMenu::addAction(const QString &text, const QObject *receiver, const char *member, const QKeySequence &shortcut) static void _init_f_addAction_7945 (qt_gsi::GenericMethod *decl) @@ -240,7 +240,7 @@ static void _call_f_addAction_7945 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QIcon &, const QString &, const QObject *, const char *, const QKeySequence &) +// QAction *QMenu::addAction(const QIcon &icon, const QString &text, const QObject *receiver, const char *member, const QKeySequence &shortcut) static void _init_f_addAction_9624 (qt_gsi::GenericMethod *decl) @@ -724,7 +724,7 @@ static void _call_f_setTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QMenu::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -910,11 +910,11 @@ static gsi::Methods methods_QMenu () { methods += new qt_gsi::GenericMethod ("actionAt", "@brief Method QAction *QMenu::actionAt(const QPoint &)\n", true, &_init_f_actionAt_c1916, &_call_f_actionAt_c1916); methods += new qt_gsi::GenericMethod ("actionGeometry", "@brief Method QRect QMenu::actionGeometry(QAction *)\n", true, &_init_f_actionGeometry_c1309, &_call_f_actionGeometry_c1309); methods += new qt_gsi::GenericMethod (":activeAction", "@brief Method QAction *QMenu::activeAction()\n", true, &_init_f_activeAction_c0, &_call_f_activeAction_c0); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (QAction *)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, const QString &)\n", false, &_init_f_addAction_3704, &_call_f_addAction_3704); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &, const QObject *, const char *, const QKeySequence &)\n", false, &_init_f_addAction_7945, &_call_f_addAction_7945); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, const QString &, const QObject *, const char *, const QKeySequence &)\n", false, &_init_f_addAction_9624, &_call_f_addAction_9624); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method void QMenu::addAction(QAction *action)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenu::addAction(const QString &text)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenu::addAction(const QIcon &icon, const QString &text)\n", false, &_init_f_addAction_3704, &_call_f_addAction_3704); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenu::addAction(const QString &text, const QObject *receiver, const char *member, const QKeySequence &shortcut)\n", false, &_init_f_addAction_7945, &_call_f_addAction_7945); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenu::addAction(const QIcon &icon, const QString &text, const QObject *receiver, const char *member, const QKeySequence &shortcut)\n", false, &_init_f_addAction_9624, &_call_f_addAction_9624); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QAction *QMenu::addMenu(QMenu *menu)\n", false, &_init_f_addMenu_1108, &_call_f_addMenu_1108); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QMenu *QMenu::addMenu(const QString &title)\n", false, &_init_f_addMenu_2025, &_call_f_addMenu_2025); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QMenu *QMenu::addMenu(const QIcon &icon, const QString &title)\n", false, &_init_f_addMenu_3704, &_call_f_addMenu_3704); @@ -940,7 +940,7 @@ static gsi::Methods methods_QMenu () { methods += new qt_gsi::GenericMethod ("setSeparatorsCollapsible|separatorsCollapsible=", "@brief Method void QMenu::setSeparatorsCollapsible(bool collapse)\n", false, &_init_f_setSeparatorsCollapsible_864, &_call_f_setSeparatorsCollapsible_864); methods += new qt_gsi::GenericMethod ("setTearOffEnabled|tearOffEnabled=", "@brief Method void QMenu::setTearOffEnabled(bool)\n", false, &_init_f_setTearOffEnabled_864, &_call_f_setTearOffEnabled_864); methods += new qt_gsi::GenericMethod ("setTitle|title=", "@brief Method void QMenu::setTitle(const QString &title)\n", false, &_init_f_setTitle_2025, &_call_f_setTitle_2025); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QMenu::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":title", "@brief Method QString QMenu::title()\n", true, &_init_f_title_c0, &_call_f_title_c0); methods += gsi::qt_signal ("aboutToHide()", "aboutToHide", "@brief Signal declaration for QMenu::aboutToHide()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("aboutToShow()", "aboutToShow", "@brief Signal declaration for QMenu::aboutToShow()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc index 984433747..5e5520c44 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc @@ -152,7 +152,7 @@ static void _call_f_activeAction_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QAction *) +// void QMenuBar::addAction(QAction *action) static void _init_f_addAction_1309 (qt_gsi::GenericMethod *decl) @@ -172,7 +172,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) +// QAction *QMenuBar::addAction(const QString &text) static void _init_f_addAction_2025 (qt_gsi::GenericMethod *decl) @@ -191,7 +191,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &, const QObject *, const char *) +// QAction *QMenuBar::addAction(const QString &text, const QObject *receiver, const char *member) static void _init_f_addAction_5537 (qt_gsi::GenericMethod *decl) @@ -326,7 +326,7 @@ static void _call_f_cornerWidget_c1366 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) const +// int QMenuBar::heightForWidth(int) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -416,7 +416,7 @@ static void _call_f_isNativeMenuBar_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QMenuBar::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -514,7 +514,7 @@ static void _call_f_setNativeMenuBar_864 (const qt_gsi::GenericMethod * /*decl*/ } -// (bool) +// void QMenuBar::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -534,7 +534,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QMenuBar::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -652,27 +652,27 @@ static gsi::Methods methods_QMenuBar () { methods += new qt_gsi::GenericMethod ("actionAt", "@brief Method QAction *QMenuBar::actionAt(const QPoint &)\n", true, &_init_f_actionAt_c1916, &_call_f_actionAt_c1916); methods += new qt_gsi::GenericMethod ("actionGeometry", "@brief Method QRect QMenuBar::actionGeometry(QAction *)\n", true, &_init_f_actionGeometry_c1309, &_call_f_actionGeometry_c1309); methods += new qt_gsi::GenericMethod (":activeAction", "@brief Method QAction *QMenuBar::activeAction()\n", true, &_init_f_activeAction_c0, &_call_f_activeAction_c0); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (QAction *)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &, const QObject *, const char *)\n", false, &_init_f_addAction_5537, &_call_f_addAction_5537); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method void QMenuBar::addAction(QAction *action)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenuBar::addAction(const QString &text)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenuBar::addAction(const QString &text, const QObject *receiver, const char *member)\n", false, &_init_f_addAction_5537, &_call_f_addAction_5537); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QAction *QMenuBar::addMenu(QMenu *menu)\n", false, &_init_f_addMenu_1108, &_call_f_addMenu_1108); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QMenu *QMenuBar::addMenu(const QString &title)\n", false, &_init_f_addMenu_2025, &_call_f_addMenu_2025); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QMenu *QMenuBar::addMenu(const QIcon &icon, const QString &title)\n", false, &_init_f_addMenu_3704, &_call_f_addMenu_3704); methods += new qt_gsi::GenericMethod ("addSeparator", "@brief Method QAction *QMenuBar::addSeparator()\n", false, &_init_f_addSeparator_0, &_call_f_addSeparator_0); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QMenuBar::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); methods += new qt_gsi::GenericMethod ("cornerWidget", "@brief Method QWidget *QMenuBar::cornerWidget(Qt::Corner corner)\n", true, &_init_f_cornerWidget_c1366, &_call_f_cornerWidget_c1366); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QWidget::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QMenuBar::heightForWidth(int)\nThis is a reimplementation of QWidget::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod ("insertMenu", "@brief Method QAction *QMenuBar::insertMenu(QAction *before, QMenu *menu)\n", false, &_init_f_insertMenu_2309, &_call_f_insertMenu_2309); methods += new qt_gsi::GenericMethod ("insertSeparator", "@brief Method QAction *QMenuBar::insertSeparator(QAction *before)\n", false, &_init_f_insertSeparator_1309, &_call_f_insertSeparator_1309); methods += new qt_gsi::GenericMethod ("isDefaultUp?|:defaultUp", "@brief Method bool QMenuBar::isDefaultUp()\n", true, &_init_f_isDefaultUp_c0, &_call_f_isDefaultUp_c0); methods += new qt_gsi::GenericMethod ("isNativeMenuBar?|:nativeMenuBar", "@brief Method bool QMenuBar::isNativeMenuBar()\n", true, &_init_f_isNativeMenuBar_c0, &_call_f_isNativeMenuBar_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QMenuBar::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setActiveAction|activeAction=", "@brief Method void QMenuBar::setActiveAction(QAction *action)\n", false, &_init_f_setActiveAction_1309, &_call_f_setActiveAction_1309); methods += new qt_gsi::GenericMethod ("setCornerWidget", "@brief Method void QMenuBar::setCornerWidget(QWidget *w, Qt::Corner corner)\n", false, &_init_f_setCornerWidget_2573, &_call_f_setCornerWidget_2573); methods += new qt_gsi::GenericMethod ("setDefaultUp|defaultUp=", "@brief Method void QMenuBar::setDefaultUp(bool)\n", false, &_init_f_setDefaultUp_864, &_call_f_setDefaultUp_864); methods += new qt_gsi::GenericMethod ("setNativeMenuBar|nativeMenuBar=", "@brief Method void QMenuBar::setNativeMenuBar(bool nativeMenuBar)\n", false, &_init_f_setNativeMenuBar_864, &_call_f_setNativeMenuBar_864); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QMenuBar::setVisible(bool visible)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QMenuBar::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QMenuBar::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QMenuBar::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("hovered(QAction *)", "hovered", gsi::arg("action"), "@brief Signal declaration for QMenuBar::hovered(QAction *action)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc index 9e465c22a..80b8f83f5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc @@ -341,7 +341,7 @@ static void _call_f_informativeText_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () +// void QMessageBox::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -357,7 +357,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QMessageBox::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -643,7 +643,7 @@ static void _call_f_setTextFormat_1787 (const qt_gsi::GenericMethod * /*decl*/, } -// (Qt::WindowModality) +// void QMessageBox::setWindowModality(Qt::WindowModality windowModality) static void _init_f_setWindowModality_2216 (qt_gsi::GenericMethod *decl) @@ -663,7 +663,7 @@ static void _call_f_setWindowModality_2216 (const qt_gsi::GenericMethod * /*decl } -// (const QString &) +// void QMessageBox::setWindowTitle(const QString &title) static void _init_f_setWindowTitle_2025 (qt_gsi::GenericMethod *decl) @@ -683,7 +683,7 @@ static void _call_f_setWindowTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QMessageBox::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1049,8 +1049,8 @@ static gsi::Methods methods_QMessageBox () { methods += new qt_gsi::GenericMethod (":icon", "@brief Method QMessageBox::Icon QMessageBox::icon()\n", true, &_init_f_icon_c0, &_call_f_icon_c0); methods += new qt_gsi::GenericMethod (":iconPixmap", "@brief Method QPixmap QMessageBox::iconPixmap()\n", true, &_init_f_iconPixmap_c0, &_call_f_iconPixmap_c0); methods += new qt_gsi::GenericMethod (":informativeText", "@brief Method QString QMessageBox::informativeText()\n", true, &_init_f_informativeText_c0, &_call_f_informativeText_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\n", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QMessageBox::open()\n", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QMessageBox::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod ("removeButton", "@brief Method void QMessageBox::removeButton(QAbstractButton *button)\n", false, &_init_f_removeButton_2159, &_call_f_removeButton_2159); methods += new qt_gsi::GenericMethod ("setButtonText", "@brief Method void QMessageBox::setButtonText(int button, const QString &text)\n", false, &_init_f_setButtonText_2684, &_call_f_setButtonText_2684); methods += new qt_gsi::GenericMethod ("setDefaultButton|defaultButton=", "@brief Method void QMessageBox::setDefaultButton(QPushButton *button)\n", false, &_init_f_setDefaultButton_1755, &_call_f_setDefaultButton_1755); @@ -1064,9 +1064,9 @@ static gsi::Methods methods_QMessageBox () { methods += new qt_gsi::GenericMethod ("setStandardButtons|standardButtons=", "@brief Method void QMessageBox::setStandardButtons(QFlags buttons)\n", false, &_init_f_setStandardButtons_3788, &_call_f_setStandardButtons_3788); methods += new qt_gsi::GenericMethod ("setText|text=", "@brief Method void QMessageBox::setText(const QString &text)\n", false, &_init_f_setText_2025, &_call_f_setText_2025); methods += new qt_gsi::GenericMethod ("setTextFormat|textFormat=", "@brief Method void QMessageBox::setTextFormat(Qt::TextFormat format)\n", false, &_init_f_setTextFormat_1787, &_call_f_setTextFormat_1787); - methods += new qt_gsi::GenericMethod ("setWindowModality|windowModality=", "@brief Method (Qt::WindowModality)\n", false, &_init_f_setWindowModality_2216, &_call_f_setWindowModality_2216); - methods += new qt_gsi::GenericMethod ("setWindowTitle|windowTitle=", "@brief Method (const QString &)\n", false, &_init_f_setWindowTitle_2025, &_call_f_setWindowTitle_2025); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("setWindowModality|windowModality=", "@brief Method void QMessageBox::setWindowModality(Qt::WindowModality windowModality)\n", false, &_init_f_setWindowModality_2216, &_call_f_setWindowModality_2216); + methods += new qt_gsi::GenericMethod ("setWindowTitle|windowTitle=", "@brief Method void QMessageBox::setWindowTitle(const QString &title)\n", false, &_init_f_setWindowTitle_2025, &_call_f_setWindowTitle_2025); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QMessageBox::sizeHint()\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("standardButton", "@brief Method QMessageBox::StandardButton QMessageBox::standardButton(QAbstractButton *button)\n", true, &_init_f_standardButton_c2159, &_call_f_standardButton_c2159); methods += new qt_gsi::GenericMethod (":standardButtons", "@brief Method QFlags QMessageBox::standardButtons()\n", true, &_init_f_standardButtons_c0, &_call_f_standardButtons_c0); methods += new qt_gsi::GenericMethod (":text", "@brief Method QString QMessageBox::text()\n", true, &_init_f_text_c0, &_call_f_text_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc index f7524eb7a..b9aeda049 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc @@ -68,7 +68,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const +// void QMotifStyle::drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QPainter *p, const QWidget *w) static void _init_f_drawComplexControl_c9027 (qt_gsi::GenericMethod *decl) @@ -97,7 +97,7 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de } -// (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QMotifStyle::drawControl(QStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w) static void _init_f_drawControl_c8285 (qt_gsi::GenericMethod *decl) @@ -126,7 +126,7 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QMotifStyle::drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w) static void _init_f_drawPrimitive_c8501 (qt_gsi::GenericMethod *decl) @@ -155,7 +155,7 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, } -// (QEvent *) +// bool QMotifStyle::event(QEvent *) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -174,7 +174,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const +// int QMotifStyle::pixelMetric(QStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget) static void _init_f_pixelMetric_c6642 (qt_gsi::GenericMethod *decl) @@ -199,7 +199,7 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QPalette &) +// void QMotifStyle::polish(QPalette &) static void _init_f_polish_1418 (qt_gsi::GenericMethod *decl) @@ -219,7 +219,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QWidget *) +// void QMotifStyle::polish(QWidget *) static void _init_f_polish_1315 (qt_gsi::GenericMethod *decl) @@ -239,7 +239,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QApplication *) +// void QMotifStyle::polish(QApplication *) static void _init_f_polish_1843 (qt_gsi::GenericMethod *decl) @@ -279,7 +279,7 @@ static void _call_f_setUseHighlightColors_864 (const qt_gsi::GenericMethod * /*d } -// (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const +// QSize QMotifStyle::sizeFromContents(QStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *widget) static void _init_f_sizeFromContents_c8477 (qt_gsi::GenericMethod *decl) @@ -307,7 +307,7 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl } -// () const +// QPalette QMotifStyle::standardPalette() static void _init_f_standardPalette_c0 (qt_gsi::GenericMethod *decl) @@ -322,7 +322,7 @@ static void _call_f_standardPalette_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const +// QPixmap QMotifStyle::standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget) static void _init_f_standardPixmap_c6956 (qt_gsi::GenericMethod *decl) @@ -347,7 +347,7 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const +// int QMotifStyle::styleHint(QStyle::StyleHint hint, const QStyleOption *opt, const QWidget *widget, QStyleHintReturn *returnData) static void _init_f_styleHint_c8615 (qt_gsi::GenericMethod *decl) @@ -375,7 +375,7 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QStyle::SubControl, const QWidget *) const +// QRect QMotifStyle::subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QStyle::SubControl sc, const QWidget *widget) static void _init_f_subControlRect_c9798 (qt_gsi::GenericMethod *decl) @@ -403,7 +403,7 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::SubElement, const QStyleOption *, const QWidget *) const +// QRect QMotifStyle::subElementRect(QStyle::SubElement r, const QStyleOption *opt, const QWidget *widget) static void _init_f_subElementRect_c6528 (qt_gsi::GenericMethod *decl) @@ -428,7 +428,7 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ } -// (QWidget *) +// void QMotifStyle::unpolish(QWidget *) static void _init_f_unpolish_1315 (qt_gsi::GenericMethod *decl) @@ -448,7 +448,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QApplication *) +// void QMotifStyle::unpolish(QApplication *) static void _init_f_unpolish_1843 (qt_gsi::GenericMethod *decl) @@ -583,23 +583,23 @@ namespace gsi static gsi::Methods methods_QMotifStyle () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); - methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); - methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QObject::event", false, &_init_f_event_1217, &_call_f_event_1217); - methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QPalette &)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QWidget *)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QApplication *)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); + methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method void QMotifStyle::drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QCommonStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); + methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method void QMotifStyle::drawControl(QStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QCommonStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); + methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method void QMotifStyle::drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QCommonStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QMotifStyle::event(QEvent *)\nThis is a reimplementation of QObject::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method int QMotifStyle::pixelMetric(QStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QMotifStyle::polish(QPalette &)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QMotifStyle::polish(QWidget *)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QMotifStyle::polish(QApplication *)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); methods += new qt_gsi::GenericMethod ("setUseHighlightColors|useHighlightColors=", "@brief Method void QMotifStyle::setUseHighlightColors(bool)\n", false, &_init_f_setUseHighlightColors_864, &_call_f_setUseHighlightColors_864); - methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const\nThis is a reimplementation of QCommonStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); - methods += new qt_gsi::GenericMethod ("standardPalette", "@brief Method () const\nThis is a reimplementation of QStyle::standardPalette", true, &_init_f_standardPalette_c0, &_call_f_standardPalette_c0); - methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); - methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const\nThis is a reimplementation of QCommonStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); - methods += new qt_gsi::GenericMethod ("subControlRect", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QStyle::SubControl, const QWidget *) const\nThis is a reimplementation of QCommonStyle::subControlRect", true, &_init_f_subControlRect_c9798, &_call_f_subControlRect_c9798); - methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method (QStyle::SubElement, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QWidget *)\nThis is a reimplementation of QCommonStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QApplication *)\nThis is a reimplementation of QCommonStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); + methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method QSize QMotifStyle::sizeFromContents(QStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); + methods += new qt_gsi::GenericMethod ("standardPalette", "@brief Method QPalette QMotifStyle::standardPalette()\nThis is a reimplementation of QStyle::standardPalette", true, &_init_f_standardPalette_c0, &_call_f_standardPalette_c0); + methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method QPixmap QMotifStyle::standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); + methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method int QMotifStyle::styleHint(QStyle::StyleHint hint, const QStyleOption *opt, const QWidget *widget, QStyleHintReturn *returnData)\nThis is a reimplementation of QCommonStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); + methods += new qt_gsi::GenericMethod ("subControlRect", "@brief Method QRect QMotifStyle::subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QStyle::SubControl sc, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::subControlRect", true, &_init_f_subControlRect_c9798, &_call_f_subControlRect_c9798); + methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method QRect QMotifStyle::subElementRect(QStyle::SubElement r, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QMotifStyle::unpolish(QWidget *)\nThis is a reimplementation of QCommonStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QMotifStyle::unpolish(QApplication *)\nThis is a reimplementation of QCommonStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); methods += new qt_gsi::GenericMethod (":useHighlightColors", "@brief Method bool QMotifStyle::useHighlightColors()\n", true, &_init_f_useHighlightColors_c0, &_call_f_useHighlightColors_c0); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QMotifStyle::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QMotifStyle::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc index c0253d1c8..d0e1bc61f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc @@ -160,7 +160,7 @@ static void _call_f_load_3648 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QPicture &) +// QPicture &QPicture::operator=(const QPicture &p) static void _init_f_operator_eq__2126 (qt_gsi::GenericMethod *decl) @@ -179,7 +179,7 @@ static void _call_f_operator_eq__2126 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QPaintEngine *QPicture::paintEngine() static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl) @@ -406,8 +406,8 @@ static gsi::Methods methods_QPicture () { methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QPicture::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0); methods += new qt_gsi::GenericMethod ("load", "@brief Method bool QPicture::load(QIODevice *dev, const char *format)\n", false, &_init_f_load_3070, &_call_f_load_3070); methods += new qt_gsi::GenericMethod ("load", "@brief Method bool QPicture::load(const QString &fileName, const char *format)\n", false, &_init_f_load_3648, &_call_f_load_3648); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QPicture &)\n", false, &_init_f_operator_eq__2126, &_call_f_operator_eq__2126); - methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QPicture &QPicture::operator=(const QPicture &p)\n", false, &_init_f_operator_eq__2126, &_call_f_operator_eq__2126); + methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method QPaintEngine *QPicture::paintEngine()\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); methods += new qt_gsi::GenericMethod ("play", "@brief Method bool QPicture::play(QPainter *p)\n", false, &_init_f_play_1426, &_call_f_play_1426); methods += new qt_gsi::GenericMethod ("save", "@brief Method bool QPicture::save(QIODevice *dev, const char *format)\n", false, &_init_f_save_3070, &_call_f_save_3070); methods += new qt_gsi::GenericMethod ("save", "@brief Method bool QPicture::save(const QString &fileName, const char *format)\n", false, &_init_f_save_3648, &_call_f_save_3648); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc index 9b0d47f86..1adb7f5ee 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc @@ -185,7 +185,7 @@ static void _call_f_createMaskFromColor_c3331 (const qt_gsi::GenericMethod * /*d } -// () const +// int QPixmap::depth() static void _init_f_depth_c0 (qt_gsi::GenericMethod *decl) @@ -315,7 +315,7 @@ static void _call_f_hasAlphaChannel_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QPixmap::height() static void _init_f_height_c0 (qt_gsi::GenericMethod *decl) @@ -483,7 +483,7 @@ static void _call_f_operator_excl__c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QPixmap &) +// QPixmap &QPixmap::operator=(const QPixmap &) static void _init_f_operator_eq__2017 (qt_gsi::GenericMethod *decl) @@ -502,7 +502,7 @@ static void _call_f_operator_eq__2017 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QPaintEngine *QPixmap::paintEngine() static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl) @@ -875,7 +875,7 @@ static void _call_f_transformed_c4875 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// int QPixmap::width() static void _init_f_width_c0 (qt_gsi::GenericMethod *decl) @@ -1073,14 +1073,14 @@ static gsi::Methods methods_QPixmap () { methods += new qt_gsi::GenericMethod ("createHeuristicMask", "@brief Method QBitmap QPixmap::createHeuristicMask(bool clipTight)\n", true, &_init_f_createHeuristicMask_c864, &_call_f_createHeuristicMask_c864); methods += new qt_gsi::GenericMethod ("createMaskFromColor", "@brief Method QBitmap QPixmap::createMaskFromColor(const QColor &maskColor)\n", true, &_init_f_createMaskFromColor_c1905, &_call_f_createMaskFromColor_c1905); methods += new qt_gsi::GenericMethod ("createMaskFromColor", "@brief Method QBitmap QPixmap::createMaskFromColor(const QColor &maskColor, Qt::MaskMode mode)\n", true, &_init_f_createMaskFromColor_c3331, &_call_f_createMaskFromColor_c3331); - methods += new qt_gsi::GenericMethod ("depth", "@brief Method () const\n", true, &_init_f_depth_c0, &_call_f_depth_c0); + methods += new qt_gsi::GenericMethod ("depth", "@brief Method int QPixmap::depth()\n", true, &_init_f_depth_c0, &_call_f_depth_c0); methods += new qt_gsi::GenericMethod ("detach", "@brief Method void QPixmap::detach()\n", false, &_init_f_detach_0, &_call_f_detach_0); methods += new qt_gsi::GenericMethod ("fill", "@brief Method void QPixmap::fill(const QColor &fillColor)\n", false, &_init_f_fill_1905, &_call_f_fill_1905); methods += new qt_gsi::GenericMethod ("fill", "@brief Method void QPixmap::fill(const QWidget *widget, const QPoint &ofs)\n", false, &_init_f_fill_3818, &_call_f_fill_3818); methods += new qt_gsi::GenericMethod ("fill", "@brief Method void QPixmap::fill(const QWidget *widget, int xofs, int yofs)\n", false, &_init_f_fill_3328, &_call_f_fill_3328); methods += new qt_gsi::GenericMethod ("hasAlpha", "@brief Method bool QPixmap::hasAlpha()\n", true, &_init_f_hasAlpha_c0, &_call_f_hasAlpha_c0); methods += new qt_gsi::GenericMethod ("hasAlphaChannel", "@brief Method bool QPixmap::hasAlphaChannel()\n", true, &_init_f_hasAlphaChannel_c0, &_call_f_hasAlphaChannel_c0); - methods += new qt_gsi::GenericMethod ("height", "@brief Method () const\n", true, &_init_f_height_c0, &_call_f_height_c0); + methods += new qt_gsi::GenericMethod ("height", "@brief Method int QPixmap::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); methods += new qt_gsi::GenericMethod ("isDetached?", "@brief Method bool QPixmap::isDetached()\n", true, &_init_f_isDetached_c0, &_call_f_isDetached_c0); methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QPixmap::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0); methods += new qt_gsi::GenericMethod ("isQBitmap?", "@brief Method bool QPixmap::isQBitmap()\n", true, &_init_f_isQBitmap_c0, &_call_f_isQBitmap_c0); @@ -1089,8 +1089,8 @@ static gsi::Methods methods_QPixmap () { methods += new qt_gsi::GenericMethod ("loadFromData", "@brief Method bool QPixmap::loadFromData(const QByteArray &data, const char *format, QFlags flags)\n", false, &_init_f_loadFromData_7192, &_call_f_loadFromData_7192); methods += new qt_gsi::GenericMethod (":mask", "@brief Method QBitmap QPixmap::mask()\n", true, &_init_f_mask_c0, &_call_f_mask_c0); methods += new qt_gsi::GenericMethod ("!", "@brief Method bool QPixmap::operator!()\n", true, &_init_f_operator_excl__c0, &_call_f_operator_excl__c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QPixmap &)\n", false, &_init_f_operator_eq__2017, &_call_f_operator_eq__2017); - methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QPixmap &QPixmap::operator=(const QPixmap &)\n", false, &_init_f_operator_eq__2017, &_call_f_operator_eq__2017); + methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method QPaintEngine *QPixmap::paintEngine()\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); methods += new qt_gsi::GenericMethod ("rect", "@brief Method QRect QPixmap::rect()\n", true, &_init_f_rect_c0, &_call_f_rect_c0); methods += new qt_gsi::GenericMethod ("save", "@brief Method bool QPixmap::save(const QString &fileName, const char *format, int quality)\n", true, &_init_f_save_c4307, &_call_f_save_c4307); methods += new qt_gsi::GenericMethod ("save", "@brief Method bool QPixmap::save(QIODevice *device, const char *format, int quality)\n", true, &_init_f_save_c3729, &_call_f_save_c3729); @@ -1107,7 +1107,7 @@ static gsi::Methods methods_QPixmap () { methods += new qt_gsi::GenericMethod ("toImage", "@brief Method QImage QPixmap::toImage()\n", true, &_init_f_toImage_c0, &_call_f_toImage_c0); methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QPixmap QPixmap::transformed(const QMatrix &, Qt::TransformationMode mode)\n", true, &_init_f_transformed_c4548, &_call_f_transformed_c4548); methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QPixmap QPixmap::transformed(const QTransform &, Qt::TransformationMode mode)\n", true, &_init_f_transformed_c4875, &_call_f_transformed_c4875); - methods += new qt_gsi::GenericMethod ("width", "@brief Method () const\n", true, &_init_f_width_c0, &_call_f_width_c0); + methods += new qt_gsi::GenericMethod ("width", "@brief Method int QPixmap::width()\n", true, &_init_f_width_c0, &_call_f_width_c0); methods += new qt_gsi::GenericStaticMethod ("defaultDepth", "@brief Static method int QPixmap::defaultDepth()\nThis method is static and can be called without an instance.", &_init_f_defaultDepth_0, &_call_f_defaultDepth_0); methods += new qt_gsi::GenericStaticMethod ("fromImage", "@brief Static method QPixmap QPixmap::fromImage(const QImage &image, QFlags flags)\nThis method is static and can be called without an instance.", &_init_f_fromImage_5137, &_call_f_fromImage_5137); methods += new qt_gsi::GenericStaticMethod ("grabWidget", "@brief Static method QPixmap QPixmap::grabWidget(QWidget *widget, const QRect &rect)\nThis method is static and can be called without an instance.", &_init_f_grabWidget_2999, &_call_f_grabWidget_2999); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc index 3055d971c..ac0822a8a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc @@ -66,7 +66,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QTextBlock &) const +// QRectF QPlainTextDocumentLayout::blockBoundingRect(const QTextBlock &block) static void _init_f_blockBoundingRect_c2306 (qt_gsi::GenericMethod *decl) @@ -100,7 +100,7 @@ static void _call_f_cursorWidth_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSizeF QPlainTextDocumentLayout::documentSize() static void _init_f_documentSize_c0 (qt_gsi::GenericMethod *decl) @@ -115,7 +115,7 @@ static void _call_f_documentSize_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QPainter *, const QAbstractTextDocumentLayout::PaintContext &) +// void QPlainTextDocumentLayout::draw(QPainter *, const QAbstractTextDocumentLayout::PaintContext &) static void _init_f_draw_6787 (qt_gsi::GenericMethod *decl) @@ -158,7 +158,7 @@ static void _call_f_ensureBlockLayout_c2306 (const qt_gsi::GenericMethod * /*dec } -// (QTextFrame *) const +// QRectF QPlainTextDocumentLayout::frameBoundingRect(QTextFrame *) static void _init_f_frameBoundingRect_c1615 (qt_gsi::GenericMethod *decl) @@ -177,7 +177,7 @@ static void _call_f_frameBoundingRect_c1615 (const qt_gsi::GenericMethod * /*dec } -// (const QPointF &, Qt::HitTestAccuracy) const +// int QPlainTextDocumentLayout::hitTest(const QPointF &, Qt::HitTestAccuracy) static void _init_f_hitTest_c4147 (qt_gsi::GenericMethod *decl) @@ -199,7 +199,7 @@ static void _call_f_hitTest_c4147 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QPlainTextDocumentLayout::pageCount() static void _init_f_pageCount_c0 (qt_gsi::GenericMethod *decl) @@ -350,14 +350,14 @@ namespace gsi static gsi::Methods methods_QPlainTextDocumentLayout () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("blockBoundingRect", "@brief Method (const QTextBlock &) const\nThis is a reimplementation of QAbstractTextDocumentLayout::blockBoundingRect", true, &_init_f_blockBoundingRect_c2306, &_call_f_blockBoundingRect_c2306); + methods += new qt_gsi::GenericMethod ("blockBoundingRect", "@brief Method QRectF QPlainTextDocumentLayout::blockBoundingRect(const QTextBlock &block)\nThis is a reimplementation of QAbstractTextDocumentLayout::blockBoundingRect", true, &_init_f_blockBoundingRect_c2306, &_call_f_blockBoundingRect_c2306); methods += new qt_gsi::GenericMethod (":cursorWidth", "@brief Method int QPlainTextDocumentLayout::cursorWidth()\n", true, &_init_f_cursorWidth_c0, &_call_f_cursorWidth_c0); - methods += new qt_gsi::GenericMethod ("documentSize", "@brief Method () const\nThis is a reimplementation of QAbstractTextDocumentLayout::documentSize", true, &_init_f_documentSize_c0, &_call_f_documentSize_c0); - methods += new qt_gsi::GenericMethod ("draw", "@brief Method (QPainter *, const QAbstractTextDocumentLayout::PaintContext &)\nThis is a reimplementation of QAbstractTextDocumentLayout::draw", false, &_init_f_draw_6787, &_call_f_draw_6787); + methods += new qt_gsi::GenericMethod ("documentSize", "@brief Method QSizeF QPlainTextDocumentLayout::documentSize()\nThis is a reimplementation of QAbstractTextDocumentLayout::documentSize", true, &_init_f_documentSize_c0, &_call_f_documentSize_c0); + methods += new qt_gsi::GenericMethod ("draw", "@brief Method void QPlainTextDocumentLayout::draw(QPainter *, const QAbstractTextDocumentLayout::PaintContext &)\nThis is a reimplementation of QAbstractTextDocumentLayout::draw", false, &_init_f_draw_6787, &_call_f_draw_6787); methods += new qt_gsi::GenericMethod ("ensureBlockLayout", "@brief Method void QPlainTextDocumentLayout::ensureBlockLayout(const QTextBlock &block)\n", true, &_init_f_ensureBlockLayout_c2306, &_call_f_ensureBlockLayout_c2306); - methods += new qt_gsi::GenericMethod ("frameBoundingRect", "@brief Method (QTextFrame *) const\nThis is a reimplementation of QAbstractTextDocumentLayout::frameBoundingRect", true, &_init_f_frameBoundingRect_c1615, &_call_f_frameBoundingRect_c1615); - methods += new qt_gsi::GenericMethod ("hitTest", "@brief Method (const QPointF &, Qt::HitTestAccuracy) const\nThis is a reimplementation of QAbstractTextDocumentLayout::hitTest", true, &_init_f_hitTest_c4147, &_call_f_hitTest_c4147); - methods += new qt_gsi::GenericMethod ("pageCount", "@brief Method () const\nThis is a reimplementation of QAbstractTextDocumentLayout::pageCount", true, &_init_f_pageCount_c0, &_call_f_pageCount_c0); + methods += new qt_gsi::GenericMethod ("frameBoundingRect", "@brief Method QRectF QPlainTextDocumentLayout::frameBoundingRect(QTextFrame *)\nThis is a reimplementation of QAbstractTextDocumentLayout::frameBoundingRect", true, &_init_f_frameBoundingRect_c1615, &_call_f_frameBoundingRect_c1615); + methods += new qt_gsi::GenericMethod ("hitTest", "@brief Method int QPlainTextDocumentLayout::hitTest(const QPointF &, Qt::HitTestAccuracy)\nThis is a reimplementation of QAbstractTextDocumentLayout::hitTest", true, &_init_f_hitTest_c4147, &_call_f_hitTest_c4147); + methods += new qt_gsi::GenericMethod ("pageCount", "@brief Method int QPlainTextDocumentLayout::pageCount()\nThis is a reimplementation of QAbstractTextDocumentLayout::pageCount", true, &_init_f_pageCount_c0, &_call_f_pageCount_c0); methods += new qt_gsi::GenericMethod ("requestUpdate", "@brief Method void QPlainTextDocumentLayout::requestUpdate()\n", false, &_init_f_requestUpdate_0, &_call_f_requestUpdate_0); methods += new qt_gsi::GenericMethod ("setCursorWidth|cursorWidth=", "@brief Method void QPlainTextDocumentLayout::setCursorWidth(int width)\n", false, &_init_f_setCursorWidth_767, &_call_f_setCursorWidth_767); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QPlainTextDocumentLayout::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc index eae6e21f1..b962eb746 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc @@ -431,7 +431,7 @@ static void _call_f_extraSelections_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QString &, QFlags) +// bool QPlainTextEdit::find(const QString &exp, QFlags options) static void _init_f_find_5261 (qt_gsi::GenericMethod *decl) @@ -1267,7 +1267,7 @@ static gsi::Methods methods_QPlainTextEdit () { methods += new qt_gsi::GenericMethod (":documentTitle", "@brief Method QString QPlainTextEdit::documentTitle()\n", true, &_init_f_documentTitle_c0, &_call_f_documentTitle_c0); methods += new qt_gsi::GenericMethod ("ensureCursorVisible", "@brief Method void QPlainTextEdit::ensureCursorVisible()\n", false, &_init_f_ensureCursorVisible_0, &_call_f_ensureCursorVisible_0); methods += new qt_gsi::GenericMethod (":extraSelections", "@brief Method QList QPlainTextEdit::extraSelections()\n", true, &_init_f_extraSelections_c0, &_call_f_extraSelections_c0); - methods += new qt_gsi::GenericMethod ("find", "@brief Method (const QString &, QFlags)\n", false, &_init_f_find_5261, &_call_f_find_5261); + methods += new qt_gsi::GenericMethod ("find", "@brief Method bool QPlainTextEdit::find(const QString &exp, QFlags options)\n", false, &_init_f_find_5261, &_call_f_find_5261); methods += new qt_gsi::GenericMethod ("insertPlainText", "@brief Method void QPlainTextEdit::insertPlainText(const QString &text)\n", false, &_init_f_insertPlainText_2025, &_call_f_insertPlainText_2025); methods += new qt_gsi::GenericMethod ("isReadOnly?|:readOnly", "@brief Method bool QPlainTextEdit::isReadOnly()\n", true, &_init_f_isReadOnly_c0, &_call_f_isReadOnly_c0); methods += new qt_gsi::GenericMethod ("isUndoRedoEnabled?|:undoRedoEnabled", "@brief Method bool QPlainTextEdit::isUndoRedoEnabled()\n", true, &_init_f_isUndoRedoEnabled_c0, &_call_f_isUndoRedoEnabled_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc index a0b83943b..c28b22cfa 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc @@ -68,7 +68,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const +// void QPlastiqueStyle::drawComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex *option, QPainter *painter, const QWidget *widget) static void _init_f_drawComplexControl_c9027 (qt_gsi::GenericMethod *decl) @@ -97,7 +97,7 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de } -// (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QPlastiqueStyle::drawControl(QStyle::ControlElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) static void _init_f_drawControl_c8285 (qt_gsi::GenericMethod *decl) @@ -126,7 +126,7 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QPlastiqueStyle::drawPrimitive(QStyle::PrimitiveElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) static void _init_f_drawPrimitive_c8501 (qt_gsi::GenericMethod *decl) @@ -155,7 +155,7 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, } -// (QStyle::ComplexControl, const QStyleOptionComplex *, const QPoint &, const QWidget *) const +// QStyle::SubControl QPlastiqueStyle::hitTestComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex *option, const QPoint &pos, const QWidget *widget) static void _init_f_hitTestComplexControl_c9517 (qt_gsi::GenericMethod *decl) @@ -183,7 +183,7 @@ static void _call_f_hitTestComplexControl_c9517 (const qt_gsi::GenericMethod * / } -// (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const +// int QPlastiqueStyle::pixelMetric(QStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget) static void _init_f_pixelMetric_c6642 (qt_gsi::GenericMethod *decl) @@ -208,7 +208,7 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QWidget *) +// void QPlastiqueStyle::polish(QWidget *widget) static void _init_f_polish_1315 (qt_gsi::GenericMethod *decl) @@ -228,7 +228,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QApplication *) +// void QPlastiqueStyle::polish(QApplication *app) static void _init_f_polish_1843 (qt_gsi::GenericMethod *decl) @@ -248,7 +248,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QPalette &) +// void QPlastiqueStyle::polish(QPalette &pal) static void _init_f_polish_1418 (qt_gsi::GenericMethod *decl) @@ -268,7 +268,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const +// QSize QPlastiqueStyle::sizeFromContents(QStyle::ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget) static void _init_f_sizeFromContents_c8477 (qt_gsi::GenericMethod *decl) @@ -296,7 +296,7 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl } -// () const +// QPalette QPlastiqueStyle::standardPalette() static void _init_f_standardPalette_c0 (qt_gsi::GenericMethod *decl) @@ -311,7 +311,7 @@ static void _call_f_standardPalette_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const +// QPixmap QPlastiqueStyle::standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget) static void _init_f_standardPixmap_c6956 (qt_gsi::GenericMethod *decl) @@ -336,7 +336,7 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const +// int QPlastiqueStyle::styleHint(QStyle::StyleHint hint, const QStyleOption *option, const QWidget *widget, QStyleHintReturn *returnData) static void _init_f_styleHint_c8615 (qt_gsi::GenericMethod *decl) @@ -364,7 +364,7 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QStyle::SubControl, const QWidget *) const +// QRect QPlastiqueStyle::subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QStyle::SubControl sc, const QWidget *widget) static void _init_f_subControlRect_c9798 (qt_gsi::GenericMethod *decl) @@ -392,7 +392,7 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::SubElement, const QStyleOption *, const QWidget *) const +// QRect QPlastiqueStyle::subElementRect(QStyle::SubElement element, const QStyleOption *option, const QWidget *widget) static void _init_f_subElementRect_c6528 (qt_gsi::GenericMethod *decl) @@ -417,7 +417,7 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ } -// (QWidget *) +// void QPlastiqueStyle::unpolish(QWidget *widget) static void _init_f_unpolish_1315 (qt_gsi::GenericMethod *decl) @@ -437,7 +437,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QApplication *) +// void QPlastiqueStyle::unpolish(QApplication *app) static void _init_f_unpolish_1843 (qt_gsi::GenericMethod *decl) @@ -557,22 +557,22 @@ namespace gsi static gsi::Methods methods_QPlastiqueStyle () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); - methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); - methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); - methods += new qt_gsi::GenericMethod ("hitTestComplexControl", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, const QPoint &, const QWidget *) const\nThis is a reimplementation of QCommonStyle::hitTestComplexControl", true, &_init_f_hitTestComplexControl_c9517, &_call_f_hitTestComplexControl_c9517); - methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QWidget *)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QApplication *)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QPalette &)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); - methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); - methods += new qt_gsi::GenericMethod ("standardPalette", "@brief Method () const\nThis is a reimplementation of QStyle::standardPalette", true, &_init_f_standardPalette_c0, &_call_f_standardPalette_c0); - methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); - methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const\nThis is a reimplementation of QWindowsStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); - methods += new qt_gsi::GenericMethod ("subControlRect", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QStyle::SubControl, const QWidget *) const\nThis is a reimplementation of QCommonStyle::subControlRect", true, &_init_f_subControlRect_c9798, &_call_f_subControlRect_c9798); - methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method (QStyle::SubElement, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QWindowsStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QWidget *)\nThis is a reimplementation of QWindowsStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QApplication *)\nThis is a reimplementation of QWindowsStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); + methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method void QPlastiqueStyle::drawComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex *option, QPainter *painter, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); + methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method void QPlastiqueStyle::drawControl(QStyle::ControlElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); + methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method void QPlastiqueStyle::drawPrimitive(QStyle::PrimitiveElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); + methods += new qt_gsi::GenericMethod ("hitTestComplexControl", "@brief Method QStyle::SubControl QPlastiqueStyle::hitTestComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex *option, const QPoint &pos, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::hitTestComplexControl", true, &_init_f_hitTestComplexControl_c9517, &_call_f_hitTestComplexControl_c9517); + methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method int QPlastiqueStyle::pixelMetric(QStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QPlastiqueStyle::polish(QWidget *widget)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QPlastiqueStyle::polish(QApplication *app)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QPlastiqueStyle::polish(QPalette &pal)\nThis is a reimplementation of QWindowsStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); + methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method QSize QPlastiqueStyle::sizeFromContents(QStyle::ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); + methods += new qt_gsi::GenericMethod ("standardPalette", "@brief Method QPalette QPlastiqueStyle::standardPalette()\nThis is a reimplementation of QStyle::standardPalette", true, &_init_f_standardPalette_c0, &_call_f_standardPalette_c0); + methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method QPixmap QPlastiqueStyle::standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); + methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method int QPlastiqueStyle::styleHint(QStyle::StyleHint hint, const QStyleOption *option, const QWidget *widget, QStyleHintReturn *returnData)\nThis is a reimplementation of QWindowsStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); + methods += new qt_gsi::GenericMethod ("subControlRect", "@brief Method QRect QPlastiqueStyle::subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QStyle::SubControl sc, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::subControlRect", true, &_init_f_subControlRect_c9798, &_call_f_subControlRect_c9798); + methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method QRect QPlastiqueStyle::subElementRect(QStyle::SubElement element, const QStyleOption *option, const QWidget *widget)\nThis is a reimplementation of QWindowsStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QPlastiqueStyle::unpolish(QWidget *widget)\nThis is a reimplementation of QWindowsStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QPlastiqueStyle::unpolish(QApplication *app)\nThis is a reimplementation of QWindowsStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QPlastiqueStyle::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QPlastiqueStyle::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QPlastiqueStyle::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc index 272c95310..ae78bbcb2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc @@ -98,7 +98,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () +// void QPrintDialog::accept() static void _init_f_accept_0 (qt_gsi::GenericMethod *decl) @@ -114,7 +114,7 @@ static void _call_f_accept_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (int) +// void QPrintDialog::done(int result) static void _init_f_done_767 (qt_gsi::GenericMethod *decl) @@ -134,7 +134,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () +// int QPrintDialog::exec() static void _init_f_exec_0 (qt_gsi::GenericMethod *decl) @@ -149,7 +149,7 @@ static void _call_f_exec_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// () +// void QPrintDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -165,7 +165,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QPrintDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -246,7 +246,7 @@ static void _call_f_setOptions_5016 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (bool) +// void QPrintDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -385,15 +385,15 @@ namespace gsi static gsi::Methods methods_QPrintDialog () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("accept", "@brief Method ()\nThis is a reimplementation of QDialog::accept", false, &_init_f_accept_0, &_call_f_accept_0); - methods += new qt_gsi::GenericMethod ("done", "@brief Method (int)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); - methods += new qt_gsi::GenericMethod ("exec", "@brief Method ()\nThis is a reimplementation of QAbstractPrintDialog::exec", false, &_init_f_exec_0, &_call_f_exec_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\n", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QPrintDialog::accept()\nThis is a reimplementation of QDialog::accept", false, &_init_f_accept_0, &_call_f_accept_0); + methods += new qt_gsi::GenericMethod ("done", "@brief Method void QPrintDialog::done(int result)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); + methods += new qt_gsi::GenericMethod ("exec", "@brief Method int QPrintDialog::exec()\nThis is a reimplementation of QAbstractPrintDialog::exec", false, &_init_f_exec_0, &_call_f_exec_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QPrintDialog::open()\n", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QPrintDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod (":options", "@brief Method QFlags QPrintDialog::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); methods += new qt_gsi::GenericMethod ("setOption", "@brief Method void QPrintDialog::setOption(QAbstractPrintDialog::PrintDialogOption option, bool on)\n", false, &_init_f_setOption_5076, &_call_f_setOption_5076); methods += new qt_gsi::GenericMethod ("setOptions|options=", "@brief Method void QPrintDialog::setOptions(QFlags options)\n", false, &_init_f_setOptions_5016, &_call_f_setOptions_5016); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QPrintDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QPrintDialog::testOption(QAbstractPrintDialog::PrintDialogOption option)\n", true, &_init_f_testOption_c4320, &_call_f_testOption_c4320); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QPrintDialog::accepted()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("accepted(QPrinter *)", "accepted_sig", gsi::arg("printer"), "@brief Signal declaration for QPrintDialog::accepted(QPrinter *printer)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc index 3ecd464c2..f3112e81d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc @@ -98,7 +98,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (int) +// void QPrintPreviewDialog::done(int result) static void _init_f_done_767 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () +// void QPrintPreviewDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -134,7 +134,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QPrintPreviewDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -172,7 +172,7 @@ static void _call_f_printer_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (bool) +// void QPrintPreviewDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -292,11 +292,11 @@ namespace gsi static gsi::Methods methods_QPrintPreviewDialog () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("done", "@brief Method (int)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\n", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("done", "@brief Method void QPrintPreviewDialog::done(int result)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QPrintPreviewDialog::open()\n", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QPrintPreviewDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod ("printer", "@brief Method QPrinter *QPrintPreviewDialog::printer()\n", false, &_init_f_printer_0, &_call_f_printer_0); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QPrintPreviewDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QPrintPreviewDialog::accepted()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QPrintPreviewDialog::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QPrintPreviewDialog::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc index 315444196..bbabe8d56 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc @@ -346,7 +346,7 @@ static void _call_f_setViewMode_3308 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (bool) +// void QPrintPreviewWidget::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -622,7 +622,7 @@ static gsi::Methods methods_QPrintPreviewWidget () { methods += new qt_gsi::GenericMethod ("setPortraitOrientation", "@brief Method void QPrintPreviewWidget::setPortraitOrientation()\n", false, &_init_f_setPortraitOrientation_0, &_call_f_setPortraitOrientation_0); methods += new qt_gsi::GenericMethod ("setSinglePageViewMode", "@brief Method void QPrintPreviewWidget::setSinglePageViewMode()\n", false, &_init_f_setSinglePageViewMode_0, &_call_f_setSinglePageViewMode_0); methods += new qt_gsi::GenericMethod ("setViewMode|viewMode=", "@brief Method void QPrintPreviewWidget::setViewMode(QPrintPreviewWidget::ViewMode viewMode)\n", false, &_init_f_setViewMode_3308, &_call_f_setViewMode_3308); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QPrintPreviewWidget::setVisible(bool visible)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("setZoomFactor|zoomFactor=", "@brief Method void QPrintPreviewWidget::setZoomFactor(double zoomFactor)\n", false, &_init_f_setZoomFactor_1071, &_call_f_setZoomFactor_1071); methods += new qt_gsi::GenericMethod ("setZoomMode|zoomMode=", "@brief Method void QPrintPreviewWidget::setZoomMode(QPrintPreviewWidget::ZoomMode zoomMode)\n", false, &_init_f_setZoomMode_3318, &_call_f_setZoomMode_3318); methods += new qt_gsi::GenericMethod ("updatePreview", "@brief Method void QPrintPreviewWidget::updatePreview()\n", false, &_init_f_updatePreview_0, &_call_f_updatePreview_0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc index 780e710a0..e225c0156 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc @@ -393,7 +393,7 @@ static void _call_f_pageSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QPaintEngine *QPrinter::paintEngine() static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl) @@ -1116,7 +1116,7 @@ static gsi::Methods methods_QPrinter () { methods += new qt_gsi::GenericMethod ("pageRect", "@brief Method QRect QPrinter::pageRect()\n", true, &_init_f_pageRect_c0, &_call_f_pageRect_c0); methods += new qt_gsi::GenericMethod ("pageRect", "@brief Method QRectF QPrinter::pageRect(QPrinter::Unit)\n", true, &_init_f_pageRect_c1789, &_call_f_pageRect_c1789); methods += new qt_gsi::GenericMethod (":pageSize", "@brief Method QPrinter::PageSize QPrinter::pageSize()\n", true, &_init_f_pageSize_c0, &_call_f_pageSize_c0); - methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); + methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method QPaintEngine *QPrinter::paintEngine()\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); methods += new qt_gsi::GenericMethod ("paperRect", "@brief Method QRect QPrinter::paperRect()\n", true, &_init_f_paperRect_c0, &_call_f_paperRect_c0); methods += new qt_gsi::GenericMethod ("paperRect", "@brief Method QRectF QPrinter::paperRect(QPrinter::Unit)\n", true, &_init_f_paperRect_c1789, &_call_f_paperRect_c1789); methods += new qt_gsi::GenericMethod (":paperSize", "@brief Method QPrinter::PageSize QPrinter::paperSize()\n", true, &_init_f_paperSize_c0, &_call_f_paperSize_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc index fc702ce33..d8d42d89b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc @@ -188,7 +188,7 @@ static void _call_f_minimum_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QProgressBar::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -437,7 +437,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QSize QProgressBar::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -603,7 +603,7 @@ static gsi::Methods methods_QProgressBar () { methods += new qt_gsi::GenericMethod ("isTextVisible?|:textVisible", "@brief Method bool QProgressBar::isTextVisible()\n", true, &_init_f_isTextVisible_c0, &_call_f_isTextVisible_c0); methods += new qt_gsi::GenericMethod (":maximum", "@brief Method int QProgressBar::maximum()\n", true, &_init_f_maximum_c0, &_call_f_maximum_c0); methods += new qt_gsi::GenericMethod (":minimum", "@brief Method int QProgressBar::minimum()\n", true, &_init_f_minimum_c0, &_call_f_minimum_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QProgressBar::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method Qt::Orientation QProgressBar::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); methods += new qt_gsi::GenericMethod ("reset", "@brief Method void QProgressBar::reset()\n", false, &_init_f_reset_0, &_call_f_reset_0); methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QProgressBar::setAlignment(QFlags alignment)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); @@ -616,7 +616,7 @@ static gsi::Methods methods_QProgressBar () { methods += new qt_gsi::GenericMethod ("setTextDirection|textDirection=", "@brief Method void QProgressBar::setTextDirection(QProgressBar::Direction textDirection)\n", false, &_init_f_setTextDirection_2692, &_call_f_setTextDirection_2692); methods += new qt_gsi::GenericMethod ("setTextVisible|textVisible=", "@brief Method void QProgressBar::setTextVisible(bool visible)\n", false, &_init_f_setTextVisible_864, &_call_f_setTextVisible_864); methods += new qt_gsi::GenericMethod ("setValue|value=", "@brief Method void QProgressBar::setValue(int value)\n", false, &_init_f_setValue_767, &_call_f_setValue_767); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QProgressBar::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":text", "@brief Method QString QProgressBar::text()\n", true, &_init_f_text_c0, &_call_f_text_c0); methods += new qt_gsi::GenericMethod (":textDirection", "@brief Method QProgressBar::Direction QProgressBar::textDirection()\n", false, &_init_f_textDirection_0, &_call_f_textDirection_0); methods += new qt_gsi::GenericMethod (":value", "@brief Method int QProgressBar::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc index 22fb86bcb..4f23103cd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc @@ -206,7 +206,7 @@ static void _call_f_minimumDuration_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () +// void QProgressDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -222,7 +222,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QProgressDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -504,7 +504,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QSize QProgressDialog::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -656,8 +656,8 @@ static gsi::Methods methods_QProgressDialog () { methods += new qt_gsi::GenericMethod (":maximum", "@brief Method int QProgressDialog::maximum()\n", true, &_init_f_maximum_c0, &_call_f_maximum_c0); methods += new qt_gsi::GenericMethod (":minimum", "@brief Method int QProgressDialog::minimum()\n", true, &_init_f_minimum_c0, &_call_f_minimum_c0); methods += new qt_gsi::GenericMethod (":minimumDuration", "@brief Method int QProgressDialog::minimumDuration()\n", true, &_init_f_minimumDuration_c0, &_call_f_minimumDuration_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\n", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QProgressDialog::open()\n", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QProgressDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod ("reset", "@brief Method void QProgressDialog::reset()\n", false, &_init_f_reset_0, &_call_f_reset_0); methods += new qt_gsi::GenericMethod ("setAutoClose|autoClose=", "@brief Method void QProgressDialog::setAutoClose(bool close)\n", false, &_init_f_setAutoClose_864, &_call_f_setAutoClose_864); methods += new qt_gsi::GenericMethod ("setAutoReset|autoReset=", "@brief Method void QProgressDialog::setAutoReset(bool reset)\n", false, &_init_f_setAutoReset_864, &_call_f_setAutoReset_864); @@ -671,7 +671,7 @@ static gsi::Methods methods_QProgressDialog () { methods += new qt_gsi::GenericMethod ("setMinimumDuration|minimumDuration=", "@brief Method void QProgressDialog::setMinimumDuration(int ms)\n", false, &_init_f_setMinimumDuration_767, &_call_f_setMinimumDuration_767); methods += new qt_gsi::GenericMethod ("setRange", "@brief Method void QProgressDialog::setRange(int minimum, int maximum)\n", false, &_init_f_setRange_1426, &_call_f_setRange_1426); methods += new qt_gsi::GenericMethod ("setValue|value=", "@brief Method void QProgressDialog::setValue(int progress)\n", false, &_init_f_setValue_767, &_call_f_setValue_767); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QProgressDialog::sizeHint()\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":value", "@brief Method int QProgressDialog::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); methods += new qt_gsi::GenericMethod (":wasCanceled", "@brief Method bool QProgressDialog::wasCanceled()\n", true, &_init_f_wasCanceled_c0, &_call_f_wasCanceled_c0); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QProgressDialog::accepted()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc index 8f32dfe35..3c29e70e7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc @@ -160,7 +160,7 @@ static void _call_f_menu_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QSize QPushButton::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -271,7 +271,7 @@ static void _call_f_showMenu_0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QPushButton::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -390,13 +390,13 @@ static gsi::Methods methods_QPushButton () { methods += new qt_gsi::GenericMethod ("isDefault?|:default", "@brief Method bool QPushButton::isDefault()\n", true, &_init_f_isDefault_c0, &_call_f_isDefault_c0); methods += new qt_gsi::GenericMethod ("isFlat?|:flat", "@brief Method bool QPushButton::isFlat()\n", true, &_init_f_isFlat_c0, &_call_f_isFlat_c0); methods += new qt_gsi::GenericMethod (":menu", "@brief Method QMenu *QPushButton::menu()\n", true, &_init_f_menu_c0, &_call_f_menu_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QPushButton::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setAutoDefault|autoDefault=", "@brief Method void QPushButton::setAutoDefault(bool)\n", false, &_init_f_setAutoDefault_864, &_call_f_setAutoDefault_864); methods += new qt_gsi::GenericMethod ("setDefault|default=", "@brief Method void QPushButton::setDefault(bool)\n", false, &_init_f_setDefault_864, &_call_f_setDefault_864); methods += new qt_gsi::GenericMethod ("setFlat|flat=", "@brief Method void QPushButton::setFlat(bool)\n", false, &_init_f_setFlat_864, &_call_f_setFlat_864); methods += new qt_gsi::GenericMethod ("setMenu|menu=", "@brief Method void QPushButton::setMenu(QMenu *menu)\n", false, &_init_f_setMenu_1108, &_call_f_setMenu_1108); methods += new qt_gsi::GenericMethod ("showMenu", "@brief Method void QPushButton::showMenu()\n", false, &_init_f_showMenu_0, &_call_f_showMenu_0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QPushButton::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("clicked(bool)", "clicked", gsi::arg("checked"), "@brief Signal declaration for QPushButton::clicked(bool checked)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QPushButton::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QPushButton::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc index a26153f62..84d2b5f58 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc @@ -99,7 +99,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// QSize QRadioButton::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -214,7 +214,7 @@ namespace gsi static gsi::Methods methods_QRadioButton () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QRadioButton::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("clicked(bool)", "clicked", gsi::arg("checked"), "@brief Signal declaration for QRadioButton::clicked(bool checked)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QRadioButton::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QRadioButton::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc index c9a430383..828fa888e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc @@ -91,7 +91,7 @@ static void _call_f_setRegExp_1981 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QString &, int &) const +// QValidator::State QRegExpValidator::validate(QString &input, int &pos) static void _init_f_validate_c2171 (qt_gsi::GenericMethod *decl) @@ -215,7 +215,7 @@ static gsi::Methods methods_QRegExpValidator () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":regExp", "@brief Method const QRegExp &QRegExpValidator::regExp()\n", true, &_init_f_regExp_c0, &_call_f_regExp_c0); methods += new qt_gsi::GenericMethod ("setRegExp|regExp=", "@brief Method void QRegExpValidator::setRegExp(const QRegExp &rx)\n", false, &_init_f_setRegExp_1981, &_call_f_setRegExp_1981); - methods += new qt_gsi::GenericMethod ("validate", "@brief Method (QString &, int &) const\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); + methods += new qt_gsi::GenericMethod ("validate", "@brief Method QValidator::State QRegExpValidator::validate(QString &input, int &pos)\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QRegExpValidator::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QRegExpValidator::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QRegExpValidator::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc index 026e4460c..9cfcecb4c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc @@ -98,7 +98,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (int, int) +// void QRubberBand::move(int x, int y) static void _init_f_move_1426 (qt_gsi::GenericMethod *decl) @@ -121,7 +121,7 @@ static void _call_f_move_1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QPoint &) +// void QRubberBand::move(const QPoint &p) static void _init_f_move_1916 (qt_gsi::GenericMethod *decl) @@ -141,7 +141,7 @@ static void _call_f_move_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int, int) +// void QRubberBand::resize(int w, int h) static void _init_f_resize_1426 (qt_gsi::GenericMethod *decl) @@ -164,7 +164,7 @@ static void _call_f_resize_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QSize &) +// void QRubberBand::resize(const QSize &s) static void _init_f_resize_1805 (qt_gsi::GenericMethod *decl) @@ -184,7 +184,7 @@ static void _call_f_resize_1805 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QRect &) +// void QRubberBand::setGeometry(const QRect &r) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -204,7 +204,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int, int, int, int) +// void QRubberBand::setGeometry(int x, int y, int w, int h) static void _init_f_setGeometry_2744 (qt_gsi::GenericMethod *decl) @@ -348,12 +348,12 @@ namespace gsi static gsi::Methods methods_QRubberBand () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("move", "@brief Method (int, int)\n", false, &_init_f_move_1426, &_call_f_move_1426); - methods += new qt_gsi::GenericMethod ("move", "@brief Method (const QPoint &)\n", false, &_init_f_move_1916, &_call_f_move_1916); - methods += new qt_gsi::GenericMethod ("resize", "@brief Method (int, int)\n", false, &_init_f_resize_1426, &_call_f_resize_1426); - methods += new qt_gsi::GenericMethod ("resize", "@brief Method (const QSize &)\n", false, &_init_f_resize_1805, &_call_f_resize_1805); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\n", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); - methods += new qt_gsi::GenericMethod ("setGeometry", "@brief Method (int, int, int, int)\n", false, &_init_f_setGeometry_2744, &_call_f_setGeometry_2744); + methods += new qt_gsi::GenericMethod ("move", "@brief Method void QRubberBand::move(int x, int y)\n", false, &_init_f_move_1426, &_call_f_move_1426); + methods += new qt_gsi::GenericMethod ("move", "@brief Method void QRubberBand::move(const QPoint &p)\n", false, &_init_f_move_1916, &_call_f_move_1916); + methods += new qt_gsi::GenericMethod ("resize", "@brief Method void QRubberBand::resize(int w, int h)\n", false, &_init_f_resize_1426, &_call_f_resize_1426); + methods += new qt_gsi::GenericMethod ("resize", "@brief Method void QRubberBand::resize(const QSize &s)\n", false, &_init_f_resize_1805, &_call_f_resize_1805); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QRubberBand::setGeometry(const QRect &r)\n", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setGeometry", "@brief Method void QRubberBand::setGeometry(int x, int y, int w, int h)\n", false, &_init_f_setGeometry_2744, &_call_f_setGeometry_2744); methods += new qt_gsi::GenericMethod ("shape", "@brief Method QRubberBand::Shape QRubberBand::shape()\n", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QRubberBand::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QRubberBand::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc b/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc index 93eacbda2..980dd59e9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc @@ -168,7 +168,7 @@ static void _call_f_ensureWidgetVisible_2633 (const qt_gsi::GenericMethod * /*de } -// (bool) +// bool QScrollArea::focusNextPrevChild(bool next) static void _init_f_focusNextPrevChild_864 (qt_gsi::GenericMethod *decl) @@ -247,7 +247,7 @@ static void _call_f_setWidgetResizable_864 (const qt_gsi::GenericMethod * /*decl } -// () const +// QSize QScrollArea::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -410,11 +410,11 @@ static gsi::Methods methods_QScrollArea () { methods += new qt_gsi::GenericMethod (":alignment", "@brief Method QFlags QScrollArea::alignment()\n", true, &_init_f_alignment_c0, &_call_f_alignment_c0); methods += new qt_gsi::GenericMethod ("ensureVisible", "@brief Method void QScrollArea::ensureVisible(int x, int y, int xmargin, int ymargin)\n", false, &_init_f_ensureVisible_2744, &_call_f_ensureVisible_2744); methods += new qt_gsi::GenericMethod ("ensureWidgetVisible", "@brief Method void QScrollArea::ensureWidgetVisible(QWidget *childWidget, int xmargin, int ymargin)\n", false, &_init_f_ensureWidgetVisible_2633, &_call_f_ensureWidgetVisible_2633); - methods += new qt_gsi::GenericMethod ("focusNextPrevChild", "@brief Method (bool)\nThis is a reimplementation of QWidget::focusNextPrevChild", false, &_init_f_focusNextPrevChild_864, &_call_f_focusNextPrevChild_864); + methods += new qt_gsi::GenericMethod ("focusNextPrevChild", "@brief Method bool QScrollArea::focusNextPrevChild(bool next)\nThis is a reimplementation of QWidget::focusNextPrevChild", false, &_init_f_focusNextPrevChild_864, &_call_f_focusNextPrevChild_864); methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QScrollArea::setAlignment(QFlags)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); methods += new qt_gsi::GenericMethod ("setWidget|widget=", "@brief Method void QScrollArea::setWidget(QWidget *widget)\n", false, &_init_f_setWidget_1315, &_call_f_setWidget_1315); methods += new qt_gsi::GenericMethod ("setWidgetResizable|widgetResizable=", "@brief Method void QScrollArea::setWidgetResizable(bool resizable)\n", false, &_init_f_setWidgetResizable_864, &_call_f_setWidgetResizable_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QScrollArea::sizeHint()\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("takeWidget", "@brief Method QWidget *QScrollArea::takeWidget()\n", false, &_init_f_takeWidget_0, &_call_f_takeWidget_0); methods += new qt_gsi::GenericMethod (":widget", "@brief Method QWidget *QScrollArea::widget()\n", true, &_init_f_widget_c0, &_call_f_widget_c0); methods += new qt_gsi::GenericMethod (":widgetResizable", "@brief Method bool QScrollArea::widgetResizable()\n", true, &_init_f_widgetResizable_c0, &_call_f_widgetResizable_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc index a21e258cb..117a5f2bb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc @@ -98,7 +98,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QEvent *) +// bool QScrollBar::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QScrollBar::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -232,8 +232,8 @@ namespace gsi static gsi::Methods methods_QScrollBar () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QAbstractSlider::event", false, &_init_f_event_1217, &_call_f_event_1217); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QScrollBar::event(QEvent *event)\nThis is a reimplementation of QAbstractSlider::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QScrollBar::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("actionTriggered(int)", "actionTriggered", gsi::arg("action"), "@brief Signal declaration for QScrollBar::actionTriggered(int action)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QScrollBar::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QScrollBar::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc index 212b0b1a4..6c8f6df52 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc @@ -97,7 +97,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (bool) +// void QSizeGrip::setVisible(bool) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QSizeGrip::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -232,8 +232,8 @@ namespace gsi static gsi::Methods methods_QSizeGrip () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QSizeGrip::setVisible(bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QSizeGrip::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QSizeGrip::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QSizeGrip::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QSizeGrip::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc index c7d97bac5..c80376159 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc @@ -98,7 +98,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QEvent *) +// bool QSlider::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QSlider::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -172,7 +172,7 @@ static void _call_f_setTickPosition_2492 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QSize QSlider::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -317,11 +317,11 @@ namespace gsi static gsi::Methods methods_QSlider () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QAbstractSlider::event", false, &_init_f_event_1217, &_call_f_event_1217); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QSlider::event(QEvent *event)\nThis is a reimplementation of QAbstractSlider::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QSlider::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setTickInterval|tickInterval=", "@brief Method void QSlider::setTickInterval(int ti)\n", false, &_init_f_setTickInterval_767, &_call_f_setTickInterval_767); methods += new qt_gsi::GenericMethod ("setTickPosition|tickPosition=", "@brief Method void QSlider::setTickPosition(QSlider::TickPosition position)\n", false, &_init_f_setTickPosition_2492, &_call_f_setTickPosition_2492); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QSlider::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":tickInterval", "@brief Method int QSlider::tickInterval()\n", true, &_init_f_tickInterval_c0, &_call_f_tickInterval_c0); methods += new qt_gsi::GenericMethod (":tickPosition", "@brief Method QSlider::TickPosition QSlider::tickPosition()\n", true, &_init_f_tickPosition_c0, &_call_f_tickPosition_c0); methods += gsi::qt_signal ("actionTriggered(int)", "actionTriggered", gsi::arg("action"), "@brief Signal declaration for QSlider::actionTriggered(int action)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc index cf89bfa54..56283f93a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc @@ -61,7 +61,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::buddy(const QModelIndex &index) static void _init_f_buddy_c2395 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_buddy_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QSortFilterProxyModel::canFetchMore(const QModelIndex &parent) static void _init_f_canFetchMore_c2395 (qt_gsi::GenericMethod *decl) @@ -115,7 +115,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &) const +// int QSortFilterProxyModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -134,7 +134,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int) const +// QVariant QSortFilterProxyModel::data(const QModelIndex &index, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -156,7 +156,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QSortFilterProxyModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -202,7 +202,7 @@ static void _call_f_dynamicSortFilter_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (const QModelIndex &) +// void QSortFilterProxyModel::fetchMore(const QModelIndex &parent) static void _init_f_fetchMore_2395 (qt_gsi::GenericMethod *decl) @@ -282,7 +282,7 @@ static void _call_f_filterRole_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// QFlags QSortFilterProxyModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -301,7 +301,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QSortFilterProxyModel::hasChildren(const QModelIndex &parent) static void _init_f_hasChildren_c2395 (qt_gsi::GenericMethod *decl) @@ -320,7 +320,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, Qt::Orientation, int) const +// QVariant QSortFilterProxyModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -345,7 +345,7 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int, int, const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -370,7 +370,7 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, int, const QModelIndex &) +// bool QSortFilterProxyModel::insertColumns(int column, int count, const QModelIndex &parent) static void _init_f_insertColumns_3713 (qt_gsi::GenericMethod *decl) @@ -395,7 +395,7 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QSortFilterProxyModel::insertRows(int row, int count, const QModelIndex &parent) static void _init_f_insertRows_3713 (qt_gsi::GenericMethod *decl) @@ -451,7 +451,7 @@ static void _call_f_isSortLocaleAware_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::mapFromSource(const QModelIndex &sourceIndex) static void _init_f_mapFromSource_c2395 (qt_gsi::GenericMethod *decl) @@ -470,7 +470,7 @@ static void _call_f_mapFromSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QItemSelection &) const +// QItemSelection QSortFilterProxyModel::mapSelectionFromSource(const QItemSelection &sourceSelection) static void _init_f_mapSelectionFromSource_c2727 (qt_gsi::GenericMethod *decl) @@ -489,7 +489,7 @@ static void _call_f_mapSelectionFromSource_c2727 (const qt_gsi::GenericMethod * } -// (const QItemSelection &) const +// QItemSelection QSortFilterProxyModel::mapSelectionToSource(const QItemSelection &proxySelection) static void _init_f_mapSelectionToSource_c2727 (qt_gsi::GenericMethod *decl) @@ -508,7 +508,7 @@ static void _call_f_mapSelectionToSource_c2727 (const qt_gsi::GenericMethod * /* } -// (const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::mapToSource(const QModelIndex &proxyIndex) static void _init_f_mapToSource_c2395 (qt_gsi::GenericMethod *decl) @@ -527,7 +527,7 @@ static void _call_f_mapToSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int, const QVariant &, int, QFlags) const +// QList QSortFilterProxyModel::match(const QModelIndex &start, int role, const QVariant &value, int hits, QFlags flags) static void _init_f_match_c7932 (qt_gsi::GenericMethod *decl) @@ -558,7 +558,7 @@ static void _call_f_match_c7932 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QList &) const +// QMimeData *QSortFilterProxyModel::mimeData(const QList &indexes) static void _init_f_mimeData_c3010 (qt_gsi::GenericMethod *decl) @@ -577,7 +577,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QStringList QSortFilterProxyModel::mimeTypes() static void _init_f_mimeTypes_c0 (qt_gsi::GenericMethod *decl) @@ -592,7 +592,7 @@ static void _call_f_mimeTypes_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QObject *QSortFilterProxyModel::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -607,7 +607,7 @@ static void _call_f_parent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -626,7 +626,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, int, const QModelIndex &) +// bool QSortFilterProxyModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -651,7 +651,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QSortFilterProxyModel::removeRows(int row, int count, const QModelIndex &parent) static void _init_f_removeRows_3713 (qt_gsi::GenericMethod *decl) @@ -676,7 +676,7 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QModelIndex &) const +// int QSortFilterProxyModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -695,7 +695,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, const QVariant &, int) +// bool QSortFilterProxyModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -880,7 +880,7 @@ static void _call_f_setFilterWildcard_2025 (const qt_gsi::GenericMethod * /*decl } -// (int, Qt::Orientation, const QVariant &, int) +// bool QSortFilterProxyModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role) static void _init_f_setHeaderData_5242 (qt_gsi::GenericMethod *decl) @@ -968,7 +968,7 @@ static void _call_f_setSortRole_767 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QAbstractItemModel *) +// void QSortFilterProxyModel::setSourceModel(QAbstractItemModel *sourceModel) static void _init_f_setSourceModel_2419 (qt_gsi::GenericMethod *decl) @@ -988,7 +988,7 @@ static void _call_f_setSourceModel_2419 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, Qt::SortOrder) +// void QSortFilterProxyModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -1071,7 +1071,7 @@ static void _call_f_sortRole_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// QSize QSortFilterProxyModel::span(const QModelIndex &index) static void _init_f_span_c2395 (qt_gsi::GenericMethod *decl) @@ -1090,7 +1090,7 @@ static void _call_f_span_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QFlags QSortFilterProxyModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -1205,39 +1205,39 @@ namespace gsi static gsi::Methods methods_QSortFilterProxyModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("buddy", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::buddy", true, &_init_f_buddy_c2395, &_call_f_buddy_c2395); - methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); + methods += new qt_gsi::GenericMethod ("buddy", "@brief Method QModelIndex QSortFilterProxyModel::buddy(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::buddy", true, &_init_f_buddy_c2395, &_call_f_buddy_c2395); + methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method bool QSortFilterProxyModel::canFetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QSortFilterProxyModel::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractProxyModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QSortFilterProxyModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QSortFilterProxyModel::data(const QModelIndex &index, int role)\nThis is a reimplementation of QAbstractProxyModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QSortFilterProxyModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); methods += new qt_gsi::GenericMethod (":dynamicSortFilter", "@brief Method bool QSortFilterProxyModel::dynamicSortFilter()\n", true, &_init_f_dynamicSortFilter_c0, &_call_f_dynamicSortFilter_c0); - methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); + methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method void QSortFilterProxyModel::fetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); methods += new qt_gsi::GenericMethod (":filterCaseSensitivity", "@brief Method Qt::CaseSensitivity QSortFilterProxyModel::filterCaseSensitivity()\n", true, &_init_f_filterCaseSensitivity_c0, &_call_f_filterCaseSensitivity_c0); methods += new qt_gsi::GenericMethod (":filterKeyColumn", "@brief Method int QSortFilterProxyModel::filterKeyColumn()\n", true, &_init_f_filterKeyColumn_c0, &_call_f_filterKeyColumn_c0); methods += new qt_gsi::GenericMethod (":filterRegExp", "@brief Method QRegExp QSortFilterProxyModel::filterRegExp()\n", true, &_init_f_filterRegExp_c0, &_call_f_filterRegExp_c0); methods += new qt_gsi::GenericMethod (":filterRole", "@brief Method int QSortFilterProxyModel::filterRole()\n", true, &_init_f_filterRole_c0, &_call_f_filterRole_c0); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractProxyModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); - methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); - methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QSortFilterProxyModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractProxyModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method bool QSortFilterProxyModel::hasChildren(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QSortFilterProxyModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractProxyModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QSortFilterProxyModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method bool QSortFilterProxyModel::insertColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); + methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method bool QSortFilterProxyModel::insertRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QSortFilterProxyModel::invalidate()\n", false, &_init_f_invalidate_0, &_call_f_invalidate_0); methods += new qt_gsi::GenericMethod ("isSortLocaleAware?|:isSortLocaleAware", "@brief Method bool QSortFilterProxyModel::isSortLocaleAware()\n", true, &_init_f_isSortLocaleAware_c0, &_call_f_isSortLocaleAware_c0); - methods += new qt_gsi::GenericMethod ("mapFromSource", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::mapFromSource", true, &_init_f_mapFromSource_c2395, &_call_f_mapFromSource_c2395); - methods += new qt_gsi::GenericMethod ("mapSelectionFromSource", "@brief Method (const QItemSelection &) const\nThis is a reimplementation of QAbstractProxyModel::mapSelectionFromSource", true, &_init_f_mapSelectionFromSource_c2727, &_call_f_mapSelectionFromSource_c2727); - methods += new qt_gsi::GenericMethod ("mapSelectionToSource", "@brief Method (const QItemSelection &) const\nThis is a reimplementation of QAbstractProxyModel::mapSelectionToSource", true, &_init_f_mapSelectionToSource_c2727, &_call_f_mapSelectionToSource_c2727); - methods += new qt_gsi::GenericMethod ("mapToSource", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::mapToSource", true, &_init_f_mapToSource_c2395, &_call_f_mapToSource_c2395); - methods += new qt_gsi::GenericMethod ("match", "@brief Method (const QModelIndex &, int, const QVariant &, int, QFlags) const\nThis is a reimplementation of QAbstractItemModel::match", true, &_init_f_match_c7932, &_call_f_match_c7932); - methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method (const QList &) const\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); - methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractProxyModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("mapFromSource", "@brief Method QModelIndex QSortFilterProxyModel::mapFromSource(const QModelIndex &sourceIndex)\nThis is a reimplementation of QAbstractProxyModel::mapFromSource", true, &_init_f_mapFromSource_c2395, &_call_f_mapFromSource_c2395); + methods += new qt_gsi::GenericMethod ("mapSelectionFromSource", "@brief Method QItemSelection QSortFilterProxyModel::mapSelectionFromSource(const QItemSelection &sourceSelection)\nThis is a reimplementation of QAbstractProxyModel::mapSelectionFromSource", true, &_init_f_mapSelectionFromSource_c2727, &_call_f_mapSelectionFromSource_c2727); + methods += new qt_gsi::GenericMethod ("mapSelectionToSource", "@brief Method QItemSelection QSortFilterProxyModel::mapSelectionToSource(const QItemSelection &proxySelection)\nThis is a reimplementation of QAbstractProxyModel::mapSelectionToSource", true, &_init_f_mapSelectionToSource_c2727, &_call_f_mapSelectionToSource_c2727); + methods += new qt_gsi::GenericMethod ("mapToSource", "@brief Method QModelIndex QSortFilterProxyModel::mapToSource(const QModelIndex &proxyIndex)\nThis is a reimplementation of QAbstractProxyModel::mapToSource", true, &_init_f_mapToSource_c2395, &_call_f_mapToSource_c2395); + methods += new qt_gsi::GenericMethod ("match", "@brief Method QList QSortFilterProxyModel::match(const QModelIndex &start, int role, const QVariant &value, int hits, QFlags flags)\nThis is a reimplementation of QAbstractItemModel::match", true, &_init_f_match_c7932, &_call_f_match_c7932); + methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method QMimeData *QSortFilterProxyModel::mimeData(const QList &indexes)\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); + methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method QStringList QSortFilterProxyModel::mimeTypes()\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QObject *QSortFilterProxyModel::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QSortFilterProxyModel::parent(const QModelIndex &child)\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QSortFilterProxyModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method bool QSortFilterProxyModel::removeRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QSortFilterProxyModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QSortFilterProxyModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractProxyModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setDynamicSortFilter|dynamicSortFilter=", "@brief Method void QSortFilterProxyModel::setDynamicSortFilter(bool enable)\n", false, &_init_f_setDynamicSortFilter_864, &_call_f_setDynamicSortFilter_864); methods += new qt_gsi::GenericMethod ("setFilterCaseSensitivity|filterCaseSensitivity=", "@brief Method void QSortFilterProxyModel::setFilterCaseSensitivity(Qt::CaseSensitivity cs)\n", false, &_init_f_setFilterCaseSensitivity_2324, &_call_f_setFilterCaseSensitivity_2324); methods += new qt_gsi::GenericMethod ("setFilterFixedString", "@brief Method void QSortFilterProxyModel::setFilterFixedString(const QString &pattern)\n", false, &_init_f_setFilterFixedString_2025, &_call_f_setFilterFixedString_2025); @@ -1246,18 +1246,18 @@ static gsi::Methods methods_QSortFilterProxyModel () { methods += new qt_gsi::GenericMethod ("setFilterRegExp|filterRegExp=", "@brief Method void QSortFilterProxyModel::setFilterRegExp(const QString &pattern)\n", false, &_init_f_setFilterRegExp_2025, &_call_f_setFilterRegExp_2025); methods += new qt_gsi::GenericMethod ("setFilterRole|filterRole=", "@brief Method void QSortFilterProxyModel::setFilterRole(int role)\n", false, &_init_f_setFilterRole_767, &_call_f_setFilterRole_767); methods += new qt_gsi::GenericMethod ("setFilterWildcard", "@brief Method void QSortFilterProxyModel::setFilterWildcard(const QString &pattern)\n", false, &_init_f_setFilterWildcard_2025, &_call_f_setFilterWildcard_2025); - methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method (int, Qt::Orientation, const QVariant &, int)\nThis is a reimplementation of QAbstractProxyModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); + methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method bool QSortFilterProxyModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role)\nThis is a reimplementation of QAbstractProxyModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); methods += new qt_gsi::GenericMethod ("setSortCaseSensitivity|sortCaseSensitivity=", "@brief Method void QSortFilterProxyModel::setSortCaseSensitivity(Qt::CaseSensitivity cs)\n", false, &_init_f_setSortCaseSensitivity_2324, &_call_f_setSortCaseSensitivity_2324); methods += new qt_gsi::GenericMethod ("setSortLocaleAware", "@brief Method void QSortFilterProxyModel::setSortLocaleAware(bool on)\n", false, &_init_f_setSortLocaleAware_864, &_call_f_setSortLocaleAware_864); methods += new qt_gsi::GenericMethod ("setSortRole|sortRole=", "@brief Method void QSortFilterProxyModel::setSortRole(int role)\n", false, &_init_f_setSortRole_767, &_call_f_setSortRole_767); - methods += new qt_gsi::GenericMethod ("setSourceModel|sourceModel=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractProxyModel::setSourceModel", false, &_init_f_setSourceModel_2419, &_call_f_setSourceModel_2419); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("setSourceModel|sourceModel=", "@brief Method void QSortFilterProxyModel::setSourceModel(QAbstractItemModel *sourceModel)\nThis is a reimplementation of QAbstractProxyModel::setSourceModel", false, &_init_f_setSourceModel_2419, &_call_f_setSourceModel_2419); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QSortFilterProxyModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); methods += new qt_gsi::GenericMethod (":sortCaseSensitivity", "@brief Method Qt::CaseSensitivity QSortFilterProxyModel::sortCaseSensitivity()\n", true, &_init_f_sortCaseSensitivity_c0, &_call_f_sortCaseSensitivity_c0); methods += new qt_gsi::GenericMethod ("sortColumn", "@brief Method int QSortFilterProxyModel::sortColumn()\n", true, &_init_f_sortColumn_c0, &_call_f_sortColumn_c0); methods += new qt_gsi::GenericMethod ("sortOrder", "@brief Method Qt::SortOrder QSortFilterProxyModel::sortOrder()\n", true, &_init_f_sortOrder_c0, &_call_f_sortOrder_c0); methods += new qt_gsi::GenericMethod (":sortRole", "@brief Method int QSortFilterProxyModel::sortRole()\n", true, &_init_f_sortRole_c0, &_call_f_sortRole_c0); - methods += new qt_gsi::GenericMethod ("span", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::span", true, &_init_f_span_c2395, &_call_f_span_c2395); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("span", "@brief Method QSize QSortFilterProxyModel::span(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::span", true, &_init_f_span_c2395, &_call_f_span_c2395); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QSortFilterProxyModel::supportedDropActions()\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += gsi::qt_signal ("dataChanged(const QModelIndex &, const QModelIndex &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), "@brief Signal declaration for QSortFilterProxyModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QSortFilterProxyModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QSortFilterProxyModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc index e03cad76e..e01d5bc8e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc @@ -69,7 +69,7 @@ static void _call_f_changeSize_5794 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QFlags QSpacerItem::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -84,7 +84,7 @@ static void _call_f_expandingDirections_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// QRect QSpacerItem::geometry() static void _init_f_geometry_c0 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_geometry_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// bool QSpacerItem::isEmpty() static void _init_f_isEmpty_c0 (qt_gsi::GenericMethod *decl) @@ -114,7 +114,7 @@ static void _call_f_isEmpty_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QSpacerItem::maximumSize() static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl) @@ -129,7 +129,7 @@ static void _call_f_maximumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QSpacerItem::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -144,7 +144,7 @@ static void _call_f_minimumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QRect &) +// void QSpacerItem::setGeometry(const QRect &) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -164,7 +164,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QSpacerItem::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -179,7 +179,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// QSpacerItem *QSpacerItem::spacerItem() static void _init_f_spacerItem_0 (qt_gsi::GenericMethod *decl) @@ -200,14 +200,14 @@ namespace gsi static gsi::Methods methods_QSpacerItem () { gsi::Methods methods; methods += new qt_gsi::GenericMethod ("changeSize", "@brief Method void QSpacerItem::changeSize(int w, int h, QSizePolicy::Policy hData, QSizePolicy::Policy vData)\n", false, &_init_f_changeSize_5794, &_call_f_changeSize_5794); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); - methods += new qt_gsi::GenericMethod (":geometry", "@brief Method () const\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); - methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method () const\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); - methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod ("spacerItem", "@brief Method ()\nThis is a reimplementation of QLayoutItem::spacerItem", false, &_init_f_spacerItem_0, &_call_f_spacerItem_0); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QSpacerItem::expandingDirections()\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod (":geometry", "@brief Method QRect QSpacerItem::geometry()\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); + methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method bool QSpacerItem::isEmpty()\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); + methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method QSize QSpacerItem::maximumSize()\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QSpacerItem::minimumSize()\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QSpacerItem::setGeometry(const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QSpacerItem::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("spacerItem", "@brief Method QSpacerItem *QSpacerItem::spacerItem()\nThis is a reimplementation of QLayoutItem::spacerItem", false, &_init_f_spacerItem_0, &_call_f_spacerItem_0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc index 9248c4f0f..3fb3804c1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc @@ -150,7 +150,7 @@ static void _call_f_pixmap_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () +// void QSplashScreen::repaint() static void _init_f_repaint_0 (qt_gsi::GenericMethod *decl) @@ -315,7 +315,7 @@ static gsi::Methods methods_QSplashScreen () { methods += new qt_gsi::GenericMethod ("clearMessage", "@brief Method void QSplashScreen::clearMessage()\n", false, &_init_f_clearMessage_0, &_call_f_clearMessage_0); methods += new qt_gsi::GenericMethod ("finish", "@brief Method void QSplashScreen::finish(QWidget *w)\n", false, &_init_f_finish_1315, &_call_f_finish_1315); methods += new qt_gsi::GenericMethod (":pixmap", "@brief Method const QPixmap QSplashScreen::pixmap()\n", true, &_init_f_pixmap_c0, &_call_f_pixmap_c0); - methods += new qt_gsi::GenericMethod ("repaint", "@brief Method ()\n", false, &_init_f_repaint_0, &_call_f_repaint_0); + methods += new qt_gsi::GenericMethod ("repaint", "@brief Method void QSplashScreen::repaint()\n", false, &_init_f_repaint_0, &_call_f_repaint_0); methods += new qt_gsi::GenericMethod ("setPixmap|pixmap=", "@brief Method void QSplashScreen::setPixmap(const QPixmap &pixmap)\n", false, &_init_f_setPixmap_2017, &_call_f_setPixmap_2017); methods += new qt_gsi::GenericMethod ("showMessage", "@brief Method void QSplashScreen::showMessage(const QString &message, int alignment, const QColor &color)\n", false, &_init_f_showMessage_4481, &_call_f_showMessage_4481); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QSplashScreen::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc index 367374ac8..9e12fdd4b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc @@ -174,7 +174,7 @@ static void _call_f_getRange_c2457 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int) const +// QSplitterHandle *QSplitter::handle(int index) static void _init_f_handle_c767 (qt_gsi::GenericMethod *decl) @@ -269,7 +269,7 @@ static void _call_f_isCollapsible_c767 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QSplitter::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -510,7 +510,7 @@ static void _call_f_setStretchFactor_1426 (const qt_gsi::GenericMethod * /*decl* } -// () const +// QSize QSplitter::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -663,12 +663,12 @@ static gsi::Methods methods_QSplitter () { methods += new qt_gsi::GenericMethod (":childrenCollapsible", "@brief Method bool QSplitter::childrenCollapsible()\n", true, &_init_f_childrenCollapsible_c0, &_call_f_childrenCollapsible_c0); methods += new qt_gsi::GenericMethod ("count", "@brief Method int QSplitter::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod ("getRange", "@brief Method void QSplitter::getRange(int index, int *, int *)\n", true, &_init_f_getRange_c2457, &_call_f_getRange_c2457); - methods += new qt_gsi::GenericMethod ("handle", "@brief Method (int) const\n", true, &_init_f_handle_c767, &_call_f_handle_c767); + methods += new qt_gsi::GenericMethod ("handle", "@brief Method QSplitterHandle *QSplitter::handle(int index)\n", true, &_init_f_handle_c767, &_call_f_handle_c767); methods += new qt_gsi::GenericMethod (":handleWidth", "@brief Method int QSplitter::handleWidth()\n", true, &_init_f_handleWidth_c0, &_call_f_handleWidth_c0); methods += new qt_gsi::GenericMethod ("indexOf", "@brief Method int QSplitter::indexOf(QWidget *w)\n", true, &_init_f_indexOf_c1315, &_call_f_indexOf_c1315); methods += new qt_gsi::GenericMethod ("insertWidget", "@brief Method void QSplitter::insertWidget(int index, QWidget *widget)\n", false, &_init_f_insertWidget_1974, &_call_f_insertWidget_1974); methods += new qt_gsi::GenericMethod ("isCollapsible?", "@brief Method bool QSplitter::isCollapsible(int index)\n", true, &_init_f_isCollapsible_c767, &_call_f_isCollapsible_c767); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QSplitter::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":opaqueResize", "@brief Method bool QSplitter::opaqueResize()\n", true, &_init_f_opaqueResize_c0, &_call_f_opaqueResize_c0); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method Qt::Orientation QSplitter::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); methods += new qt_gsi::GenericMethod ("refresh", "@brief Method void QSplitter::refresh()\n", false, &_init_f_refresh_0, &_call_f_refresh_0); @@ -681,7 +681,7 @@ static gsi::Methods methods_QSplitter () { methods += new qt_gsi::GenericMethod ("setOrientation|orientation=", "@brief Method void QSplitter::setOrientation(Qt::Orientation)\n", false, &_init_f_setOrientation_1913, &_call_f_setOrientation_1913); methods += new qt_gsi::GenericMethod ("setSizes|sizes=", "@brief Method void QSplitter::setSizes(const QList &list)\n", false, &_init_f_setSizes_2259, &_call_f_setSizes_2259); methods += new qt_gsi::GenericMethod ("setStretchFactor", "@brief Method void QSplitter::setStretchFactor(int index, int stretch)\n", false, &_init_f_setStretchFactor_1426, &_call_f_setStretchFactor_1426); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QSplitter::sizeHint()\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":sizes", "@brief Method QList QSplitter::sizes()\n", true, &_init_f_sizes_c0, &_call_f_sizes_c0); methods += new qt_gsi::GenericMethod ("widget", "@brief Method QWidget *QSplitter::widget(int index)\n", true, &_init_f_widget_c767, &_call_f_widget_c767); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QSplitter::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc index 2d7b34188..261a6c8d8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc @@ -148,7 +148,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QSplitterHandle::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -281,7 +281,7 @@ static gsi::Methods methods_QSplitterHandle () { methods += new qt_gsi::GenericMethod ("opaqueResize", "@brief Method bool QSplitterHandle::opaqueResize()\n", true, &_init_f_opaqueResize_c0, &_call_f_opaqueResize_c0); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method Qt::Orientation QSplitterHandle::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); methods += new qt_gsi::GenericMethod ("setOrientation|orientation=", "@brief Method void QSplitterHandle::setOrientation(Qt::Orientation o)\n", false, &_init_f_setOrientation_1913, &_call_f_setOrientation_1913); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QSplitterHandle::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("splitter", "@brief Method QSplitter *QSplitterHandle::splitter()\n", true, &_init_f_splitter_c0, &_call_f_splitter_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QSplitterHandle::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QSplitterHandle::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc index fa2d6ed47..b98e53e77 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc @@ -61,7 +61,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QLayoutItem *) +// void QStackedLayout::addItem(QLayoutItem *item) static void _init_f_addItem_1740 (qt_gsi::GenericMethod *decl) @@ -81,7 +81,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (QWidget *) +// int QStackedLayout::addWidget(QWidget *w) static void _init_f_addWidget_1315 (qt_gsi::GenericMethod *decl) @@ -100,7 +100,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QStackedLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -167,7 +167,7 @@ static void _call_f_insertWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int) const +// QLayoutItem *QStackedLayout::itemAt(int) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -186,7 +186,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QSize QStackedLayout::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -241,7 +241,7 @@ static void _call_f_setCurrentWidget_1315 (const qt_gsi::GenericMethod * /*decl* } -// (const QRect &) +// void QStackedLayout::setGeometry(const QRect &rect) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -281,7 +281,7 @@ static void _call_f_setStackingMode_3183 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QSize QStackedLayout::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -311,7 +311,7 @@ static void _call_f_stackingMode_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (int) +// QLayoutItem *QStackedLayout::takeAt(int) static void _init_f_takeAt_767 (qt_gsi::GenericMethod *decl) @@ -330,7 +330,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () +// QWidget *QStackedLayout::widget() static void _init_f_widget_0 (qt_gsi::GenericMethod *decl) @@ -345,7 +345,7 @@ static void _call_f_widget_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (int) const +// QWidget *QStackedLayout::widget(int) static void _init_f_widget_c767 (qt_gsi::GenericMethod *decl) @@ -464,23 +464,23 @@ namespace gsi static gsi::Methods methods_QStackedLayout () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("addItem", "@brief Method (QLayoutItem *)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); - methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method (QWidget *)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QStackedLayout::addItem(QLayoutItem *item)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); + methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method int QStackedLayout::addWidget(QWidget *w)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QStackedLayout::count()\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":currentIndex", "@brief Method int QStackedLayout::currentIndex()\n", true, &_init_f_currentIndex_c0, &_call_f_currentIndex_c0); methods += new qt_gsi::GenericMethod (":currentWidget", "@brief Method QWidget *QStackedLayout::currentWidget()\n", true, &_init_f_currentWidget_c0, &_call_f_currentWidget_c0); methods += new qt_gsi::GenericMethod ("insertWidget", "@brief Method int QStackedLayout::insertWidget(int index, QWidget *w)\n", false, &_init_f_insertWidget_1974, &_call_f_insertWidget_1974); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QStackedLayout::itemAt(int)\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QStackedLayout::minimumSize()\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); methods += new qt_gsi::GenericMethod ("setCurrentIndex|currentIndex=", "@brief Method void QStackedLayout::setCurrentIndex(int index)\n", false, &_init_f_setCurrentIndex_767, &_call_f_setCurrentIndex_767); methods += new qt_gsi::GenericMethod ("setCurrentWidget|currentWidget=", "@brief Method void QStackedLayout::setCurrentWidget(QWidget *w)\n", false, &_init_f_setCurrentWidget_1315, &_call_f_setCurrentWidget_1315); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QStackedLayout::setGeometry(const QRect &rect)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); methods += new qt_gsi::GenericMethod ("setStackingMode|stackingMode=", "@brief Method void QStackedLayout::setStackingMode(QStackedLayout::StackingMode stackingMode)\n", false, &_init_f_setStackingMode_3183, &_call_f_setStackingMode_3183); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QStackedLayout::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":stackingMode", "@brief Method QStackedLayout::StackingMode QStackedLayout::stackingMode()\n", true, &_init_f_stackingMode_c0, &_call_f_stackingMode_c0); - methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method (int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); - methods += new qt_gsi::GenericMethod ("widget", "@brief Method ()\nThis is a reimplementation of QLayoutItem::widget", false, &_init_f_widget_0, &_call_f_widget_0); - methods += new qt_gsi::GenericMethod ("widget", "@brief Method (int) const\n", true, &_init_f_widget_c767, &_call_f_widget_c767); + methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method QLayoutItem *QStackedLayout::takeAt(int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); + methods += new qt_gsi::GenericMethod ("widget", "@brief Method QWidget *QStackedLayout::widget()\nThis is a reimplementation of QLayoutItem::widget", false, &_init_f_widget_0, &_call_f_widget_0); + methods += new qt_gsi::GenericMethod ("widget", "@brief Method QWidget *QStackedLayout::widget(int)\n", true, &_init_f_widget_c767, &_call_f_widget_c767); methods += gsi::qt_signal ("currentChanged(int)", "currentChanged", gsi::arg("index"), "@brief Signal declaration for QStackedLayout::currentChanged(int index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QStackedLayout::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("widgetRemoved(int)", "widgetRemoved", gsi::arg("index"), "@brief Signal declaration for QStackedLayout::widgetRemoved(int index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc index d78df60f8..58309c7ca 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc @@ -135,7 +135,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &) const +// int QStandardItemModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -154,7 +154,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int) const +// QVariant QStandardItemModel::data(const QModelIndex &index, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -176,7 +176,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QStandardItemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -232,7 +232,7 @@ static void _call_f_findItems_c4892 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QModelIndex &) const +// QFlags QStandardItemModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -251,7 +251,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QStandardItemModel::hasChildren(const QModelIndex &parent) static void _init_f_hasChildren_c2395 (qt_gsi::GenericMethod *decl) @@ -270,7 +270,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, Qt::Orientation, int) const +// QVariant QStandardItemModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -314,7 +314,7 @@ static void _call_f_horizontalHeaderItem_c767 (const qt_gsi::GenericMethod * /*d } -// (int, int, const QModelIndex &) const +// QModelIndex QStandardItemModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -358,7 +358,7 @@ static void _call_f_indexFromItem_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, const QList &) +// void QStandardItemModel::insertColumn(int column, const QList &items) static void _init_f_insertColumn_3926 (qt_gsi::GenericMethod *decl) @@ -381,7 +381,7 @@ static void _call_f_insertColumn_3926 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, const QModelIndex &) +// bool QStandardItemModel::insertColumn(int column, const QModelIndex &parent) static void _init_f_insertColumn_3054 (qt_gsi::GenericMethod *decl) @@ -403,7 +403,7 @@ static void _call_f_insertColumn_3054 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, int, const QModelIndex &) +// bool QStandardItemModel::insertColumns(int column, int count, const QModelIndex &parent) static void _init_f_insertColumns_3713 (qt_gsi::GenericMethod *decl) @@ -428,7 +428,7 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, const QList &) +// void QStandardItemModel::insertRow(int row, const QList &items) static void _init_f_insertRow_3926 (qt_gsi::GenericMethod *decl) @@ -451,7 +451,7 @@ static void _call_f_insertRow_3926 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, QStandardItem *) +// void QStandardItemModel::insertRow(int row, QStandardItem *item) static void _init_f_insertRow_2578 (qt_gsi::GenericMethod *decl) @@ -474,7 +474,7 @@ static void _call_f_insertRow_2578 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, const QModelIndex &) +// bool QStandardItemModel::insertRow(int row, const QModelIndex &parent) static void _init_f_insertRow_3054 (qt_gsi::GenericMethod *decl) @@ -496,7 +496,7 @@ static void _call_f_insertRow_3054 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, int, const QModelIndex &) +// bool QStandardItemModel::insertRows(int row, int count, const QModelIndex &parent) static void _init_f_insertRows_3713 (qt_gsi::GenericMethod *decl) @@ -558,7 +558,7 @@ static void _call_f_item_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QModelIndex &) const +// QMap QStandardItemModel::itemData(const QModelIndex &index) static void _init_f_itemData_c2395 (qt_gsi::GenericMethod *decl) @@ -611,7 +611,7 @@ static void _call_f_itemPrototype_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QList &) const +// QMimeData *QStandardItemModel::mimeData(const QList &indexes) static void _init_f_mimeData_c3010 (qt_gsi::GenericMethod *decl) @@ -630,7 +630,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QStringList QStandardItemModel::mimeTypes() static void _init_f_mimeTypes_c0 (qt_gsi::GenericMethod *decl) @@ -645,7 +645,7 @@ static void _call_f_mimeTypes_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QModelIndex &) const +// QModelIndex QStandardItemModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -664,7 +664,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QObject *QStandardItemModel::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -679,7 +679,7 @@ static void _call_f_parent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int, int, const QModelIndex &) +// bool QStandardItemModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -704,7 +704,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QStandardItemModel::removeRows(int row, int count, const QModelIndex &parent) static void _init_f_removeRows_3713 (qt_gsi::GenericMethod *decl) @@ -729,7 +729,7 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QModelIndex &) const +// int QStandardItemModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -768,7 +768,7 @@ static void _call_f_setColumnCount_767 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &, const QVariant &, int) +// bool QStandardItemModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -793,7 +793,7 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, Qt::Orientation, const QVariant &, int) +// bool QStandardItemModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role) static void _init_f_setHeaderData_5242 (qt_gsi::GenericMethod *decl) @@ -913,7 +913,7 @@ static void _call_f_setItem_2578 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QModelIndex &, const QMap &) +// bool QStandardItemModel::setItemData(const QModelIndex &index, const QMap &roles) static void _init_f_setItemData_5414 (qt_gsi::GenericMethod *decl) @@ -1038,7 +1038,7 @@ static void _call_f_setVerticalHeaderLabels_2437 (const qt_gsi::GenericMethod * } -// (int, Qt::SortOrder) +// void QStandardItemModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -1076,7 +1076,7 @@ static void _call_f_sortRole_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QFlags QStandardItemModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -1312,51 +1312,51 @@ static gsi::Methods methods_QStandardItemModel () { methods += new qt_gsi::GenericMethod ("appendRow", "@brief Method void QStandardItemModel::appendRow(const QList &items)\n", false, &_init_f_appendRow_3267, &_call_f_appendRow_3267); methods += new qt_gsi::GenericMethod ("appendRow", "@brief Method void QStandardItemModel::appendRow(QStandardItem *item)\n", false, &_init_f_appendRow_1919, &_call_f_appendRow_1919); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QStandardItemModel::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QStandardItemModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QStandardItemModel::data(const QModelIndex &index, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QStandardItemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); methods += new qt_gsi::GenericMethod ("findItems", "@brief Method QList QStandardItemModel::findItems(const QString &text, QFlags flags, int column)\n", true, &_init_f_findItems_c4892, &_call_f_findItems_c4892); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QStandardItemModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method bool QStandardItemModel::hasChildren(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QStandardItemModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); methods += new qt_gsi::GenericMethod ("horizontalHeaderItem", "@brief Method QStandardItem *QStandardItemModel::horizontalHeaderItem(int column)\n", true, &_init_f_horizontalHeaderItem_c767, &_call_f_horizontalHeaderItem_c767); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QStandardItemModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); methods += new qt_gsi::GenericMethod ("indexFromItem", "@brief Method QModelIndex QStandardItemModel::indexFromItem(const QStandardItem *item)\n", true, &_init_f_indexFromItem_c2614, &_call_f_indexFromItem_c2614); - methods += new qt_gsi::GenericMethod ("insertColumn", "@brief Method (int, const QList &)\n", false, &_init_f_insertColumn_3926, &_call_f_insertColumn_3926); - methods += new qt_gsi::GenericMethod ("insertColumn", "@brief Method (int, const QModelIndex &)\n", false, &_init_f_insertColumn_3054, &_call_f_insertColumn_3054); - methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); - methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method (int, const QList &)\n", false, &_init_f_insertRow_3926, &_call_f_insertRow_3926); - methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method (int, QStandardItem *)\n", false, &_init_f_insertRow_2578, &_call_f_insertRow_2578); - methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method (int, const QModelIndex &)\n", false, &_init_f_insertRow_3054, &_call_f_insertRow_3054); - methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); + methods += new qt_gsi::GenericMethod ("insertColumn", "@brief Method void QStandardItemModel::insertColumn(int column, const QList &items)\n", false, &_init_f_insertColumn_3926, &_call_f_insertColumn_3926); + methods += new qt_gsi::GenericMethod ("insertColumn", "@brief Method bool QStandardItemModel::insertColumn(int column, const QModelIndex &parent)\n", false, &_init_f_insertColumn_3054, &_call_f_insertColumn_3054); + methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method bool QStandardItemModel::insertColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); + methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QStandardItemModel::insertRow(int row, const QList &items)\n", false, &_init_f_insertRow_3926, &_call_f_insertRow_3926); + methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QStandardItemModel::insertRow(int row, QStandardItem *item)\n", false, &_init_f_insertRow_2578, &_call_f_insertRow_2578); + methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method bool QStandardItemModel::insertRow(int row, const QModelIndex &parent)\n", false, &_init_f_insertRow_3054, &_call_f_insertRow_3054); + methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method bool QStandardItemModel::insertRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); methods += new qt_gsi::GenericMethod ("invisibleRootItem", "@brief Method QStandardItem *QStandardItemModel::invisibleRootItem()\n", true, &_init_f_invisibleRootItem_c0, &_call_f_invisibleRootItem_c0); methods += new qt_gsi::GenericMethod ("item", "@brief Method QStandardItem *QStandardItemModel::item(int row, int column)\n", true, &_init_f_item_c1426, &_call_f_item_c1426); - methods += new qt_gsi::GenericMethod ("itemData", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::itemData", true, &_init_f_itemData_c2395, &_call_f_itemData_c2395); + methods += new qt_gsi::GenericMethod ("itemData", "@brief Method QMap QStandardItemModel::itemData(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::itemData", true, &_init_f_itemData_c2395, &_call_f_itemData_c2395); methods += new qt_gsi::GenericMethod ("itemFromIndex", "@brief Method QStandardItem *QStandardItemModel::itemFromIndex(const QModelIndex &index)\n", true, &_init_f_itemFromIndex_c2395, &_call_f_itemFromIndex_c2395); methods += new qt_gsi::GenericMethod (":itemPrototype", "@brief Method const QStandardItem *QStandardItemModel::itemPrototype()\n", true, &_init_f_itemPrototype_c0, &_call_f_itemPrototype_c0); - methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method (const QList &) const\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); - methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method QMimeData *QStandardItemModel::mimeData(const QList &indexes)\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); + methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method QStringList QStandardItemModel::mimeTypes()\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QStandardItemModel::parent(const QModelIndex &child)\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QObject *QStandardItemModel::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QStandardItemModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method bool QStandardItemModel::removeRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QStandardItemModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); methods += new qt_gsi::GenericMethod ("setColumnCount|columnCount=", "@brief Method void QStandardItemModel::setColumnCount(int columns)\n", false, &_init_f_setColumnCount_767, &_call_f_setColumnCount_767); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); - methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method (int, Qt::Orientation, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QStandardItemModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method bool QStandardItemModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); methods += new qt_gsi::GenericMethod ("setHorizontalHeaderItem", "@brief Method void QStandardItemModel::setHorizontalHeaderItem(int column, QStandardItem *item)\n", false, &_init_f_setHorizontalHeaderItem_2578, &_call_f_setHorizontalHeaderItem_2578); methods += new qt_gsi::GenericMethod ("setHorizontalHeaderLabels", "@brief Method void QStandardItemModel::setHorizontalHeaderLabels(const QStringList &labels)\n", false, &_init_f_setHorizontalHeaderLabels_2437, &_call_f_setHorizontalHeaderLabels_2437); methods += new qt_gsi::GenericMethod ("setItem", "@brief Method void QStandardItemModel::setItem(int row, int column, QStandardItem *item)\n", false, &_init_f_setItem_3237, &_call_f_setItem_3237); methods += new qt_gsi::GenericMethod ("setItem", "@brief Method void QStandardItemModel::setItem(int row, QStandardItem *item)\n", false, &_init_f_setItem_2578, &_call_f_setItem_2578); - methods += new qt_gsi::GenericMethod ("setItemData", "@brief Method (const QModelIndex &, const QMap &)\nThis is a reimplementation of QAbstractItemModel::setItemData", false, &_init_f_setItemData_5414, &_call_f_setItemData_5414); + methods += new qt_gsi::GenericMethod ("setItemData", "@brief Method bool QStandardItemModel::setItemData(const QModelIndex &index, const QMap &roles)\nThis is a reimplementation of QAbstractItemModel::setItemData", false, &_init_f_setItemData_5414, &_call_f_setItemData_5414); methods += new qt_gsi::GenericMethod ("setItemPrototype|itemPrototype=", "@brief Method void QStandardItemModel::setItemPrototype(const QStandardItem *item)\n", false, &_init_f_setItemPrototype_2614, &_call_f_setItemPrototype_2614); methods += new qt_gsi::GenericMethod ("setRowCount|rowCount=", "@brief Method void QStandardItemModel::setRowCount(int rows)\n", false, &_init_f_setRowCount_767, &_call_f_setRowCount_767); methods += new qt_gsi::GenericMethod ("setSortRole|sortRole=", "@brief Method void QStandardItemModel::setSortRole(int role)\n", false, &_init_f_setSortRole_767, &_call_f_setSortRole_767); methods += new qt_gsi::GenericMethod ("setVerticalHeaderItem", "@brief Method void QStandardItemModel::setVerticalHeaderItem(int row, QStandardItem *item)\n", false, &_init_f_setVerticalHeaderItem_2578, &_call_f_setVerticalHeaderItem_2578); methods += new qt_gsi::GenericMethod ("setVerticalHeaderLabels", "@brief Method void QStandardItemModel::setVerticalHeaderLabels(const QStringList &labels)\n", false, &_init_f_setVerticalHeaderLabels_2437, &_call_f_setVerticalHeaderLabels_2437); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QStandardItemModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); methods += new qt_gsi::GenericMethod (":sortRole", "@brief Method int QStandardItemModel::sortRole()\n", true, &_init_f_sortRole_c0, &_call_f_sortRole_c0); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QStandardItemModel::supportedDropActions()\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += new qt_gsi::GenericMethod ("takeColumn", "@brief Method QList QStandardItemModel::takeColumn(int column)\n", false, &_init_f_takeColumn_767, &_call_f_takeColumn_767); methods += new qt_gsi::GenericMethod ("takeHorizontalHeaderItem", "@brief Method QStandardItem *QStandardItemModel::takeHorizontalHeaderItem(int column)\n", false, &_init_f_takeHorizontalHeaderItem_767, &_call_f_takeHorizontalHeaderItem_767); methods += new qt_gsi::GenericMethod ("takeItem", "@brief Method QStandardItem *QStandardItemModel::takeItem(int row, int column)\n", false, &_init_f_takeItem_1426, &_call_f_takeItem_1426); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc index 38e3606ee..28a3092ff 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc @@ -58,7 +58,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &, int) const +// QVariant QStringListModel::data(const QModelIndex &index, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QModelIndex &) const +// QFlags QStringListModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, int, const QModelIndex &) +// bool QStringListModel::insertRows(int row, int count, const QModelIndex &parent) static void _init_f_insertRows_3713 (qt_gsi::GenericMethod *decl) @@ -124,7 +124,7 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (int, int, const QModelIndex &) +// bool QStringListModel::removeRows(int row, int count, const QModelIndex &parent) static void _init_f_removeRows_3713 (qt_gsi::GenericMethod *decl) @@ -149,7 +149,7 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QModelIndex &) const +// int QStringListModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -168,7 +168,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, const QVariant &, int) +// bool QStringListModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -213,7 +213,7 @@ static void _call_f_setStringList_2437 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, Qt::SortOrder) +// void QStringListModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -251,7 +251,7 @@ static void _call_f_stringList_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QFlags QStringListModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -366,16 +366,16 @@ namespace gsi static gsi::Methods methods_QStringListModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); - methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QStringListModel::data(const QModelIndex &index, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QStringListModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method bool QStringListModel::insertRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); + methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method bool QStringListModel::removeRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QStringListModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QStringListModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setStringList|stringList=", "@brief Method void QStringListModel::setStringList(const QStringList &strings)\n", false, &_init_f_setStringList_2437, &_call_f_setStringList_2437); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QStringListModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); methods += new qt_gsi::GenericMethod (":stringList", "@brief Method QStringList QStringListModel::stringList()\n", true, &_init_f_stringList_c0, &_call_f_stringList_c0); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QStringListModel::supportedDropActions()\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += gsi::qt_signal ("dataChanged(const QModelIndex &, const QModelIndex &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), "@brief Signal declaration for QStringListModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QStringListModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QStringListModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV2.cc index ca0b3d81e..61f8e9923 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV2.cc @@ -91,7 +91,7 @@ static void _call_ctor_QStyleOptionFrameV2_3047 (const qt_gsi::GenericStaticMeth } -// (const QStyleOptionFrame &) +// QStyleOptionFrameV2 &QStyleOptionFrameV2::operator=(const QStyleOptionFrame &other) static void _init_f_operator_eq__3047 (qt_gsi::GenericMethod *decl) @@ -119,7 +119,7 @@ static gsi::Methods methods_QStyleOptionFrameV2 () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionFrameV2::QStyleOptionFrameV2()\nThis method creates an object of class QStyleOptionFrameV2.", &_init_ctor_QStyleOptionFrameV2_0, &_call_ctor_QStyleOptionFrameV2_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionFrameV2::QStyleOptionFrameV2(const QStyleOptionFrameV2 &other)\nThis method creates an object of class QStyleOptionFrameV2.", &_init_ctor_QStyleOptionFrameV2_3183, &_call_ctor_QStyleOptionFrameV2_3183); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionFrameV2::QStyleOptionFrameV2(const QStyleOptionFrame &other)\nThis method creates an object of class QStyleOptionFrameV2.", &_init_ctor_QStyleOptionFrameV2_3047, &_call_ctor_QStyleOptionFrameV2_3047); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QStyleOptionFrame &)\n", false, &_init_f_operator_eq__3047, &_call_f_operator_eq__3047); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QStyleOptionFrameV2 &QStyleOptionFrameV2::operator=(const QStyleOptionFrame &other)\n", false, &_init_f_operator_eq__3047, &_call_f_operator_eq__3047); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV3.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV3.cc index bfc6ab533..d065207ad 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV3.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV3.cc @@ -91,7 +91,7 @@ static void _call_ctor_QStyleOptionFrameV3_3047 (const qt_gsi::GenericStaticMeth } -// (const QStyleOptionFrame &) +// QStyleOptionFrameV3 &QStyleOptionFrameV3::operator=(const QStyleOptionFrame &other) static void _init_f_operator_eq__3047 (qt_gsi::GenericMethod *decl) @@ -119,7 +119,7 @@ static gsi::Methods methods_QStyleOptionFrameV3 () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionFrameV3::QStyleOptionFrameV3()\nThis method creates an object of class QStyleOptionFrameV3.", &_init_ctor_QStyleOptionFrameV3_0, &_call_ctor_QStyleOptionFrameV3_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionFrameV3::QStyleOptionFrameV3(const QStyleOptionFrameV3 &other)\nThis method creates an object of class QStyleOptionFrameV3.", &_init_ctor_QStyleOptionFrameV3_3184, &_call_ctor_QStyleOptionFrameV3_3184); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionFrameV3::QStyleOptionFrameV3(const QStyleOptionFrame &other)\nThis method creates an object of class QStyleOptionFrameV3.", &_init_ctor_QStyleOptionFrameV3_3047, &_call_ctor_QStyleOptionFrameV3_3047); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QStyleOptionFrame &)\n", false, &_init_f_operator_eq__3047, &_call_f_operator_eq__3047); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QStyleOptionFrameV3 &QStyleOptionFrameV3::operator=(const QStyleOptionFrame &other)\n", false, &_init_f_operator_eq__3047, &_call_f_operator_eq__3047); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBarV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBarV2.cc index 023d8e33b..0249e55e7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBarV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBarV2.cc @@ -91,7 +91,7 @@ static void _call_ctor_QStyleOptionProgressBarV2_3822 (const qt_gsi::GenericStat } -// (const QStyleOptionProgressBar &) +// QStyleOptionProgressBarV2 &QStyleOptionProgressBarV2::operator=(const QStyleOptionProgressBar &other) static void _init_f_operator_eq__3686 (qt_gsi::GenericMethod *decl) @@ -119,7 +119,7 @@ static gsi::Methods methods_QStyleOptionProgressBarV2 () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionProgressBarV2::QStyleOptionProgressBarV2()\nThis method creates an object of class QStyleOptionProgressBarV2.", &_init_ctor_QStyleOptionProgressBarV2_0, &_call_ctor_QStyleOptionProgressBarV2_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionProgressBarV2::QStyleOptionProgressBarV2(const QStyleOptionProgressBar &other)\nThis method creates an object of class QStyleOptionProgressBarV2.", &_init_ctor_QStyleOptionProgressBarV2_3686, &_call_ctor_QStyleOptionProgressBarV2_3686); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionProgressBarV2::QStyleOptionProgressBarV2(const QStyleOptionProgressBarV2 &other)\nThis method creates an object of class QStyleOptionProgressBarV2.", &_init_ctor_QStyleOptionProgressBarV2_3822, &_call_ctor_QStyleOptionProgressBarV2_3822); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QStyleOptionProgressBar &)\n", false, &_init_f_operator_eq__3686, &_call_f_operator_eq__3686); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QStyleOptionProgressBarV2 &QStyleOptionProgressBarV2::operator=(const QStyleOptionProgressBar &other)\n", false, &_init_f_operator_eq__3686, &_call_f_operator_eq__3686); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBaseV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBaseV2.cc index 8a4d9d202..407099212 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBaseV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBaseV2.cc @@ -91,7 +91,7 @@ static void _call_ctor_QStyleOptionTabBarBaseV2_3491 (const qt_gsi::GenericStati } -// (const QStyleOptionTabBarBase &) +// QStyleOptionTabBarBaseV2 &QStyleOptionTabBarBaseV2::operator=(const QStyleOptionTabBarBase &other) static void _init_f_operator_eq__3491 (qt_gsi::GenericMethod *decl) @@ -119,7 +119,7 @@ static gsi::Methods methods_QStyleOptionTabBarBaseV2 () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionTabBarBaseV2::QStyleOptionTabBarBaseV2()\nThis method creates an object of class QStyleOptionTabBarBaseV2.", &_init_ctor_QStyleOptionTabBarBaseV2_0, &_call_ctor_QStyleOptionTabBarBaseV2_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionTabBarBaseV2::QStyleOptionTabBarBaseV2(const QStyleOptionTabBarBaseV2 &other)\nThis method creates an object of class QStyleOptionTabBarBaseV2.", &_init_ctor_QStyleOptionTabBarBaseV2_3627, &_call_ctor_QStyleOptionTabBarBaseV2_3627); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionTabBarBaseV2::QStyleOptionTabBarBaseV2(const QStyleOptionTabBarBase &other)\nThis method creates an object of class QStyleOptionTabBarBaseV2.", &_init_ctor_QStyleOptionTabBarBaseV2_3491, &_call_ctor_QStyleOptionTabBarBaseV2_3491); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QStyleOptionTabBarBase &)\n", false, &_init_f_operator_eq__3491, &_call_f_operator_eq__3491); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QStyleOptionTabBarBaseV2 &QStyleOptionTabBarBaseV2::operator=(const QStyleOptionTabBarBase &other)\n", false, &_init_f_operator_eq__3491, &_call_f_operator_eq__3491); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV2.cc index d1d182464..141178229 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV2.cc @@ -91,7 +91,7 @@ static void _call_ctor_QStyleOptionTabV2_2835 (const qt_gsi::GenericStaticMethod } -// (const QStyleOptionTab &) +// QStyleOptionTabV2 &QStyleOptionTabV2::operator=(const QStyleOptionTab &other) static void _init_f_operator_eq__2835 (qt_gsi::GenericMethod *decl) @@ -119,7 +119,7 @@ static gsi::Methods methods_QStyleOptionTabV2 () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionTabV2::QStyleOptionTabV2()\nThis method creates an object of class QStyleOptionTabV2.", &_init_ctor_QStyleOptionTabV2_0, &_call_ctor_QStyleOptionTabV2_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionTabV2::QStyleOptionTabV2(const QStyleOptionTabV2 &other)\nThis method creates an object of class QStyleOptionTabV2.", &_init_ctor_QStyleOptionTabV2_2971, &_call_ctor_QStyleOptionTabV2_2971); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionTabV2::QStyleOptionTabV2(const QStyleOptionTab &other)\nThis method creates an object of class QStyleOptionTabV2.", &_init_ctor_QStyleOptionTabV2_2835, &_call_ctor_QStyleOptionTabV2_2835); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QStyleOptionTab &)\n", false, &_init_f_operator_eq__2835, &_call_f_operator_eq__2835); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QStyleOptionTabV2 &QStyleOptionTabV2::operator=(const QStyleOptionTab &other)\n", false, &_init_f_operator_eq__2835, &_call_f_operator_eq__2835); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV3.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV3.cc index f7677e93e..05ec47bc2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV3.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV3.cc @@ -111,7 +111,7 @@ static void _call_ctor_QStyleOptionTabV3_2835 (const qt_gsi::GenericStaticMethod } -// (const QStyleOptionTab &) +// QStyleOptionTabV3 &QStyleOptionTabV3::operator=(const QStyleOptionTab &other) static void _init_f_operator_eq__2835 (qt_gsi::GenericMethod *decl) @@ -140,7 +140,7 @@ static gsi::Methods methods_QStyleOptionTabV3 () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionTabV3::QStyleOptionTabV3(const QStyleOptionTabV3 &other)\nThis method creates an object of class QStyleOptionTabV3.", &_init_ctor_QStyleOptionTabV3_2972, &_call_ctor_QStyleOptionTabV3_2972); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionTabV3::QStyleOptionTabV3(const QStyleOptionTabV2 &other)\nThis method creates an object of class QStyleOptionTabV3.", &_init_ctor_QStyleOptionTabV3_2971, &_call_ctor_QStyleOptionTabV3_2971); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionTabV3::QStyleOptionTabV3(const QStyleOptionTab &other)\nThis method creates an object of class QStyleOptionTabV3.", &_init_ctor_QStyleOptionTabV3_2835, &_call_ctor_QStyleOptionTabV3_2835); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QStyleOptionTab &)\n", false, &_init_f_operator_eq__2835, &_call_f_operator_eq__2835); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QStyleOptionTabV3 &QStyleOptionTabV3::operator=(const QStyleOptionTab &other)\n", false, &_init_f_operator_eq__2835, &_call_f_operator_eq__2835); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBoxV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBoxV2.cc index 379a04e2a..0ea7881d8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBoxV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBoxV2.cc @@ -91,7 +91,7 @@ static void _call_ctor_QStyleOptionToolBoxV2_3267 (const qt_gsi::GenericStaticMe } -// (const QStyleOptionToolBox &) +// QStyleOptionToolBoxV2 &QStyleOptionToolBoxV2::operator=(const QStyleOptionToolBox &other) static void _init_f_operator_eq__3267 (qt_gsi::GenericMethod *decl) @@ -119,7 +119,7 @@ static gsi::Methods methods_QStyleOptionToolBoxV2 () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionToolBoxV2::QStyleOptionToolBoxV2()\nThis method creates an object of class QStyleOptionToolBoxV2.", &_init_ctor_QStyleOptionToolBoxV2_0, &_call_ctor_QStyleOptionToolBoxV2_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionToolBoxV2::QStyleOptionToolBoxV2(const QStyleOptionToolBoxV2 &other)\nThis method creates an object of class QStyleOptionToolBoxV2.", &_init_ctor_QStyleOptionToolBoxV2_3403, &_call_ctor_QStyleOptionToolBoxV2_3403); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionToolBoxV2::QStyleOptionToolBoxV2(const QStyleOptionToolBox &other)\nThis method creates an object of class QStyleOptionToolBoxV2.", &_init_ctor_QStyleOptionToolBoxV2_3267, &_call_ctor_QStyleOptionToolBoxV2_3267); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QStyleOptionToolBox &)\n", false, &_init_f_operator_eq__3267, &_call_f_operator_eq__3267); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QStyleOptionToolBoxV2 &QStyleOptionToolBoxV2::operator=(const QStyleOptionToolBox &other)\n", false, &_init_f_operator_eq__3267, &_call_f_operator_eq__3267); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV2.cc index 3a2678c11..eec7ccc0b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV2.cc @@ -91,7 +91,7 @@ static void _call_ctor_QStyleOptionViewItemV2_3366 (const qt_gsi::GenericStaticM } -// (const QStyleOptionViewItem &) +// QStyleOptionViewItemV2 &QStyleOptionViewItemV2::operator=(const QStyleOptionViewItem &other) static void _init_f_operator_eq__3366 (qt_gsi::GenericMethod *decl) @@ -119,7 +119,7 @@ static gsi::Methods methods_QStyleOptionViewItemV2 () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionViewItemV2::QStyleOptionViewItemV2()\nThis method creates an object of class QStyleOptionViewItemV2.", &_init_ctor_QStyleOptionViewItemV2_0, &_call_ctor_QStyleOptionViewItemV2_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionViewItemV2::QStyleOptionViewItemV2(const QStyleOptionViewItemV2 &other)\nThis method creates an object of class QStyleOptionViewItemV2.", &_init_ctor_QStyleOptionViewItemV2_3502, &_call_ctor_QStyleOptionViewItemV2_3502); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionViewItemV2::QStyleOptionViewItemV2(const QStyleOptionViewItem &other)\nThis method creates an object of class QStyleOptionViewItemV2.", &_init_ctor_QStyleOptionViewItemV2_3366, &_call_ctor_QStyleOptionViewItemV2_3366); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QStyleOptionViewItem &)\n", false, &_init_f_operator_eq__3366, &_call_f_operator_eq__3366); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QStyleOptionViewItemV2 &QStyleOptionViewItemV2::operator=(const QStyleOptionViewItem &other)\n", false, &_init_f_operator_eq__3366, &_call_f_operator_eq__3366); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV4.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV4.cc index ab925a956..6e9ada11a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV4.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV4.cc @@ -92,7 +92,7 @@ static void _call_ctor_QStyleOptionViewItemV4_3366 (const qt_gsi::GenericStaticM } -// (const QStyleOptionViewItem &) +// QStyleOptionViewItemV4 &QStyleOptionViewItemV4::operator =(const QStyleOptionViewItem &other) static void _init_f_operator_eq__3366 (qt_gsi::GenericMethod *decl) @@ -120,7 +120,7 @@ static gsi::Methods methods_QStyleOptionViewItemV4 () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionViewItemV4::QStyleOptionViewItemV4()\nThis method creates an object of class QStyleOptionViewItemV4.", &_init_ctor_QStyleOptionViewItemV4_0, &_call_ctor_QStyleOptionViewItemV4_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionViewItemV4::QStyleOptionViewItemV4(const QStyleOptionViewItemV4 &other)\nThis method creates an object of class QStyleOptionViewItemV4.", &_init_ctor_QStyleOptionViewItemV4_3504, &_call_ctor_QStyleOptionViewItemV4_3504); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionViewItemV4::QStyleOptionViewItemV4(const QStyleOptionViewItem &other)\nThis method creates an object of class QStyleOptionViewItemV4.", &_init_ctor_QStyleOptionViewItemV4_3366, &_call_ctor_QStyleOptionViewItemV4_3366); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QStyleOptionViewItem &)\n", false, &_init_f_operator_eq__3366, &_call_f_operator_eq__3366); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QStyleOptionViewItemV4 &QStyleOptionViewItemV4::operator =(const QStyleOptionViewItem &other)\n", false, &_init_f_operator_eq__3366, &_call_f_operator_eq__3366); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStylePainter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStylePainter.cc index 463ad86cf..a4e2b8df8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStylePainter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStylePainter.cc @@ -122,7 +122,7 @@ static void _call_ctor_QStylePainter_3010 (const qt_gsi::GenericStaticMethod * / } -// (QWidget *) +// bool QStylePainter::begin(QWidget *w) static void _init_f_begin_1315 (qt_gsi::GenericMethod *decl) @@ -141,7 +141,7 @@ static void _call_f_begin_1315 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (QPaintDevice *, QWidget *) +// bool QStylePainter::begin(QPaintDevice *pd, QWidget *w) static void _init_f_begin_3010 (qt_gsi::GenericMethod *decl) @@ -317,8 +317,8 @@ static gsi::Methods methods_QStylePainter () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStylePainter::QStylePainter()\nThis method creates an object of class QStylePainter.", &_init_ctor_QStylePainter_0, &_call_ctor_QStylePainter_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStylePainter::QStylePainter(QWidget *w)\nThis method creates an object of class QStylePainter.", &_init_ctor_QStylePainter_1315, &_call_ctor_QStylePainter_1315); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStylePainter::QStylePainter(QPaintDevice *pd, QWidget *w)\nThis method creates an object of class QStylePainter.", &_init_ctor_QStylePainter_3010, &_call_ctor_QStylePainter_3010); - methods += new qt_gsi::GenericMethod ("begin", "@brief Method (QWidget *)\n", false, &_init_f_begin_1315, &_call_f_begin_1315); - methods += new qt_gsi::GenericMethod ("begin", "@brief Method (QPaintDevice *, QWidget *)\n", false, &_init_f_begin_3010, &_call_f_begin_3010); + methods += new qt_gsi::GenericMethod ("begin", "@brief Method bool QStylePainter::begin(QWidget *w)\n", false, &_init_f_begin_1315, &_call_f_begin_1315); + methods += new qt_gsi::GenericMethod ("begin", "@brief Method bool QStylePainter::begin(QPaintDevice *pd, QWidget *w)\n", false, &_init_f_begin_3010, &_call_f_begin_3010); methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method void QStylePainter::drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex &opt)\n", false, &_init_f_drawComplexControl_5803, &_call_f_drawComplexControl_5803); methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method void QStylePainter::drawControl(QStyle::ControlElement ce, const QStyleOption &opt)\n", false, &_init_f_drawControl_5061, &_call_f_drawControl_5061); methods += new qt_gsi::GenericMethod ("drawItemPixmap", "@brief Method void QStylePainter::drawItemPixmap(const QRect &r, int flags, const QPixmap &pixmap)\n", false, &_init_f_drawItemPixmap_4360, &_call_f_drawItemPixmap_4360); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc index cfbd128c4..9e2047ca7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc @@ -65,7 +65,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const +// QWidget *QStyledItemDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_createEditor_c6860 (qt_gsi::GenericMethod *decl) @@ -127,7 +127,7 @@ static void _call_f_itemEditorFactory_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const +// void QStyledItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_paint_c6971 (qt_gsi::GenericMethod *decl) @@ -153,7 +153,7 @@ static void _call_f_paint_c6971 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QWidget *, const QModelIndex &) const +// void QStyledItemDelegate::setEditorData(QWidget *editor, const QModelIndex &index) static void _init_f_setEditorData_c3602 (qt_gsi::GenericMethod *decl) @@ -196,7 +196,7 @@ static void _call_f_setItemEditorFactory_2445 (const qt_gsi::GenericMethod * /*d } -// (QWidget *, QAbstractItemModel *, const QModelIndex &) const +// void QStyledItemDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) static void _init_f_setModelData_c5913 (qt_gsi::GenericMethod *decl) @@ -222,7 +222,7 @@ static void _call_f_setModelData_c5913 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QStyleOptionViewItem &, const QModelIndex &) const +// QSize QStyledItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_sizeHint_c5653 (qt_gsi::GenericMethod *decl) @@ -244,7 +244,7 @@ static void _call_f_sizeHint_c5653 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const +// void QStyledItemDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_updateEditorGeometry_c6860 (qt_gsi::GenericMethod *decl) @@ -370,15 +370,15 @@ namespace gsi static gsi::Methods methods_QStyledItemDelegate () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("createEditor", "@brief Method (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::createEditor", true, &_init_f_createEditor_c6860, &_call_f_createEditor_c6860); + methods += new qt_gsi::GenericMethod ("createEditor", "@brief Method QWidget *QStyledItemDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::createEditor", true, &_init_f_createEditor_c6860, &_call_f_createEditor_c6860); methods += new qt_gsi::GenericMethod ("displayText", "@brief Method QString QStyledItemDelegate::displayText(const QVariant &value, const QLocale &locale)\n", true, &_init_f_displayText_c3997, &_call_f_displayText_c3997); methods += new qt_gsi::GenericMethod (":itemEditorFactory", "@brief Method QItemEditorFactory *QStyledItemDelegate::itemEditorFactory()\n", true, &_init_f_itemEditorFactory_c0, &_call_f_itemEditorFactory_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::paint", true, &_init_f_paint_c6971, &_call_f_paint_c6971); - methods += new qt_gsi::GenericMethod ("setEditorData", "@brief Method (QWidget *, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::setEditorData", true, &_init_f_setEditorData_c3602, &_call_f_setEditorData_c3602); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QStyledItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::paint", true, &_init_f_paint_c6971, &_call_f_paint_c6971); + methods += new qt_gsi::GenericMethod ("setEditorData", "@brief Method void QStyledItemDelegate::setEditorData(QWidget *editor, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::setEditorData", true, &_init_f_setEditorData_c3602, &_call_f_setEditorData_c3602); methods += new qt_gsi::GenericMethod ("setItemEditorFactory|itemEditorFactory=", "@brief Method void QStyledItemDelegate::setItemEditorFactory(QItemEditorFactory *factory)\n", false, &_init_f_setItemEditorFactory_2445, &_call_f_setItemEditorFactory_2445); - methods += new qt_gsi::GenericMethod ("setModelData", "@brief Method (QWidget *, QAbstractItemModel *, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::setModelData", true, &_init_f_setModelData_c5913, &_call_f_setModelData_c5913); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method (const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::sizeHint", true, &_init_f_sizeHint_c5653, &_call_f_sizeHint_c5653); - methods += new qt_gsi::GenericMethod ("updateEditorGeometry", "@brief Method (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::updateEditorGeometry", true, &_init_f_updateEditorGeometry_c6860, &_call_f_updateEditorGeometry_c6860); + methods += new qt_gsi::GenericMethod ("setModelData", "@brief Method void QStyledItemDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::setModelData", true, &_init_f_setModelData_c5913, &_call_f_setModelData_c5913); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QStyledItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::sizeHint", true, &_init_f_sizeHint_c5653, &_call_f_sizeHint_c5653); + methods += new qt_gsi::GenericMethod ("updateEditorGeometry", "@brief Method void QStyledItemDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::updateEditorGeometry", true, &_init_f_updateEditorGeometry_c6860, &_call_f_updateEditorGeometry_c6860); methods += gsi::qt_signal::target_type & > ("closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint)", "closeEditor", gsi::arg("editor"), gsi::arg("hint"), "@brief Signal declaration for QStyledItemDelegate::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("commitData(QWidget *)", "commitData", gsi::arg("editor"), "@brief Signal declaration for QStyledItemDelegate::commitData(QWidget *editor)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QStyledItemDelegate::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc index 915d4feef..1f34a6e93 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc @@ -326,7 +326,7 @@ static void _call_f_isTabEnabled_c767 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QSize QTabBar::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -821,7 +821,7 @@ static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QSize QTabBar::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1153,7 +1153,7 @@ static gsi::Methods methods_QTabBar () { methods += new qt_gsi::GenericMethod ("insertTab", "@brief Method int QTabBar::insertTab(int index, const QIcon &icon, const QString &text)\n", false, &_init_f_insertTab_4363, &_call_f_insertTab_4363); methods += new qt_gsi::GenericMethod ("isMovable?|:movable", "@brief Method bool QTabBar::isMovable()\n", true, &_init_f_isMovable_c0, &_call_f_isMovable_c0); methods += new qt_gsi::GenericMethod ("isTabEnabled?", "@brief Method bool QTabBar::isTabEnabled(int index)\n", true, &_init_f_isTabEnabled_c767, &_call_f_isTabEnabled_c767); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QTabBar::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("moveTab", "@brief Method void QTabBar::moveTab(int from, int to)\n", false, &_init_f_moveTab_1426, &_call_f_moveTab_1426); methods += new qt_gsi::GenericMethod ("removeTab", "@brief Method void QTabBar::removeTab(int index)\n", false, &_init_f_removeTab_767, &_call_f_removeTab_767); methods += new qt_gsi::GenericMethod (":selectionBehaviorOnRemove", "@brief Method QTabBar::SelectionBehavior QTabBar::selectionBehaviorOnRemove()\n", true, &_init_f_selectionBehaviorOnRemove_c0, &_call_f_selectionBehaviorOnRemove_c0); @@ -1177,7 +1177,7 @@ static gsi::Methods methods_QTabBar () { methods += new qt_gsi::GenericMethod ("setTabsClosable|tabsClosable=", "@brief Method void QTabBar::setTabsClosable(bool closable)\n", false, &_init_f_setTabsClosable_864, &_call_f_setTabsClosable_864); methods += new qt_gsi::GenericMethod ("setUsesScrollButtons|usesScrollButtons=", "@brief Method void QTabBar::setUsesScrollButtons(bool useButtons)\n", false, &_init_f_setUsesScrollButtons_864, &_call_f_setUsesScrollButtons_864); methods += new qt_gsi::GenericMethod (":shape", "@brief Method QTabBar::Shape QTabBar::shape()\n", true, &_init_f_shape_c0, &_call_f_shape_c0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QTabBar::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("tabAt", "@brief Method int QTabBar::tabAt(const QPoint &pos)\n", true, &_init_f_tabAt_c1916, &_call_f_tabAt_c1916); methods += new qt_gsi::GenericMethod ("tabButton", "@brief Method QWidget *QTabBar::tabButton(int index, QTabBar::ButtonPosition position)\n", true, &_init_f_tabButton_c3337, &_call_f_tabButton_c3337); methods += new qt_gsi::GenericMethod ("tabData", "@brief Method QVariant QTabBar::tabData(int index)\n", true, &_init_f_tabData_c767, &_call_f_tabData_c767); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc index 91eaaaca3..2e00d97fe 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc @@ -377,7 +377,7 @@ static void _call_f_isTabEnabled_c767 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QSize QTabWidget::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -750,7 +750,7 @@ static void _call_f_setUsesScrollButtons_864 (const qt_gsi::GenericMethod * /*de } -// () const +// QSize QTabWidget::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1035,7 +1035,7 @@ static gsi::Methods methods_QTabWidget () { methods += new qt_gsi::GenericMethod ("insertTab", "@brief Method int QTabWidget::insertTab(int index, QWidget *widget, const QIcon &icon, const QString &label)\n", false, &_init_f_insertTab_5570, &_call_f_insertTab_5570); methods += new qt_gsi::GenericMethod ("isMovable?|:movable", "@brief Method bool QTabWidget::isMovable()\n", true, &_init_f_isMovable_c0, &_call_f_isMovable_c0); methods += new qt_gsi::GenericMethod ("isTabEnabled?", "@brief Method bool QTabWidget::isTabEnabled(int index)\n", true, &_init_f_isTabEnabled_c767, &_call_f_isTabEnabled_c767); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QTabWidget::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("removeTab", "@brief Method void QTabWidget::removeTab(int index)\n", false, &_init_f_removeTab_767, &_call_f_removeTab_767); methods += new qt_gsi::GenericMethod ("setCornerWidget", "@brief Method void QTabWidget::setCornerWidget(QWidget *w, Qt::Corner corner)\n", false, &_init_f_setCornerWidget_2573, &_call_f_setCornerWidget_2573); methods += new qt_gsi::GenericMethod ("setCurrentIndex|currentIndex=", "@brief Method void QTabWidget::setCurrentIndex(int index)\n", false, &_init_f_setCurrentIndex_767, &_call_f_setCurrentIndex_767); @@ -1053,7 +1053,7 @@ static gsi::Methods methods_QTabWidget () { methods += new qt_gsi::GenericMethod ("setTabWhatsThis", "@brief Method void QTabWidget::setTabWhatsThis(int index, const QString &text)\n", false, &_init_f_setTabWhatsThis_2684, &_call_f_setTabWhatsThis_2684); methods += new qt_gsi::GenericMethod ("setTabsClosable|tabsClosable=", "@brief Method void QTabWidget::setTabsClosable(bool closeable)\n", false, &_init_f_setTabsClosable_864, &_call_f_setTabsClosable_864); methods += new qt_gsi::GenericMethod ("setUsesScrollButtons|usesScrollButtons=", "@brief Method void QTabWidget::setUsesScrollButtons(bool useButtons)\n", false, &_init_f_setUsesScrollButtons_864, &_call_f_setUsesScrollButtons_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QTabWidget::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("tabIcon", "@brief Method QIcon QTabWidget::tabIcon(int index)\n", true, &_init_f_tabIcon_c767, &_call_f_tabIcon_c767); methods += new qt_gsi::GenericMethod (":tabPosition", "@brief Method QTabWidget::TabPosition QTabWidget::tabPosition()\n", true, &_init_f_tabPosition_c0, &_call_f_tabPosition_c0); methods += new qt_gsi::GenericMethod (":tabShape", "@brief Method QTabWidget::TabShape QTabWidget::tabShape()\n", true, &_init_f_tabShape_c0, &_call_f_tabShape_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc index 2b889bf52..ebbea8177 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc @@ -270,7 +270,7 @@ static void _call_f_horizontalHeader_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QPoint &) const +// QModelIndex QTableView::indexAt(const QPoint &p) static void _init_f_indexAt_c1916 (qt_gsi::GenericMethod *decl) @@ -508,7 +508,7 @@ static void _call_f_rowViewportPosition_c767 (const qt_gsi::GenericMethod * /*de } -// (const QModelIndex &, QAbstractItemView::ScrollHint) +// void QTableView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) static void _init_f_scrollTo_5576 (qt_gsi::GenericMethod *decl) @@ -677,7 +677,7 @@ static void _call_f_setHorizontalHeader_1699 (const qt_gsi::GenericMethod * /*de } -// (QAbstractItemModel *) +// void QTableView::setModel(QAbstractItemModel *model) static void _init_f_setModel_2419 (qt_gsi::GenericMethod *decl) @@ -697,7 +697,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) +// void QTableView::setRootIndex(const QModelIndex &index) static void _init_f_setRootIndex_2395 (qt_gsi::GenericMethod *decl) @@ -763,7 +763,7 @@ static void _call_f_setRowHidden_1523 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QItemSelectionModel *) +// void QTableView::setSelectionModel(QItemSelectionModel *selectionModel) static void _init_f_setSelectionModel_2533 (qt_gsi::GenericMethod *decl) @@ -1005,7 +1005,7 @@ static void _call_f_verticalHeader_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &) const +// QRect QTableView::visualRect(const QModelIndex &index) static void _init_f_visualRect_c2395 (qt_gsi::GenericMethod *decl) @@ -1148,7 +1148,7 @@ static gsi::Methods methods_QTableView () { methods += new qt_gsi::GenericMethod ("hideColumn", "@brief Method void QTableView::hideColumn(int column)\n", false, &_init_f_hideColumn_767, &_call_f_hideColumn_767); methods += new qt_gsi::GenericMethod ("hideRow", "@brief Method void QTableView::hideRow(int row)\n", false, &_init_f_hideRow_767, &_call_f_hideRow_767); methods += new qt_gsi::GenericMethod (":horizontalHeader", "@brief Method QHeaderView *QTableView::horizontalHeader()\n", true, &_init_f_horizontalHeader_c0, &_call_f_horizontalHeader_c0); - methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method (const QPoint &) const\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); + methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method QModelIndex QTableView::indexAt(const QPoint &p)\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); methods += new qt_gsi::GenericMethod ("isColumnHidden?", "@brief Method bool QTableView::isColumnHidden(int column)\n", true, &_init_f_isColumnHidden_c767, &_call_f_isColumnHidden_c767); methods += new qt_gsi::GenericMethod ("isCornerButtonEnabled?|:cornerButtonEnabled", "@brief Method bool QTableView::isCornerButtonEnabled()\n", true, &_init_f_isCornerButtonEnabled_c0, &_call_f_isCornerButtonEnabled_c0); methods += new qt_gsi::GenericMethod ("isRowHidden?", "@brief Method bool QTableView::isRowHidden(int row)\n", true, &_init_f_isRowHidden_c767, &_call_f_isRowHidden_c767); @@ -1161,7 +1161,7 @@ static gsi::Methods methods_QTableView () { methods += new qt_gsi::GenericMethod ("rowHeight", "@brief Method int QTableView::rowHeight(int row)\n", true, &_init_f_rowHeight_c767, &_call_f_rowHeight_c767); methods += new qt_gsi::GenericMethod ("rowSpan", "@brief Method int QTableView::rowSpan(int row, int column)\n", true, &_init_f_rowSpan_c1426, &_call_f_rowSpan_c1426); methods += new qt_gsi::GenericMethod ("rowViewportPosition", "@brief Method int QTableView::rowViewportPosition(int row)\n", true, &_init_f_rowViewportPosition_c767, &_call_f_rowViewportPosition_c767); - methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method (const QModelIndex &, QAbstractItemView::ScrollHint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); + methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method void QTableView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); methods += new qt_gsi::GenericMethod ("selectColumn", "@brief Method void QTableView::selectColumn(int column)\n", false, &_init_f_selectColumn_767, &_call_f_selectColumn_767); methods += new qt_gsi::GenericMethod ("selectRow", "@brief Method void QTableView::selectRow(int row)\n", false, &_init_f_selectRow_767, &_call_f_selectRow_767); methods += new qt_gsi::GenericMethod ("setColumnHidden", "@brief Method void QTableView::setColumnHidden(int column, bool hide)\n", false, &_init_f_setColumnHidden_1523, &_call_f_setColumnHidden_1523); @@ -1169,11 +1169,11 @@ static gsi::Methods methods_QTableView () { methods += new qt_gsi::GenericMethod ("setCornerButtonEnabled|cornerButtonEnabled=", "@brief Method void QTableView::setCornerButtonEnabled(bool enable)\n", false, &_init_f_setCornerButtonEnabled_864, &_call_f_setCornerButtonEnabled_864); methods += new qt_gsi::GenericMethod ("setGridStyle|gridStyle=", "@brief Method void QTableView::setGridStyle(Qt::PenStyle style)\n", false, &_init_f_setGridStyle_1569, &_call_f_setGridStyle_1569); methods += new qt_gsi::GenericMethod ("setHorizontalHeader|horizontalHeader=", "@brief Method void QTableView::setHorizontalHeader(QHeaderView *header)\n", false, &_init_f_setHorizontalHeader_1699, &_call_f_setHorizontalHeader_1699); - methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); - methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); + methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method void QTableView::setModel(QAbstractItemModel *model)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); + methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method void QTableView::setRootIndex(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); methods += new qt_gsi::GenericMethod ("setRowHeight", "@brief Method void QTableView::setRowHeight(int row, int height)\n", false, &_init_f_setRowHeight_1426, &_call_f_setRowHeight_1426); methods += new qt_gsi::GenericMethod ("setRowHidden", "@brief Method void QTableView::setRowHidden(int row, bool hide)\n", false, &_init_f_setRowHidden_1523, &_call_f_setRowHidden_1523); - methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method (QItemSelectionModel *)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); + methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method void QTableView::setSelectionModel(QItemSelectionModel *selectionModel)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); methods += new qt_gsi::GenericMethod ("setShowGrid|showGrid=", "@brief Method void QTableView::setShowGrid(bool show)\n", false, &_init_f_setShowGrid_864, &_call_f_setShowGrid_864); methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method void QTableView::setSortingEnabled(bool enable)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864); methods += new qt_gsi::GenericMethod ("setSpan", "@brief Method void QTableView::setSpan(int row, int column, int rowSpan, int columnSpan)\n", false, &_init_f_setSpan_2744, &_call_f_setSpan_2744); @@ -1185,7 +1185,7 @@ static gsi::Methods methods_QTableView () { methods += new qt_gsi::GenericMethod ("sortByColumn", "@brief Method void QTableView::sortByColumn(int column, Qt::SortOrder order)\n", false, &_init_f_sortByColumn_2340, &_call_f_sortByColumn_2340); methods += new qt_gsi::GenericMethod ("sortByColumn", "@brief Method void QTableView::sortByColumn(int column)\n", false, &_init_f_sortByColumn_767, &_call_f_sortByColumn_767); methods += new qt_gsi::GenericMethod (":verticalHeader", "@brief Method QHeaderView *QTableView::verticalHeader()\n", true, &_init_f_verticalHeader_c0, &_call_f_verticalHeader_c0); - methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); + methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method QRect QTableView::visualRect(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); methods += new qt_gsi::GenericMethod (":wordWrap", "@brief Method bool QTableView::wordWrap()\n", true, &_init_f_wordWrap_c0, &_call_f_wordWrap_c0); methods += gsi::qt_signal ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QTableView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("clicked(const QModelIndex &)", "clicked", gsi::arg("index"), "@brief Signal declaration for QTableView::clicked(const QModelIndex &index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc index 2c983694c..b6e4bd294 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc @@ -162,7 +162,7 @@ static void _call_f_clearContents_0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QTableWidgetItem *) +// void QTableWidget::closePersistentEditor(QTableWidgetItem *item) static void _init_f_closePersistentEditor_2202 (qt_gsi::GenericMethod *decl) @@ -381,7 +381,7 @@ static void _call_f_isItemSelected_c2897 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// bool QTableWidget::isSortingEnabled() static void _init_f_isSortingEnabled_c0 (qt_gsi::GenericMethod *decl) @@ -474,7 +474,7 @@ static void _call_f_itemPrototype_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (QTableWidgetItem *) +// void QTableWidget::openPersistentEditor(QTableWidgetItem *item) static void _init_f_openPersistentEditor_2202 (qt_gsi::GenericMethod *decl) @@ -938,7 +938,7 @@ static void _call_f_setRowCount_767 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (bool) +// void QTableWidget::setSortingEnabled(bool enable) static void _init_f_setSortingEnabled_864 (qt_gsi::GenericMethod *decl) @@ -1263,7 +1263,7 @@ static gsi::Methods methods_QTableWidget () { methods += new qt_gsi::GenericMethod ("cellWidget", "@brief Method QWidget *QTableWidget::cellWidget(int row, int column)\n", true, &_init_f_cellWidget_c1426, &_call_f_cellWidget_c1426); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QTableWidget::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); methods += new qt_gsi::GenericMethod ("clearContents", "@brief Method void QTableWidget::clearContents()\n", false, &_init_f_clearContents_0, &_call_f_clearContents_0); - methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method (QTableWidgetItem *)\n", false, &_init_f_closePersistentEditor_2202, &_call_f_closePersistentEditor_2202); + methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method void QTableWidget::closePersistentEditor(QTableWidgetItem *item)\n", false, &_init_f_closePersistentEditor_2202, &_call_f_closePersistentEditor_2202); methods += new qt_gsi::GenericMethod ("column", "@brief Method int QTableWidget::column(const QTableWidgetItem *item)\n", true, &_init_f_column_c2897, &_call_f_column_c2897); methods += new qt_gsi::GenericMethod (":columnCount", "@brief Method int QTableWidget::columnCount()\n", true, &_init_f_columnCount_c0, &_call_f_columnCount_c0); methods += new qt_gsi::GenericMethod ("currentColumn", "@brief Method int QTableWidget::currentColumn()\n", true, &_init_f_currentColumn_c0, &_call_f_currentColumn_c0); @@ -1275,12 +1275,12 @@ static gsi::Methods methods_QTableWidget () { methods += new qt_gsi::GenericMethod ("insertColumn", "@brief Method void QTableWidget::insertColumn(int column)\n", false, &_init_f_insertColumn_767, &_call_f_insertColumn_767); methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QTableWidget::insertRow(int row)\n", false, &_init_f_insertRow_767, &_call_f_insertRow_767); methods += new qt_gsi::GenericMethod ("isItemSelected?", "@brief Method bool QTableWidget::isItemSelected(const QTableWidgetItem *item)\n", true, &_init_f_isItemSelected_c2897, &_call_f_isItemSelected_c2897); - methods += new qt_gsi::GenericMethod ("isSortingEnabled?|:sortingEnabled", "@brief Method () const\n", true, &_init_f_isSortingEnabled_c0, &_call_f_isSortingEnabled_c0); + methods += new qt_gsi::GenericMethod ("isSortingEnabled?|:sortingEnabled", "@brief Method bool QTableWidget::isSortingEnabled()\n", true, &_init_f_isSortingEnabled_c0, &_call_f_isSortingEnabled_c0); methods += new qt_gsi::GenericMethod ("item", "@brief Method QTableWidgetItem *QTableWidget::item(int row, int column)\n", true, &_init_f_item_c1426, &_call_f_item_c1426); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QTableWidgetItem *QTableWidget::itemAt(const QPoint &p)\n", true, &_init_f_itemAt_c1916, &_call_f_itemAt_c1916); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QTableWidgetItem *QTableWidget::itemAt(int x, int y)\n", true, &_init_f_itemAt_c1426, &_call_f_itemAt_c1426); methods += new qt_gsi::GenericMethod (":itemPrototype", "@brief Method const QTableWidgetItem *QTableWidget::itemPrototype()\n", true, &_init_f_itemPrototype_c0, &_call_f_itemPrototype_c0); - methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method (QTableWidgetItem *)\n", false, &_init_f_openPersistentEditor_2202, &_call_f_openPersistentEditor_2202); + methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method void QTableWidget::openPersistentEditor(QTableWidgetItem *item)\n", false, &_init_f_openPersistentEditor_2202, &_call_f_openPersistentEditor_2202); methods += new qt_gsi::GenericMethod ("removeCellWidget", "@brief Method void QTableWidget::removeCellWidget(int row, int column)\n", false, &_init_f_removeCellWidget_1426, &_call_f_removeCellWidget_1426); methods += new qt_gsi::GenericMethod ("removeColumn", "@brief Method void QTableWidget::removeColumn(int column)\n", false, &_init_f_removeColumn_767, &_call_f_removeColumn_767); methods += new qt_gsi::GenericMethod ("removeRow", "@brief Method void QTableWidget::removeRow(int row)\n", false, &_init_f_removeRow_767, &_call_f_removeRow_767); @@ -1302,7 +1302,7 @@ static gsi::Methods methods_QTableWidget () { methods += new qt_gsi::GenericMethod ("setItemSelected", "@brief Method void QTableWidget::setItemSelected(const QTableWidgetItem *item, bool select)\n", false, &_init_f_setItemSelected_3653, &_call_f_setItemSelected_3653); methods += new qt_gsi::GenericMethod ("setRangeSelected", "@brief Method void QTableWidget::setRangeSelected(const QTableWidgetSelectionRange &range, bool select)\n", false, &_init_f_setRangeSelected_4677, &_call_f_setRangeSelected_4677); methods += new qt_gsi::GenericMethod ("setRowCount|rowCount=", "@brief Method void QTableWidget::setRowCount(int rows)\n", false, &_init_f_setRowCount_767, &_call_f_setRowCount_767); - methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method (bool)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864); + methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method void QTableWidget::setSortingEnabled(bool enable)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864); methods += new qt_gsi::GenericMethod ("setVerticalHeaderItem", "@brief Method void QTableWidget::setVerticalHeaderItem(int row, QTableWidgetItem *item)\n", false, &_init_f_setVerticalHeaderItem_2861, &_call_f_setVerticalHeaderItem_2861); methods += new qt_gsi::GenericMethod ("setVerticalHeaderLabels", "@brief Method void QTableWidget::setVerticalHeaderLabels(const QStringList &labels)\n", false, &_init_f_setVerticalHeaderLabels_2437, &_call_f_setVerticalHeaderLabels_2437); methods += new qt_gsi::GenericMethod ("sortItems", "@brief Method void QTableWidget::sortItems(int column, Qt::SortOrder order)\n", false, &_init_f_sortItems_2340, &_call_f_sortItems_2340); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockFormat.cc index b94557fb6..e86133854 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockFormat.cc @@ -107,7 +107,7 @@ static void _call_f_indent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QTextBlockFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -437,7 +437,7 @@ static gsi::Methods methods_QTextBlockFormat () { methods += new qt_gsi::GenericMethod (":alignment", "@brief Method QFlags QTextBlockFormat::alignment()\n", true, &_init_f_alignment_c0, &_call_f_alignment_c0); methods += new qt_gsi::GenericMethod (":bottomMargin", "@brief Method double QTextBlockFormat::bottomMargin()\n", true, &_init_f_bottomMargin_c0, &_call_f_bottomMargin_c0); methods += new qt_gsi::GenericMethod (":indent", "@brief Method int QTextBlockFormat::indent()\n", true, &_init_f_indent_c0, &_call_f_indent_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextBlockFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod (":leftMargin", "@brief Method double QTextBlockFormat::leftMargin()\n", true, &_init_f_leftMargin_c0, &_call_f_leftMargin_c0); methods += new qt_gsi::GenericMethod (":nonBreakableLines", "@brief Method bool QTextBlockFormat::nonBreakableLines()\n", true, &_init_f_nonBreakableLines_c0, &_call_f_nonBreakableLines_c0); methods += new qt_gsi::GenericMethod (":pageBreakPolicy", "@brief Method QFlags QTextBlockFormat::pageBreakPolicy()\n", true, &_init_f_pageBreakPolicy_c0, &_call_f_pageBreakPolicy_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc index 502fc840d..443a2ab55 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc @@ -268,7 +268,7 @@ static void _call_f_isForwardAvailable_c0 (const qt_gsi::GenericMethod * /*decl* } -// (int, const QUrl &) +// QVariant QTextBrowser::loadResource(int type, const QUrl &name) static void _init_f_loadResource_2360 (qt_gsi::GenericMethod *decl) @@ -556,7 +556,7 @@ static gsi::Methods methods_QTextBrowser () { methods += new qt_gsi::GenericMethod ("home", "@brief Method void QTextBrowser::home()\n", false, &_init_f_home_0, &_call_f_home_0); methods += new qt_gsi::GenericMethod ("isBackwardAvailable?", "@brief Method bool QTextBrowser::isBackwardAvailable()\n", true, &_init_f_isBackwardAvailable_c0, &_call_f_isBackwardAvailable_c0); methods += new qt_gsi::GenericMethod ("isForwardAvailable?", "@brief Method bool QTextBrowser::isForwardAvailable()\n", true, &_init_f_isForwardAvailable_c0, &_call_f_isForwardAvailable_c0); - methods += new qt_gsi::GenericMethod ("loadResource", "@brief Method (int, const QUrl &)\nThis is a reimplementation of QTextEdit::loadResource", false, &_init_f_loadResource_2360, &_call_f_loadResource_2360); + methods += new qt_gsi::GenericMethod ("loadResource", "@brief Method QVariant QTextBrowser::loadResource(int type, const QUrl &name)\nThis is a reimplementation of QTextEdit::loadResource", false, &_init_f_loadResource_2360, &_call_f_loadResource_2360); methods += new qt_gsi::GenericMethod (":openExternalLinks", "@brief Method bool QTextBrowser::openExternalLinks()\n", true, &_init_f_openExternalLinks_c0, &_call_f_openExternalLinks_c0); methods += new qt_gsi::GenericMethod (":openLinks", "@brief Method bool QTextBrowser::openLinks()\n", true, &_init_f_openLinks_c0, &_call_f_openLinks_c0); methods += new qt_gsi::GenericMethod ("reload", "@brief Method void QTextBrowser::reload()\n", false, &_init_f_reload_0, &_call_f_reload_0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextCharFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextCharFormat.cc index f36402b99..8f1ee480d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextCharFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextCharFormat.cc @@ -348,7 +348,7 @@ static void _call_f_isAnchor_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// bool QTextCharFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -1017,7 +1017,7 @@ static gsi::Methods methods_QTextCharFormat () { methods += new qt_gsi::GenericMethod (":fontWeight", "@brief Method int QTextCharFormat::fontWeight()\n", true, &_init_f_fontWeight_c0, &_call_f_fontWeight_c0); methods += new qt_gsi::GenericMethod (":fontWordSpacing", "@brief Method double QTextCharFormat::fontWordSpacing()\n", true, &_init_f_fontWordSpacing_c0, &_call_f_fontWordSpacing_c0); methods += new qt_gsi::GenericMethod ("isAnchor?|:anchor", "@brief Method bool QTextCharFormat::isAnchor()\n", true, &_init_f_isAnchor_c0, &_call_f_isAnchor_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextCharFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod ("setAnchor|anchor=", "@brief Method void QTextCharFormat::setAnchor(bool anchor)\n", false, &_init_f_setAnchor_864, &_call_f_setAnchor_864); methods += new qt_gsi::GenericMethod ("setAnchorHref|anchorHref=", "@brief Method void QTextCharFormat::setAnchorHref(const QString &value)\n", false, &_init_f_setAnchorHref_2025, &_call_f_setAnchorHref_2025); methods += new qt_gsi::GenericMethod ("setAnchorName|anchorName=", "@brief Method void QTextCharFormat::setAnchorName(const QString &name)\n", false, &_init_f_setAnchorName_2025, &_call_f_setAnchorName_2025); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc index 42086d3dd..36b7799c4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc @@ -446,7 +446,7 @@ static void _call_f_extraSelections_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QString &, QFlags) +// bool QTextEdit::find(const QString &exp, QFlags options) static void _init_f_find_5261 (qt_gsi::GenericMethod *decl) @@ -1703,7 +1703,7 @@ static gsi::Methods methods_QTextEdit () { methods += new qt_gsi::GenericMethod (":documentTitle", "@brief Method QString QTextEdit::documentTitle()\n", true, &_init_f_documentTitle_c0, &_call_f_documentTitle_c0); methods += new qt_gsi::GenericMethod ("ensureCursorVisible", "@brief Method void QTextEdit::ensureCursorVisible()\n", false, &_init_f_ensureCursorVisible_0, &_call_f_ensureCursorVisible_0); methods += new qt_gsi::GenericMethod (":extraSelections", "@brief Method QList QTextEdit::extraSelections()\n", true, &_init_f_extraSelections_c0, &_call_f_extraSelections_c0); - methods += new qt_gsi::GenericMethod ("find", "@brief Method (const QString &, QFlags)\n", false, &_init_f_find_5261, &_call_f_find_5261); + methods += new qt_gsi::GenericMethod ("find", "@brief Method bool QTextEdit::find(const QString &exp, QFlags options)\n", false, &_init_f_find_5261, &_call_f_find_5261); methods += new qt_gsi::GenericMethod (":fontFamily", "@brief Method QString QTextEdit::fontFamily()\n", true, &_init_f_fontFamily_c0, &_call_f_fontFamily_c0); methods += new qt_gsi::GenericMethod (":fontItalic", "@brief Method bool QTextEdit::fontItalic()\n", true, &_init_f_fontItalic_c0, &_call_f_fontItalic_c0); methods += new qt_gsi::GenericMethod (":fontPointSize", "@brief Method double QTextEdit::fontPointSize()\n", true, &_init_f_fontPointSize_c0, &_call_f_fontPointSize_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextFrameFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextFrameFormat.cc index f38d53989..778aeeb63 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextFrameFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextFrameFormat.cc @@ -137,7 +137,7 @@ static void _call_f_height_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QTextFrameFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -584,7 +584,7 @@ static gsi::Methods methods_QTextFrameFormat () { methods += new qt_gsi::GenericMethod (":borderStyle", "@brief Method QTextFrameFormat::BorderStyle QTextFrameFormat::borderStyle()\n", true, &_init_f_borderStyle_c0, &_call_f_borderStyle_c0); methods += new qt_gsi::GenericMethod (":bottomMargin", "@brief Method double QTextFrameFormat::bottomMargin()\n", true, &_init_f_bottomMargin_c0, &_call_f_bottomMargin_c0); methods += new qt_gsi::GenericMethod ("height", "@brief Method QTextLength QTextFrameFormat::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextFrameFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod (":leftMargin", "@brief Method double QTextFrameFormat::leftMargin()\n", true, &_init_f_leftMargin_c0, &_call_f_leftMargin_c0); methods += new qt_gsi::GenericMethod (":margin", "@brief Method double QTextFrameFormat::margin()\n", true, &_init_f_margin_c0, &_call_f_margin_c0); methods += new qt_gsi::GenericMethod (":padding", "@brief Method double QTextFrameFormat::padding()\n", true, &_init_f_padding_c0, &_call_f_padding_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextImageFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextImageFormat.cc index d0b083016..44e42b87d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextImageFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextImageFormat.cc @@ -78,7 +78,7 @@ static void _call_f_height_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QTextImageFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -191,7 +191,7 @@ static gsi::Methods methods_QTextImageFormat () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTextImageFormat::QTextImageFormat()\nThis method creates an object of class QTextImageFormat.", &_init_ctor_QTextImageFormat_0, &_call_ctor_QTextImageFormat_0); methods += new qt_gsi::GenericMethod (":height", "@brief Method double QTextImageFormat::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextImageFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod (":name", "@brief Method QString QTextImageFormat::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); methods += new qt_gsi::GenericMethod ("setHeight|height=", "@brief Method void QTextImageFormat::setHeight(double height)\n", false, &_init_f_setHeight_1071, &_call_f_setHeight_1071); methods += new qt_gsi::GenericMethod ("setName|name=", "@brief Method void QTextImageFormat::setName(const QString &name)\n", false, &_init_f_setName_2025, &_call_f_setName_2025); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc index 06d6fac6e..a93ba2f28 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc @@ -92,7 +92,7 @@ static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QTextListFormat QTextList::format() static void _init_f_format_c0 (qt_gsi::GenericMethod *decl) @@ -219,7 +219,7 @@ static void _call_f_removeItem_767 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QTextListFormat &) +// void QTextList::setFormat(const QTextListFormat &format) static void _init_f_setFormat_2844 (qt_gsi::GenericMethod *decl) @@ -341,14 +341,14 @@ static gsi::Methods methods_QTextList () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("add", "@brief Method void QTextList::add(const QTextBlock &block)\n", false, &_init_f_add_2306, &_call_f_add_2306); methods += new qt_gsi::GenericMethod ("count", "@brief Method int QTextList::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); - methods += new qt_gsi::GenericMethod (":format", "@brief Method () const\n", true, &_init_f_format_c0, &_call_f_format_c0); + methods += new qt_gsi::GenericMethod (":format", "@brief Method QTextListFormat QTextList::format()\n", true, &_init_f_format_c0, &_call_f_format_c0); methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method bool QTextList::isEmpty()\n", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); methods += new qt_gsi::GenericMethod ("item", "@brief Method QTextBlock QTextList::item(int i)\n", true, &_init_f_item_c767, &_call_f_item_c767); methods += new qt_gsi::GenericMethod ("itemNumber", "@brief Method int QTextList::itemNumber(const QTextBlock &)\n", true, &_init_f_itemNumber_c2306, &_call_f_itemNumber_c2306); methods += new qt_gsi::GenericMethod ("itemText", "@brief Method QString QTextList::itemText(const QTextBlock &)\n", true, &_init_f_itemText_c2306, &_call_f_itemText_c2306); methods += new qt_gsi::GenericMethod ("remove", "@brief Method void QTextList::remove(const QTextBlock &)\n", false, &_init_f_remove_2306, &_call_f_remove_2306); methods += new qt_gsi::GenericMethod ("removeItem", "@brief Method void QTextList::removeItem(int i)\n", false, &_init_f_removeItem_767, &_call_f_removeItem_767); - methods += new qt_gsi::GenericMethod ("setFormat|format=", "@brief Method (const QTextListFormat &)\n", false, &_init_f_setFormat_2844, &_call_f_setFormat_2844); + methods += new qt_gsi::GenericMethod ("setFormat|format=", "@brief Method void QTextList::setFormat(const QTextListFormat &format)\n", false, &_init_f_setFormat_2844, &_call_f_setFormat_2844); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QTextList::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QTextList::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QTextList::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextListFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextListFormat.cc index 9ee07337a..d429e4aa3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextListFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextListFormat.cc @@ -77,7 +77,7 @@ static void _call_f_indent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QTextListFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -155,7 +155,7 @@ static gsi::Methods methods_QTextListFormat () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTextListFormat::QTextListFormat()\nThis method creates an object of class QTextListFormat.", &_init_ctor_QTextListFormat_0, &_call_ctor_QTextListFormat_0); methods += new qt_gsi::GenericMethod (":indent", "@brief Method int QTextListFormat::indent()\n", true, &_init_f_indent_c0, &_call_f_indent_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextListFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod ("setIndent|indent=", "@brief Method void QTextListFormat::setIndent(int indent)\n", false, &_init_f_setIndent_767, &_call_f_setIndent_767); methods += new qt_gsi::GenericMethod ("setStyle|style=", "@brief Method void QTextListFormat::setStyle(QTextListFormat::Style style)\n", false, &_init_f_setStyle_2612, &_call_f_setStyle_2612); methods += new qt_gsi::GenericMethod (":style", "@brief Method QTextListFormat::Style QTextListFormat::style()\n", true, &_init_f_style_c0, &_call_f_style_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc index 6b4261f2d..da13dd152 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc @@ -175,7 +175,7 @@ static void _call_f_columns_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QTextTableFormat QTextTable::format() static void _init_f_format_c0 (qt_gsi::GenericMethod *decl) @@ -407,7 +407,7 @@ static void _call_f_rows_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QTextTableFormat &) +// void QTextTable::setFormat(const QTextTableFormat &format) static void _init_f_setFormat_2920 (qt_gsi::GenericMethod *decl) @@ -562,7 +562,7 @@ static gsi::Methods methods_QTextTable () { methods += new qt_gsi::GenericMethod ("cellAt", "@brief Method QTextTableCell QTextTable::cellAt(int position)\n", true, &_init_f_cellAt_c767, &_call_f_cellAt_c767); methods += new qt_gsi::GenericMethod ("cellAt", "@brief Method QTextTableCell QTextTable::cellAt(const QTextCursor &c)\n", true, &_init_f_cellAt_c2453, &_call_f_cellAt_c2453); methods += new qt_gsi::GenericMethod ("columns", "@brief Method int QTextTable::columns()\n", true, &_init_f_columns_c0, &_call_f_columns_c0); - methods += new qt_gsi::GenericMethod (":format", "@brief Method () const\n", true, &_init_f_format_c0, &_call_f_format_c0); + methods += new qt_gsi::GenericMethod (":format", "@brief Method QTextTableFormat QTextTable::format()\n", true, &_init_f_format_c0, &_call_f_format_c0); methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method void QTextTable::insertColumns(int pos, int num)\n", false, &_init_f_insertColumns_1426, &_call_f_insertColumns_1426); methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method void QTextTable::insertRows(int pos, int num)\n", false, &_init_f_insertRows_1426, &_call_f_insertRows_1426); methods += new qt_gsi::GenericMethod ("mergeCells", "@brief Method void QTextTable::mergeCells(int row, int col, int numRows, int numCols)\n", false, &_init_f_mergeCells_2744, &_call_f_mergeCells_2744); @@ -573,7 +573,7 @@ static gsi::Methods methods_QTextTable () { methods += new qt_gsi::GenericMethod ("rowEnd", "@brief Method QTextCursor QTextTable::rowEnd(const QTextCursor &c)\n", true, &_init_f_rowEnd_c2453, &_call_f_rowEnd_c2453); methods += new qt_gsi::GenericMethod ("rowStart", "@brief Method QTextCursor QTextTable::rowStart(const QTextCursor &c)\n", true, &_init_f_rowStart_c2453, &_call_f_rowStart_c2453); methods += new qt_gsi::GenericMethod ("rows", "@brief Method int QTextTable::rows()\n", true, &_init_f_rows_c0, &_call_f_rows_c0); - methods += new qt_gsi::GenericMethod ("setFormat|format=", "@brief Method (const QTextTableFormat &)\n", false, &_init_f_setFormat_2920, &_call_f_setFormat_2920); + methods += new qt_gsi::GenericMethod ("setFormat|format=", "@brief Method void QTextTable::setFormat(const QTextTableFormat &format)\n", false, &_init_f_setFormat_2920, &_call_f_setFormat_2920); methods += new qt_gsi::GenericMethod ("splitCell", "@brief Method void QTextTable::splitCell(int row, int col, int numRows, int numCols)\n", false, &_init_f_splitCell_2744, &_call_f_splitCell_2744); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QTextTable::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QTextTable::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCellFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCellFormat.cc index c5a13a486..54e54493a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCellFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCellFormat.cc @@ -78,7 +78,7 @@ static void _call_f_bottomPadding_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// bool QTextTableCellFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -246,7 +246,7 @@ static gsi::Methods methods_QTextTableCellFormat () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTextTableCellFormat::QTextTableCellFormat()\nThis method creates an object of class QTextTableCellFormat.", &_init_ctor_QTextTableCellFormat_0, &_call_ctor_QTextTableCellFormat_0); methods += new qt_gsi::GenericMethod (":bottomPadding", "@brief Method double QTextTableCellFormat::bottomPadding()\n", true, &_init_f_bottomPadding_c0, &_call_f_bottomPadding_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextTableCellFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod (":leftPadding", "@brief Method double QTextTableCellFormat::leftPadding()\n", true, &_init_f_leftPadding_c0, &_call_f_leftPadding_c0); methods += new qt_gsi::GenericMethod (":rightPadding", "@brief Method double QTextTableCellFormat::rightPadding()\n", true, &_init_f_rightPadding_c0, &_call_f_rightPadding_c0); methods += new qt_gsi::GenericMethod ("setBottomPadding|bottomPadding=", "@brief Method void QTextTableCellFormat::setBottomPadding(double padding)\n", false, &_init_f_setBottomPadding_1071, &_call_f_setBottomPadding_1071); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextTableFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextTableFormat.cc index 622f037b2..88aa993be 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextTableFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextTableFormat.cc @@ -168,7 +168,7 @@ static void _call_f_headerRowCount_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// bool QTextTableFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -317,7 +317,7 @@ static gsi::Methods methods_QTextTableFormat () { methods += new qt_gsi::GenericMethod (":columnWidthConstraints", "@brief Method QVector QTextTableFormat::columnWidthConstraints()\n", true, &_init_f_columnWidthConstraints_c0, &_call_f_columnWidthConstraints_c0); methods += new qt_gsi::GenericMethod (":columns", "@brief Method int QTextTableFormat::columns()\n", true, &_init_f_columns_c0, &_call_f_columns_c0); methods += new qt_gsi::GenericMethod (":headerRowCount", "@brief Method int QTextTableFormat::headerRowCount()\n", true, &_init_f_headerRowCount_c0, &_call_f_headerRowCount_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextTableFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QTextTableFormat::setAlignment(QFlags alignment)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); methods += new qt_gsi::GenericMethod ("setCellPadding|cellPadding=", "@brief Method void QTextTableFormat::setCellPadding(double padding)\n", false, &_init_f_setCellPadding_1071, &_call_f_setCellPadding_1071); methods += new qt_gsi::GenericMethod ("setCellSpacing|cellSpacing=", "@brief Method void QTextTableFormat::setCellSpacing(double spacing)\n", false, &_init_f_setCellSpacing_1071, &_call_f_setCellSpacing_1071); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc index 27748c01f..95f6b3650 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc @@ -158,7 +158,7 @@ static void _call_f_actionGeometry_c1309 (const qt_gsi::GenericMethod * /*decl*/ } -// (QAction *) +// void QToolBar::addAction(QAction *action) static void _init_f_addAction_1309 (qt_gsi::GenericMethod *decl) @@ -178,7 +178,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) +// QAction *QToolBar::addAction(const QString &text) static void _init_f_addAction_2025 (qt_gsi::GenericMethod *decl) @@ -197,7 +197,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QIcon &, const QString &) +// QAction *QToolBar::addAction(const QIcon &icon, const QString &text) static void _init_f_addAction_3704 (qt_gsi::GenericMethod *decl) @@ -219,7 +219,7 @@ static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &, const QObject *, const char *) +// QAction *QToolBar::addAction(const QString &text, const QObject *receiver, const char *member) static void _init_f_addAction_5537 (qt_gsi::GenericMethod *decl) @@ -244,7 +244,7 @@ static void _call_f_addAction_5537 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QIcon &, const QString &, const QObject *, const char *) +// QAction *QToolBar::addAction(const QIcon &icon, const QString &text, const QObject *receiver, const char *member) static void _init_f_addAction_7216 (qt_gsi::GenericMethod *decl) @@ -744,11 +744,11 @@ static gsi::Methods methods_QToolBar () { methods += new qt_gsi::GenericMethod ("actionAt", "@brief Method QAction *QToolBar::actionAt(const QPoint &p)\n", true, &_init_f_actionAt_c1916, &_call_f_actionAt_c1916); methods += new qt_gsi::GenericMethod ("actionAt", "@brief Method QAction *QToolBar::actionAt(int x, int y)\n", true, &_init_f_actionAt_c1426, &_call_f_actionAt_c1426); methods += new qt_gsi::GenericMethod ("actionGeometry", "@brief Method QRect QToolBar::actionGeometry(QAction *action)\n", true, &_init_f_actionGeometry_c1309, &_call_f_actionGeometry_c1309); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (QAction *)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, const QString &)\n", false, &_init_f_addAction_3704, &_call_f_addAction_3704); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &, const QObject *, const char *)\n", false, &_init_f_addAction_5537, &_call_f_addAction_5537); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, const QString &, const QObject *, const char *)\n", false, &_init_f_addAction_7216, &_call_f_addAction_7216); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method void QToolBar::addAction(QAction *action)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QToolBar::addAction(const QString &text)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QToolBar::addAction(const QIcon &icon, const QString &text)\n", false, &_init_f_addAction_3704, &_call_f_addAction_3704); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QToolBar::addAction(const QString &text, const QObject *receiver, const char *member)\n", false, &_init_f_addAction_5537, &_call_f_addAction_5537); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QToolBar::addAction(const QIcon &icon, const QString &text, const QObject *receiver, const char *member)\n", false, &_init_f_addAction_7216, &_call_f_addAction_7216); methods += new qt_gsi::GenericMethod ("addSeparator", "@brief Method QAction *QToolBar::addSeparator()\n", false, &_init_f_addSeparator_0, &_call_f_addSeparator_0); methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method QAction *QToolBar::addWidget(QWidget *widget)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); methods += new qt_gsi::GenericMethod (":allowedAreas", "@brief Method QFlags QToolBar::allowedAreas()\n", true, &_init_f_allowedAreas_c0, &_call_f_allowedAreas_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc index 8131e6194..0b7148f6c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc @@ -160,7 +160,7 @@ static void _call_f_menu_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QSize QToolButton::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -326,7 +326,7 @@ static void _call_f_showMenu_0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QToolButton::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -460,7 +460,7 @@ static gsi::Methods methods_QToolButton () { methods += new qt_gsi::GenericMethod (":autoRaise", "@brief Method bool QToolButton::autoRaise()\n", true, &_init_f_autoRaise_c0, &_call_f_autoRaise_c0); methods += new qt_gsi::GenericMethod (":defaultAction", "@brief Method QAction *QToolButton::defaultAction()\n", true, &_init_f_defaultAction_c0, &_call_f_defaultAction_c0); methods += new qt_gsi::GenericMethod (":menu", "@brief Method QMenu *QToolButton::menu()\n", true, &_init_f_menu_c0, &_call_f_menu_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QToolButton::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":popupMode", "@brief Method QToolButton::ToolButtonPopupMode QToolButton::popupMode()\n", true, &_init_f_popupMode_c0, &_call_f_popupMode_c0); methods += new qt_gsi::GenericMethod ("setArrowType|arrowType=", "@brief Method void QToolButton::setArrowType(Qt::ArrowType type)\n", false, &_init_f_setArrowType_1690, &_call_f_setArrowType_1690); methods += new qt_gsi::GenericMethod ("setAutoRaise|autoRaise=", "@brief Method void QToolButton::setAutoRaise(bool enable)\n", false, &_init_f_setAutoRaise_864, &_call_f_setAutoRaise_864); @@ -469,7 +469,7 @@ static gsi::Methods methods_QToolButton () { methods += new qt_gsi::GenericMethod ("setPopupMode|popupMode=", "@brief Method void QToolButton::setPopupMode(QToolButton::ToolButtonPopupMode mode)\n", false, &_init_f_setPopupMode_3654, &_call_f_setPopupMode_3654); methods += new qt_gsi::GenericMethod ("setToolButtonStyle|toolButtonStyle=", "@brief Method void QToolButton::setToolButtonStyle(Qt::ToolButtonStyle style)\n", false, &_init_f_setToolButtonStyle_2328, &_call_f_setToolButtonStyle_2328); methods += new qt_gsi::GenericMethod ("showMenu", "@brief Method void QToolButton::showMenu()\n", false, &_init_f_showMenu_0, &_call_f_showMenu_0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QToolButton::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":toolButtonStyle", "@brief Method Qt::ToolButtonStyle QToolButton::toolButtonStyle()\n", true, &_init_f_toolButtonStyle_c0, &_call_f_toolButtonStyle_c0); methods += gsi::qt_signal ("clicked(bool)", "clicked", gsi::arg("checked"), "@brief Signal declaration for QToolButton::clicked(bool checked)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QToolButton::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc index 38e83a3bd..77fcb5cb0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc @@ -228,7 +228,7 @@ static void _call_f_columnWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QModelIndex &, const QModelIndex &) +// void QTreeView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) static void _init_f_dataChanged_4682 (qt_gsi::GenericMethod *decl) @@ -251,7 +251,7 @@ static void _call_f_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () +// void QTreeView::doItemsLayout() static void _init_f_doItemsLayout_0 (qt_gsi::GenericMethod *decl) @@ -407,7 +407,7 @@ static void _call_f_indexAbove_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QPoint &) const +// QModelIndex QTreeView::indexAt(const QPoint &p) static void _init_f_indexAt_c1916 (qt_gsi::GenericMethod *decl) @@ -587,7 +587,7 @@ static void _call_f_itemsExpandable_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QString &) +// void QTreeView::keyboardSearch(const QString &search) static void _init_f_keyboardSearch_2025 (qt_gsi::GenericMethod *decl) @@ -607,7 +607,7 @@ static void _call_f_keyboardSearch_2025 (const qt_gsi::GenericMethod * /*decl*/, } -// () +// void QTreeView::reset() static void _init_f_reset_0 (qt_gsi::GenericMethod *decl) @@ -658,7 +658,7 @@ static void _call_f_rootIsDecorated_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &, QAbstractItemView::ScrollHint) +// void QTreeView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) static void _init_f_scrollTo_5576 (qt_gsi::GenericMethod *decl) @@ -681,7 +681,7 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QTreeView::selectAll() static void _init_f_selectAll_0 (qt_gsi::GenericMethod *decl) @@ -952,7 +952,7 @@ static void _call_f_setItemsExpandable_864 (const qt_gsi::GenericMethod * /*decl } -// (QAbstractItemModel *) +// void QTreeView::setModel(QAbstractItemModel *model) static void _init_f_setModel_2419 (qt_gsi::GenericMethod *decl) @@ -972,7 +972,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) +// void QTreeView::setRootIndex(const QModelIndex &index) static void _init_f_setRootIndex_2395 (qt_gsi::GenericMethod *decl) @@ -1038,7 +1038,7 @@ static void _call_f_setRowHidden_3810 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QItemSelectionModel *) +// void QTreeView::setSelectionModel(QItemSelectionModel *selectionModel) static void _init_f_setSelectionModel_2533 (qt_gsi::GenericMethod *decl) @@ -1196,7 +1196,7 @@ static void _call_f_uniformRowHeights_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (const QModelIndex &) const +// QRect QTreeView::visualRect(const QModelIndex &index) static void _init_f_visualRect_c2395 (qt_gsi::GenericMethod *decl) @@ -1337,8 +1337,8 @@ static gsi::Methods methods_QTreeView () { methods += new qt_gsi::GenericMethod ("columnAt", "@brief Method int QTreeView::columnAt(int x)\n", true, &_init_f_columnAt_c767, &_call_f_columnAt_c767); methods += new qt_gsi::GenericMethod ("columnViewportPosition", "@brief Method int QTreeView::columnViewportPosition(int column)\n", true, &_init_f_columnViewportPosition_c767, &_call_f_columnViewportPosition_c767); methods += new qt_gsi::GenericMethod ("columnWidth", "@brief Method int QTreeView::columnWidth(int column)\n", true, &_init_f_columnWidth_c767, &_call_f_columnWidth_c767); - methods += new qt_gsi::GenericMethod ("dataChanged", "@brief Method (const QModelIndex &, const QModelIndex &)\nThis is a reimplementation of QAbstractItemView::dataChanged", false, &_init_f_dataChanged_4682, &_call_f_dataChanged_4682); - methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); + methods += new qt_gsi::GenericMethod ("dataChanged", "@brief Method void QTreeView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)\nThis is a reimplementation of QAbstractItemView::dataChanged", false, &_init_f_dataChanged_4682, &_call_f_dataChanged_4682); + methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method void QTreeView::doItemsLayout()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); methods += new qt_gsi::GenericMethod ("expand", "@brief Method void QTreeView::expand(const QModelIndex &index)\n", false, &_init_f_expand_2395, &_call_f_expand_2395); methods += new qt_gsi::GenericMethod ("expandAll", "@brief Method void QTreeView::expandAll()\n", false, &_init_f_expandAll_0, &_call_f_expandAll_0); methods += new qt_gsi::GenericMethod ("expandToDepth", "@brief Method void QTreeView::expandToDepth(int depth)\n", false, &_init_f_expandToDepth_767, &_call_f_expandToDepth_767); @@ -1347,7 +1347,7 @@ static gsi::Methods methods_QTreeView () { methods += new qt_gsi::GenericMethod ("hideColumn", "@brief Method void QTreeView::hideColumn(int column)\n", false, &_init_f_hideColumn_767, &_call_f_hideColumn_767); methods += new qt_gsi::GenericMethod (":indentation", "@brief Method int QTreeView::indentation()\n", true, &_init_f_indentation_c0, &_call_f_indentation_c0); methods += new qt_gsi::GenericMethod ("indexAbove", "@brief Method QModelIndex QTreeView::indexAbove(const QModelIndex &index)\n", true, &_init_f_indexAbove_c2395, &_call_f_indexAbove_c2395); - methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method (const QPoint &) const\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); + methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method QModelIndex QTreeView::indexAt(const QPoint &p)\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); methods += new qt_gsi::GenericMethod ("indexBelow", "@brief Method QModelIndex QTreeView::indexBelow(const QModelIndex &index)\n", true, &_init_f_indexBelow_c2395, &_call_f_indexBelow_c2395); methods += new qt_gsi::GenericMethod ("isAnimated?|:animated", "@brief Method bool QTreeView::isAnimated()\n", true, &_init_f_isAnimated_c0, &_call_f_isAnimated_c0); methods += new qt_gsi::GenericMethod ("isColumnHidden?", "@brief Method bool QTreeView::isColumnHidden(int column)\n", true, &_init_f_isColumnHidden_c767, &_call_f_isColumnHidden_c767); @@ -1357,12 +1357,12 @@ static gsi::Methods methods_QTreeView () { methods += new qt_gsi::GenericMethod ("isRowHidden?", "@brief Method bool QTreeView::isRowHidden(int row, const QModelIndex &parent)\n", true, &_init_f_isRowHidden_c3054, &_call_f_isRowHidden_c3054); methods += new qt_gsi::GenericMethod ("isSortingEnabled?|:sortingEnabled", "@brief Method bool QTreeView::isSortingEnabled()\n", true, &_init_f_isSortingEnabled_c0, &_call_f_isSortingEnabled_c0); methods += new qt_gsi::GenericMethod (":itemsExpandable", "@brief Method bool QTreeView::itemsExpandable()\n", true, &_init_f_itemsExpandable_c0, &_call_f_itemsExpandable_c0); - methods += new qt_gsi::GenericMethod ("keyboardSearch", "@brief Method (const QString &)\nThis is a reimplementation of QAbstractItemView::keyboardSearch", false, &_init_f_keyboardSearch_2025, &_call_f_keyboardSearch_2025); - methods += new qt_gsi::GenericMethod ("reset", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); + methods += new qt_gsi::GenericMethod ("keyboardSearch", "@brief Method void QTreeView::keyboardSearch(const QString &search)\nThis is a reimplementation of QAbstractItemView::keyboardSearch", false, &_init_f_keyboardSearch_2025, &_call_f_keyboardSearch_2025); + methods += new qt_gsi::GenericMethod ("reset", "@brief Method void QTreeView::reset()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); methods += new qt_gsi::GenericMethod ("resizeColumnToContents", "@brief Method void QTreeView::resizeColumnToContents(int column)\n", false, &_init_f_resizeColumnToContents_767, &_call_f_resizeColumnToContents_767); methods += new qt_gsi::GenericMethod (":rootIsDecorated", "@brief Method bool QTreeView::rootIsDecorated()\n", true, &_init_f_rootIsDecorated_c0, &_call_f_rootIsDecorated_c0); - methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method (const QModelIndex &, QAbstractItemView::ScrollHint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); - methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::selectAll", false, &_init_f_selectAll_0, &_call_f_selectAll_0); + methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method void QTreeView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); + methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method void QTreeView::selectAll()\nThis is a reimplementation of QAbstractItemView::selectAll", false, &_init_f_selectAll_0, &_call_f_selectAll_0); methods += new qt_gsi::GenericMethod ("setAllColumnsShowFocus|allColumnsShowFocus=", "@brief Method void QTreeView::setAllColumnsShowFocus(bool enable)\n", false, &_init_f_setAllColumnsShowFocus_864, &_call_f_setAllColumnsShowFocus_864); methods += new qt_gsi::GenericMethod ("setAnimated|animated=", "@brief Method void QTreeView::setAnimated(bool enable)\n", false, &_init_f_setAnimated_864, &_call_f_setAnimated_864); methods += new qt_gsi::GenericMethod ("setAutoExpandDelay|autoExpandDelay=", "@brief Method void QTreeView::setAutoExpandDelay(int delay)\n", false, &_init_f_setAutoExpandDelay_767, &_call_f_setAutoExpandDelay_767); @@ -1375,11 +1375,11 @@ static gsi::Methods methods_QTreeView () { methods += new qt_gsi::GenericMethod ("setHeaderHidden|headerHidden=", "@brief Method void QTreeView::setHeaderHidden(bool hide)\n", false, &_init_f_setHeaderHidden_864, &_call_f_setHeaderHidden_864); methods += new qt_gsi::GenericMethod ("setIndentation|indentation=", "@brief Method void QTreeView::setIndentation(int i)\n", false, &_init_f_setIndentation_767, &_call_f_setIndentation_767); methods += new qt_gsi::GenericMethod ("setItemsExpandable|itemsExpandable=", "@brief Method void QTreeView::setItemsExpandable(bool enable)\n", false, &_init_f_setItemsExpandable_864, &_call_f_setItemsExpandable_864); - methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); - methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); + methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method void QTreeView::setModel(QAbstractItemModel *model)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); + methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method void QTreeView::setRootIndex(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); methods += new qt_gsi::GenericMethod ("setRootIsDecorated|rootIsDecorated=", "@brief Method void QTreeView::setRootIsDecorated(bool show)\n", false, &_init_f_setRootIsDecorated_864, &_call_f_setRootIsDecorated_864); methods += new qt_gsi::GenericMethod ("setRowHidden", "@brief Method void QTreeView::setRowHidden(int row, const QModelIndex &parent, bool hide)\n", false, &_init_f_setRowHidden_3810, &_call_f_setRowHidden_3810); - methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method (QItemSelectionModel *)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); + methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method void QTreeView::setSelectionModel(QItemSelectionModel *selectionModel)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method void QTreeView::setSortingEnabled(bool enable)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864); methods += new qt_gsi::GenericMethod ("setUniformRowHeights|uniformRowHeights=", "@brief Method void QTreeView::setUniformRowHeights(bool uniform)\n", false, &_init_f_setUniformRowHeights_864, &_call_f_setUniformRowHeights_864); methods += new qt_gsi::GenericMethod ("setWordWrap|wordWrap=", "@brief Method void QTreeView::setWordWrap(bool on)\n", false, &_init_f_setWordWrap_864, &_call_f_setWordWrap_864); @@ -1387,7 +1387,7 @@ static gsi::Methods methods_QTreeView () { methods += new qt_gsi::GenericMethod ("sortByColumn", "@brief Method void QTreeView::sortByColumn(int column, Qt::SortOrder order)\n", false, &_init_f_sortByColumn_2340, &_call_f_sortByColumn_2340); methods += new qt_gsi::GenericMethod ("sortByColumn", "@brief Method void QTreeView::sortByColumn(int column)\n", false, &_init_f_sortByColumn_767, &_call_f_sortByColumn_767); methods += new qt_gsi::GenericMethod (":uniformRowHeights", "@brief Method bool QTreeView::uniformRowHeights()\n", true, &_init_f_uniformRowHeights_c0, &_call_f_uniformRowHeights_c0); - methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); + methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method QRect QTreeView::visualRect(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); methods += new qt_gsi::GenericMethod (":wordWrap", "@brief Method bool QTreeView::wordWrap()\n", true, &_init_f_wordWrap_c0, &_call_f_wordWrap_c0); methods += gsi::qt_signal ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QTreeView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("clicked(const QModelIndex &)", "clicked", gsi::arg("index"), "@brief Signal declaration for QTreeView::clicked(const QModelIndex &index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc index 20d1e21df..4ba0a8741 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc @@ -165,7 +165,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QTreeWidgetItem *, int) +// void QTreeWidget::closePersistentEditor(QTreeWidgetItem *item, int column) static void _init_f_closePersistentEditor_2773 (qt_gsi::GenericMethod *decl) @@ -513,7 +513,7 @@ static void _call_f_isItemSelected_c2809 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// bool QTreeWidget::isSortingEnabled() static void _init_f_isSortingEnabled_c0 (qt_gsi::GenericMethod *decl) @@ -629,7 +629,7 @@ static void _call_f_itemWidget_c2773 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (QTreeWidgetItem *, int) +// void QTreeWidget::openPersistentEditor(QTreeWidgetItem *item, int column) static void _init_f_openPersistentEditor_2773 (qt_gsi::GenericMethod *decl) @@ -980,7 +980,7 @@ static void _call_f_setItemWidget_3980 (const qt_gsi::GenericMethod * /*decl*/, } -// (QItemSelectionModel *) +// void QTreeWidget::setSelectionModel(QItemSelectionModel *selectionModel) static void _init_f_setSelectionModel_2533 (qt_gsi::GenericMethod *decl) @@ -1000,7 +1000,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl } -// (bool) +// void QTreeWidget::setSortingEnabled(bool enable) static void _init_f_setSortingEnabled_864 (qt_gsi::GenericMethod *decl) @@ -1233,7 +1233,7 @@ static gsi::Methods methods_QTreeWidget () { methods += new qt_gsi::GenericMethod ("addTopLevelItem", "@brief Method void QTreeWidget::addTopLevelItem(QTreeWidgetItem *item)\n", false, &_init_f_addTopLevelItem_2114, &_call_f_addTopLevelItem_2114); methods += new qt_gsi::GenericMethod ("addTopLevelItems", "@brief Method void QTreeWidget::addTopLevelItems(const QList &items)\n", false, &_init_f_addTopLevelItems_3462, &_call_f_addTopLevelItems_3462); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QTreeWidget::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method (QTreeWidgetItem *, int)\n", false, &_init_f_closePersistentEditor_2773, &_call_f_closePersistentEditor_2773); + methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method void QTreeWidget::closePersistentEditor(QTreeWidgetItem *item, int column)\n", false, &_init_f_closePersistentEditor_2773, &_call_f_closePersistentEditor_2773); methods += new qt_gsi::GenericMethod ("collapseItem", "@brief Method void QTreeWidget::collapseItem(const QTreeWidgetItem *item)\n", false, &_init_f_collapseItem_2809, &_call_f_collapseItem_2809); methods += new qt_gsi::GenericMethod (":columnCount", "@brief Method int QTreeWidget::columnCount()\n", true, &_init_f_columnCount_c0, &_call_f_columnCount_c0); methods += new qt_gsi::GenericMethod ("currentColumn", "@brief Method int QTreeWidget::currentColumn()\n", true, &_init_f_currentColumn_c0, &_call_f_currentColumn_c0); @@ -1251,13 +1251,13 @@ static gsi::Methods methods_QTreeWidget () { methods += new qt_gsi::GenericMethod ("isItemExpanded?", "@brief Method bool QTreeWidget::isItemExpanded(const QTreeWidgetItem *item)\n", true, &_init_f_isItemExpanded_c2809, &_call_f_isItemExpanded_c2809); methods += new qt_gsi::GenericMethod ("isItemHidden?", "@brief Method bool QTreeWidget::isItemHidden(const QTreeWidgetItem *item)\n", true, &_init_f_isItemHidden_c2809, &_call_f_isItemHidden_c2809); methods += new qt_gsi::GenericMethod ("isItemSelected?", "@brief Method bool QTreeWidget::isItemSelected(const QTreeWidgetItem *item)\n", true, &_init_f_isItemSelected_c2809, &_call_f_isItemSelected_c2809); - methods += new qt_gsi::GenericMethod ("isSortingEnabled?|:sortingEnabled", "@brief Method () const\n", true, &_init_f_isSortingEnabled_c0, &_call_f_isSortingEnabled_c0); + methods += new qt_gsi::GenericMethod ("isSortingEnabled?|:sortingEnabled", "@brief Method bool QTreeWidget::isSortingEnabled()\n", true, &_init_f_isSortingEnabled_c0, &_call_f_isSortingEnabled_c0); methods += new qt_gsi::GenericMethod ("itemAbove", "@brief Method QTreeWidgetItem *QTreeWidget::itemAbove(const QTreeWidgetItem *item)\n", true, &_init_f_itemAbove_c2809, &_call_f_itemAbove_c2809); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QTreeWidgetItem *QTreeWidget::itemAt(const QPoint &p)\n", true, &_init_f_itemAt_c1916, &_call_f_itemAt_c1916); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QTreeWidgetItem *QTreeWidget::itemAt(int x, int y)\n", true, &_init_f_itemAt_c1426, &_call_f_itemAt_c1426); methods += new qt_gsi::GenericMethod ("itemBelow", "@brief Method QTreeWidgetItem *QTreeWidget::itemBelow(const QTreeWidgetItem *item)\n", true, &_init_f_itemBelow_c2809, &_call_f_itemBelow_c2809); methods += new qt_gsi::GenericMethod ("itemWidget", "@brief Method QWidget *QTreeWidget::itemWidget(QTreeWidgetItem *item, int column)\n", true, &_init_f_itemWidget_c2773, &_call_f_itemWidget_c2773); - methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method (QTreeWidgetItem *, int)\n", false, &_init_f_openPersistentEditor_2773, &_call_f_openPersistentEditor_2773); + methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method void QTreeWidget::openPersistentEditor(QTreeWidgetItem *item, int column)\n", false, &_init_f_openPersistentEditor_2773, &_call_f_openPersistentEditor_2773); methods += new qt_gsi::GenericMethod ("removeItemWidget", "@brief Method void QTreeWidget::removeItemWidget(QTreeWidgetItem *item, int column)\n", false, &_init_f_removeItemWidget_2773, &_call_f_removeItemWidget_2773); methods += new qt_gsi::GenericMethod ("scrollToItem", "@brief Method void QTreeWidget::scrollToItem(const QTreeWidgetItem *item, QAbstractItemView::ScrollHint hint)\n", false, &_init_f_scrollToItem_5990, &_call_f_scrollToItem_5990); methods += new qt_gsi::GenericMethod ("selectedItems", "@brief Method QList QTreeWidget::selectedItems()\n", true, &_init_f_selectedItems_c0, &_call_f_selectedItems_c0); @@ -1273,8 +1273,8 @@ static gsi::Methods methods_QTreeWidget () { methods += new qt_gsi::GenericMethod ("setItemHidden", "@brief Method void QTreeWidget::setItemHidden(const QTreeWidgetItem *item, bool hide)\n", false, &_init_f_setItemHidden_3565, &_call_f_setItemHidden_3565); methods += new qt_gsi::GenericMethod ("setItemSelected", "@brief Method void QTreeWidget::setItemSelected(const QTreeWidgetItem *item, bool select)\n", false, &_init_f_setItemSelected_3565, &_call_f_setItemSelected_3565); methods += new qt_gsi::GenericMethod ("setItemWidget", "@brief Method void QTreeWidget::setItemWidget(QTreeWidgetItem *item, int column, QWidget *widget)\n", false, &_init_f_setItemWidget_3980, &_call_f_setItemWidget_3980); - methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method (QItemSelectionModel *)\nThis is a reimplementation of QTreeView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); - methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method (bool)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864); + methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method void QTreeWidget::setSelectionModel(QItemSelectionModel *selectionModel)\nThis is a reimplementation of QTreeView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); + methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method void QTreeWidget::setSortingEnabled(bool enable)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864); methods += new qt_gsi::GenericMethod ("sortColumn", "@brief Method int QTreeWidget::sortColumn()\n", true, &_init_f_sortColumn_c0, &_call_f_sortColumn_c0); methods += new qt_gsi::GenericMethod ("sortItems", "@brief Method void QTreeWidget::sortItems(int column, Qt::SortOrder order)\n", false, &_init_f_sortItems_2340, &_call_f_sortItems_2340); methods += new qt_gsi::GenericMethod ("takeTopLevelItem", "@brief Method QTreeWidgetItem *QTreeWidget::takeTopLevelItem(int index)\n", false, &_init_f_takeTopLevelItem_767, &_call_f_takeTopLevelItem_767); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc index 2d78e6c87..fdcfedbf1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc @@ -834,7 +834,7 @@ static void _call_f_hasMouseTracking_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QWidget::height() static void _init_f_height_c0 (qt_gsi::GenericMethod *decl) @@ -1690,7 +1690,7 @@ static void _call_f_overrideWindowState_2590 (const qt_gsi::GenericMethod * /*de } -// () const +// QPaintEngine *QWidget::paintEngine() static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl) @@ -3066,7 +3066,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QWidget *) +// void QWidget::setParent(QWidget *parent) static void _init_f_setParent_1315 (qt_gsi::GenericMethod *decl) @@ -3086,7 +3086,7 @@ static void _call_f_setParent_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *, QFlags) +// void QWidget::setParent(QWidget *parent, QFlags f) static void _init_f_setParent_3702 (qt_gsi::GenericMethod *decl) @@ -4084,7 +4084,7 @@ static void _call_f_whatsThis_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// int QWidget::width() static void _init_f_width_c0 (qt_gsi::GenericMethod *decl) @@ -4571,7 +4571,7 @@ static gsi::Methods methods_QWidget () { methods += new qt_gsi::GenericMethod ("graphicsProxyWidget", "@brief Method QGraphicsProxyWidget *QWidget::graphicsProxyWidget()\n", true, &_init_f_graphicsProxyWidget_c0, &_call_f_graphicsProxyWidget_c0); methods += new qt_gsi::GenericMethod ("hasFocus|:focus", "@brief Method bool QWidget::hasFocus()\n", true, &_init_f_hasFocus_c0, &_call_f_hasFocus_c0); methods += new qt_gsi::GenericMethod ("hasMouseTracking|:mouseTracking", "@brief Method bool QWidget::hasMouseTracking()\n", true, &_init_f_hasMouseTracking_c0, &_call_f_hasMouseTracking_c0); - methods += new qt_gsi::GenericMethod (":height", "@brief Method () const\n", true, &_init_f_height_c0, &_call_f_height_c0); + methods += new qt_gsi::GenericMethod (":height", "@brief Method int QWidget::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QWidget::heightForWidth(int)\n", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod ("hide", "@brief Method void QWidget::hide()\n", false, &_init_f_hide_0, &_call_f_hide_0); methods += new qt_gsi::GenericMethod (":inputContext", "@brief Method QInputContext *QWidget::inputContext()\n", false, &_init_f_inputContext_0, &_call_f_inputContext_0); @@ -4622,7 +4622,7 @@ static gsi::Methods methods_QWidget () { methods += new qt_gsi::GenericMethod (":normalGeometry", "@brief Method QRect QWidget::normalGeometry()\n", true, &_init_f_normalGeometry_c0, &_call_f_normalGeometry_c0); methods += new qt_gsi::GenericMethod ("overrideWindowFlags", "@brief Method void QWidget::overrideWindowFlags(QFlags type)\n", false, &_init_f_overrideWindowFlags_2495, &_call_f_overrideWindowFlags_2495); methods += new qt_gsi::GenericMethod ("overrideWindowState", "@brief Method void QWidget::overrideWindowState(QFlags state)\n", false, &_init_f_overrideWindowState_2590, &_call_f_overrideWindowState_2590); - methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); + methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method QPaintEngine *QWidget::paintEngine()\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); methods += new qt_gsi::GenericMethod (":palette", "@brief Method const QPalette &QWidget::palette()\n", true, &_init_f_palette_c0, &_call_f_palette_c0); methods += new qt_gsi::GenericMethod ("parentWidget", "@brief Method QWidget *QWidget::parentWidget()\n", true, &_init_f_parentWidget_c0, &_call_f_parentWidget_c0); methods += new qt_gsi::GenericMethod (":pos", "@brief Method QPoint QWidget::pos()\n", true, &_init_f_pos_c0, &_call_f_pos_c0); @@ -4690,8 +4690,8 @@ static gsi::Methods methods_QWidget () { methods += new qt_gsi::GenericMethod ("setMinimumWidth|minimumWidth=", "@brief Method void QWidget::setMinimumWidth(int minw)\n", false, &_init_f_setMinimumWidth_767, &_call_f_setMinimumWidth_767); methods += new qt_gsi::GenericMethod ("setMouseTracking|mouseTracking=", "@brief Method void QWidget::setMouseTracking(bool enable)\n", false, &_init_f_setMouseTracking_864, &_call_f_setMouseTracking_864); methods += new qt_gsi::GenericMethod ("setPalette|palette=", "@brief Method void QWidget::setPalette(const QPalette &)\n", false, &_init_f_setPalette_2113, &_call_f_setPalette_2113); - methods += new qt_gsi::GenericMethod ("setParent", "@brief Method (QWidget *)\n", false, &_init_f_setParent_1315, &_call_f_setParent_1315); - methods += new qt_gsi::GenericMethod ("setParent", "@brief Method (QWidget *, QFlags)\n", false, &_init_f_setParent_3702, &_call_f_setParent_3702); + methods += new qt_gsi::GenericMethod ("setParent", "@brief Method void QWidget::setParent(QWidget *parent)\n", false, &_init_f_setParent_1315, &_call_f_setParent_1315); + methods += new qt_gsi::GenericMethod ("setParent", "@brief Method void QWidget::setParent(QWidget *parent, QFlags f)\n", false, &_init_f_setParent_3702, &_call_f_setParent_3702); methods += new qt_gsi::GenericMethod ("setShortcutAutoRepeat", "@brief Method void QWidget::setShortcutAutoRepeat(int id, bool enable)\n", false, &_init_f_setShortcutAutoRepeat_1523, &_call_f_setShortcutAutoRepeat_1523); methods += new qt_gsi::GenericMethod ("setShortcutEnabled", "@brief Method void QWidget::setShortcutEnabled(int id, bool enable)\n", false, &_init_f_setShortcutEnabled_1523, &_call_f_setShortcutEnabled_1523); methods += new qt_gsi::GenericMethod ("setShown", "@brief Method void QWidget::setShown(bool shown)\n", false, &_init_f_setShown_864, &_call_f_setShown_864); @@ -4745,7 +4745,7 @@ static gsi::Methods methods_QWidget () { methods += new qt_gsi::GenericMethod (":updatesEnabled", "@brief Method bool QWidget::updatesEnabled()\n", true, &_init_f_updatesEnabled_c0, &_call_f_updatesEnabled_c0); methods += new qt_gsi::GenericMethod ("visibleRegion", "@brief Method QRegion QWidget::visibleRegion()\n", true, &_init_f_visibleRegion_c0, &_call_f_visibleRegion_c0); methods += new qt_gsi::GenericMethod (":whatsThis", "@brief Method QString QWidget::whatsThis()\n", true, &_init_f_whatsThis_c0, &_call_f_whatsThis_c0); - methods += new qt_gsi::GenericMethod (":width", "@brief Method () const\n", true, &_init_f_width_c0, &_call_f_width_c0); + methods += new qt_gsi::GenericMethod (":width", "@brief Method int QWidget::width()\n", true, &_init_f_width_c0, &_call_f_width_c0); methods += new qt_gsi::GenericMethod ("winId", "@brief Method WId QWidget::winId()\n", true, &_init_f_winId_c0, &_call_f_winId_c0); methods += new qt_gsi::GenericMethod ("window", "@brief Method QWidget *QWidget::window()\n", true, &_init_f_window_c0, &_call_f_window_c0); methods += new qt_gsi::GenericMethod (":windowFilePath", "@brief Method QString QWidget::windowFilePath()\n", true, &_init_f_windowFilePath_c0, &_call_f_windowFilePath_c0); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc index 312eb7bc3..9ba3ac1fd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc @@ -41,7 +41,7 @@ // ----------------------------------------------------------------------- // class QWidgetItem -// () const +// QFlags QWidgetItem::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -56,7 +56,7 @@ static void _call_f_expandingDirections_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// QRect QWidgetItem::geometry() static void _init_f_geometry_c0 (qt_gsi::GenericMethod *decl) @@ -71,7 +71,7 @@ static void _call_f_geometry_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// bool QWidgetItem::hasHeightForWidth() static void _init_f_hasHeightForWidth_c0 (qt_gsi::GenericMethod *decl) @@ -86,7 +86,7 @@ static void _call_f_hasHeightForWidth_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QWidgetItem::heightForWidth(int) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -105,7 +105,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// bool QWidgetItem::isEmpty() static void _init_f_isEmpty_c0 (qt_gsi::GenericMethod *decl) @@ -120,7 +120,7 @@ static void _call_f_isEmpty_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QWidgetItem::maximumSize() static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl) @@ -135,7 +135,7 @@ static void _call_f_maximumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QWidgetItem::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -150,7 +150,7 @@ static void _call_f_minimumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QRect &) +// void QWidgetItem::setGeometry(const QRect &) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -170,7 +170,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QWidgetItem::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -185,7 +185,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// QWidget *QWidgetItem::widget() static void _init_f_widget_0 (qt_gsi::GenericMethod *decl) @@ -205,16 +205,16 @@ namespace gsi static gsi::Methods methods_QWidgetItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); - methods += new qt_gsi::GenericMethod (":geometry", "@brief Method () const\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); - methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method () const\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); - methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method () const\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); - methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod ("widget", "@brief Method ()\nThis is a reimplementation of QLayoutItem::widget", false, &_init_f_widget_0, &_call_f_widget_0); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QWidgetItem::expandingDirections()\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod (":geometry", "@brief Method QRect QWidgetItem::geometry()\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); + methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QWidgetItem::hasHeightForWidth()\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QWidgetItem::heightForWidth(int)\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method bool QWidgetItem::isEmpty()\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); + methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method QSize QWidgetItem::maximumSize()\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QWidgetItem::minimumSize()\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QWidgetItem::setGeometry(const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QWidgetItem::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("widget", "@brief Method QWidget *QWidgetItem::widget()\nThis is a reimplementation of QLayoutItem::widget", false, &_init_f_widget_0, &_call_f_widget_0); return methods; } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc index bb0d3ca17..43ef0543e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc @@ -68,7 +68,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const +// void QWindowsStyle::drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QPainter *p, const QWidget *w) static void _init_f_drawComplexControl_c9027 (qt_gsi::GenericMethod *decl) @@ -97,7 +97,7 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de } -// (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QWindowsStyle::drawControl(QStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w) static void _init_f_drawControl_c8285 (qt_gsi::GenericMethod *decl) @@ -126,7 +126,7 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QWindowsStyle::drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w) static void _init_f_drawPrimitive_c8501 (qt_gsi::GenericMethod *decl) @@ -155,7 +155,7 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, } -// (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const +// int QWindowsStyle::pixelMetric(QStyle::PixelMetric pm, const QStyleOption *option, const QWidget *widget) static void _init_f_pixelMetric_c6642 (qt_gsi::GenericMethod *decl) @@ -180,7 +180,7 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QApplication *) +// void QWindowsStyle::polish(QApplication *) static void _init_f_polish_1843 (qt_gsi::GenericMethod *decl) @@ -200,7 +200,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QWidget *) +// void QWindowsStyle::polish(QWidget *) static void _init_f_polish_1315 (qt_gsi::GenericMethod *decl) @@ -220,7 +220,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QPalette &) +// void QWindowsStyle::polish(QPalette &) static void _init_f_polish_1418 (qt_gsi::GenericMethod *decl) @@ -240,7 +240,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const +// QSize QWindowsStyle::sizeFromContents(QStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *widget) static void _init_f_sizeFromContents_c8477 (qt_gsi::GenericMethod *decl) @@ -268,7 +268,7 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl } -// (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const +// QPixmap QWindowsStyle::standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget) static void _init_f_standardPixmap_c6956 (qt_gsi::GenericMethod *decl) @@ -293,7 +293,7 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const +// int QWindowsStyle::styleHint(QStyle::StyleHint hint, const QStyleOption *opt, const QWidget *widget, QStyleHintReturn *returnData) static void _init_f_styleHint_c8615 (qt_gsi::GenericMethod *decl) @@ -321,7 +321,7 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QStyle::SubElement, const QStyleOption *, const QWidget *) const +// QRect QWindowsStyle::subElementRect(QStyle::SubElement r, const QStyleOption *opt, const QWidget *widget) static void _init_f_subElementRect_c6528 (qt_gsi::GenericMethod *decl) @@ -346,7 +346,7 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ } -// (QApplication *) +// void QWindowsStyle::unpolish(QApplication *) static void _init_f_unpolish_1843 (qt_gsi::GenericMethod *decl) @@ -366,7 +366,7 @@ static void _call_f_unpolish_1843 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *) +// void QWindowsStyle::unpolish(QWidget *) static void _init_f_unpolish_1315 (qt_gsi::GenericMethod *decl) @@ -486,19 +486,19 @@ namespace gsi static gsi::Methods methods_QWindowsStyle () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); - methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); - methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); - methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QApplication *)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QWidget *)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QPalette &)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); - methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const\nThis is a reimplementation of QCommonStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); - methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); - methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const\nThis is a reimplementation of QCommonStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); - methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method (QStyle::SubElement, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QCommonStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QApplication *)\nThis is a reimplementation of QCommonStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QWidget *)\nThis is a reimplementation of QCommonStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); + methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method void QWindowsStyle::drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QCommonStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); + methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method void QWindowsStyle::drawControl(QStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QCommonStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); + methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method void QWindowsStyle::drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QCommonStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); + methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method int QWindowsStyle::pixelMetric(QStyle::PixelMetric pm, const QStyleOption *option, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QWindowsStyle::polish(QApplication *)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QWindowsStyle::polish(QWidget *)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QWindowsStyle::polish(QPalette &)\nThis is a reimplementation of QCommonStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); + methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method QSize QWindowsStyle::sizeFromContents(QStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); + methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method QPixmap QWindowsStyle::standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); + methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method int QWindowsStyle::styleHint(QStyle::StyleHint hint, const QStyleOption *opt, const QWidget *widget, QStyleHintReturn *returnData)\nThis is a reimplementation of QCommonStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); + methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method QRect QWindowsStyle::subElementRect(QStyle::SubElement r, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QCommonStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QWindowsStyle::unpolish(QApplication *)\nThis is a reimplementation of QCommonStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QWindowsStyle::unpolish(QWidget *)\nThis is a reimplementation of QCommonStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QWindowsStyle::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QWindowsStyle::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QWindowsStyle::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc index cb033def1..5fc04f46b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc @@ -640,7 +640,7 @@ static void _call_f_setTitleFormat_1787 (const qt_gsi::GenericMethod * /*decl*/, } -// (bool) +// void QWizard::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -680,7 +680,7 @@ static void _call_f_setWizardStyle_2412 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QWizard::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -932,9 +932,9 @@ static gsi::Methods methods_QWizard () { methods += new qt_gsi::GenericMethod ("setStartId|startId=", "@brief Method void QWizard::setStartId(int id)\n", false, &_init_f_setStartId_767, &_call_f_setStartId_767); methods += new qt_gsi::GenericMethod ("setSubTitleFormat|subTitleFormat=", "@brief Method void QWizard::setSubTitleFormat(Qt::TextFormat format)\n", false, &_init_f_setSubTitleFormat_1787, &_call_f_setSubTitleFormat_1787); methods += new qt_gsi::GenericMethod ("setTitleFormat|titleFormat=", "@brief Method void QWizard::setTitleFormat(Qt::TextFormat format)\n", false, &_init_f_setTitleFormat_1787, &_call_f_setTitleFormat_1787); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QWizard::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("setWizardStyle|wizardStyle=", "@brief Method void QWizard::setWizardStyle(QWizard::WizardStyle style)\n", false, &_init_f_setWizardStyle_2412, &_call_f_setWizardStyle_2412); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QWizard::sizeHint()\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":startId", "@brief Method int QWizard::startId()\n", true, &_init_f_startId_c0, &_call_f_startId_c0); methods += new qt_gsi::GenericMethod (":subTitleFormat", "@brief Method Qt::TextFormat QWizard::subTitleFormat()\n", true, &_init_f_subTitleFormat_c0, &_call_f_subTitleFormat_c0); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QWizard::testOption(QWizard::WizardOption option)\n", true, &_init_f_testOption_c2516, &_call_f_testOption_c2516); diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractSocket.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractSocket.cc index 40244dc9d..6d7406fdf 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractSocket.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractSocket.cc @@ -93,7 +93,7 @@ static void _call_f_abort_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// bool QAbstractSocket::atEnd() static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) @@ -108,7 +108,7 @@ static void _call_f_atEnd_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// qint64 QAbstractSocket::bytesAvailable() static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) @@ -123,7 +123,7 @@ static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// qint64 QAbstractSocket::bytesToWrite() static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) @@ -138,7 +138,7 @@ static void _call_f_bytesToWrite_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// bool QAbstractSocket::canReadLine() static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) @@ -153,7 +153,7 @@ static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QAbstractSocket::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -267,7 +267,7 @@ static void _call_f_flush_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// bool QAbstractSocket::isSequential() static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) @@ -554,7 +554,7 @@ static void _call_f_state_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (int) +// bool QAbstractSocket::waitForBytesWritten(int msecs) static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) @@ -611,7 +611,7 @@ static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*dec } -// (int) +// bool QAbstractSocket::waitForReadyRead(int msecs) static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) @@ -733,17 +733,17 @@ static gsi::Methods methods_QAbstractSocket () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAbstractSocket::QAbstractSocket(QAbstractSocket::SocketType socketType, QObject *parent)\nThis method creates an object of class QAbstractSocket.", &_init_ctor_QAbstractSocket_4299, &_call_ctor_QAbstractSocket_4299); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QAbstractSocket::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method bool QAbstractSocket::atEnd()\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); + methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method qint64 QAbstractSocket::bytesAvailable()\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); + methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method qint64 QAbstractSocket::bytesToWrite()\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); + methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method bool QAbstractSocket::canReadLine()\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QAbstractSocket::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method void QAbstractSocket::connectToHost(const QString &hostName, quint16 port, QFlags mode)\n", false, &_init_f_connectToHost_6151, &_call_f_connectToHost_6151); methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method void QAbstractSocket::connectToHost(const QHostAddress &address, quint16 port, QFlags mode)\n", false, &_init_f_connectToHost_6644, &_call_f_connectToHost_6644); methods += new qt_gsi::GenericMethod ("disconnectFromHost", "@brief Method void QAbstractSocket::disconnectFromHost()\n", false, &_init_f_disconnectFromHost_0, &_call_f_disconnectFromHost_0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QAbstractSocket::SocketError QAbstractSocket::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("flush", "@brief Method bool QAbstractSocket::flush()\n", false, &_init_f_flush_0, &_call_f_flush_0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); + methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method bool QAbstractSocket::isSequential()\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QAbstractSocket::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod ("localAddress", "@brief Method QHostAddress QAbstractSocket::localAddress()\n", true, &_init_f_localAddress_c0, &_call_f_localAddress_c0); methods += new qt_gsi::GenericMethod ("localPort", "@brief Method quint16 QAbstractSocket::localPort()\n", true, &_init_f_localPort_c0, &_call_f_localPort_c0); @@ -760,10 +760,10 @@ static gsi::Methods methods_QAbstractSocket () { methods += new qt_gsi::GenericMethod ("socketOption", "@brief Method QVariant QAbstractSocket::socketOption(QAbstractSocket::SocketOption option)\n", false, &_init_f_socketOption_3320, &_call_f_socketOption_3320); methods += new qt_gsi::GenericMethod ("socketType", "@brief Method QAbstractSocket::SocketType QAbstractSocket::socketType()\n", true, &_init_f_socketType_c0, &_call_f_socketType_c0); methods += new qt_gsi::GenericMethod ("state", "@brief Method QAbstractSocket::SocketState QAbstractSocket::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); + methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method bool QAbstractSocket::waitForBytesWritten(int msecs)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method bool QAbstractSocket::waitForConnected(int msecs)\n", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method bool QAbstractSocket::waitForDisconnected(int msecs)\n", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); + methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method bool QAbstractSocket::waitForReadyRead(int msecs)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QAbstractSocket::aboutToClose()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QAbstractSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QAbstractSocket::connected()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalSocket.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalSocket.cc index f4bee6457..5caad6efb 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalSocket.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalSocket.cc @@ -87,7 +87,7 @@ static void _call_f_abort_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// qint64 QLocalSocket::bytesAvailable() static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) @@ -102,7 +102,7 @@ static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// qint64 QLocalSocket::bytesToWrite() static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_bytesToWrite_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// bool QLocalSocket::canReadLine() static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) @@ -132,7 +132,7 @@ static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QLocalSocket::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -232,7 +232,7 @@ static void _call_f_fullServerName_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// bool QLocalSocket::isSequential() static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) @@ -367,7 +367,7 @@ static void _call_f_state_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (int) +// bool QLocalSocket::waitForBytesWritten(int msecs) static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) @@ -424,7 +424,7 @@ static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*dec } -// (int) +// bool QLocalSocket::waitForReadyRead(int msecs) static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) @@ -546,16 +546,16 @@ static gsi::Methods methods_QLocalSocket () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QLocalSocket::QLocalSocket(QObject *parent)\nThis method creates an object of class QLocalSocket.", &_init_ctor_QLocalSocket_1302, &_call_ctor_QLocalSocket_1302); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QLocalSocket::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method qint64 QLocalSocket::bytesAvailable()\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); + methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method qint64 QLocalSocket::bytesToWrite()\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); + methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method bool QLocalSocket::canReadLine()\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QLocalSocket::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("connectToServer", "@brief Method void QLocalSocket::connectToServer(const QString &name, QFlags openMode)\n", false, &_init_f_connectToServer_5159, &_call_f_connectToServer_5159); methods += new qt_gsi::GenericMethod ("disconnectFromServer", "@brief Method void QLocalSocket::disconnectFromServer()\n", false, &_init_f_disconnectFromServer_0, &_call_f_disconnectFromServer_0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QLocalSocket::LocalSocketError QLocalSocket::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("flush", "@brief Method bool QLocalSocket::flush()\n", false, &_init_f_flush_0, &_call_f_flush_0); methods += new qt_gsi::GenericMethod ("fullServerName", "@brief Method QString QLocalSocket::fullServerName()\n", true, &_init_f_fullServerName_c0, &_call_f_fullServerName_c0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); + methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method bool QLocalSocket::isSequential()\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QLocalSocket::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod (":readBufferSize", "@brief Method qint64 QLocalSocket::readBufferSize()\n", true, &_init_f_readBufferSize_c0, &_call_f_readBufferSize_c0); methods += new qt_gsi::GenericMethod ("serverName", "@brief Method QString QLocalSocket::serverName()\n", true, &_init_f_serverName_c0, &_call_f_serverName_c0); @@ -563,10 +563,10 @@ static gsi::Methods methods_QLocalSocket () { methods += new qt_gsi::GenericMethod ("setSocketDescriptor", "@brief Method bool QLocalSocket::setSocketDescriptor(quintptr socketDescriptor, QLocalSocket::LocalSocketState socketState, QFlags openMode)\n", false, &_init_f_setSocketDescriptor_7727, &_call_f_setSocketDescriptor_7727); methods += new qt_gsi::GenericMethod ("socketDescriptor", "@brief Method quintptr QLocalSocket::socketDescriptor()\n", true, &_init_f_socketDescriptor_c0, &_call_f_socketDescriptor_c0); methods += new qt_gsi::GenericMethod ("state", "@brief Method QLocalSocket::LocalSocketState QLocalSocket::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); + methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method bool QLocalSocket::waitForBytesWritten(int msecs)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method bool QLocalSocket::waitForConnected(int msecs)\n", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method bool QLocalSocket::waitForDisconnected(int msecs)\n", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); + methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method bool QLocalSocket::waitForReadyRead(int msecs)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QLocalSocket::aboutToClose()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QLocalSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QLocalSocket::connected()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc index 2f15b6afc..8cdffc109 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc @@ -72,7 +72,7 @@ static void _call_f_cacheDirectory_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// qint64 QNetworkDiskCache::cacheSize() static void _init_f_cacheSize_c0 (qt_gsi::GenericMethod *decl) @@ -87,7 +87,7 @@ static void _call_f_cacheSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () +// void QNetworkDiskCache::clear() static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) @@ -103,7 +103,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QUrl &) +// QIODevice *QNetworkDiskCache::data(const QUrl &url) static void _init_f_data_1701 (qt_gsi::GenericMethod *decl) @@ -141,7 +141,7 @@ static void _call_f_fileMetaData_c2025 (const qt_gsi::GenericMethod * /*decl*/, } -// (QIODevice *) +// void QNetworkDiskCache::insert(QIODevice *device) static void _init_f_insert_1447 (qt_gsi::GenericMethod *decl) @@ -176,7 +176,7 @@ static void _call_f_maximumCacheSize_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QUrl &) +// QNetworkCacheMetaData QNetworkDiskCache::metaData(const QUrl &url) static void _init_f_metaData_1701 (qt_gsi::GenericMethod *decl) @@ -195,7 +195,7 @@ static void _call_f_metaData_1701 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QNetworkCacheMetaData &) +// QIODevice *QNetworkDiskCache::prepare(const QNetworkCacheMetaData &metaData) static void _init_f_prepare_3377 (qt_gsi::GenericMethod *decl) @@ -214,7 +214,7 @@ static void _call_f_prepare_3377 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QUrl &) +// bool QNetworkDiskCache::remove(const QUrl &url) static void _init_f_remove_1701 (qt_gsi::GenericMethod *decl) @@ -273,7 +273,7 @@ static void _call_f_setMaximumCacheSize_986 (const qt_gsi::GenericMethod * /*dec } -// (const QNetworkCacheMetaData &) +// void QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData &metaData) static void _init_f_updateMetaData_3377 (qt_gsi::GenericMethod *decl) @@ -394,18 +394,18 @@ static gsi::Methods methods_QNetworkDiskCache () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":cacheDirectory", "@brief Method QString QNetworkDiskCache::cacheDirectory()\n", true, &_init_f_cacheDirectory_c0, &_call_f_cacheDirectory_c0); - methods += new qt_gsi::GenericMethod ("cacheSize", "@brief Method () const\nThis is a reimplementation of QAbstractNetworkCache::cacheSize", true, &_init_f_cacheSize_c0, &_call_f_cacheSize_c0); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method ()\nThis is a reimplementation of QAbstractNetworkCache::clear", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QUrl &)\nThis is a reimplementation of QAbstractNetworkCache::data", false, &_init_f_data_1701, &_call_f_data_1701); + methods += new qt_gsi::GenericMethod ("cacheSize", "@brief Method qint64 QNetworkDiskCache::cacheSize()\nThis is a reimplementation of QAbstractNetworkCache::cacheSize", true, &_init_f_cacheSize_c0, &_call_f_cacheSize_c0); + methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QNetworkDiskCache::clear()\nThis is a reimplementation of QAbstractNetworkCache::clear", false, &_init_f_clear_0, &_call_f_clear_0); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QIODevice *QNetworkDiskCache::data(const QUrl &url)\nThis is a reimplementation of QAbstractNetworkCache::data", false, &_init_f_data_1701, &_call_f_data_1701); methods += new qt_gsi::GenericMethod ("fileMetaData", "@brief Method QNetworkCacheMetaData QNetworkDiskCache::fileMetaData(const QString &fileName)\n", true, &_init_f_fileMetaData_c2025, &_call_f_fileMetaData_c2025); - methods += new qt_gsi::GenericMethod ("insert", "@brief Method (QIODevice *)\nThis is a reimplementation of QAbstractNetworkCache::insert", false, &_init_f_insert_1447, &_call_f_insert_1447); + methods += new qt_gsi::GenericMethod ("insert", "@brief Method void QNetworkDiskCache::insert(QIODevice *device)\nThis is a reimplementation of QAbstractNetworkCache::insert", false, &_init_f_insert_1447, &_call_f_insert_1447); methods += new qt_gsi::GenericMethod (":maximumCacheSize", "@brief Method qint64 QNetworkDiskCache::maximumCacheSize()\n", true, &_init_f_maximumCacheSize_c0, &_call_f_maximumCacheSize_c0); - methods += new qt_gsi::GenericMethod ("metaData", "@brief Method (const QUrl &)\nThis is a reimplementation of QAbstractNetworkCache::metaData", false, &_init_f_metaData_1701, &_call_f_metaData_1701); - methods += new qt_gsi::GenericMethod ("prepare", "@brief Method (const QNetworkCacheMetaData &)\nThis is a reimplementation of QAbstractNetworkCache::prepare", false, &_init_f_prepare_3377, &_call_f_prepare_3377); - methods += new qt_gsi::GenericMethod ("remove", "@brief Method (const QUrl &)\nThis is a reimplementation of QAbstractNetworkCache::remove", false, &_init_f_remove_1701, &_call_f_remove_1701); + methods += new qt_gsi::GenericMethod ("metaData", "@brief Method QNetworkCacheMetaData QNetworkDiskCache::metaData(const QUrl &url)\nThis is a reimplementation of QAbstractNetworkCache::metaData", false, &_init_f_metaData_1701, &_call_f_metaData_1701); + methods += new qt_gsi::GenericMethod ("prepare", "@brief Method QIODevice *QNetworkDiskCache::prepare(const QNetworkCacheMetaData &metaData)\nThis is a reimplementation of QAbstractNetworkCache::prepare", false, &_init_f_prepare_3377, &_call_f_prepare_3377); + methods += new qt_gsi::GenericMethod ("remove", "@brief Method bool QNetworkDiskCache::remove(const QUrl &url)\nThis is a reimplementation of QAbstractNetworkCache::remove", false, &_init_f_remove_1701, &_call_f_remove_1701); methods += new qt_gsi::GenericMethod ("setCacheDirectory|cacheDirectory=", "@brief Method void QNetworkDiskCache::setCacheDirectory(const QString &cacheDir)\n", false, &_init_f_setCacheDirectory_2025, &_call_f_setCacheDirectory_2025); methods += new qt_gsi::GenericMethod ("setMaximumCacheSize|maximumCacheSize=", "@brief Method void QNetworkDiskCache::setMaximumCacheSize(qint64 size)\n", false, &_init_f_setMaximumCacheSize_986, &_call_f_setMaximumCacheSize_986); - methods += new qt_gsi::GenericMethod ("updateMetaData", "@brief Method (const QNetworkCacheMetaData &)\nThis is a reimplementation of QAbstractNetworkCache::updateMetaData", false, &_init_f_updateMetaData_3377, &_call_f_updateMetaData_3377); + methods += new qt_gsi::GenericMethod ("updateMetaData", "@brief Method void QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData &metaData)\nThis is a reimplementation of QAbstractNetworkCache::updateMetaData", false, &_init_f_updateMetaData_3377, &_call_f_updateMetaData_3377); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QNetworkDiskCache::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QNetworkDiskCache::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QNetworkDiskCache::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkReply.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkReply.cc index 308d88f2b..fbff77d92 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkReply.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkReply.cc @@ -92,7 +92,7 @@ static void _call_f_attribute_c3072 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () +// void QNetworkReply::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -227,7 +227,7 @@ static void _call_f_isRunning_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// bool QNetworkReply::isSequential() static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) @@ -509,7 +509,7 @@ static gsi::Methods methods_QNetworkReply () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QNetworkReply::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); methods += new qt_gsi::GenericMethod ("attribute", "@brief Method QVariant QNetworkReply::attribute(QNetworkRequest::Attribute code)\n", true, &_init_f_attribute_c3072, &_call_f_attribute_c3072); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QNetworkReply::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QNetworkReply::NetworkError QNetworkReply::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("hasRawHeader", "@brief Method bool QNetworkReply::hasRawHeader(const QByteArray &headerName)\n", true, &_init_f_hasRawHeader_c2309, &_call_f_hasRawHeader_c2309); methods += new qt_gsi::GenericMethod ("header", "@brief Method QVariant QNetworkReply::header(QNetworkRequest::KnownHeaders header)\n", true, &_init_f_header_c3349, &_call_f_header_c3349); @@ -517,7 +517,7 @@ static gsi::Methods methods_QNetworkReply () { methods += new qt_gsi::GenericMethod ("ignoreSslErrors", "@brief Method void QNetworkReply::ignoreSslErrors()\n", false, &_init_f_ignoreSslErrors_0, &_call_f_ignoreSslErrors_0); methods += new qt_gsi::GenericMethod ("isFinished?", "@brief Method bool QNetworkReply::isFinished()\n", true, &_init_f_isFinished_c0, &_call_f_isFinished_c0); methods += new qt_gsi::GenericMethod ("isRunning?", "@brief Method bool QNetworkReply::isRunning()\n", true, &_init_f_isRunning_c0, &_call_f_isRunning_c0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); + methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method bool QNetworkReply::isSequential()\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); methods += new qt_gsi::GenericMethod ("manager", "@brief Method QNetworkAccessManager *QNetworkReply::manager()\n", true, &_init_f_manager_c0, &_call_f_manager_c0); methods += new qt_gsi::GenericMethod ("operation", "@brief Method QNetworkAccessManager::Operation QNetworkReply::operation()\n", true, &_init_f_operation_c0, &_call_f_operation_c0); methods += new qt_gsi::GenericMethod ("rawHeader", "@brief Method QByteArray QNetworkReply::rawHeader(const QByteArray &headerName)\n", true, &_init_f_rawHeader_c2309, &_call_f_rawHeader_c2309); diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslSocket.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslSocket.cc index 16f4135bb..165028bb0 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslSocket.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslSocket.cc @@ -79,7 +79,7 @@ static void _call_ctor_QSslSocket_1302 (const qt_gsi::GenericStaticMethod * /*de } -// () +// void QSslSocket::abort() static void _init_f_abort_0 (qt_gsi::GenericMethod *decl) @@ -160,7 +160,7 @@ static void _call_f_addCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl } -// () const +// bool QSslSocket::atEnd() static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) @@ -175,7 +175,7 @@ static void _call_f_atEnd_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// qint64 QSslSocket::bytesAvailable() static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) @@ -190,7 +190,7 @@ static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// qint64 QSslSocket::bytesToWrite() static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) @@ -220,7 +220,7 @@ static void _call_f_caCertificates_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// bool QSslSocket::canReadLine() static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) @@ -250,7 +250,7 @@ static void _call_f_ciphers_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () +// void QSslSocket::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -351,7 +351,7 @@ static void _call_f_encryptedBytesToWrite_c0 (const qt_gsi::GenericMethod * /*de } -// () +// bool QSslSocket::flush() static void _init_f_flush_0 (qt_gsi::GenericMethod *decl) @@ -764,7 +764,7 @@ static void _call_f_setProtocol_2095 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (qint64) +// void QSslSocket::setReadBufferSize(qint64 size) static void _init_f_setReadBufferSize_986 (qt_gsi::GenericMethod *decl) @@ -784,7 +784,7 @@ static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl* } -// (int, QAbstractSocket::SocketState, QFlags) +// bool QSslSocket::setSocketDescriptor(int socketDescriptor, QAbstractSocket::SocketState state, QFlags openMode) static void _init_f_setSocketDescriptor_6993 (qt_gsi::GenericMethod *decl) @@ -809,7 +809,7 @@ static void _call_f_setSocketDescriptor_6993 (const qt_gsi::GenericMethod * /*de } -// (QAbstractSocket::SocketOption, const QVariant &) +// void QSslSocket::setSocketOption(QAbstractSocket::SocketOption option, const QVariant &value) static void _init_f_setSocketOption_5331 (qt_gsi::GenericMethod *decl) @@ -852,7 +852,7 @@ static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*de } -// (QAbstractSocket::SocketOption) +// QVariant QSslSocket::socketOption(QAbstractSocket::SocketOption option) static void _init_f_socketOption_3320 (qt_gsi::GenericMethod *decl) @@ -933,7 +933,7 @@ static void _call_f_startServerEncryption_0 (const qt_gsi::GenericMethod * /*dec } -// (int) +// bool QSslSocket::waitForBytesWritten(int msecs) static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) @@ -952,7 +952,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec } -// (int) +// bool QSslSocket::waitForConnected(int msecs) static void _init_f_waitForConnected_767 (qt_gsi::GenericMethod *decl) @@ -971,7 +971,7 @@ static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) +// bool QSslSocket::waitForDisconnected(int msecs) static void _init_f_waitForDisconnected_767 (qt_gsi::GenericMethod *decl) @@ -1009,7 +1009,7 @@ static void _call_f_waitForEncrypted_767 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) +// bool QSslSocket::waitForReadyRead(int msecs) static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) @@ -1310,22 +1310,22 @@ static gsi::Methods methods_QSslSocket () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslSocket::QSslSocket(QObject *parent)\nThis method creates an object of class QSslSocket.", &_init_ctor_QSslSocket_1302, &_call_ctor_QSslSocket_1302); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("abort", "@brief Method ()\n", false, &_init_f_abort_0, &_call_f_abort_0); + methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QSslSocket::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); methods += new qt_gsi::GenericMethod ("addCaCertificate", "@brief Method void QSslSocket::addCaCertificate(const QSslCertificate &certificate)\n", false, &_init_f_addCaCertificate_2823, &_call_f_addCaCertificate_2823); methods += new qt_gsi::GenericMethod ("addCaCertificates", "@brief Method bool QSslSocket::addCaCertificates(const QString &path, QSsl::EncodingFormat format, QRegExp::PatternSyntax syntax)\n", false, &_init_f_addCaCertificates_6773, &_call_f_addCaCertificates_6773); methods += new qt_gsi::GenericMethod ("addCaCertificates", "@brief Method void QSslSocket::addCaCertificates(const QList &certificates)\n", false, &_init_f_addCaCertificates_3438, &_call_f_addCaCertificates_3438); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); + methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method bool QSslSocket::atEnd()\nThis is a reimplementation of QAbstractSocket::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); + methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method qint64 QSslSocket::bytesAvailable()\nThis is a reimplementation of QAbstractSocket::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); + methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method qint64 QSslSocket::bytesToWrite()\nThis is a reimplementation of QAbstractSocket::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); methods += new qt_gsi::GenericMethod (":caCertificates", "@brief Method QList QSslSocket::caCertificates()\n", true, &_init_f_caCertificates_c0, &_call_f_caCertificates_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); + methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method bool QSslSocket::canReadLine()\nThis is a reimplementation of QAbstractSocket::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); methods += new qt_gsi::GenericMethod (":ciphers", "@brief Method QList QSslSocket::ciphers()\n", true, &_init_f_ciphers_c0, &_call_f_ciphers_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QAbstractSocket::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QSslSocket::close()\nThis is a reimplementation of QAbstractSocket::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("connectToHostEncrypted", "@brief Method void QSslSocket::connectToHostEncrypted(const QString &hostName, quint16 port, QFlags mode)\n", false, &_init_f_connectToHostEncrypted_6151, &_call_f_connectToHostEncrypted_6151); methods += new qt_gsi::GenericMethod ("connectToHostEncrypted", "@brief Method void QSslSocket::connectToHostEncrypted(const QString &hostName, quint16 port, const QString &sslPeerName, QFlags mode)\n", false, &_init_f_connectToHostEncrypted_8068, &_call_f_connectToHostEncrypted_8068); methods += new qt_gsi::GenericMethod ("encryptedBytesAvailable", "@brief Method qint64 QSslSocket::encryptedBytesAvailable()\n", true, &_init_f_encryptedBytesAvailable_c0, &_call_f_encryptedBytesAvailable_c0); methods += new qt_gsi::GenericMethod ("encryptedBytesToWrite", "@brief Method qint64 QSslSocket::encryptedBytesToWrite()\n", true, &_init_f_encryptedBytesToWrite_c0, &_call_f_encryptedBytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("flush", "@brief Method ()\n", false, &_init_f_flush_0, &_call_f_flush_0); + methods += new qt_gsi::GenericMethod ("flush", "@brief Method bool QSslSocket::flush()\n", false, &_init_f_flush_0, &_call_f_flush_0); methods += new qt_gsi::GenericMethod ("ignoreSslErrors", "@brief Method void QSslSocket::ignoreSslErrors(const QList &errors)\n", false, &_init_f_ignoreSslErrors_2837, &_call_f_ignoreSslErrors_2837); methods += new qt_gsi::GenericMethod ("ignoreSslErrors", "@brief Method void QSslSocket::ignoreSslErrors()\n", false, &_init_f_ignoreSslErrors_0, &_call_f_ignoreSslErrors_0); methods += new qt_gsi::GenericMethod ("isEncrypted?", "@brief Method bool QSslSocket::isEncrypted()\n", true, &_init_f_isEncrypted_c0, &_call_f_isEncrypted_c0); @@ -1348,20 +1348,20 @@ static gsi::Methods methods_QSslSocket () { methods += new qt_gsi::GenericMethod ("setPrivateKey|privateKey=", "@brief Method void QSslSocket::setPrivateKey(const QSslKey &key)\n", false, &_init_f_setPrivateKey_1997, &_call_f_setPrivateKey_1997); methods += new qt_gsi::GenericMethod ("setPrivateKey", "@brief Method void QSslSocket::setPrivateKey(const QString &fileName, QSsl::KeyAlgorithm algorithm, QSsl::EncodingFormat format, const QByteArray &passPhrase)\n", false, &_init_f_setPrivateKey_8544, &_call_f_setPrivateKey_8544); methods += new qt_gsi::GenericMethod ("setProtocol|protocol=", "@brief Method void QSslSocket::setProtocol(QSsl::SslProtocol protocol)\n", false, &_init_f_setProtocol_2095, &_call_f_setProtocol_2095); - methods += new qt_gsi::GenericMethod ("setReadBufferSize|readBufferSize=", "@brief Method (qint64)\n", false, &_init_f_setReadBufferSize_986, &_call_f_setReadBufferSize_986); - methods += new qt_gsi::GenericMethod ("setSocketDescriptor", "@brief Method (int, QAbstractSocket::SocketState, QFlags)\n", false, &_init_f_setSocketDescriptor_6993, &_call_f_setSocketDescriptor_6993); - methods += new qt_gsi::GenericMethod ("setSocketOption", "@brief Method (QAbstractSocket::SocketOption, const QVariant &)\n", false, &_init_f_setSocketOption_5331, &_call_f_setSocketOption_5331); + methods += new qt_gsi::GenericMethod ("setReadBufferSize|readBufferSize=", "@brief Method void QSslSocket::setReadBufferSize(qint64 size)\n", false, &_init_f_setReadBufferSize_986, &_call_f_setReadBufferSize_986); + methods += new qt_gsi::GenericMethod ("setSocketDescriptor", "@brief Method bool QSslSocket::setSocketDescriptor(int socketDescriptor, QAbstractSocket::SocketState state, QFlags openMode)\n", false, &_init_f_setSocketDescriptor_6993, &_call_f_setSocketDescriptor_6993); + methods += new qt_gsi::GenericMethod ("setSocketOption", "@brief Method void QSslSocket::setSocketOption(QAbstractSocket::SocketOption option, const QVariant &value)\n", false, &_init_f_setSocketOption_5331, &_call_f_setSocketOption_5331); methods += new qt_gsi::GenericMethod ("setSslConfiguration|sslConfiguration=", "@brief Method void QSslSocket::setSslConfiguration(const QSslConfiguration &config)\n", false, &_init_f_setSslConfiguration_3068, &_call_f_setSslConfiguration_3068); - methods += new qt_gsi::GenericMethod ("socketOption", "@brief Method (QAbstractSocket::SocketOption)\n", false, &_init_f_socketOption_3320, &_call_f_socketOption_3320); + methods += new qt_gsi::GenericMethod ("socketOption", "@brief Method QVariant QSslSocket::socketOption(QAbstractSocket::SocketOption option)\n", false, &_init_f_socketOption_3320, &_call_f_socketOption_3320); methods += new qt_gsi::GenericMethod (":sslConfiguration", "@brief Method QSslConfiguration QSslSocket::sslConfiguration()\n", true, &_init_f_sslConfiguration_c0, &_call_f_sslConfiguration_c0); methods += new qt_gsi::GenericMethod ("sslErrors", "@brief Method QList QSslSocket::sslErrors()\n", true, &_init_f_sslErrors_c0, &_call_f_sslErrors_c0); methods += new qt_gsi::GenericMethod ("startClientEncryption", "@brief Method void QSslSocket::startClientEncryption()\n", false, &_init_f_startClientEncryption_0, &_call_f_startClientEncryption_0); methods += new qt_gsi::GenericMethod ("startServerEncryption", "@brief Method void QSslSocket::startServerEncryption()\n", false, &_init_f_startServerEncryption_0, &_call_f_startServerEncryption_0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QAbstractSocket::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); - methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method (int)\n", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); - methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method (int)\n", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); + methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method bool QSslSocket::waitForBytesWritten(int msecs)\nThis is a reimplementation of QAbstractSocket::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); + methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method bool QSslSocket::waitForConnected(int msecs)\n", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); + methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method bool QSslSocket::waitForDisconnected(int msecs)\n", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); methods += new qt_gsi::GenericMethod ("waitForEncrypted", "@brief Method bool QSslSocket::waitForEncrypted(int msecs)\n", false, &_init_f_waitForEncrypted_767, &_call_f_waitForEncrypted_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QAbstractSocket::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); + methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method bool QSslSocket::waitForReadyRead(int msecs)\nThis is a reimplementation of QAbstractSocket::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QSslSocket::aboutToClose()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QSslSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QSslSocket::connected()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlIndex.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlIndex.cc index 95180084e..f0c81eab8 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlIndex.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlIndex.cc @@ -79,7 +79,7 @@ static void _call_ctor_QSqlIndex_2202 (const qt_gsi::GenericStaticMethod * /*dec } -// (const QSqlField &) +// void QSqlIndex::append(const QSqlField &field) static void _init_f_append_2182 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_append_2182 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QSqlField &, bool) +// void QSqlIndex::append(const QSqlField &field, bool desc) static void _init_f_append_2938 (qt_gsi::GenericMethod *decl) @@ -171,7 +171,7 @@ static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QSqlIndex &) +// QSqlIndex &QSqlIndex::operator=(const QSqlIndex &other) static void _init_f_operator_eq__2202 (qt_gsi::GenericMethod *decl) @@ -261,12 +261,12 @@ static gsi::Methods methods_QSqlIndex () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSqlIndex::QSqlIndex(const QString &cursorName, const QString &name)\nThis method creates an object of class QSqlIndex.", &_init_ctor_QSqlIndex_3942, &_call_ctor_QSqlIndex_3942); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSqlIndex::QSqlIndex(const QSqlIndex &other)\nThis method creates an object of class QSqlIndex.", &_init_ctor_QSqlIndex_2202, &_call_ctor_QSqlIndex_2202); - methods += new qt_gsi::GenericMethod ("append", "@brief Method (const QSqlField &)\n", false, &_init_f_append_2182, &_call_f_append_2182); - methods += new qt_gsi::GenericMethod ("append", "@brief Method (const QSqlField &, bool)\n", false, &_init_f_append_2938, &_call_f_append_2938); + methods += new qt_gsi::GenericMethod ("append", "@brief Method void QSqlIndex::append(const QSqlField &field)\n", false, &_init_f_append_2182, &_call_f_append_2182); + methods += new qt_gsi::GenericMethod ("append", "@brief Method void QSqlIndex::append(const QSqlField &field, bool desc)\n", false, &_init_f_append_2938, &_call_f_append_2938); methods += new qt_gsi::GenericMethod (":cursorName", "@brief Method QString QSqlIndex::cursorName()\n", true, &_init_f_cursorName_c0, &_call_f_cursorName_c0); methods += new qt_gsi::GenericMethod ("isDescending?", "@brief Method bool QSqlIndex::isDescending(int i)\n", true, &_init_f_isDescending_c767, &_call_f_isDescending_c767); methods += new qt_gsi::GenericMethod (":name", "@brief Method QString QSqlIndex::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QSqlIndex &)\n", false, &_init_f_operator_eq__2202, &_call_f_operator_eq__2202); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QSqlIndex &QSqlIndex::operator=(const QSqlIndex &other)\n", false, &_init_f_operator_eq__2202, &_call_f_operator_eq__2202); methods += new qt_gsi::GenericMethod ("setCursorName|cursorName=", "@brief Method void QSqlIndex::setCursorName(const QString &cursorName)\n", false, &_init_f_setCursorName_2025, &_call_f_setCursorName_2025); methods += new qt_gsi::GenericMethod ("setDescending", "@brief Method void QSqlIndex::setDescending(int i, bool desc)\n", false, &_init_f_setDescending_1523, &_call_f_setDescending_1523); methods += new qt_gsi::GenericMethod ("setName|name=", "@brief Method void QSqlIndex::setName(const QString &name)\n", false, &_init_f_setName_2025, &_call_f_setName_2025); diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc index 641b1ba64..ae030e924 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc @@ -62,7 +62,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &) const +// bool QSqlQueryModel::canFetchMore(const QModelIndex &parent) static void _init_f_canFetchMore_c2395 (qt_gsi::GenericMethod *decl) @@ -97,7 +97,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &) const +// int QSqlQueryModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -116,7 +116,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int) const +// QVariant QSqlQueryModel::data(const QModelIndex &item, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -138,7 +138,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QModelIndex &) +// void QSqlQueryModel::fetchMore(const QModelIndex &parent) static void _init_f_fetchMore_2395 (qt_gsi::GenericMethod *decl) @@ -158,7 +158,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, Qt::Orientation, int) const +// QVariant QSqlQueryModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -183,7 +183,7 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int, int, const QModelIndex &) +// bool QSqlQueryModel::insertColumns(int column, int count, const QModelIndex &parent) static void _init_f_insertColumns_3713 (qt_gsi::GenericMethod *decl) @@ -272,7 +272,7 @@ static void _call_f_record_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int, int, const QModelIndex &) +// bool QSqlQueryModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -297,7 +297,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &) const +// int QSqlQueryModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -316,7 +316,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, Qt::Orientation, const QVariant &, int) +// bool QSqlQueryModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role) static void _init_f_setHeaderData_5242 (qt_gsi::GenericMethod *decl) @@ -487,20 +487,20 @@ namespace gsi static gsi::Methods methods_QSqlQueryModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); + methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method bool QSqlQueryModel::canFetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QSqlQueryModel::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); - methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QSqlQueryModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QSqlQueryModel::data(const QModelIndex &item, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method void QSqlQueryModel::fetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QSqlQueryModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method bool QSqlQueryModel::insertColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); methods += new qt_gsi::GenericMethod ("lastError", "@brief Method QSqlError QSqlQueryModel::lastError()\n", true, &_init_f_lastError_c0, &_call_f_lastError_c0); methods += new qt_gsi::GenericMethod (":query", "@brief Method QSqlQuery QSqlQueryModel::query()\n", true, &_init_f_query_c0, &_call_f_query_c0); methods += new qt_gsi::GenericMethod ("record", "@brief Method QSqlRecord QSqlQueryModel::record(int row)\n", true, &_init_f_record_c767, &_call_f_record_c767); methods += new qt_gsi::GenericMethod ("record", "@brief Method QSqlRecord QSqlQueryModel::record()\n", true, &_init_f_record_c0, &_call_f_record_c0); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method (int, Qt::Orientation, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QSqlQueryModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QSqlQueryModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method bool QSqlQueryModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); methods += new qt_gsi::GenericMethod ("setQuery|query=", "@brief Method void QSqlQueryModel::setQuery(const QSqlQuery &query)\n", false, &_init_f_setQuery_2232, &_call_f_setQuery_2232); methods += new qt_gsi::GenericMethod ("setQuery", "@brief Method void QSqlQueryModel::setQuery(const QString &query, const QSqlDatabase &db)\n", false, &_init_f_setQuery_4404, &_call_f_setQuery_4404); methods += gsi::qt_signal ("dataChanged(const QModelIndex &, const QModelIndex &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), "@brief Signal declaration for QSqlQueryModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc index 327bf8b9f..69150b8d6 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc @@ -65,7 +65,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () +// void QSqlRelationalTableModel::clear() static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) @@ -81,7 +81,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &, int) const +// QVariant QSqlRelationalTableModel::data(const QModelIndex &item, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -141,7 +141,7 @@ static void _call_f_relationModel_c767 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QSqlRelationalTableModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -166,7 +166,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) +// void QSqlRelationalTableModel::revertRow(int row) static void _init_f_revertRow_767 (qt_gsi::GenericMethod *decl) @@ -186,7 +186,7 @@ static void _call_f_revertRow_767 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// bool QSqlRelationalTableModel::select() static void _init_f_select_0 (qt_gsi::GenericMethod *decl) @@ -201,7 +201,7 @@ static void _call_f_select_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &, const QVariant &, int) +// bool QSqlRelationalTableModel::setData(const QModelIndex &item, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -249,7 +249,7 @@ static void _call_f_setRelation_3187 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QString &) +// void QSqlRelationalTableModel::setTable(const QString &tableName) static void _init_f_setTable_2025 (qt_gsi::GenericMethod *decl) @@ -369,16 +369,16 @@ namespace gsi static gsi::Methods methods_QSqlRelationalTableModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method ()\nThis is a reimplementation of QSqlTableModel::clear", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QSqlTableModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QSqlRelationalTableModel::clear()\nThis is a reimplementation of QSqlTableModel::clear", false, &_init_f_clear_0, &_call_f_clear_0); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QSqlRelationalTableModel::data(const QModelIndex &item, int role)\nThis is a reimplementation of QSqlTableModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); methods += new qt_gsi::GenericMethod ("relation", "@brief Method QSqlRelation QSqlRelationalTableModel::relation(int column)\n", true, &_init_f_relation_c767, &_call_f_relation_c767); methods += new qt_gsi::GenericMethod ("relationModel", "@brief Method QSqlTableModel *QSqlRelationalTableModel::relationModel(int column)\n", true, &_init_f_relationModel_c767, &_call_f_relationModel_c767); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QSqlTableModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("revertRow", "@brief Method (int)\nThis is a reimplementation of QSqlTableModel::revertRow", false, &_init_f_revertRow_767, &_call_f_revertRow_767); - methods += new qt_gsi::GenericMethod ("select", "@brief Method ()\nThis is a reimplementation of QSqlTableModel::select", false, &_init_f_select_0, &_call_f_select_0); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QSqlTableModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QSqlRelationalTableModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QSqlTableModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("revertRow", "@brief Method void QSqlRelationalTableModel::revertRow(int row)\nThis is a reimplementation of QSqlTableModel::revertRow", false, &_init_f_revertRow_767, &_call_f_revertRow_767); + methods += new qt_gsi::GenericMethod ("select", "@brief Method bool QSqlRelationalTableModel::select()\nThis is a reimplementation of QSqlTableModel::select", false, &_init_f_select_0, &_call_f_select_0); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QSqlRelationalTableModel::setData(const QModelIndex &item, const QVariant &value, int role)\nThis is a reimplementation of QSqlTableModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setRelation", "@brief Method void QSqlRelationalTableModel::setRelation(int column, const QSqlRelation &relation)\n", false, &_init_f_setRelation_3187, &_call_f_setRelation_3187); - methods += new qt_gsi::GenericMethod ("setTable", "@brief Method (const QString &)\nThis is a reimplementation of QSqlTableModel::setTable", false, &_init_f_setTable_2025, &_call_f_setTable_2025); + methods += new qt_gsi::GenericMethod ("setTable", "@brief Method void QSqlRelationalTableModel::setTable(const QString &tableName)\nThis is a reimplementation of QSqlTableModel::setTable", false, &_init_f_setTable_2025, &_call_f_setTable_2025); methods += gsi::qt_signal ("beforeDelete(int)", "beforeDelete", gsi::arg("row"), "@brief Signal declaration for QSqlRelationalTableModel::beforeDelete(int row)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("beforeInsert(QSqlRecord &)", "beforeInsert", gsi::arg("record"), "@brief Signal declaration for QSqlRelationalTableModel::beforeInsert(QSqlRecord &record)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("beforeUpdate(int, QSqlRecord &)", "beforeUpdate", gsi::arg("row"), gsi::arg("record"), "@brief Signal declaration for QSqlRelationalTableModel::beforeUpdate(int row, QSqlRecord &record)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc index c988cb195..99b00075a 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc @@ -63,7 +63,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () +// void QSqlTableModel::clear() static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) @@ -79,7 +79,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &, int) const +// QVariant QSqlTableModel::data(const QModelIndex &idx, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -165,7 +165,7 @@ static void _call_f_filter_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QModelIndex &) const +// QFlags QSqlTableModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -184,7 +184,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, Qt::Orientation, int) const +// QVariant QSqlTableModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -231,7 +231,7 @@ static void _call_f_insertRecord_2964 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, int, const QModelIndex &) +// bool QSqlTableModel::insertRows(int row, int count, const QModelIndex &parent) static void _init_f_insertRows_3713 (qt_gsi::GenericMethod *decl) @@ -290,7 +290,7 @@ static void _call_f_primaryKey_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, int, const QModelIndex &) +// bool QSqlTableModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -315,7 +315,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QSqlTableModel::removeRows(int row, int count, const QModelIndex &parent) static void _init_f_removeRows_3713 (qt_gsi::GenericMethod *decl) @@ -340,7 +340,7 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () +// void QSqlTableModel::revert() static void _init_f_revert_0 (qt_gsi::GenericMethod *decl) @@ -392,7 +392,7 @@ static void _call_f_revertRow_767 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// int QSqlTableModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -426,7 +426,7 @@ static void _call_f_select_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &, const QVariant &, int) +// bool QSqlTableModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -556,7 +556,7 @@ static void _call_f_setTable_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, Qt::SortOrder) +// void QSqlTableModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -579,7 +579,7 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () +// bool QSqlTableModel::submit() static void _init_f_submit_0 (qt_gsi::GenericMethod *decl) @@ -724,33 +724,33 @@ namespace gsi static gsi::Methods methods_QSqlTableModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method ()\nThis is a reimplementation of QSqlQueryModel::clear", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QSqlQueryModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QSqlTableModel::clear()\nThis is a reimplementation of QSqlQueryModel::clear", false, &_init_f_clear_0, &_call_f_clear_0); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QSqlTableModel::data(const QModelIndex &idx, int role)\nThis is a reimplementation of QSqlQueryModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); methods += new qt_gsi::GenericMethod ("database", "@brief Method QSqlDatabase QSqlTableModel::database()\n", true, &_init_f_database_c0, &_call_f_database_c0); methods += new qt_gsi::GenericMethod (":editStrategy", "@brief Method QSqlTableModel::EditStrategy QSqlTableModel::editStrategy()\n", true, &_init_f_editStrategy_c0, &_call_f_editStrategy_c0); methods += new qt_gsi::GenericMethod ("fieldIndex", "@brief Method int QSqlTableModel::fieldIndex(const QString &fieldName)\n", true, &_init_f_fieldIndex_c2025, &_call_f_fieldIndex_c2025); methods += new qt_gsi::GenericMethod (":filter", "@brief Method QString QSqlTableModel::filter()\n", true, &_init_f_filter_c0, &_call_f_filter_c0); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QSqlQueryModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QSqlTableModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QSqlTableModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QSqlQueryModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); methods += new qt_gsi::GenericMethod ("insertRecord", "@brief Method bool QSqlTableModel::insertRecord(int row, const QSqlRecord &record)\n", false, &_init_f_insertRecord_2964, &_call_f_insertRecord_2964); - methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); + methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method bool QSqlTableModel::insertRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); methods += new qt_gsi::GenericMethod ("isDirty?", "@brief Method bool QSqlTableModel::isDirty(const QModelIndex &index)\n", true, &_init_f_isDirty_c2395, &_call_f_isDirty_c2395); methods += new qt_gsi::GenericMethod ("primaryKey", "@brief Method QSqlIndex QSqlTableModel::primaryKey()\n", true, &_init_f_primaryKey_c0, &_call_f_primaryKey_c0); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QSqlQueryModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); - methods += new qt_gsi::GenericMethod ("revert", "@brief Method ()\nThis is a reimplementation of QAbstractItemModel::revert", false, &_init_f_revert_0, &_call_f_revert_0); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QSqlTableModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QSqlQueryModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method bool QSqlTableModel::removeRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); + methods += new qt_gsi::GenericMethod ("revert", "@brief Method void QSqlTableModel::revert()\nThis is a reimplementation of QAbstractItemModel::revert", false, &_init_f_revert_0, &_call_f_revert_0); methods += new qt_gsi::GenericMethod ("revertAll", "@brief Method void QSqlTableModel::revertAll()\n", false, &_init_f_revertAll_0, &_call_f_revertAll_0); methods += new qt_gsi::GenericMethod ("revertRow", "@brief Method void QSqlTableModel::revertRow(int row)\n", false, &_init_f_revertRow_767, &_call_f_revertRow_767); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QSqlQueryModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QSqlTableModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QSqlQueryModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); methods += new qt_gsi::GenericMethod ("select", "@brief Method bool QSqlTableModel::select()\n", false, &_init_f_select_0, &_call_f_select_0); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QSqlTableModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setEditStrategy|editStrategy=", "@brief Method void QSqlTableModel::setEditStrategy(QSqlTableModel::EditStrategy strategy)\n", false, &_init_f_setEditStrategy_3163, &_call_f_setEditStrategy_3163); methods += new qt_gsi::GenericMethod ("setFilter|filter=", "@brief Method void QSqlTableModel::setFilter(const QString &filter)\n", false, &_init_f_setFilter_2025, &_call_f_setFilter_2025); methods += new qt_gsi::GenericMethod ("setRecord", "@brief Method bool QSqlTableModel::setRecord(int row, const QSqlRecord &record)\n", false, &_init_f_setRecord_2964, &_call_f_setRecord_2964); methods += new qt_gsi::GenericMethod ("setSort", "@brief Method void QSqlTableModel::setSort(int column, Qt::SortOrder order)\n", false, &_init_f_setSort_2340, &_call_f_setSort_2340); methods += new qt_gsi::GenericMethod ("setTable", "@brief Method void QSqlTableModel::setTable(const QString &tableName)\n", false, &_init_f_setTable_2025, &_call_f_setTable_2025); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); - methods += new qt_gsi::GenericMethod ("submit", "@brief Method ()\nThis is a reimplementation of QAbstractItemModel::submit", false, &_init_f_submit_0, &_call_f_submit_0); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QSqlTableModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("submit", "@brief Method bool QSqlTableModel::submit()\nThis is a reimplementation of QAbstractItemModel::submit", false, &_init_f_submit_0, &_call_f_submit_0); methods += new qt_gsi::GenericMethod ("submitAll", "@brief Method bool QSqlTableModel::submitAll()\n", false, &_init_f_submitAll_0, &_call_f_submitAll_0); methods += new qt_gsi::GenericMethod ("tableName", "@brief Method QString QSqlTableModel::tableName()\n", true, &_init_f_tableName_c0, &_call_f_tableName_c0); methods += gsi::qt_signal ("beforeDelete(int)", "beforeDelete", gsi::arg("row"), "@brief Signal declaration for QSqlTableModel::beforeDelete(int row)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomAttr.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomAttr.cc index b8a8693c7..c10e55d17 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomAttr.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomAttr.cc @@ -101,7 +101,7 @@ static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QDomNode::NodeType QDomAttr::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -116,7 +116,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomAttr &) +// QDomAttr &QDomAttr::operator=(const QDomAttr &) static void _init_f_operator_eq__2093 (qt_gsi::GenericMethod *decl) @@ -209,8 +209,8 @@ static gsi::Methods methods_QDomAttr () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomAttr::QDomAttr()\nThis method creates an object of class QDomAttr.", &_init_ctor_QDomAttr_0, &_call_ctor_QDomAttr_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomAttr::QDomAttr(const QDomAttr &x)\nThis method creates an object of class QDomAttr.", &_init_ctor_QDomAttr_2093, &_call_ctor_QDomAttr_2093); methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QDomAttr::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomAttr &)\n", false, &_init_f_operator_eq__2093, &_call_f_operator_eq__2093); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomAttr::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomAttr &QDomAttr::operator=(const QDomAttr &)\n", false, &_init_f_operator_eq__2093, &_call_f_operator_eq__2093); methods += new qt_gsi::GenericMethod ("ownerElement", "@brief Method QDomElement QDomAttr::ownerElement()\n", true, &_init_f_ownerElement_c0, &_call_f_ownerElement_c0); methods += new qt_gsi::GenericMethod ("setValue|value=", "@brief Method void QDomAttr::setValue(const QString &)\n", false, &_init_f_setValue_2025, &_call_f_setValue_2025); methods += new qt_gsi::GenericMethod ("specified", "@brief Method bool QDomAttr::specified()\n", true, &_init_f_specified_c0, &_call_f_specified_c0); diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomCDATASection.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomCDATASection.cc index f0d5de8a7..28c0ed366 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomCDATASection.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomCDATASection.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomCDATASection_2756 (const qt_gsi::GenericStaticMethod } -// () const +// QDomNode::NodeType QDomCDATASection::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomCDATASection &) +// QDomCDATASection &QDomCDATASection::operator=(const QDomCDATASection &) static void _init_f_operator_eq__2756 (qt_gsi::GenericMethod *decl) @@ -128,8 +128,8 @@ static gsi::Methods methods_QDomCDATASection () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomCDATASection::QDomCDATASection()\nThis method creates an object of class QDomCDATASection.", &_init_ctor_QDomCDATASection_0, &_call_ctor_QDomCDATASection_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomCDATASection::QDomCDATASection(const QDomCDATASection &x)\nThis method creates an object of class QDomCDATASection.", &_init_ctor_QDomCDATASection_2756, &_call_ctor_QDomCDATASection_2756); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomCDATASection &)\n", false, &_init_f_operator_eq__2756, &_call_f_operator_eq__2756); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomCDATASection::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomCDATASection &QDomCDATASection::operator=(const QDomCDATASection &)\n", false, &_init_f_operator_eq__2756, &_call_f_operator_eq__2756); return methods; } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomCharacterData.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomCharacterData.cc index c39b690b3..695130c61 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomCharacterData.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomCharacterData.cc @@ -182,7 +182,7 @@ static void _call_f_length_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QDomNode::NodeType QDomCharacterData::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -197,7 +197,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomCharacterData &) +// QDomCharacterData &QDomCharacterData::operator=(const QDomCharacterData &) static void _init_f_operator_eq__2969 (qt_gsi::GenericMethod *decl) @@ -297,8 +297,8 @@ static gsi::Methods methods_QDomCharacterData () { methods += new qt_gsi::GenericMethod ("deleteData", "@brief Method void QDomCharacterData::deleteData(unsigned long int offset, unsigned long int count)\n", false, &_init_f_deleteData_4588, &_call_f_deleteData_4588); methods += new qt_gsi::GenericMethod ("insertData", "@brief Method void QDomCharacterData::insertData(unsigned long int offset, const QString &arg)\n", false, &_init_f_insertData_4265, &_call_f_insertData_4265); methods += new qt_gsi::GenericMethod ("length", "@brief Method unsigned int QDomCharacterData::length()\n", true, &_init_f_length_c0, &_call_f_length_c0); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomCharacterData &)\n", false, &_init_f_operator_eq__2969, &_call_f_operator_eq__2969); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomCharacterData::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomCharacterData &QDomCharacterData::operator=(const QDomCharacterData &)\n", false, &_init_f_operator_eq__2969, &_call_f_operator_eq__2969); methods += new qt_gsi::GenericMethod ("replaceData", "@brief Method void QDomCharacterData::replaceData(unsigned long int offset, unsigned long int count, const QString &arg)\n", false, &_init_f_replaceData_6505, &_call_f_replaceData_6505); methods += new qt_gsi::GenericMethod ("setData|data=", "@brief Method void QDomCharacterData::setData(const QString &)\n", false, &_init_f_setData_2025, &_call_f_setData_2025); methods += new qt_gsi::GenericMethod ("substringData", "@brief Method QString QDomCharacterData::substringData(unsigned long int offset, unsigned long int count)\n", false, &_init_f_substringData_4588, &_call_f_substringData_4588); diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomComment.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomComment.cc index 8b1ed0744..b78d94aa0 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomComment.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomComment.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomComment_2405 (const qt_gsi::GenericStaticMethod * /*d } -// () const +// QDomNode::NodeType QDomComment::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomComment &) +// QDomComment &QDomComment::operator=(const QDomComment &) static void _init_f_operator_eq__2405 (qt_gsi::GenericMethod *decl) @@ -128,8 +128,8 @@ static gsi::Methods methods_QDomComment () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomComment::QDomComment()\nThis method creates an object of class QDomComment.", &_init_ctor_QDomComment_0, &_call_ctor_QDomComment_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomComment::QDomComment(const QDomComment &x)\nThis method creates an object of class QDomComment.", &_init_ctor_QDomComment_2405, &_call_ctor_QDomComment_2405); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomComment &)\n", false, &_init_f_operator_eq__2405, &_call_f_operator_eq__2405); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomComment::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomComment &QDomComment::operator=(const QDomComment &)\n", false, &_init_f_operator_eq__2405, &_call_f_operator_eq__2405); return methods; } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocument.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocument.cc index 4b6890ae2..6db140935 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocument.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocument.cc @@ -450,7 +450,7 @@ static void _call_f_importNode_2828 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QDomNode::NodeType QDomDocument::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -465,7 +465,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomDocument &) +// QDomDocument &QDomDocument::operator=(const QDomDocument &) static void _init_f_operator_eq__2513 (qt_gsi::GenericMethod *decl) @@ -729,8 +729,8 @@ static gsi::Methods methods_QDomDocument () { methods += new qt_gsi::GenericMethod ("elementsByTagNameNS", "@brief Method QDomNodeList QDomDocument::elementsByTagNameNS(const QString &nsURI, const QString &localName)\n", false, &_init_f_elementsByTagNameNS_3942, &_call_f_elementsByTagNameNS_3942); methods += new qt_gsi::GenericMethod ("implementation", "@brief Method QDomImplementation QDomDocument::implementation()\n", true, &_init_f_implementation_c0, &_call_f_implementation_c0); methods += new qt_gsi::GenericMethod ("importNode", "@brief Method QDomNode QDomDocument::importNode(const QDomNode &importedNode, bool deep)\n", false, &_init_f_importNode_2828, &_call_f_importNode_2828); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomDocument &)\n", false, &_init_f_operator_eq__2513, &_call_f_operator_eq__2513); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomDocument::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomDocument &QDomDocument::operator=(const QDomDocument &)\n", false, &_init_f_operator_eq__2513, &_call_f_operator_eq__2513); methods += new qt_gsi::GenericMethod ("setContent", "@brief Method bool QDomDocument::setContent(const QString &text, bool namespaceProcessing, QString *errorMsg, int *errorLine, int *errorColumn)\n", false, &_init_f_setContent_5697, &_call_f_setContent_5697); methods += new qt_gsi::GenericMethod ("setContent", "@brief Method bool QDomDocument::setContent(QIODevice *dev, bool namespaceProcessing, QString *errorMsg, int *errorLine, int *errorColumn)\n", false, &_init_f_setContent_5119, &_call_f_setContent_5119); methods += new qt_gsi::GenericMethod ("setContent", "@brief Method bool QDomDocument::setContent(QXmlInputSource *source, bool namespaceProcessing, QString *errorMsg, int *errorLine, int *errorColumn)\n", false, &_init_f_setContent_5833, &_call_f_setContent_5833); diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentFragment.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentFragment.cc index 9ec827327..09043e0a9 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentFragment.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentFragment.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomDocumentFragment_3333 (const qt_gsi::GenericStaticMet } -// () const +// QDomNode::NodeType QDomDocumentFragment::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomDocumentFragment &) +// QDomDocumentFragment &QDomDocumentFragment::operator=(const QDomDocumentFragment &) static void _init_f_operator_eq__3333 (qt_gsi::GenericMethod *decl) @@ -128,8 +128,8 @@ static gsi::Methods methods_QDomDocumentFragment () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomDocumentFragment::QDomDocumentFragment()\nThis method creates an object of class QDomDocumentFragment.", &_init_ctor_QDomDocumentFragment_0, &_call_ctor_QDomDocumentFragment_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomDocumentFragment::QDomDocumentFragment(const QDomDocumentFragment &x)\nThis method creates an object of class QDomDocumentFragment.", &_init_ctor_QDomDocumentFragment_3333, &_call_ctor_QDomDocumentFragment_3333); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomDocumentFragment &)\n", false, &_init_f_operator_eq__3333, &_call_f_operator_eq__3333); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomDocumentFragment::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomDocumentFragment &QDomDocumentFragment::operator=(const QDomDocumentFragment &)\n", false, &_init_f_operator_eq__3333, &_call_f_operator_eq__3333); return methods; } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentType.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentType.cc index 313fbc510..68d4967c4 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentType.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentType.cc @@ -131,7 +131,7 @@ static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QDomNode::NodeType QDomDocumentType::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -161,7 +161,7 @@ static void _call_f_notations_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QDomDocumentType &) +// QDomDocumentType &QDomDocumentType::operator=(const QDomDocumentType &) static void _init_f_operator_eq__2931 (qt_gsi::GenericMethod *decl) @@ -221,9 +221,9 @@ static gsi::Methods methods_QDomDocumentType () { methods += new qt_gsi::GenericMethod ("entities", "@brief Method QDomNamedNodeMap QDomDocumentType::entities()\n", true, &_init_f_entities_c0, &_call_f_entities_c0); methods += new qt_gsi::GenericMethod ("internalSubset", "@brief Method QString QDomDocumentType::internalSubset()\n", true, &_init_f_internalSubset_c0, &_call_f_internalSubset_c0); methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QDomDocumentType::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomDocumentType::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); methods += new qt_gsi::GenericMethod ("notations", "@brief Method QDomNamedNodeMap QDomDocumentType::notations()\n", true, &_init_f_notations_c0, &_call_f_notations_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomDocumentType &)\n", false, &_init_f_operator_eq__2931, &_call_f_operator_eq__2931); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomDocumentType &QDomDocumentType::operator=(const QDomDocumentType &)\n", false, &_init_f_operator_eq__2931, &_call_f_operator_eq__2931); methods += new qt_gsi::GenericMethod ("publicId", "@brief Method QString QDomDocumentType::publicId()\n", true, &_init_f_publicId_c0, &_call_f_publicId_c0); methods += new qt_gsi::GenericMethod ("systemId", "@brief Method QString QDomDocumentType::systemId()\n", true, &_init_f_systemId_c0, &_call_f_systemId_c0); return methods; diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomElement.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomElement.cc index 010063eab..825eb0c95 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomElement.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomElement.cc @@ -174,7 +174,7 @@ static void _call_f_attributeNodeNS_3942 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QDomNamedNodeMap QDomElement::attributes() static void _init_f_attributes_c0 (qt_gsi::GenericMethod *decl) @@ -271,7 +271,7 @@ static void _call_f_hasAttributeNS_c3942 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QDomNode::NodeType QDomElement::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -286,7 +286,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomElement &) +// QDomElement &QDomElement::operator=(const QDomElement &) static void _init_f_operator_eq__2396 (qt_gsi::GenericMethod *decl) @@ -784,13 +784,13 @@ static gsi::Methods methods_QDomElement () { methods += new qt_gsi::GenericMethod ("attributeNS", "@brief Method QString QDomElement::attributeNS(const QString nsURI, const QString &localName, const QString &defValue)\n", true, &_init_f_attributeNS_c5677, &_call_f_attributeNS_c5677); methods += new qt_gsi::GenericMethod ("attributeNode", "@brief Method QDomAttr QDomElement::attributeNode(const QString &name)\n", false, &_init_f_attributeNode_2025, &_call_f_attributeNode_2025); methods += new qt_gsi::GenericMethod ("attributeNodeNS", "@brief Method QDomAttr QDomElement::attributeNodeNS(const QString &nsURI, const QString &localName)\n", false, &_init_f_attributeNodeNS_3942, &_call_f_attributeNodeNS_3942); - methods += new qt_gsi::GenericMethod ("attributes", "@brief Method () const\n", true, &_init_f_attributes_c0, &_call_f_attributes_c0); + methods += new qt_gsi::GenericMethod ("attributes", "@brief Method QDomNamedNodeMap QDomElement::attributes()\n", true, &_init_f_attributes_c0, &_call_f_attributes_c0); methods += new qt_gsi::GenericMethod ("elementsByTagName", "@brief Method QDomNodeList QDomElement::elementsByTagName(const QString &tagname)\n", true, &_init_f_elementsByTagName_c2025, &_call_f_elementsByTagName_c2025); methods += new qt_gsi::GenericMethod ("elementsByTagNameNS", "@brief Method QDomNodeList QDomElement::elementsByTagNameNS(const QString &nsURI, const QString &localName)\n", true, &_init_f_elementsByTagNameNS_c3942, &_call_f_elementsByTagNameNS_c3942); methods += new qt_gsi::GenericMethod ("hasAttribute", "@brief Method bool QDomElement::hasAttribute(const QString &name)\n", true, &_init_f_hasAttribute_c2025, &_call_f_hasAttribute_c2025); methods += new qt_gsi::GenericMethod ("hasAttributeNS", "@brief Method bool QDomElement::hasAttributeNS(const QString &nsURI, const QString &localName)\n", true, &_init_f_hasAttributeNS_c3942, &_call_f_hasAttributeNS_c3942); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomElement &)\n", false, &_init_f_operator_eq__2396, &_call_f_operator_eq__2396); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomElement::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomElement &QDomElement::operator=(const QDomElement &)\n", false, &_init_f_operator_eq__2396, &_call_f_operator_eq__2396); methods += new qt_gsi::GenericMethod ("removeAttribute", "@brief Method void QDomElement::removeAttribute(const QString &name)\n", false, &_init_f_removeAttribute_2025, &_call_f_removeAttribute_2025); methods += new qt_gsi::GenericMethod ("removeAttributeNS", "@brief Method void QDomElement::removeAttributeNS(const QString &nsURI, const QString &localName)\n", false, &_init_f_removeAttributeNS_3942, &_call_f_removeAttributeNS_3942); methods += new qt_gsi::GenericMethod ("removeAttributeNode", "@brief Method QDomAttr QDomElement::removeAttributeNode(const QDomAttr &oldAttr)\n", false, &_init_f_removeAttributeNode_2093, &_call_f_removeAttributeNode_2093); diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomEntity.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomEntity.cc index 2ee000d49..e1fbbb9cf 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomEntity.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomEntity.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomEntity_2319 (const qt_gsi::GenericStaticMethod * /*de } -// () const +// QDomNode::NodeType QDomEntity::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -116,7 +116,7 @@ static void _call_f_notationName_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QDomEntity &) +// QDomEntity &QDomEntity::operator=(const QDomEntity &) static void _init_f_operator_eq__2319 (qt_gsi::GenericMethod *decl) @@ -173,9 +173,9 @@ static gsi::Methods methods_QDomEntity () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomEntity::QDomEntity()\nThis method creates an object of class QDomEntity.", &_init_ctor_QDomEntity_0, &_call_ctor_QDomEntity_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomEntity::QDomEntity(const QDomEntity &x)\nThis method creates an object of class QDomEntity.", &_init_ctor_QDomEntity_2319, &_call_ctor_QDomEntity_2319); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomEntity::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); methods += new qt_gsi::GenericMethod ("notationName", "@brief Method QString QDomEntity::notationName()\n", true, &_init_f_notationName_c0, &_call_f_notationName_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomEntity &)\n", false, &_init_f_operator_eq__2319, &_call_f_operator_eq__2319); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomEntity &QDomEntity::operator=(const QDomEntity &)\n", false, &_init_f_operator_eq__2319, &_call_f_operator_eq__2319); methods += new qt_gsi::GenericMethod ("publicId", "@brief Method QString QDomEntity::publicId()\n", true, &_init_f_publicId_c0, &_call_f_publicId_c0); methods += new qt_gsi::GenericMethod ("systemId", "@brief Method QString QDomEntity::systemId()\n", true, &_init_f_systemId_c0, &_call_f_systemId_c0); return methods; diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomEntityReference.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomEntityReference.cc index a5a174943..2659cfbcf 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomEntityReference.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomEntityReference.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomEntityReference_3230 (const qt_gsi::GenericStaticMeth } -// () const +// QDomNode::NodeType QDomEntityReference::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomEntityReference &) +// QDomEntityReference &QDomEntityReference::operator=(const QDomEntityReference &) static void _init_f_operator_eq__3230 (qt_gsi::GenericMethod *decl) @@ -128,8 +128,8 @@ static gsi::Methods methods_QDomEntityReference () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomEntityReference::QDomEntityReference()\nThis method creates an object of class QDomEntityReference.", &_init_ctor_QDomEntityReference_0, &_call_ctor_QDomEntityReference_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomEntityReference::QDomEntityReference(const QDomEntityReference &x)\nThis method creates an object of class QDomEntityReference.", &_init_ctor_QDomEntityReference_3230, &_call_ctor_QDomEntityReference_3230); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomEntityReference &)\n", false, &_init_f_operator_eq__3230, &_call_f_operator_eq__3230); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomEntityReference::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomEntityReference &QDomEntityReference::operator=(const QDomEntityReference &)\n", false, &_init_f_operator_eq__3230, &_call_f_operator_eq__3230); return methods; } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomNotation.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomNotation.cc index cf9d0e01c..e5350d0f5 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomNotation.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomNotation.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomNotation_2526 (const qt_gsi::GenericStaticMethod * /* } -// () const +// QDomNode::NodeType QDomNotation::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomNotation &) +// QDomNotation &QDomNotation::operator=(const QDomNotation &) static void _init_f_operator_eq__2526 (qt_gsi::GenericMethod *decl) @@ -158,8 +158,8 @@ static gsi::Methods methods_QDomNotation () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomNotation::QDomNotation()\nThis method creates an object of class QDomNotation.", &_init_ctor_QDomNotation_0, &_call_ctor_QDomNotation_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomNotation::QDomNotation(const QDomNotation &x)\nThis method creates an object of class QDomNotation.", &_init_ctor_QDomNotation_2526, &_call_ctor_QDomNotation_2526); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomNotation &)\n", false, &_init_f_operator_eq__2526, &_call_f_operator_eq__2526); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomNotation::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomNotation &QDomNotation::operator=(const QDomNotation &)\n", false, &_init_f_operator_eq__2526, &_call_f_operator_eq__2526); methods += new qt_gsi::GenericMethod ("publicId", "@brief Method QString QDomNotation::publicId()\n", true, &_init_f_publicId_c0, &_call_f_publicId_c0); methods += new qt_gsi::GenericMethod ("systemId", "@brief Method QString QDomNotation::systemId()\n", true, &_init_f_systemId_c0, &_call_f_systemId_c0); return methods; diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomProcessingInstruction.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomProcessingInstruction.cc index 4dcd19ed0..342a4e7cc 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomProcessingInstruction.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomProcessingInstruction.cc @@ -101,7 +101,7 @@ static void _call_f_data_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QDomNode::NodeType QDomProcessingInstruction::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -116,7 +116,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomProcessingInstruction &) +// QDomProcessingInstruction &QDomProcessingInstruction::operator=(const QDomProcessingInstruction &) static void _init_f_operator_eq__3921 (qt_gsi::GenericMethod *decl) @@ -179,8 +179,8 @@ static gsi::Methods methods_QDomProcessingInstruction () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomProcessingInstruction::QDomProcessingInstruction()\nThis method creates an object of class QDomProcessingInstruction.", &_init_ctor_QDomProcessingInstruction_0, &_call_ctor_QDomProcessingInstruction_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomProcessingInstruction::QDomProcessingInstruction(const QDomProcessingInstruction &x)\nThis method creates an object of class QDomProcessingInstruction.", &_init_ctor_QDomProcessingInstruction_3921, &_call_ctor_QDomProcessingInstruction_3921); methods += new qt_gsi::GenericMethod (":data", "@brief Method QString QDomProcessingInstruction::data()\n", true, &_init_f_data_c0, &_call_f_data_c0); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomProcessingInstruction &)\n", false, &_init_f_operator_eq__3921, &_call_f_operator_eq__3921); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomProcessingInstruction::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomProcessingInstruction &QDomProcessingInstruction::operator=(const QDomProcessingInstruction &)\n", false, &_init_f_operator_eq__3921, &_call_f_operator_eq__3921); methods += new qt_gsi::GenericMethod ("setData|data=", "@brief Method void QDomProcessingInstruction::setData(const QString &d)\n", false, &_init_f_setData_2025, &_call_f_setData_2025); methods += new qt_gsi::GenericMethod ("target", "@brief Method QString QDomProcessingInstruction::target()\n", true, &_init_f_target_c0, &_call_f_target_c0); return methods; diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomText.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomText.cc index 328843540..0cc0bfa51 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomText.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomText.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomText_2103 (const qt_gsi::GenericStaticMethod * /*decl } -// () const +// QDomNode::NodeType QDomText::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomText &) +// QDomText &QDomText::operator=(const QDomText &) static void _init_f_operator_eq__2103 (qt_gsi::GenericMethod *decl) @@ -147,8 +147,8 @@ static gsi::Methods methods_QDomText () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomText::QDomText()\nThis method creates an object of class QDomText.", &_init_ctor_QDomText_0, &_call_ctor_QDomText_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomText::QDomText(const QDomText &x)\nThis method creates an object of class QDomText.", &_init_ctor_QDomText_2103, &_call_ctor_QDomText_2103); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomText &)\n", false, &_init_f_operator_eq__2103, &_call_f_operator_eq__2103); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomText::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomText &QDomText::operator=(const QDomText &)\n", false, &_init_f_operator_eq__2103, &_call_f_operator_eq__2103); methods += new qt_gsi::GenericMethod ("splitText", "@brief Method QDomText QDomText::splitText(int offset)\n", false, &_init_f_splitText_767, &_call_f_splitText_767); return methods; } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc index 7c21839c9..8f0f6158b 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc @@ -39,7 +39,7 @@ // ----------------------------------------------------------------------- // class QXmlDefaultHandler -// (const QString &, const QString &, const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::attributeDecl(const QString &eName, const QString &aName, const QString &type, const QString &valueDefault, const QString &value) static void _init_f_attributeDecl_9693 (qt_gsi::GenericMethod *decl) @@ -70,7 +70,7 @@ static void _call_f_attributeDecl_9693 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QString &) +// bool QXmlDefaultHandler::characters(const QString &ch) static void _init_f_characters_2025 (qt_gsi::GenericMethod *decl) @@ -89,7 +89,7 @@ static void _call_f_characters_2025 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &) +// bool QXmlDefaultHandler::comment(const QString &ch) static void _init_f_comment_2025 (qt_gsi::GenericMethod *decl) @@ -108,7 +108,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () +// bool QXmlDefaultHandler::endCDATA() static void _init_f_endCDATA_0 (qt_gsi::GenericMethod *decl) @@ -123,7 +123,7 @@ static void _call_f_endCDATA_0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () +// bool QXmlDefaultHandler::endDTD() static void _init_f_endDTD_0 (qt_gsi::GenericMethod *decl) @@ -138,7 +138,7 @@ static void _call_f_endDTD_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () +// bool QXmlDefaultHandler::endDocument() static void _init_f_endDocument_0 (qt_gsi::GenericMethod *decl) @@ -153,7 +153,7 @@ static void _call_f_endDocument_0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::endElement(const QString &namespaceURI, const QString &localName, const QString &qName) static void _init_f_endElement_5859 (qt_gsi::GenericMethod *decl) @@ -178,7 +178,7 @@ static void _call_f_endElement_5859 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &) +// bool QXmlDefaultHandler::endEntity(const QString &name) static void _init_f_endEntity_2025 (qt_gsi::GenericMethod *decl) @@ -197,7 +197,7 @@ static void _call_f_endEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) +// bool QXmlDefaultHandler::endPrefixMapping(const QString &prefix) static void _init_f_endPrefixMapping_2025 (qt_gsi::GenericMethod *decl) @@ -216,7 +216,7 @@ static void _call_f_endPrefixMapping_2025 (const qt_gsi::GenericMethod * /*decl* } -// (const QXmlParseException &) +// bool QXmlDefaultHandler::error(const QXmlParseException &exception) static void _init_f_error_3149 (qt_gsi::GenericMethod *decl) @@ -235,7 +235,7 @@ static void _call_f_error_3149 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QString QXmlDefaultHandler::errorString() static void _init_f_errorString_c0 (qt_gsi::GenericMethod *decl) @@ -250,7 +250,7 @@ static void _call_f_errorString_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::externalEntityDecl(const QString &name, const QString &publicId, const QString &systemId) static void _init_f_externalEntityDecl_5859 (qt_gsi::GenericMethod *decl) @@ -275,7 +275,7 @@ static void _call_f_externalEntityDecl_5859 (const qt_gsi::GenericMethod * /*dec } -// (const QXmlParseException &) +// bool QXmlDefaultHandler::fatalError(const QXmlParseException &exception) static void _init_f_fatalError_3149 (qt_gsi::GenericMethod *decl) @@ -294,7 +294,7 @@ static void _call_f_fatalError_3149 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &) +// bool QXmlDefaultHandler::ignorableWhitespace(const QString &ch) static void _init_f_ignorableWhitespace_2025 (qt_gsi::GenericMethod *decl) @@ -313,7 +313,7 @@ static void _call_f_ignorableWhitespace_2025 (const qt_gsi::GenericMethod * /*de } -// (const QString &, const QString &) +// bool QXmlDefaultHandler::internalEntityDecl(const QString &name, const QString &value) static void _init_f_internalEntityDecl_3942 (qt_gsi::GenericMethod *decl) @@ -335,7 +335,7 @@ static void _call_f_internalEntityDecl_3942 (const qt_gsi::GenericMethod * /*dec } -// (const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::notationDecl(const QString &name, const QString &publicId, const QString &systemId) static void _init_f_notationDecl_5859 (qt_gsi::GenericMethod *decl) @@ -360,7 +360,7 @@ static void _call_f_notationDecl_5859 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QString &, const QString &) +// bool QXmlDefaultHandler::processingInstruction(const QString &target, const QString &data) static void _init_f_processingInstruction_3942 (qt_gsi::GenericMethod *decl) @@ -382,7 +382,7 @@ static void _call_f_processingInstruction_3942 (const qt_gsi::GenericMethod * /* } -// (QXmlLocator *) +// void QXmlDefaultHandler::setDocumentLocator(QXmlLocator *locator) static void _init_f_setDocumentLocator_1732 (qt_gsi::GenericMethod *decl) @@ -402,7 +402,7 @@ static void _call_f_setDocumentLocator_1732 (const qt_gsi::GenericMethod * /*dec } -// (const QString &) +// bool QXmlDefaultHandler::skippedEntity(const QString &name) static void _init_f_skippedEntity_2025 (qt_gsi::GenericMethod *decl) @@ -421,7 +421,7 @@ static void _call_f_skippedEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, } -// () +// bool QXmlDefaultHandler::startCDATA() static void _init_f_startCDATA_0 (qt_gsi::GenericMethod *decl) @@ -436,7 +436,7 @@ static void _call_f_startCDATA_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::startDTD(const QString &name, const QString &publicId, const QString &systemId) static void _init_f_startDTD_5859 (qt_gsi::GenericMethod *decl) @@ -461,7 +461,7 @@ static void _call_f_startDTD_5859 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// bool QXmlDefaultHandler::startDocument() static void _init_f_startDocument_0 (qt_gsi::GenericMethod *decl) @@ -476,7 +476,7 @@ static void _call_f_startDocument_0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &, const QString &, const QString &, const QXmlAttributes &) +// bool QXmlDefaultHandler::startElement(const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &atts) static void _init_f_startElement_8513 (qt_gsi::GenericMethod *decl) @@ -504,7 +504,7 @@ static void _call_f_startElement_8513 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QString &) +// bool QXmlDefaultHandler::startEntity(const QString &name) static void _init_f_startEntity_2025 (qt_gsi::GenericMethod *decl) @@ -523,7 +523,7 @@ static void _call_f_startEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QString &, const QString &) +// bool QXmlDefaultHandler::startPrefixMapping(const QString &prefix, const QString &uri) static void _init_f_startPrefixMapping_3942 (qt_gsi::GenericMethod *decl) @@ -545,7 +545,7 @@ static void _call_f_startPrefixMapping_3942 (const qt_gsi::GenericMethod * /*dec } -// (const QString &, const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::unparsedEntityDecl(const QString &name, const QString &publicId, const QString &systemId, const QString ¬ationName) static void _init_f_unparsedEntityDecl_7776 (qt_gsi::GenericMethod *decl) @@ -573,7 +573,7 @@ static void _call_f_unparsedEntityDecl_7776 (const qt_gsi::GenericMethod * /*dec } -// (const QXmlParseException &) +// bool QXmlDefaultHandler::warning(const QXmlParseException &exception) static void _init_f_warning_3149 (qt_gsi::GenericMethod *decl) @@ -730,33 +730,33 @@ namespace gsi static gsi::Methods methods_QXmlDefaultHandler () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("attributeDecl", "@brief Method (const QString &, const QString &, const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlDeclHandler::attributeDecl", false, &_init_f_attributeDecl_9693, &_call_f_attributeDecl_9693); - methods += new qt_gsi::GenericMethod ("characters", "@brief Method (const QString &)\nThis is a reimplementation of QXmlContentHandler::characters", false, &_init_f_characters_2025, &_call_f_characters_2025); - methods += new qt_gsi::GenericMethod ("comment", "@brief Method (const QString &)\nThis is a reimplementation of QXmlLexicalHandler::comment", false, &_init_f_comment_2025, &_call_f_comment_2025); - methods += new qt_gsi::GenericMethod ("endCDATA", "@brief Method ()\nThis is a reimplementation of QXmlLexicalHandler::endCDATA", false, &_init_f_endCDATA_0, &_call_f_endCDATA_0); - methods += new qt_gsi::GenericMethod ("endDTD", "@brief Method ()\nThis is a reimplementation of QXmlLexicalHandler::endDTD", false, &_init_f_endDTD_0, &_call_f_endDTD_0); - methods += new qt_gsi::GenericMethod ("endDocument", "@brief Method ()\nThis is a reimplementation of QXmlContentHandler::endDocument", false, &_init_f_endDocument_0, &_call_f_endDocument_0); - methods += new qt_gsi::GenericMethod ("endElement", "@brief Method (const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlContentHandler::endElement", false, &_init_f_endElement_5859, &_call_f_endElement_5859); - methods += new qt_gsi::GenericMethod ("endEntity", "@brief Method (const QString &)\nThis is a reimplementation of QXmlLexicalHandler::endEntity", false, &_init_f_endEntity_2025, &_call_f_endEntity_2025); - methods += new qt_gsi::GenericMethod ("endPrefixMapping", "@brief Method (const QString &)\nThis is a reimplementation of QXmlContentHandler::endPrefixMapping", false, &_init_f_endPrefixMapping_2025, &_call_f_endPrefixMapping_2025); - methods += new qt_gsi::GenericMethod ("error", "@brief Method (const QXmlParseException &)\nThis is a reimplementation of QXmlErrorHandler::error", false, &_init_f_error_3149, &_call_f_error_3149); - methods += new qt_gsi::GenericMethod ("errorString", "@brief Method () const\nThis is a reimplementation of QXmlContentHandler::errorString", true, &_init_f_errorString_c0, &_call_f_errorString_c0); - methods += new qt_gsi::GenericMethod ("externalEntityDecl", "@brief Method (const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlDeclHandler::externalEntityDecl", false, &_init_f_externalEntityDecl_5859, &_call_f_externalEntityDecl_5859); - methods += new qt_gsi::GenericMethod ("fatalError", "@brief Method (const QXmlParseException &)\nThis is a reimplementation of QXmlErrorHandler::fatalError", false, &_init_f_fatalError_3149, &_call_f_fatalError_3149); - methods += new qt_gsi::GenericMethod ("ignorableWhitespace", "@brief Method (const QString &)\nThis is a reimplementation of QXmlContentHandler::ignorableWhitespace", false, &_init_f_ignorableWhitespace_2025, &_call_f_ignorableWhitespace_2025); - methods += new qt_gsi::GenericMethod ("internalEntityDecl", "@brief Method (const QString &, const QString &)\nThis is a reimplementation of QXmlDeclHandler::internalEntityDecl", false, &_init_f_internalEntityDecl_3942, &_call_f_internalEntityDecl_3942); - methods += new qt_gsi::GenericMethod ("notationDecl", "@brief Method (const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlDTDHandler::notationDecl", false, &_init_f_notationDecl_5859, &_call_f_notationDecl_5859); - methods += new qt_gsi::GenericMethod ("processingInstruction", "@brief Method (const QString &, const QString &)\nThis is a reimplementation of QXmlContentHandler::processingInstruction", false, &_init_f_processingInstruction_3942, &_call_f_processingInstruction_3942); - methods += new qt_gsi::GenericMethod ("setDocumentLocator", "@brief Method (QXmlLocator *)\nThis is a reimplementation of QXmlContentHandler::setDocumentLocator", false, &_init_f_setDocumentLocator_1732, &_call_f_setDocumentLocator_1732); - methods += new qt_gsi::GenericMethod ("skippedEntity", "@brief Method (const QString &)\nThis is a reimplementation of QXmlContentHandler::skippedEntity", false, &_init_f_skippedEntity_2025, &_call_f_skippedEntity_2025); - methods += new qt_gsi::GenericMethod ("startCDATA", "@brief Method ()\nThis is a reimplementation of QXmlLexicalHandler::startCDATA", false, &_init_f_startCDATA_0, &_call_f_startCDATA_0); - methods += new qt_gsi::GenericMethod ("startDTD", "@brief Method (const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlLexicalHandler::startDTD", false, &_init_f_startDTD_5859, &_call_f_startDTD_5859); - methods += new qt_gsi::GenericMethod ("startDocument", "@brief Method ()\nThis is a reimplementation of QXmlContentHandler::startDocument", false, &_init_f_startDocument_0, &_call_f_startDocument_0); - methods += new qt_gsi::GenericMethod ("startElement", "@brief Method (const QString &, const QString &, const QString &, const QXmlAttributes &)\nThis is a reimplementation of QXmlContentHandler::startElement", false, &_init_f_startElement_8513, &_call_f_startElement_8513); - methods += new qt_gsi::GenericMethod ("startEntity", "@brief Method (const QString &)\nThis is a reimplementation of QXmlLexicalHandler::startEntity", false, &_init_f_startEntity_2025, &_call_f_startEntity_2025); - methods += new qt_gsi::GenericMethod ("startPrefixMapping", "@brief Method (const QString &, const QString &)\nThis is a reimplementation of QXmlContentHandler::startPrefixMapping", false, &_init_f_startPrefixMapping_3942, &_call_f_startPrefixMapping_3942); - methods += new qt_gsi::GenericMethod ("unparsedEntityDecl", "@brief Method (const QString &, const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlDTDHandler::unparsedEntityDecl", false, &_init_f_unparsedEntityDecl_7776, &_call_f_unparsedEntityDecl_7776); - methods += new qt_gsi::GenericMethod ("warning", "@brief Method (const QXmlParseException &)\nThis is a reimplementation of QXmlErrorHandler::warning", false, &_init_f_warning_3149, &_call_f_warning_3149); + methods += new qt_gsi::GenericMethod ("attributeDecl", "@brief Method bool QXmlDefaultHandler::attributeDecl(const QString &eName, const QString &aName, const QString &type, const QString &valueDefault, const QString &value)\nThis is a reimplementation of QXmlDeclHandler::attributeDecl", false, &_init_f_attributeDecl_9693, &_call_f_attributeDecl_9693); + methods += new qt_gsi::GenericMethod ("characters", "@brief Method bool QXmlDefaultHandler::characters(const QString &ch)\nThis is a reimplementation of QXmlContentHandler::characters", false, &_init_f_characters_2025, &_call_f_characters_2025); + methods += new qt_gsi::GenericMethod ("comment", "@brief Method bool QXmlDefaultHandler::comment(const QString &ch)\nThis is a reimplementation of QXmlLexicalHandler::comment", false, &_init_f_comment_2025, &_call_f_comment_2025); + methods += new qt_gsi::GenericMethod ("endCDATA", "@brief Method bool QXmlDefaultHandler::endCDATA()\nThis is a reimplementation of QXmlLexicalHandler::endCDATA", false, &_init_f_endCDATA_0, &_call_f_endCDATA_0); + methods += new qt_gsi::GenericMethod ("endDTD", "@brief Method bool QXmlDefaultHandler::endDTD()\nThis is a reimplementation of QXmlLexicalHandler::endDTD", false, &_init_f_endDTD_0, &_call_f_endDTD_0); + methods += new qt_gsi::GenericMethod ("endDocument", "@brief Method bool QXmlDefaultHandler::endDocument()\nThis is a reimplementation of QXmlContentHandler::endDocument", false, &_init_f_endDocument_0, &_call_f_endDocument_0); + methods += new qt_gsi::GenericMethod ("endElement", "@brief Method bool QXmlDefaultHandler::endElement(const QString &namespaceURI, const QString &localName, const QString &qName)\nThis is a reimplementation of QXmlContentHandler::endElement", false, &_init_f_endElement_5859, &_call_f_endElement_5859); + methods += new qt_gsi::GenericMethod ("endEntity", "@brief Method bool QXmlDefaultHandler::endEntity(const QString &name)\nThis is a reimplementation of QXmlLexicalHandler::endEntity", false, &_init_f_endEntity_2025, &_call_f_endEntity_2025); + methods += new qt_gsi::GenericMethod ("endPrefixMapping", "@brief Method bool QXmlDefaultHandler::endPrefixMapping(const QString &prefix)\nThis is a reimplementation of QXmlContentHandler::endPrefixMapping", false, &_init_f_endPrefixMapping_2025, &_call_f_endPrefixMapping_2025); + methods += new qt_gsi::GenericMethod ("error", "@brief Method bool QXmlDefaultHandler::error(const QXmlParseException &exception)\nThis is a reimplementation of QXmlErrorHandler::error", false, &_init_f_error_3149, &_call_f_error_3149); + methods += new qt_gsi::GenericMethod ("errorString", "@brief Method QString QXmlDefaultHandler::errorString()\nThis is a reimplementation of QXmlContentHandler::errorString", true, &_init_f_errorString_c0, &_call_f_errorString_c0); + methods += new qt_gsi::GenericMethod ("externalEntityDecl", "@brief Method bool QXmlDefaultHandler::externalEntityDecl(const QString &name, const QString &publicId, const QString &systemId)\nThis is a reimplementation of QXmlDeclHandler::externalEntityDecl", false, &_init_f_externalEntityDecl_5859, &_call_f_externalEntityDecl_5859); + methods += new qt_gsi::GenericMethod ("fatalError", "@brief Method bool QXmlDefaultHandler::fatalError(const QXmlParseException &exception)\nThis is a reimplementation of QXmlErrorHandler::fatalError", false, &_init_f_fatalError_3149, &_call_f_fatalError_3149); + methods += new qt_gsi::GenericMethod ("ignorableWhitespace", "@brief Method bool QXmlDefaultHandler::ignorableWhitespace(const QString &ch)\nThis is a reimplementation of QXmlContentHandler::ignorableWhitespace", false, &_init_f_ignorableWhitespace_2025, &_call_f_ignorableWhitespace_2025); + methods += new qt_gsi::GenericMethod ("internalEntityDecl", "@brief Method bool QXmlDefaultHandler::internalEntityDecl(const QString &name, const QString &value)\nThis is a reimplementation of QXmlDeclHandler::internalEntityDecl", false, &_init_f_internalEntityDecl_3942, &_call_f_internalEntityDecl_3942); + methods += new qt_gsi::GenericMethod ("notationDecl", "@brief Method bool QXmlDefaultHandler::notationDecl(const QString &name, const QString &publicId, const QString &systemId)\nThis is a reimplementation of QXmlDTDHandler::notationDecl", false, &_init_f_notationDecl_5859, &_call_f_notationDecl_5859); + methods += new qt_gsi::GenericMethod ("processingInstruction", "@brief Method bool QXmlDefaultHandler::processingInstruction(const QString &target, const QString &data)\nThis is a reimplementation of QXmlContentHandler::processingInstruction", false, &_init_f_processingInstruction_3942, &_call_f_processingInstruction_3942); + methods += new qt_gsi::GenericMethod ("setDocumentLocator", "@brief Method void QXmlDefaultHandler::setDocumentLocator(QXmlLocator *locator)\nThis is a reimplementation of QXmlContentHandler::setDocumentLocator", false, &_init_f_setDocumentLocator_1732, &_call_f_setDocumentLocator_1732); + methods += new qt_gsi::GenericMethod ("skippedEntity", "@brief Method bool QXmlDefaultHandler::skippedEntity(const QString &name)\nThis is a reimplementation of QXmlContentHandler::skippedEntity", false, &_init_f_skippedEntity_2025, &_call_f_skippedEntity_2025); + methods += new qt_gsi::GenericMethod ("startCDATA", "@brief Method bool QXmlDefaultHandler::startCDATA()\nThis is a reimplementation of QXmlLexicalHandler::startCDATA", false, &_init_f_startCDATA_0, &_call_f_startCDATA_0); + methods += new qt_gsi::GenericMethod ("startDTD", "@brief Method bool QXmlDefaultHandler::startDTD(const QString &name, const QString &publicId, const QString &systemId)\nThis is a reimplementation of QXmlLexicalHandler::startDTD", false, &_init_f_startDTD_5859, &_call_f_startDTD_5859); + methods += new qt_gsi::GenericMethod ("startDocument", "@brief Method bool QXmlDefaultHandler::startDocument()\nThis is a reimplementation of QXmlContentHandler::startDocument", false, &_init_f_startDocument_0, &_call_f_startDocument_0); + methods += new qt_gsi::GenericMethod ("startElement", "@brief Method bool QXmlDefaultHandler::startElement(const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &atts)\nThis is a reimplementation of QXmlContentHandler::startElement", false, &_init_f_startElement_8513, &_call_f_startElement_8513); + methods += new qt_gsi::GenericMethod ("startEntity", "@brief Method bool QXmlDefaultHandler::startEntity(const QString &name)\nThis is a reimplementation of QXmlLexicalHandler::startEntity", false, &_init_f_startEntity_2025, &_call_f_startEntity_2025); + methods += new qt_gsi::GenericMethod ("startPrefixMapping", "@brief Method bool QXmlDefaultHandler::startPrefixMapping(const QString &prefix, const QString &uri)\nThis is a reimplementation of QXmlContentHandler::startPrefixMapping", false, &_init_f_startPrefixMapping_3942, &_call_f_startPrefixMapping_3942); + methods += new qt_gsi::GenericMethod ("unparsedEntityDecl", "@brief Method bool QXmlDefaultHandler::unparsedEntityDecl(const QString &name, const QString &publicId, const QString &systemId, const QString ¬ationName)\nThis is a reimplementation of QXmlDTDHandler::unparsedEntityDecl", false, &_init_f_unparsedEntityDecl_7776, &_call_f_unparsedEntityDecl_7776); + methods += new qt_gsi::GenericMethod ("warning", "@brief Method bool QXmlDefaultHandler::warning(const QXmlParseException &exception)\nThis is a reimplementation of QXmlErrorHandler::warning", false, &_init_f_warning_3149, &_call_f_warning_3149); methods += new qt_gsi::GenericMethod ("asQXmlContentHandler", "@brief Delivers the base class interface QXmlContentHandler of QXmlDefaultHandler\nClass QXmlDefaultHandler is derived from multiple base classes. This method delivers the QXmlContentHandler base class aspect.", false, &_init_f_QXmlDefaultHandler_as_QXmlContentHandler, &_call_f_QXmlDefaultHandler_as_QXmlContentHandler); methods += new qt_gsi::GenericMethod ("asConstQXmlContentHandler", "@brief Delivers the base class interface QXmlContentHandler of QXmlDefaultHandler\nClass QXmlDefaultHandler is derived from multiple base classes. This method delivers the QXmlContentHandler base class aspect.\n\nUse this version if you have a const reference.", true, &_init_f_QXmlDefaultHandler_as_const_QXmlContentHandler, &_call_f_QXmlDefaultHandler_as_const_QXmlContentHandler); methods += new qt_gsi::GenericMethod ("asQXmlErrorHandler", "@brief Delivers the base class interface QXmlErrorHandler of QXmlDefaultHandler\nClass QXmlDefaultHandler is derived from multiple base classes. This method delivers the QXmlErrorHandler base class aspect.", false, &_init_f_QXmlDefaultHandler_as_QXmlErrorHandler, &_call_f_QXmlDefaultHandler_as_QXmlErrorHandler); diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc index 8771095eb..024d5f713 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc @@ -43,7 +43,7 @@ // ----------------------------------------------------------------------- // class QXmlSimpleReader -// () const +// QXmlDTDHandler *QXmlSimpleReader::DTDHandler() static void _init_f_DTDHandler_c0 (qt_gsi::GenericMethod *decl) @@ -58,7 +58,7 @@ static void _call_f_DTDHandler_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QXmlContentHandler *QXmlSimpleReader::contentHandler() static void _init_f_contentHandler_c0 (qt_gsi::GenericMethod *decl) @@ -73,7 +73,7 @@ static void _call_f_contentHandler_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QXmlDeclHandler *QXmlSimpleReader::declHandler() static void _init_f_declHandler_c0 (qt_gsi::GenericMethod *decl) @@ -88,7 +88,7 @@ static void _call_f_declHandler_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QXmlEntityResolver *QXmlSimpleReader::entityResolver() static void _init_f_entityResolver_c0 (qt_gsi::GenericMethod *decl) @@ -103,7 +103,7 @@ static void _call_f_entityResolver_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QXmlErrorHandler *QXmlSimpleReader::errorHandler() static void _init_f_errorHandler_c0 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_errorHandler_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &, bool *) const +// bool QXmlSimpleReader::feature(const QString &name, bool *ok) static void _init_f_feature_c2967 (qt_gsi::GenericMethod *decl) @@ -140,7 +140,7 @@ static void _call_f_feature_c2967 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) const +// bool QXmlSimpleReader::hasFeature(const QString &name) static void _init_f_hasFeature_c2025 (qt_gsi::GenericMethod *decl) @@ -159,7 +159,7 @@ static void _call_f_hasFeature_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QString &) const +// bool QXmlSimpleReader::hasProperty(const QString &name) static void _init_f_hasProperty_c2025 (qt_gsi::GenericMethod *decl) @@ -178,7 +178,7 @@ static void _call_f_hasProperty_c2025 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QXmlLexicalHandler *QXmlSimpleReader::lexicalHandler() static void _init_f_lexicalHandler_c0 (qt_gsi::GenericMethod *decl) @@ -193,7 +193,7 @@ static void _call_f_lexicalHandler_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QXmlInputSource *) +// bool QXmlSimpleReader::parse(const QXmlInputSource *input) static void _init_f_parse_2856 (qt_gsi::GenericMethod *decl) @@ -212,7 +212,7 @@ static void _call_f_parse_2856 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QXmlInputSource *, bool) +// bool QXmlSimpleReader::parse(const QXmlInputSource *input, bool incremental) static void _init_f_parse_3612 (qt_gsi::GenericMethod *decl) @@ -249,7 +249,7 @@ static void _call_f_parseContinue_0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &, bool *) const +// void *QXmlSimpleReader::property(const QString &name, bool *ok) static void _init_f_property_c2967 (qt_gsi::GenericMethod *decl) @@ -271,7 +271,7 @@ static void _call_f_property_c2967 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QXmlContentHandler *) +// void QXmlSimpleReader::setContentHandler(QXmlContentHandler *handler) static void _init_f_setContentHandler_2441 (qt_gsi::GenericMethod *decl) @@ -291,7 +291,7 @@ static void _call_f_setContentHandler_2441 (const qt_gsi::GenericMethod * /*decl } -// (QXmlDTDHandler *) +// void QXmlSimpleReader::setDTDHandler(QXmlDTDHandler *handler) static void _init_f_setDTDHandler_1930 (qt_gsi::GenericMethod *decl) @@ -311,7 +311,7 @@ static void _call_f_setDTDHandler_1930 (const qt_gsi::GenericMethod * /*decl*/, } -// (QXmlDeclHandler *) +// void QXmlSimpleReader::setDeclHandler(QXmlDeclHandler *handler) static void _init_f_setDeclHandler_2086 (qt_gsi::GenericMethod *decl) @@ -331,7 +331,7 @@ static void _call_f_setDeclHandler_2086 (const qt_gsi::GenericMethod * /*decl*/, } -// (QXmlEntityResolver *) +// void QXmlSimpleReader::setEntityResolver(QXmlEntityResolver *handler) static void _init_f_setEntityResolver_2495 (qt_gsi::GenericMethod *decl) @@ -351,7 +351,7 @@ static void _call_f_setEntityResolver_2495 (const qt_gsi::GenericMethod * /*decl } -// (QXmlErrorHandler *) +// void QXmlSimpleReader::setErrorHandler(QXmlErrorHandler *handler) static void _init_f_setErrorHandler_2232 (qt_gsi::GenericMethod *decl) @@ -371,7 +371,7 @@ static void _call_f_setErrorHandler_2232 (const qt_gsi::GenericMethod * /*decl*/ } -// (const QString &, bool) +// void QXmlSimpleReader::setFeature(const QString &name, bool value) static void _init_f_setFeature_2781 (qt_gsi::GenericMethod *decl) @@ -394,7 +394,7 @@ static void _call_f_setFeature_2781 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QXmlLexicalHandler *) +// void QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler *handler) static void _init_f_setLexicalHandler_2416 (qt_gsi::GenericMethod *decl) @@ -414,7 +414,7 @@ static void _call_f_setLexicalHandler_2416 (const qt_gsi::GenericMethod * /*decl } -// (const QString &, void *) +// void QXmlSimpleReader::setProperty(const QString &name, void *value) static void _init_f_setProperty_2973 (qt_gsi::GenericMethod *decl) @@ -442,27 +442,27 @@ namespace gsi static gsi::Methods methods_QXmlSimpleReader () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("DTDHandler", "@brief Method () const\nThis is a reimplementation of QXmlReader::DTDHandler", true, &_init_f_DTDHandler_c0, &_call_f_DTDHandler_c0); - methods += new qt_gsi::GenericMethod (":contentHandler", "@brief Method () const\nThis is a reimplementation of QXmlReader::contentHandler", true, &_init_f_contentHandler_c0, &_call_f_contentHandler_c0); - methods += new qt_gsi::GenericMethod (":declHandler", "@brief Method () const\nThis is a reimplementation of QXmlReader::declHandler", true, &_init_f_declHandler_c0, &_call_f_declHandler_c0); - methods += new qt_gsi::GenericMethod (":entityResolver", "@brief Method () const\nThis is a reimplementation of QXmlReader::entityResolver", true, &_init_f_entityResolver_c0, &_call_f_entityResolver_c0); - methods += new qt_gsi::GenericMethod (":errorHandler", "@brief Method () const\nThis is a reimplementation of QXmlReader::errorHandler", true, &_init_f_errorHandler_c0, &_call_f_errorHandler_c0); - methods += new qt_gsi::GenericMethod ("feature", "@brief Method (const QString &, bool *) const\nThis is a reimplementation of QXmlReader::feature", true, &_init_f_feature_c2967, &_call_f_feature_c2967); - methods += new qt_gsi::GenericMethod ("hasFeature", "@brief Method (const QString &) const\nThis is a reimplementation of QXmlReader::hasFeature", true, &_init_f_hasFeature_c2025, &_call_f_hasFeature_c2025); - methods += new qt_gsi::GenericMethod ("hasProperty", "@brief Method (const QString &) const\nThis is a reimplementation of QXmlReader::hasProperty", true, &_init_f_hasProperty_c2025, &_call_f_hasProperty_c2025); - methods += new qt_gsi::GenericMethod (":lexicalHandler", "@brief Method () const\nThis is a reimplementation of QXmlReader::lexicalHandler", true, &_init_f_lexicalHandler_c0, &_call_f_lexicalHandler_c0); - methods += new qt_gsi::GenericMethod ("parse", "@brief Method (const QXmlInputSource *)\nThis is a reimplementation of QXmlReader::parse", false, &_init_f_parse_2856, &_call_f_parse_2856); - methods += new qt_gsi::GenericMethod ("parse", "@brief Method (const QXmlInputSource *, bool)\n", false, &_init_f_parse_3612, &_call_f_parse_3612); + methods += new qt_gsi::GenericMethod ("DTDHandler", "@brief Method QXmlDTDHandler *QXmlSimpleReader::DTDHandler()\nThis is a reimplementation of QXmlReader::DTDHandler", true, &_init_f_DTDHandler_c0, &_call_f_DTDHandler_c0); + methods += new qt_gsi::GenericMethod (":contentHandler", "@brief Method QXmlContentHandler *QXmlSimpleReader::contentHandler()\nThis is a reimplementation of QXmlReader::contentHandler", true, &_init_f_contentHandler_c0, &_call_f_contentHandler_c0); + methods += new qt_gsi::GenericMethod (":declHandler", "@brief Method QXmlDeclHandler *QXmlSimpleReader::declHandler()\nThis is a reimplementation of QXmlReader::declHandler", true, &_init_f_declHandler_c0, &_call_f_declHandler_c0); + methods += new qt_gsi::GenericMethod (":entityResolver", "@brief Method QXmlEntityResolver *QXmlSimpleReader::entityResolver()\nThis is a reimplementation of QXmlReader::entityResolver", true, &_init_f_entityResolver_c0, &_call_f_entityResolver_c0); + methods += new qt_gsi::GenericMethod (":errorHandler", "@brief Method QXmlErrorHandler *QXmlSimpleReader::errorHandler()\nThis is a reimplementation of QXmlReader::errorHandler", true, &_init_f_errorHandler_c0, &_call_f_errorHandler_c0); + methods += new qt_gsi::GenericMethod ("feature", "@brief Method bool QXmlSimpleReader::feature(const QString &name, bool *ok)\nThis is a reimplementation of QXmlReader::feature", true, &_init_f_feature_c2967, &_call_f_feature_c2967); + methods += new qt_gsi::GenericMethod ("hasFeature", "@brief Method bool QXmlSimpleReader::hasFeature(const QString &name)\nThis is a reimplementation of QXmlReader::hasFeature", true, &_init_f_hasFeature_c2025, &_call_f_hasFeature_c2025); + methods += new qt_gsi::GenericMethod ("hasProperty", "@brief Method bool QXmlSimpleReader::hasProperty(const QString &name)\nThis is a reimplementation of QXmlReader::hasProperty", true, &_init_f_hasProperty_c2025, &_call_f_hasProperty_c2025); + methods += new qt_gsi::GenericMethod (":lexicalHandler", "@brief Method QXmlLexicalHandler *QXmlSimpleReader::lexicalHandler()\nThis is a reimplementation of QXmlReader::lexicalHandler", true, &_init_f_lexicalHandler_c0, &_call_f_lexicalHandler_c0); + methods += new qt_gsi::GenericMethod ("parse", "@brief Method bool QXmlSimpleReader::parse(const QXmlInputSource *input)\nThis is a reimplementation of QXmlReader::parse", false, &_init_f_parse_2856, &_call_f_parse_2856); + methods += new qt_gsi::GenericMethod ("parse", "@brief Method bool QXmlSimpleReader::parse(const QXmlInputSource *input, bool incremental)\n", false, &_init_f_parse_3612, &_call_f_parse_3612); methods += new qt_gsi::GenericMethod ("parseContinue", "@brief Method bool QXmlSimpleReader::parseContinue()\n", false, &_init_f_parseContinue_0, &_call_f_parseContinue_0); - methods += new qt_gsi::GenericMethod ("property", "@brief Method (const QString &, bool *) const\nThis is a reimplementation of QXmlReader::property", true, &_init_f_property_c2967, &_call_f_property_c2967); - methods += new qt_gsi::GenericMethod ("setContentHandler|contentHandler=", "@brief Method (QXmlContentHandler *)\nThis is a reimplementation of QXmlReader::setContentHandler", false, &_init_f_setContentHandler_2441, &_call_f_setContentHandler_2441); - methods += new qt_gsi::GenericMethod ("setDTDHandler", "@brief Method (QXmlDTDHandler *)\nThis is a reimplementation of QXmlReader::setDTDHandler", false, &_init_f_setDTDHandler_1930, &_call_f_setDTDHandler_1930); - methods += new qt_gsi::GenericMethod ("setDeclHandler|declHandler=", "@brief Method (QXmlDeclHandler *)\nThis is a reimplementation of QXmlReader::setDeclHandler", false, &_init_f_setDeclHandler_2086, &_call_f_setDeclHandler_2086); - methods += new qt_gsi::GenericMethod ("setEntityResolver|entityResolver=", "@brief Method (QXmlEntityResolver *)\nThis is a reimplementation of QXmlReader::setEntityResolver", false, &_init_f_setEntityResolver_2495, &_call_f_setEntityResolver_2495); - methods += new qt_gsi::GenericMethod ("setErrorHandler|errorHandler=", "@brief Method (QXmlErrorHandler *)\nThis is a reimplementation of QXmlReader::setErrorHandler", false, &_init_f_setErrorHandler_2232, &_call_f_setErrorHandler_2232); - methods += new qt_gsi::GenericMethod ("setFeature", "@brief Method (const QString &, bool)\nThis is a reimplementation of QXmlReader::setFeature", false, &_init_f_setFeature_2781, &_call_f_setFeature_2781); - methods += new qt_gsi::GenericMethod ("setLexicalHandler|lexicalHandler=", "@brief Method (QXmlLexicalHandler *)\nThis is a reimplementation of QXmlReader::setLexicalHandler", false, &_init_f_setLexicalHandler_2416, &_call_f_setLexicalHandler_2416); - methods += new qt_gsi::GenericMethod ("setProperty", "@brief Method (const QString &, void *)\nThis is a reimplementation of QXmlReader::setProperty", false, &_init_f_setProperty_2973, &_call_f_setProperty_2973); + methods += new qt_gsi::GenericMethod ("property", "@brief Method void *QXmlSimpleReader::property(const QString &name, bool *ok)\nThis is a reimplementation of QXmlReader::property", true, &_init_f_property_c2967, &_call_f_property_c2967); + methods += new qt_gsi::GenericMethod ("setContentHandler|contentHandler=", "@brief Method void QXmlSimpleReader::setContentHandler(QXmlContentHandler *handler)\nThis is a reimplementation of QXmlReader::setContentHandler", false, &_init_f_setContentHandler_2441, &_call_f_setContentHandler_2441); + methods += new qt_gsi::GenericMethod ("setDTDHandler", "@brief Method void QXmlSimpleReader::setDTDHandler(QXmlDTDHandler *handler)\nThis is a reimplementation of QXmlReader::setDTDHandler", false, &_init_f_setDTDHandler_1930, &_call_f_setDTDHandler_1930); + methods += new qt_gsi::GenericMethod ("setDeclHandler|declHandler=", "@brief Method void QXmlSimpleReader::setDeclHandler(QXmlDeclHandler *handler)\nThis is a reimplementation of QXmlReader::setDeclHandler", false, &_init_f_setDeclHandler_2086, &_call_f_setDeclHandler_2086); + methods += new qt_gsi::GenericMethod ("setEntityResolver|entityResolver=", "@brief Method void QXmlSimpleReader::setEntityResolver(QXmlEntityResolver *handler)\nThis is a reimplementation of QXmlReader::setEntityResolver", false, &_init_f_setEntityResolver_2495, &_call_f_setEntityResolver_2495); + methods += new qt_gsi::GenericMethod ("setErrorHandler|errorHandler=", "@brief Method void QXmlSimpleReader::setErrorHandler(QXmlErrorHandler *handler)\nThis is a reimplementation of QXmlReader::setErrorHandler", false, &_init_f_setErrorHandler_2232, &_call_f_setErrorHandler_2232); + methods += new qt_gsi::GenericMethod ("setFeature", "@brief Method void QXmlSimpleReader::setFeature(const QString &name, bool value)\nThis is a reimplementation of QXmlReader::setFeature", false, &_init_f_setFeature_2781, &_call_f_setFeature_2781); + methods += new qt_gsi::GenericMethod ("setLexicalHandler|lexicalHandler=", "@brief Method void QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler *handler)\nThis is a reimplementation of QXmlReader::setLexicalHandler", false, &_init_f_setLexicalHandler_2416, &_call_f_setLexicalHandler_2416); + methods += new qt_gsi::GenericMethod ("setProperty", "@brief Method void QXmlSimpleReader::setProperty(const QString &name, void *value)\nThis is a reimplementation of QXmlReader::setProperty", false, &_init_f_setProperty_2973, &_call_f_setProperty_2973); return methods; } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc index 377ec1f39..69e1729b8 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc @@ -630,7 +630,7 @@ static void _call_f_moveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// QModelIndex QAbstractItemModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -649,7 +649,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QObject *QAbstractItemModel::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -1075,8 +1075,8 @@ static gsi::Methods methods_QAbstractItemModel () { methods += new qt_gsi::GenericMethod ("moveColumns", "@brief Method bool QAbstractItemModel::moveColumns(const QModelIndex &sourceParent, int sourceColumn, int count, const QModelIndex &destinationParent, int destinationChild)\n", false, &_init_f_moveColumns_6659, &_call_f_moveColumns_6659); methods += new qt_gsi::GenericMethod ("moveRow", "@brief Method bool QAbstractItemModel::moveRow(const QModelIndex &sourceParent, int sourceRow, const QModelIndex &destinationParent, int destinationChild)\n", false, &_init_f_moveRow_6000, &_call_f_moveRow_6000); methods += new qt_gsi::GenericMethod ("moveRows", "@brief Method bool QAbstractItemModel::moveRows(const QModelIndex &sourceParent, int sourceRow, int count, const QModelIndex &destinationParent, int destinationChild)\n", false, &_init_f_moveRows_6659, &_call_f_moveRows_6659); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\n", true, &_init_f_parent_c2395, &_call_f_parent_c2395); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QAbstractItemModel::parent(const QModelIndex &child)\n", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QObject *QAbstractItemModel::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); methods += new qt_gsi::GenericMethod ("removeColumn", "@brief Method bool QAbstractItemModel::removeColumn(int column, const QModelIndex &parent)\n", false, &_init_f_removeColumn_3054, &_call_f_removeColumn_3054); methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QAbstractItemModel::removeColumns(int column, int count, const QModelIndex &parent)\n", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); methods += new qt_gsi::GenericMethod ("removeRow", "@brief Method bool QAbstractItemModel::removeRow(int row, const QModelIndex &parent)\n", false, &_init_f_removeRow_3054, &_call_f_removeRow_3054); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc index bc9f80f23..92f67ee02 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc @@ -60,7 +60,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QAbstractListModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -91,7 +91,7 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &) const +// QFlags QAbstractListModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -110,7 +110,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, int, const QModelIndex &) const +// QModelIndex QAbstractListModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -135,7 +135,7 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QObject *QAbstractListModel::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -150,7 +150,7 @@ static void _call_f_parent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int, int, const QModelIndex &) const +// QModelIndex QAbstractListModel::sibling(int row, int column, const QModelIndex &idx) static void _init_f_sibling_c3713 (qt_gsi::GenericMethod *decl) @@ -231,11 +231,11 @@ namespace gsi static gsi::Methods methods_QAbstractListModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); - methods += new qt_gsi::GenericMethod ("sibling", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QAbstractListModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QAbstractListModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QAbstractListModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QObject *QAbstractListModel::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("sibling", "@brief Method QModelIndex QAbstractListModel::sibling(int row, int column, const QModelIndex &idx)\nThis is a reimplementation of QAbstractItemModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); methods += gsi::qt_signal & > ("dataChanged(const QModelIndex &, const QModelIndex &, const QVector &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), gsi::arg("roles"), "@brief Signal declaration for QAbstractListModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QAbstractListModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QAbstractListModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc index 9a3933e83..07ba2ef73 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc @@ -62,7 +62,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &) const +// QModelIndex QAbstractProxyModel::buddy(const QModelIndex &index) static void _init_f_buddy_c2395 (qt_gsi::GenericMethod *decl) @@ -81,7 +81,7 @@ static void _call_f_buddy_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) const +// bool QAbstractProxyModel::canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_canDropMimeData_c7425 (qt_gsi::GenericMethod *decl) @@ -112,7 +112,7 @@ static void _call_f_canDropMimeData_c7425 (const qt_gsi::GenericMethod * /*decl* } -// (const QModelIndex &) const +// bool QAbstractProxyModel::canFetchMore(const QModelIndex &parent) static void _init_f_canFetchMore_c2395 (qt_gsi::GenericMethod *decl) @@ -131,7 +131,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &, int) const +// QVariant QAbstractProxyModel::data(const QModelIndex &proxyIndex, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -153,7 +153,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QAbstractProxyModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -184,7 +184,7 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &) +// void QAbstractProxyModel::fetchMore(const QModelIndex &parent) static void _init_f_fetchMore_2395 (qt_gsi::GenericMethod *decl) @@ -204,7 +204,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// QFlags QAbstractProxyModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -223,7 +223,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QAbstractProxyModel::hasChildren(const QModelIndex &parent) static void _init_f_hasChildren_c2395 (qt_gsi::GenericMethod *decl) @@ -242,7 +242,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, Qt::Orientation, int) const +// QVariant QAbstractProxyModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -267,7 +267,7 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QModelIndex &) const +// QMap QAbstractProxyModel::itemData(const QModelIndex &index) static void _init_f_itemData_c2395 (qt_gsi::GenericMethod *decl) @@ -362,7 +362,7 @@ static void _call_f_mapToSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QList &) const +// QMimeData *QAbstractProxyModel::mimeData(const QList &indexes) static void _init_f_mimeData_c3010 (qt_gsi::GenericMethod *decl) @@ -381,7 +381,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QStringList QAbstractProxyModel::mimeTypes() static void _init_f_mimeTypes_c0 (qt_gsi::GenericMethod *decl) @@ -396,7 +396,7 @@ static void _call_f_mimeTypes_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () +// void QAbstractProxyModel::revert() static void _init_f_revert_0 (qt_gsi::GenericMethod *decl) @@ -412,7 +412,7 @@ static void _call_f_revert_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &, const QVariant &, int) +// bool QAbstractProxyModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -437,7 +437,7 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, Qt::Orientation, const QVariant &, int) +// bool QAbstractProxyModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role) static void _init_f_setHeaderData_5242 (qt_gsi::GenericMethod *decl) @@ -465,7 +465,7 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &, const QMap &) +// bool QAbstractProxyModel::setItemData(const QModelIndex &index, const QMap &roles) static void _init_f_setItemData_5414 (qt_gsi::GenericMethod *decl) @@ -507,7 +507,7 @@ static void _call_f_setSourceModel_2419 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) const +// QModelIndex QAbstractProxyModel::sibling(int row, int column, const QModelIndex &idx) static void _init_f_sibling_c3713 (qt_gsi::GenericMethod *decl) @@ -532,7 +532,7 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, Qt::SortOrder) +// void QAbstractProxyModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -570,7 +570,7 @@ static void _call_f_sourceModel_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// QSize QAbstractProxyModel::span(const QModelIndex &index) static void _init_f_span_c2395 (qt_gsi::GenericMethod *decl) @@ -589,7 +589,7 @@ static void _call_f_span_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () +// bool QAbstractProxyModel::submit() static void _init_f_submit_0 (qt_gsi::GenericMethod *decl) @@ -604,7 +604,7 @@ static void _call_f_submit_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QFlags QAbstractProxyModel::supportedDragActions() static void _init_f_supportedDragActions_c0 (qt_gsi::GenericMethod *decl) @@ -619,7 +619,7 @@ static void _call_f_supportedDragActions_c0 (const qt_gsi::GenericMethod * /*dec } -// () const +// QFlags QAbstractProxyModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -690,34 +690,34 @@ namespace gsi static gsi::Methods methods_QAbstractProxyModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("buddy", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::buddy", true, &_init_f_buddy_c2395, &_call_f_buddy_c2395); - methods += new qt_gsi::GenericMethod ("canDropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::canDropMimeData", true, &_init_f_canDropMimeData_c7425, &_call_f_canDropMimeData_c7425); - methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); - methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); - methods += new qt_gsi::GenericMethod ("itemData", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::itemData", true, &_init_f_itemData_c2395, &_call_f_itemData_c2395); + methods += new qt_gsi::GenericMethod ("buddy", "@brief Method QModelIndex QAbstractProxyModel::buddy(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::buddy", true, &_init_f_buddy_c2395, &_call_f_buddy_c2395); + methods += new qt_gsi::GenericMethod ("canDropMimeData", "@brief Method bool QAbstractProxyModel::canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::canDropMimeData", true, &_init_f_canDropMimeData_c7425, &_call_f_canDropMimeData_c7425); + methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method bool QAbstractProxyModel::canFetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QAbstractProxyModel::data(const QModelIndex &proxyIndex, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QAbstractProxyModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method void QAbstractProxyModel::fetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QAbstractProxyModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method bool QAbstractProxyModel::hasChildren(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QAbstractProxyModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("itemData", "@brief Method QMap QAbstractProxyModel::itemData(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::itemData", true, &_init_f_itemData_c2395, &_call_f_itemData_c2395); methods += new qt_gsi::GenericMethod ("mapFromSource", "@brief Method QModelIndex QAbstractProxyModel::mapFromSource(const QModelIndex &sourceIndex)\n", true, &_init_f_mapFromSource_c2395, &_call_f_mapFromSource_c2395); methods += new qt_gsi::GenericMethod ("mapSelectionFromSource", "@brief Method QItemSelection QAbstractProxyModel::mapSelectionFromSource(const QItemSelection &selection)\n", true, &_init_f_mapSelectionFromSource_c2727, &_call_f_mapSelectionFromSource_c2727); methods += new qt_gsi::GenericMethod ("mapSelectionToSource", "@brief Method QItemSelection QAbstractProxyModel::mapSelectionToSource(const QItemSelection &selection)\n", true, &_init_f_mapSelectionToSource_c2727, &_call_f_mapSelectionToSource_c2727); methods += new qt_gsi::GenericMethod ("mapToSource", "@brief Method QModelIndex QAbstractProxyModel::mapToSource(const QModelIndex &proxyIndex)\n", true, &_init_f_mapToSource_c2395, &_call_f_mapToSource_c2395); - methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method (const QList &) const\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); - methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); - methods += new qt_gsi::GenericMethod ("revert", "@brief Method ()\nThis is a reimplementation of QAbstractItemModel::revert", false, &_init_f_revert_0, &_call_f_revert_0); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); - methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method (int, Qt::Orientation, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); - methods += new qt_gsi::GenericMethod ("setItemData", "@brief Method (const QModelIndex &, const QMap &)\nThis is a reimplementation of QAbstractItemModel::setItemData", false, &_init_f_setItemData_5414, &_call_f_setItemData_5414); + methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method QMimeData *QAbstractProxyModel::mimeData(const QList &indexes)\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); + methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method QStringList QAbstractProxyModel::mimeTypes()\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); + methods += new qt_gsi::GenericMethod ("revert", "@brief Method void QAbstractProxyModel::revert()\nThis is a reimplementation of QAbstractItemModel::revert", false, &_init_f_revert_0, &_call_f_revert_0); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QAbstractProxyModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method bool QAbstractProxyModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); + methods += new qt_gsi::GenericMethod ("setItemData", "@brief Method bool QAbstractProxyModel::setItemData(const QModelIndex &index, const QMap &roles)\nThis is a reimplementation of QAbstractItemModel::setItemData", false, &_init_f_setItemData_5414, &_call_f_setItemData_5414); methods += new qt_gsi::GenericMethod ("setSourceModel|sourceModel=", "@brief Method void QAbstractProxyModel::setSourceModel(QAbstractItemModel *sourceModel)\n", false, &_init_f_setSourceModel_2419, &_call_f_setSourceModel_2419); - methods += new qt_gsi::GenericMethod ("sibling", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("sibling", "@brief Method QModelIndex QAbstractProxyModel::sibling(int row, int column, const QModelIndex &idx)\nThis is a reimplementation of QAbstractItemModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QAbstractProxyModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); methods += new qt_gsi::GenericMethod (":sourceModel", "@brief Method QAbstractItemModel *QAbstractProxyModel::sourceModel()\n", true, &_init_f_sourceModel_c0, &_call_f_sourceModel_c0); - methods += new qt_gsi::GenericMethod ("span", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::span", true, &_init_f_span_c2395, &_call_f_span_c2395); - methods += new qt_gsi::GenericMethod ("submit", "@brief Method ()\nThis is a reimplementation of QAbstractItemModel::submit", false, &_init_f_submit_0, &_call_f_submit_0); - methods += new qt_gsi::GenericMethod ("supportedDragActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDragActions", true, &_init_f_supportedDragActions_c0, &_call_f_supportedDragActions_c0); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("span", "@brief Method QSize QAbstractProxyModel::span(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::span", true, &_init_f_span_c2395, &_call_f_span_c2395); + methods += new qt_gsi::GenericMethod ("submit", "@brief Method bool QAbstractProxyModel::submit()\nThis is a reimplementation of QAbstractItemModel::submit", false, &_init_f_submit_0, &_call_f_submit_0); + methods += new qt_gsi::GenericMethod ("supportedDragActions", "@brief Method QFlags QAbstractProxyModel::supportedDragActions()\nThis is a reimplementation of QAbstractItemModel::supportedDragActions", true, &_init_f_supportedDragActions_c0, &_call_f_supportedDragActions_c0); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QAbstractProxyModel::supportedDropActions()\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += gsi::qt_signal & > ("dataChanged(const QModelIndex &, const QModelIndex &, const QVector &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), gsi::arg("roles"), "@brief Signal declaration for QAbstractProxyModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QAbstractProxyModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QAbstractProxyModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc index 9d48f4b2b..055dad027 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc @@ -60,7 +60,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QAbstractTableModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -91,7 +91,7 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &) const +// QFlags QAbstractTableModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -110,7 +110,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, int, const QModelIndex &) const +// QModelIndex QAbstractTableModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -135,7 +135,7 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QObject *QAbstractTableModel::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -150,7 +150,7 @@ static void _call_f_parent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int, int, const QModelIndex &) const +// QModelIndex QAbstractTableModel::sibling(int row, int column, const QModelIndex &idx) static void _init_f_sibling_c3713 (qt_gsi::GenericMethod *decl) @@ -231,11 +231,11 @@ namespace gsi static gsi::Methods methods_QAbstractTableModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); - methods += new qt_gsi::GenericMethod ("sibling", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QAbstractTableModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QAbstractTableModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QAbstractTableModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QObject *QAbstractTableModel::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("sibling", "@brief Method QModelIndex QAbstractTableModel::sibling(int row, int column, const QModelIndex &idx)\nThis is a reimplementation of QAbstractItemModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); methods += gsi::qt_signal & > ("dataChanged(const QModelIndex &, const QModelIndex &, const QVector &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), gsi::arg("roles"), "@brief Signal declaration for QAbstractTableModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QAbstractTableModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QAbstractTableModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc b/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc index 94934e4a0..4fe48495e 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc @@ -94,7 +94,7 @@ static void _call_ctor_QBuffer_2812 (const qt_gsi::GenericStaticMethod * /*decl* } -// () const +// bool QBuffer::atEnd() static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) @@ -139,7 +139,7 @@ static void _call_f_buffer_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QBuffer::canReadLine() static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) @@ -154,7 +154,7 @@ static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QBuffer::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -185,7 +185,7 @@ static void _call_f_data_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QFlags) +// bool QBuffer::open(QFlags openMode) static void _init_f_open_3242 (qt_gsi::GenericMethod *decl) @@ -204,7 +204,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// qint64 QBuffer::pos() static void _init_f_pos_c0 (qt_gsi::GenericMethod *decl) @@ -219,7 +219,7 @@ static void _call_f_pos_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (qint64) +// bool QBuffer::seek(qint64 off) static void _init_f_seek_986 (qt_gsi::GenericMethod *decl) @@ -301,7 +301,7 @@ static void _call_f_setData_2390 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// qint64 QBuffer::size() static void _init_f_size_c0 (qt_gsi::GenericMethod *decl) @@ -375,19 +375,19 @@ static gsi::Methods methods_QBuffer () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QBuffer::QBuffer(QObject *parent)\nThis method creates an object of class QBuffer.", &_init_ctor_QBuffer_1302, &_call_ctor_QBuffer_1302); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QBuffer::QBuffer(QByteArray *buf, QObject *parent)\nThis method creates an object of class QBuffer.", &_init_ctor_QBuffer_2812, &_call_ctor_QBuffer_2812); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); + methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method bool QBuffer::atEnd()\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); methods += new qt_gsi::GenericMethod ("buffer", "@brief Method QByteArray &QBuffer::buffer()\n", false, &_init_f_buffer_0, &_call_f_buffer_0); methods += new qt_gsi::GenericMethod ("buffer", "@brief Method const QByteArray &QBuffer::buffer()\n", true, &_init_f_buffer_c0, &_call_f_buffer_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method bool QBuffer::canReadLine()\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QBuffer::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod (":data", "@brief Method const QByteArray &QBuffer::data()\n", true, &_init_f_data_c0, &_call_f_data_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QFlags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); - methods += new qt_gsi::GenericMethod ("pos", "@brief Method () const\nThis is a reimplementation of QIODevice::pos", true, &_init_f_pos_c0, &_call_f_pos_c0); - methods += new qt_gsi::GenericMethod ("seek", "@brief Method (qint64)\nThis is a reimplementation of QIODevice::seek", false, &_init_f_seek_986, &_call_f_seek_986); + methods += new qt_gsi::GenericMethod ("open", "@brief Method bool QBuffer::open(QFlags openMode)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); + methods += new qt_gsi::GenericMethod ("pos", "@brief Method qint64 QBuffer::pos()\nThis is a reimplementation of QIODevice::pos", true, &_init_f_pos_c0, &_call_f_pos_c0); + methods += new qt_gsi::GenericMethod ("seek", "@brief Method bool QBuffer::seek(qint64 off)\nThis is a reimplementation of QIODevice::seek", false, &_init_f_seek_986, &_call_f_seek_986); methods += new qt_gsi::GenericMethod ("setBuffer", "@brief Method void QBuffer::setBuffer(QByteArray *a)\n", false, &_init_f_setBuffer_1618, &_call_f_setBuffer_1618); methods += new qt_gsi::GenericMethod ("setData|data=", "@brief Method void QBuffer::setData(const QByteArray &data)\n", false, &_init_f_setData_2309, &_call_f_setData_2309); methods += new qt_gsi::GenericMethod ("setData", "@brief Method void QBuffer::setData(const char *data, int len)\n", false, &_init_f_setData_2390, &_call_f_setData_2390); - methods += new qt_gsi::GenericMethod ("size", "@brief Method () const\nThis is a reimplementation of QIODevice::size", true, &_init_f_size_c0, &_call_f_size_c0); + methods += new qt_gsi::GenericMethod ("size", "@brief Method qint64 QBuffer::size()\nThis is a reimplementation of QIODevice::size", true, &_init_f_size_c0, &_call_f_size_c0); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QBuffer::aboutToClose()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QBuffer::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QBuffer::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc index 798e732b0..5fbd0132b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc @@ -55,7 +55,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QEvent *) +// bool QEventLoop::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -258,7 +258,7 @@ namespace gsi static gsi::Methods methods_QEventLoop () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QObject::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QEventLoop::event(QEvent *event)\nThis is a reimplementation of QObject::event", false, &_init_f_event_1217, &_call_f_event_1217); methods += new qt_gsi::GenericMethod ("exec", "@brief Method int QEventLoop::exec(QFlags flags)\n", false, &_init_f_exec_3995, &_call_f_exec_3995); methods += new qt_gsi::GenericMethod ("exit", "@brief Method void QEventLoop::exit(int returnCode)\n", false, &_init_f_exit_767, &_call_f_exit_767); methods += new qt_gsi::GenericMethod ("isRunning?", "@brief Method bool QEventLoop::isRunning()\n", true, &_init_f_isRunning_c0, &_call_f_isRunning_c0); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc index 47366b037..d49757f79 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc @@ -162,7 +162,7 @@ static void _call_f_exists_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QString QFile::fileName() static void _init_f_fileName_c0 (qt_gsi::GenericMethod *decl) @@ -196,7 +196,7 @@ static void _call_f_link_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (QFlags) +// bool QFile::open(QFlags flags) static void _init_f_open_3242 (qt_gsi::GenericMethod *decl) @@ -215,7 +215,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QFlags QFile::permissions() static void _init_f_permissions_c0 (qt_gsi::GenericMethod *decl) @@ -279,7 +279,7 @@ static void _call_f_rename_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (qint64) +// bool QFile::resize(qint64 sz) static void _init_f_resize_986 (qt_gsi::GenericMethod *decl) @@ -318,7 +318,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (QFlags) +// bool QFile::setPermissions(QFlags permissionSpec) static void _init_f_setPermissions_3370 (qt_gsi::GenericMethod *decl) @@ -337,7 +337,7 @@ static void _call_f_setPermissions_3370 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// qint64 QFile::size() static void _init_f_size_c0 (qt_gsi::GenericMethod *decl) @@ -673,17 +673,17 @@ static gsi::Methods methods_QFile () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("copy", "@brief Method bool QFile::copy(const QString &newName)\n", false, &_init_f_copy_2025, &_call_f_copy_2025); methods += new qt_gsi::GenericMethod ("exists", "@brief Method bool QFile::exists()\n", true, &_init_f_exists_c0, &_call_f_exists_c0); - methods += new qt_gsi::GenericMethod (":fileName", "@brief Method () const\nThis is a reimplementation of QFileDevice::fileName", true, &_init_f_fileName_c0, &_call_f_fileName_c0); + methods += new qt_gsi::GenericMethod (":fileName", "@brief Method QString QFile::fileName()\nThis is a reimplementation of QFileDevice::fileName", true, &_init_f_fileName_c0, &_call_f_fileName_c0); methods += new qt_gsi::GenericMethod ("link", "@brief Method bool QFile::link(const QString &newName)\n", false, &_init_f_link_2025, &_call_f_link_2025); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QFlags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); - methods += new qt_gsi::GenericMethod ("permissions", "@brief Method () const\nThis is a reimplementation of QFileDevice::permissions", true, &_init_f_permissions_c0, &_call_f_permissions_c0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method bool QFile::open(QFlags flags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); + methods += new qt_gsi::GenericMethod ("permissions", "@brief Method QFlags QFile::permissions()\nThis is a reimplementation of QFileDevice::permissions", true, &_init_f_permissions_c0, &_call_f_permissions_c0); methods += new qt_gsi::GenericMethod ("readLink", "@brief Method QString QFile::readLink()\n", true, &_init_f_readLink_c0, &_call_f_readLink_c0); methods += new qt_gsi::GenericMethod ("remove", "@brief Method bool QFile::remove()\n", false, &_init_f_remove_0, &_call_f_remove_0); methods += new qt_gsi::GenericMethod ("rename", "@brief Method bool QFile::rename(const QString &newName)\n", false, &_init_f_rename_2025, &_call_f_rename_2025); - methods += new qt_gsi::GenericMethod ("resize", "@brief Method (qint64)\nThis is a reimplementation of QFileDevice::resize", false, &_init_f_resize_986, &_call_f_resize_986); + methods += new qt_gsi::GenericMethod ("resize", "@brief Method bool QFile::resize(qint64 sz)\nThis is a reimplementation of QFileDevice::resize", false, &_init_f_resize_986, &_call_f_resize_986); methods += new qt_gsi::GenericMethod ("setFileName|fileName=", "@brief Method void QFile::setFileName(const QString &name)\n", false, &_init_f_setFileName_2025, &_call_f_setFileName_2025); - methods += new qt_gsi::GenericMethod ("setPermissions", "@brief Method (QFlags)\nThis is a reimplementation of QFileDevice::setPermissions", false, &_init_f_setPermissions_3370, &_call_f_setPermissions_3370); - methods += new qt_gsi::GenericMethod ("size", "@brief Method () const\nThis is a reimplementation of QFileDevice::size", true, &_init_f_size_c0, &_call_f_size_c0); + methods += new qt_gsi::GenericMethod ("setPermissions", "@brief Method bool QFile::setPermissions(QFlags permissionSpec)\nThis is a reimplementation of QFileDevice::setPermissions", false, &_init_f_setPermissions_3370, &_call_f_setPermissions_3370); + methods += new qt_gsi::GenericMethod ("size", "@brief Method qint64 QFile::size()\nThis is a reimplementation of QFileDevice::size", true, &_init_f_size_c0, &_call_f_size_c0); methods += new qt_gsi::GenericMethod ("symLinkTarget", "@brief Method QString QFile::symLinkTarget()\n", true, &_init_f_symLinkTarget_c0, &_call_f_symLinkTarget_c0); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QFile::aboutToClose()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QFile::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc index 10d231f24..c1d0e5d32 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc @@ -55,7 +55,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// bool QFileDevice::atEnd() static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) @@ -70,7 +70,7 @@ static void _call_f_atEnd_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () +// void QFileDevice::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -146,7 +146,7 @@ static void _call_f_handle_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QFileDevice::isSequential() static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) @@ -176,7 +176,7 @@ static void _call_f_permissions_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// qint64 QFileDevice::pos() static void _init_f_pos_c0 (qt_gsi::GenericMethod *decl) @@ -210,7 +210,7 @@ static void _call_f_resize_986 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (qint64) +// bool QFileDevice::seek(qint64 offset) static void _init_f_seek_986 (qt_gsi::GenericMethod *decl) @@ -248,7 +248,7 @@ static void _call_f_setPermissions_3370 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// qint64 QFileDevice::size() static void _init_f_size_c0 (qt_gsi::GenericMethod *decl) @@ -335,19 +335,19 @@ namespace gsi static gsi::Methods methods_QFileDevice () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method bool QFileDevice::atEnd()\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QFileDevice::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QFileDevice::FileError QFileDevice::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("fileName", "@brief Method QString QFileDevice::fileName()\n", true, &_init_f_fileName_c0, &_call_f_fileName_c0); methods += new qt_gsi::GenericMethod ("flush", "@brief Method bool QFileDevice::flush()\n", false, &_init_f_flush_0, &_call_f_flush_0); methods += new qt_gsi::GenericMethod ("handle", "@brief Method int QFileDevice::handle()\n", true, &_init_f_handle_c0, &_call_f_handle_c0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); + methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method bool QFileDevice::isSequential()\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); methods += new qt_gsi::GenericMethod ("permissions", "@brief Method QFlags QFileDevice::permissions()\n", true, &_init_f_permissions_c0, &_call_f_permissions_c0); - methods += new qt_gsi::GenericMethod ("pos", "@brief Method () const\nThis is a reimplementation of QIODevice::pos", true, &_init_f_pos_c0, &_call_f_pos_c0); + methods += new qt_gsi::GenericMethod ("pos", "@brief Method qint64 QFileDevice::pos()\nThis is a reimplementation of QIODevice::pos", true, &_init_f_pos_c0, &_call_f_pos_c0); methods += new qt_gsi::GenericMethod ("resize", "@brief Method bool QFileDevice::resize(qint64 sz)\n", false, &_init_f_resize_986, &_call_f_resize_986); - methods += new qt_gsi::GenericMethod ("seek", "@brief Method (qint64)\nThis is a reimplementation of QIODevice::seek", false, &_init_f_seek_986, &_call_f_seek_986); + methods += new qt_gsi::GenericMethod ("seek", "@brief Method bool QFileDevice::seek(qint64 offset)\nThis is a reimplementation of QIODevice::seek", false, &_init_f_seek_986, &_call_f_seek_986); methods += new qt_gsi::GenericMethod ("setPermissions", "@brief Method bool QFileDevice::setPermissions(QFlags permissionSpec)\n", false, &_init_f_setPermissions_3370, &_call_f_setPermissions_3370); - methods += new qt_gsi::GenericMethod ("size", "@brief Method () const\nThis is a reimplementation of QIODevice::size", true, &_init_f_size_c0, &_call_f_size_c0); + methods += new qt_gsi::GenericMethod ("size", "@brief Method qint64 QFileDevice::size()\nThis is a reimplementation of QIODevice::size", true, &_init_f_size_c0, &_call_f_size_c0); methods += new qt_gsi::GenericMethod ("unsetError", "@brief Method void QFileDevice::unsetError()\n", false, &_init_f_unsetError_0, &_call_f_unsetError_0); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QFileDevice::aboutToClose()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QFileDevice::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc index 82c96fa25..00cfe0709 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc @@ -62,7 +62,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &) const +// int QIdentityProxyModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -81,7 +81,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QIdentityProxyModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -112,7 +112,7 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, Qt::Orientation, int) const +// QVariant QIdentityProxyModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -137,7 +137,7 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int, int, const QModelIndex &) const +// QModelIndex QIdentityProxyModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -162,7 +162,7 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, int, const QModelIndex &) +// bool QIdentityProxyModel::insertColumns(int column, int count, const QModelIndex &parent) static void _init_f_insertColumns_3713 (qt_gsi::GenericMethod *decl) @@ -187,7 +187,7 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QIdentityProxyModel::insertRows(int row, int count, const QModelIndex &parent) static void _init_f_insertRows_3713 (qt_gsi::GenericMethod *decl) @@ -212,7 +212,7 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QModelIndex &) const +// QModelIndex QIdentityProxyModel::mapFromSource(const QModelIndex &sourceIndex) static void _init_f_mapFromSource_c2395 (qt_gsi::GenericMethod *decl) @@ -231,7 +231,7 @@ static void _call_f_mapFromSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QItemSelection &) const +// QItemSelection QIdentityProxyModel::mapSelectionFromSource(const QItemSelection &selection) static void _init_f_mapSelectionFromSource_c2727 (qt_gsi::GenericMethod *decl) @@ -250,7 +250,7 @@ static void _call_f_mapSelectionFromSource_c2727 (const qt_gsi::GenericMethod * } -// (const QItemSelection &) const +// QItemSelection QIdentityProxyModel::mapSelectionToSource(const QItemSelection &selection) static void _init_f_mapSelectionToSource_c2727 (qt_gsi::GenericMethod *decl) @@ -269,7 +269,7 @@ static void _call_f_mapSelectionToSource_c2727 (const qt_gsi::GenericMethod * /* } -// (const QModelIndex &) const +// QModelIndex QIdentityProxyModel::mapToSource(const QModelIndex &proxyIndex) static void _init_f_mapToSource_c2395 (qt_gsi::GenericMethod *decl) @@ -288,7 +288,7 @@ static void _call_f_mapToSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int, const QVariant &, int, QFlags) const +// QList QIdentityProxyModel::match(const QModelIndex &start, int role, const QVariant &value, int hits, QFlags flags) static void _init_f_match_c7932 (qt_gsi::GenericMethod *decl) @@ -319,7 +319,7 @@ static void _call_f_match_c7932 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// QModelIndex QIdentityProxyModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -338,7 +338,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, int, const QModelIndex &) +// bool QIdentityProxyModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -363,7 +363,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QIdentityProxyModel::removeRows(int row, int count, const QModelIndex &parent) static void _init_f_removeRows_3713 (qt_gsi::GenericMethod *decl) @@ -388,7 +388,7 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QModelIndex &) const +// int QIdentityProxyModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -407,7 +407,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QAbstractItemModel *) +// void QIdentityProxyModel::setSourceModel(QAbstractItemModel *sourceModel) static void _init_f_setSourceModel_2419 (qt_gsi::GenericMethod *decl) @@ -427,7 +427,7 @@ static void _call_f_setSourceModel_2419 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) const +// QModelIndex QIdentityProxyModel::sibling(int row, int column, const QModelIndex &idx) static void _init_f_sibling_c3713 (qt_gsi::GenericMethod *decl) @@ -508,23 +508,23 @@ namespace gsi static gsi::Methods methods_QIdentityProxyModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractProxyModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractProxyModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); - methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); - methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); - methods += new qt_gsi::GenericMethod ("mapFromSource", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::mapFromSource", true, &_init_f_mapFromSource_c2395, &_call_f_mapFromSource_c2395); - methods += new qt_gsi::GenericMethod ("mapSelectionFromSource", "@brief Method (const QItemSelection &) const\nThis is a reimplementation of QAbstractProxyModel::mapSelectionFromSource", true, &_init_f_mapSelectionFromSource_c2727, &_call_f_mapSelectionFromSource_c2727); - methods += new qt_gsi::GenericMethod ("mapSelectionToSource", "@brief Method (const QItemSelection &) const\nThis is a reimplementation of QAbstractProxyModel::mapSelectionToSource", true, &_init_f_mapSelectionToSource_c2727, &_call_f_mapSelectionToSource_c2727); - methods += new qt_gsi::GenericMethod ("mapToSource", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::mapToSource", true, &_init_f_mapToSource_c2395, &_call_f_mapToSource_c2395); - methods += new qt_gsi::GenericMethod ("match", "@brief Method (const QModelIndex &, int, const QVariant &, int, QFlags) const\nThis is a reimplementation of QAbstractItemModel::match", true, &_init_f_match_c7932, &_call_f_match_c7932); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setSourceModel|sourceModel=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractProxyModel::setSourceModel", false, &_init_f_setSourceModel_2419, &_call_f_setSourceModel_2419); - methods += new qt_gsi::GenericMethod ("sibling", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QIdentityProxyModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QIdentityProxyModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractProxyModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QIdentityProxyModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractProxyModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QIdentityProxyModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method bool QIdentityProxyModel::insertColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); + methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method bool QIdentityProxyModel::insertRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); + methods += new qt_gsi::GenericMethod ("mapFromSource", "@brief Method QModelIndex QIdentityProxyModel::mapFromSource(const QModelIndex &sourceIndex)\nThis is a reimplementation of QAbstractProxyModel::mapFromSource", true, &_init_f_mapFromSource_c2395, &_call_f_mapFromSource_c2395); + methods += new qt_gsi::GenericMethod ("mapSelectionFromSource", "@brief Method QItemSelection QIdentityProxyModel::mapSelectionFromSource(const QItemSelection &selection)\nThis is a reimplementation of QAbstractProxyModel::mapSelectionFromSource", true, &_init_f_mapSelectionFromSource_c2727, &_call_f_mapSelectionFromSource_c2727); + methods += new qt_gsi::GenericMethod ("mapSelectionToSource", "@brief Method QItemSelection QIdentityProxyModel::mapSelectionToSource(const QItemSelection &selection)\nThis is a reimplementation of QAbstractProxyModel::mapSelectionToSource", true, &_init_f_mapSelectionToSource_c2727, &_call_f_mapSelectionToSource_c2727); + methods += new qt_gsi::GenericMethod ("mapToSource", "@brief Method QModelIndex QIdentityProxyModel::mapToSource(const QModelIndex &proxyIndex)\nThis is a reimplementation of QAbstractProxyModel::mapToSource", true, &_init_f_mapToSource_c2395, &_call_f_mapToSource_c2395); + methods += new qt_gsi::GenericMethod ("match", "@brief Method QList QIdentityProxyModel::match(const QModelIndex &start, int role, const QVariant &value, int hits, QFlags flags)\nThis is a reimplementation of QAbstractItemModel::match", true, &_init_f_match_c7932, &_call_f_match_c7932); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QIdentityProxyModel::parent(const QModelIndex &child)\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QIdentityProxyModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method bool QIdentityProxyModel::removeRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QIdentityProxyModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setSourceModel|sourceModel=", "@brief Method void QIdentityProxyModel::setSourceModel(QAbstractItemModel *sourceModel)\nThis is a reimplementation of QAbstractProxyModel::setSourceModel", false, &_init_f_setSourceModel_2419, &_call_f_setSourceModel_2419); + methods += new qt_gsi::GenericMethod ("sibling", "@brief Method QModelIndex QIdentityProxyModel::sibling(int row, int column, const QModelIndex &idx)\nThis is a reimplementation of QAbstractProxyModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); methods += gsi::qt_signal & > ("dataChanged(const QModelIndex &, const QModelIndex &, const QVector &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), gsi::arg("roles"), "@brief Signal declaration for QIdentityProxyModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QIdentityProxyModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QIdentityProxyModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc index 3c3e13545..ac4df5b72 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc @@ -55,7 +55,7 @@ static void _call_ctor_QMutex_2507 (const qt_gsi::GenericStaticMethod * /*decl*/ } -// () +// bool QMutex::isRecursive() static void _init_f_isRecursive_0 (qt_gsi::GenericMethod *decl) @@ -70,7 +70,7 @@ static void _call_f_isRecursive_0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QMutex::lock() static void _init_f_lock_0 (qt_gsi::GenericMethod *decl) @@ -86,7 +86,7 @@ static void _call_f_lock_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (int) +// bool QMutex::tryLock(int timeout) static void _init_f_tryLock_767 (qt_gsi::GenericMethod *decl) @@ -105,7 +105,7 @@ static void _call_f_tryLock_767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// void QMutex::unlock() static void _init_f_unlock_0 (qt_gsi::GenericMethod *decl) @@ -128,10 +128,10 @@ namespace gsi static gsi::Methods methods_QMutex () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QMutex::QMutex(QMutex::RecursionMode mode)\nThis method creates an object of class QMutex.", &_init_ctor_QMutex_2507, &_call_ctor_QMutex_2507); - methods += new qt_gsi::GenericMethod ("isRecursive?", "@brief Method ()\n", false, &_init_f_isRecursive_0, &_call_f_isRecursive_0); - methods += new qt_gsi::GenericMethod ("lock", "@brief Method ()\n", false, &_init_f_lock_0, &_call_f_lock_0); - methods += new qt_gsi::GenericMethod ("tryLock", "@brief Method (int)\n", false, &_init_f_tryLock_767, &_call_f_tryLock_767); - methods += new qt_gsi::GenericMethod ("unlock", "@brief Method ()\n", false, &_init_f_unlock_0, &_call_f_unlock_0); + methods += new qt_gsi::GenericMethod ("isRecursive?", "@brief Method bool QMutex::isRecursive()\n", false, &_init_f_isRecursive_0, &_call_f_isRecursive_0); + methods += new qt_gsi::GenericMethod ("lock", "@brief Method void QMutex::lock()\n", false, &_init_f_lock_0, &_call_f_lock_0); + methods += new qt_gsi::GenericMethod ("tryLock", "@brief Method bool QMutex::tryLock(int timeout)\n", false, &_init_f_tryLock_767, &_call_f_tryLock_767); + methods += new qt_gsi::GenericMethod ("unlock", "@brief Method void QMutex::unlock()\n", false, &_init_f_unlock_0, &_call_f_unlock_0); return methods; } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc index e5c73ae3d..9455ee184 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc @@ -57,7 +57,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// int QParallelAnimationGroup::duration() static void _init_f_duration_c0 (qt_gsi::GenericMethod *decl) @@ -128,7 +128,7 @@ namespace gsi static gsi::Methods methods_QParallelAnimationGroup () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod (":duration", "@brief Method () const\nThis is a reimplementation of QAbstractAnimation::duration", true, &_init_f_duration_c0, &_call_f_duration_c0); + methods += new qt_gsi::GenericMethod (":duration", "@brief Method int QParallelAnimationGroup::duration()\nThis is a reimplementation of QAbstractAnimation::duration", true, &_init_f_duration_c0, &_call_f_duration_c0); methods += gsi::qt_signal ("currentLoopChanged(int)", "currentLoopChanged", gsi::arg("currentLoop"), "@brief Signal declaration for QParallelAnimationGroup::currentLoopChanged(int currentLoop)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QParallelAnimationGroup::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type & > ("directionChanged(QAbstractAnimation::Direction)", "directionChanged", gsi::arg("arg1"), "@brief Signal declaration for QParallelAnimationGroup::directionChanged(QAbstractAnimation::Direction)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc index c1a50a666..8401c758d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc @@ -56,7 +56,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// int QPauseAnimation::duration() static void _init_f_duration_c0 (qt_gsi::GenericMethod *decl) @@ -147,7 +147,7 @@ namespace gsi static gsi::Methods methods_QPauseAnimation () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod (":duration", "@brief Method () const\nThis is a reimplementation of QAbstractAnimation::duration", true, &_init_f_duration_c0, &_call_f_duration_c0); + methods += new qt_gsi::GenericMethod (":duration", "@brief Method int QPauseAnimation::duration()\nThis is a reimplementation of QAbstractAnimation::duration", true, &_init_f_duration_c0, &_call_f_duration_c0); methods += new qt_gsi::GenericMethod ("setDuration|duration=", "@brief Method void QPauseAnimation::setDuration(int msecs)\n", false, &_init_f_setDuration_767, &_call_f_setDuration_767); methods += gsi::qt_signal ("currentLoopChanged(int)", "currentLoopChanged", gsi::arg("currentLoop"), "@brief Signal declaration for QPauseAnimation::currentLoopChanged(int currentLoop)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QPauseAnimation::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc b/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc index 4c494d981..512183b62 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc @@ -88,7 +88,7 @@ static void _call_f_arguments_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// bool QProcess::atEnd() static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) @@ -103,7 +103,7 @@ static void _call_f_atEnd_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// qint64 QProcess::bytesAvailable() static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// qint64 QProcess::bytesToWrite() static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_bytesToWrite_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// bool QProcess::canReadLine() static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) @@ -148,7 +148,7 @@ static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QProcess::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -275,7 +275,7 @@ static void _call_f_inputChannelMode_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// bool QProcess::isSequential() static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) @@ -306,7 +306,7 @@ static void _call_f_kill_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QFlags) +// bool QProcess::open(QFlags mode) static void _init_f_open_3242 (qt_gsi::GenericMethod *decl) @@ -826,7 +826,7 @@ static void _call_f_terminate_0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int) +// bool QProcess::waitForBytesWritten(int msecs) static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) @@ -864,7 +864,7 @@ static void _call_f_waitForFinished_767 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) +// bool QProcess::waitForReadyRead(int msecs) static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) @@ -1116,11 +1116,11 @@ static gsi::Methods methods_QProcess () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QProcess::QProcess(QObject *parent)\nThis method creates an object of class QProcess.", &_init_ctor_QProcess_1302, &_call_ctor_QProcess_1302); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":arguments", "@brief Method QStringList QProcess::arguments()\n", true, &_init_f_arguments_c0, &_call_f_arguments_c0); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method bool QProcess::atEnd()\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); + methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method qint64 QProcess::bytesAvailable()\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); + methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method qint64 QProcess::bytesToWrite()\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); + methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method bool QProcess::canReadLine()\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QProcess::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("closeReadChannel", "@brief Method void QProcess::closeReadChannel(QProcess::ProcessChannel channel)\n", false, &_init_f_closeReadChannel_2800, &_call_f_closeReadChannel_2800); methods += new qt_gsi::GenericMethod ("closeWriteChannel", "@brief Method void QProcess::closeWriteChannel()\n", false, &_init_f_closeWriteChannel_0, &_call_f_closeWriteChannel_0); methods += new qt_gsi::GenericMethod (":environment", "@brief Method QStringList QProcess::environment()\n", true, &_init_f_environment_c0, &_call_f_environment_c0); @@ -1128,9 +1128,9 @@ static gsi::Methods methods_QProcess () { methods += new qt_gsi::GenericMethod ("exitCode", "@brief Method int QProcess::exitCode()\n", true, &_init_f_exitCode_c0, &_call_f_exitCode_c0); methods += new qt_gsi::GenericMethod ("exitStatus", "@brief Method QProcess::ExitStatus QProcess::exitStatus()\n", true, &_init_f_exitStatus_c0, &_call_f_exitStatus_c0); methods += new qt_gsi::GenericMethod (":inputChannelMode", "@brief Method QProcess::InputChannelMode QProcess::inputChannelMode()\n", true, &_init_f_inputChannelMode_c0, &_call_f_inputChannelMode_c0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); + methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method bool QProcess::isSequential()\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); methods += new qt_gsi::GenericMethod ("kill", "@brief Method void QProcess::kill()\n", false, &_init_f_kill_0, &_call_f_kill_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QFlags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); + methods += new qt_gsi::GenericMethod ("open", "@brief Method bool QProcess::open(QFlags mode)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); methods += new qt_gsi::GenericMethod ("pid", "@brief Method Q_PID QProcess::pid()\n", true, &_init_f_pid_c0, &_call_f_pid_c0); methods += new qt_gsi::GenericMethod (":processChannelMode", "@brief Method QProcess::ProcessChannelMode QProcess::processChannelMode()\n", true, &_init_f_processChannelMode_c0, &_call_f_processChannelMode_c0); methods += new qt_gsi::GenericMethod (":processEnvironment", "@brief Method QProcessEnvironment QProcess::processEnvironment()\n", true, &_init_f_processEnvironment_c0, &_call_f_processEnvironment_c0); @@ -1158,9 +1158,9 @@ static gsi::Methods methods_QProcess () { methods += new qt_gsi::GenericMethod ("start", "@brief Method void QProcess::start(QFlags mode)\n", false, &_init_f_start_3242, &_call_f_start_3242); methods += new qt_gsi::GenericMethod ("state", "@brief Method QProcess::ProcessState QProcess::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); methods += new qt_gsi::GenericMethod ("terminate", "@brief Method void QProcess::terminate()\n", false, &_init_f_terminate_0, &_call_f_terminate_0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); + methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method bool QProcess::waitForBytesWritten(int msecs)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); methods += new qt_gsi::GenericMethod ("waitForFinished", "@brief Method bool QProcess::waitForFinished(int msecs)\n", false, &_init_f_waitForFinished_767, &_call_f_waitForFinished_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); + methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method bool QProcess::waitForReadyRead(int msecs)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); methods += new qt_gsi::GenericMethod ("waitForStarted", "@brief Method bool QProcess::waitForStarted(int msecs)\n", false, &_init_f_waitForStarted_767, &_call_f_waitForStarted_767); methods += new qt_gsi::GenericMethod (":workingDirectory", "@brief Method QString QProcess::workingDirectory()\n", true, &_init_f_workingDirectory_c0, &_call_f_workingDirectory_c0); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QProcess::aboutToClose()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc index 021bb10f9..43ade78a2 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc @@ -101,7 +101,7 @@ static void _call_f_directWriteFallback_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// QString QSaveFile::fileName() static void _init_f_fileName_c0 (qt_gsi::GenericMethod *decl) @@ -116,7 +116,7 @@ static void _call_f_fileName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QFlags) +// bool QSaveFile::open(QFlags flags) static void _init_f_open_3242 (qt_gsi::GenericMethod *decl) @@ -234,8 +234,8 @@ static gsi::Methods methods_QSaveFile () { methods += new qt_gsi::GenericMethod ("cancelWriting", "@brief Method void QSaveFile::cancelWriting()\n", false, &_init_f_cancelWriting_0, &_call_f_cancelWriting_0); methods += new qt_gsi::GenericMethod ("commit", "@brief Method bool QSaveFile::commit()\n", false, &_init_f_commit_0, &_call_f_commit_0); methods += new qt_gsi::GenericMethod (":directWriteFallback", "@brief Method bool QSaveFile::directWriteFallback()\n", true, &_init_f_directWriteFallback_c0, &_call_f_directWriteFallback_c0); - methods += new qt_gsi::GenericMethod (":fileName", "@brief Method () const\nThis is a reimplementation of QFileDevice::fileName", true, &_init_f_fileName_c0, &_call_f_fileName_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QFlags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); + methods += new qt_gsi::GenericMethod (":fileName", "@brief Method QString QSaveFile::fileName()\nThis is a reimplementation of QFileDevice::fileName", true, &_init_f_fileName_c0, &_call_f_fileName_c0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method bool QSaveFile::open(QFlags flags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); methods += new qt_gsi::GenericMethod ("setDirectWriteFallback|directWriteFallback=", "@brief Method void QSaveFile::setDirectWriteFallback(bool enabled)\n", false, &_init_f_setDirectWriteFallback_864, &_call_f_setDirectWriteFallback_864); methods += new qt_gsi::GenericMethod ("setFileName|fileName=", "@brief Method void QSaveFile::setFileName(const QString &name)\n", false, &_init_f_setFileName_2025, &_call_f_setFileName_2025); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QSaveFile::aboutToClose()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc index f25dce850..deef1e4c8 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc @@ -92,7 +92,7 @@ static void _call_f_currentAnimation_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QSequentialAnimationGroup::duration() static void _init_f_duration_c0 (qt_gsi::GenericMethod *decl) @@ -187,7 +187,7 @@ static gsi::Methods methods_QSequentialAnimationGroup () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("addPause", "@brief Method QPauseAnimation *QSequentialAnimationGroup::addPause(int msecs)\n", false, &_init_f_addPause_767, &_call_f_addPause_767); methods += new qt_gsi::GenericMethod (":currentAnimation", "@brief Method QAbstractAnimation *QSequentialAnimationGroup::currentAnimation()\n", true, &_init_f_currentAnimation_c0, &_call_f_currentAnimation_c0); - methods += new qt_gsi::GenericMethod (":duration", "@brief Method () const\nThis is a reimplementation of QAbstractAnimation::duration", true, &_init_f_duration_c0, &_call_f_duration_c0); + methods += new qt_gsi::GenericMethod (":duration", "@brief Method int QSequentialAnimationGroup::duration()\nThis is a reimplementation of QAbstractAnimation::duration", true, &_init_f_duration_c0, &_call_f_duration_c0); methods += new qt_gsi::GenericMethod ("insertPause", "@brief Method QPauseAnimation *QSequentialAnimationGroup::insertPause(int index, int msecs)\n", false, &_init_f_insertPause_1426, &_call_f_insertPause_1426); methods += gsi::qt_signal ("currentAnimationChanged(QAbstractAnimation *)", "currentAnimationChanged", gsi::arg("current"), "@brief Signal declaration for QSequentialAnimationGroup::currentAnimationChanged(QAbstractAnimation *current)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("currentLoopChanged(int)", "currentLoopChanged", gsi::arg("currentLoop"), "@brief Signal declaration for QSequentialAnimationGroup::currentLoopChanged(int currentLoop)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc index bc330ce4c..307066fe2 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc @@ -63,7 +63,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::buddy(const QModelIndex &index) static void _init_f_buddy_c2395 (qt_gsi::GenericMethod *decl) @@ -82,7 +82,7 @@ static void _call_f_buddy_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QSortFilterProxyModel::canFetchMore(const QModelIndex &parent) static void _init_f_canFetchMore_c2395 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &) const +// int QSortFilterProxyModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -136,7 +136,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int) const +// QVariant QSortFilterProxyModel::data(const QModelIndex &index, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -158,7 +158,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QSortFilterProxyModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -204,7 +204,7 @@ static void _call_f_dynamicSortFilter_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (const QModelIndex &) +// void QSortFilterProxyModel::fetchMore(const QModelIndex &parent) static void _init_f_fetchMore_2395 (qt_gsi::GenericMethod *decl) @@ -284,7 +284,7 @@ static void _call_f_filterRole_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// QFlags QSortFilterProxyModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -303,7 +303,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QSortFilterProxyModel::hasChildren(const QModelIndex &parent) static void _init_f_hasChildren_c2395 (qt_gsi::GenericMethod *decl) @@ -322,7 +322,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, Qt::Orientation, int) const +// QVariant QSortFilterProxyModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -347,7 +347,7 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int, int, const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -372,7 +372,7 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, int, const QModelIndex &) +// bool QSortFilterProxyModel::insertColumns(int column, int count, const QModelIndex &parent) static void _init_f_insertColumns_3713 (qt_gsi::GenericMethod *decl) @@ -397,7 +397,7 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QSortFilterProxyModel::insertRows(int row, int count, const QModelIndex &parent) static void _init_f_insertRows_3713 (qt_gsi::GenericMethod *decl) @@ -453,7 +453,7 @@ static void _call_f_isSortLocaleAware_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::mapFromSource(const QModelIndex &sourceIndex) static void _init_f_mapFromSource_c2395 (qt_gsi::GenericMethod *decl) @@ -472,7 +472,7 @@ static void _call_f_mapFromSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QItemSelection &) const +// QItemSelection QSortFilterProxyModel::mapSelectionFromSource(const QItemSelection &sourceSelection) static void _init_f_mapSelectionFromSource_c2727 (qt_gsi::GenericMethod *decl) @@ -491,7 +491,7 @@ static void _call_f_mapSelectionFromSource_c2727 (const qt_gsi::GenericMethod * } -// (const QItemSelection &) const +// QItemSelection QSortFilterProxyModel::mapSelectionToSource(const QItemSelection &proxySelection) static void _init_f_mapSelectionToSource_c2727 (qt_gsi::GenericMethod *decl) @@ -510,7 +510,7 @@ static void _call_f_mapSelectionToSource_c2727 (const qt_gsi::GenericMethod * /* } -// (const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::mapToSource(const QModelIndex &proxyIndex) static void _init_f_mapToSource_c2395 (qt_gsi::GenericMethod *decl) @@ -529,7 +529,7 @@ static void _call_f_mapToSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int, const QVariant &, int, QFlags) const +// QList QSortFilterProxyModel::match(const QModelIndex &start, int role, const QVariant &value, int hits, QFlags flags) static void _init_f_match_c7932 (qt_gsi::GenericMethod *decl) @@ -560,7 +560,7 @@ static void _call_f_match_c7932 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QList &) const +// QMimeData *QSortFilterProxyModel::mimeData(const QList &indexes) static void _init_f_mimeData_c3010 (qt_gsi::GenericMethod *decl) @@ -579,7 +579,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QStringList QSortFilterProxyModel::mimeTypes() static void _init_f_mimeTypes_c0 (qt_gsi::GenericMethod *decl) @@ -594,7 +594,7 @@ static void _call_f_mimeTypes_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QObject *QSortFilterProxyModel::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -609,7 +609,7 @@ static void _call_f_parent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -628,7 +628,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, int, const QModelIndex &) +// bool QSortFilterProxyModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -653,7 +653,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QSortFilterProxyModel::removeRows(int row, int count, const QModelIndex &parent) static void _init_f_removeRows_3713 (qt_gsi::GenericMethod *decl) @@ -678,7 +678,7 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QModelIndex &) const +// int QSortFilterProxyModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -697,7 +697,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, const QVariant &, int) +// bool QSortFilterProxyModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -882,7 +882,7 @@ static void _call_f_setFilterWildcard_2025 (const qt_gsi::GenericMethod * /*decl } -// (int, Qt::Orientation, const QVariant &, int) +// bool QSortFilterProxyModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role) static void _init_f_setHeaderData_5242 (qt_gsi::GenericMethod *decl) @@ -970,7 +970,7 @@ static void _call_f_setSortRole_767 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QAbstractItemModel *) +// void QSortFilterProxyModel::setSourceModel(QAbstractItemModel *sourceModel) static void _init_f_setSourceModel_2419 (qt_gsi::GenericMethod *decl) @@ -990,7 +990,7 @@ static void _call_f_setSourceModel_2419 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) const +// QModelIndex QSortFilterProxyModel::sibling(int row, int column, const QModelIndex &idx) static void _init_f_sibling_c3713 (qt_gsi::GenericMethod *decl) @@ -1015,7 +1015,7 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, Qt::SortOrder) +// void QSortFilterProxyModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -1098,7 +1098,7 @@ static void _call_f_sortRole_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// QSize QSortFilterProxyModel::span(const QModelIndex &index) static void _init_f_span_c2395 (qt_gsi::GenericMethod *decl) @@ -1117,7 +1117,7 @@ static void _call_f_span_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QFlags QSortFilterProxyModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -1188,39 +1188,39 @@ namespace gsi static gsi::Methods methods_QSortFilterProxyModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("buddy", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::buddy", true, &_init_f_buddy_c2395, &_call_f_buddy_c2395); - methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); + methods += new qt_gsi::GenericMethod ("buddy", "@brief Method QModelIndex QSortFilterProxyModel::buddy(const QModelIndex &index)\nThis is a reimplementation of QAbstractProxyModel::buddy", true, &_init_f_buddy_c2395, &_call_f_buddy_c2395); + methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method bool QSortFilterProxyModel::canFetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractProxyModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QSortFilterProxyModel::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractProxyModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractProxyModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QSortFilterProxyModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QSortFilterProxyModel::data(const QModelIndex &index, int role)\nThis is a reimplementation of QAbstractProxyModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QSortFilterProxyModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractProxyModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); methods += new qt_gsi::GenericMethod (":dynamicSortFilter", "@brief Method bool QSortFilterProxyModel::dynamicSortFilter()\n", true, &_init_f_dynamicSortFilter_c0, &_call_f_dynamicSortFilter_c0); - methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractProxyModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); + methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method void QSortFilterProxyModel::fetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractProxyModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); methods += new qt_gsi::GenericMethod (":filterCaseSensitivity", "@brief Method Qt::CaseSensitivity QSortFilterProxyModel::filterCaseSensitivity()\n", true, &_init_f_filterCaseSensitivity_c0, &_call_f_filterCaseSensitivity_c0); methods += new qt_gsi::GenericMethod (":filterKeyColumn", "@brief Method int QSortFilterProxyModel::filterKeyColumn()\n", true, &_init_f_filterKeyColumn_c0, &_call_f_filterKeyColumn_c0); methods += new qt_gsi::GenericMethod (":filterRegExp", "@brief Method QRegExp QSortFilterProxyModel::filterRegExp()\n", true, &_init_f_filterRegExp_c0, &_call_f_filterRegExp_c0); methods += new qt_gsi::GenericMethod (":filterRole", "@brief Method int QSortFilterProxyModel::filterRole()\n", true, &_init_f_filterRole_c0, &_call_f_filterRole_c0); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractProxyModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); - methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); - methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QSortFilterProxyModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractProxyModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method bool QSortFilterProxyModel::hasChildren(const QModelIndex &parent)\nThis is a reimplementation of QAbstractProxyModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QSortFilterProxyModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractProxyModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QSortFilterProxyModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method bool QSortFilterProxyModel::insertColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); + methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method bool QSortFilterProxyModel::insertRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QSortFilterProxyModel::invalidate()\n", false, &_init_f_invalidate_0, &_call_f_invalidate_0); methods += new qt_gsi::GenericMethod ("isSortLocaleAware?|:isSortLocaleAware", "@brief Method bool QSortFilterProxyModel::isSortLocaleAware()\n", true, &_init_f_isSortLocaleAware_c0, &_call_f_isSortLocaleAware_c0); - methods += new qt_gsi::GenericMethod ("mapFromSource", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::mapFromSource", true, &_init_f_mapFromSource_c2395, &_call_f_mapFromSource_c2395); - methods += new qt_gsi::GenericMethod ("mapSelectionFromSource", "@brief Method (const QItemSelection &) const\nThis is a reimplementation of QAbstractProxyModel::mapSelectionFromSource", true, &_init_f_mapSelectionFromSource_c2727, &_call_f_mapSelectionFromSource_c2727); - methods += new qt_gsi::GenericMethod ("mapSelectionToSource", "@brief Method (const QItemSelection &) const\nThis is a reimplementation of QAbstractProxyModel::mapSelectionToSource", true, &_init_f_mapSelectionToSource_c2727, &_call_f_mapSelectionToSource_c2727); - methods += new qt_gsi::GenericMethod ("mapToSource", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::mapToSource", true, &_init_f_mapToSource_c2395, &_call_f_mapToSource_c2395); - methods += new qt_gsi::GenericMethod ("match", "@brief Method (const QModelIndex &, int, const QVariant &, int, QFlags) const\nThis is a reimplementation of QAbstractItemModel::match", true, &_init_f_match_c7932, &_call_f_match_c7932); - methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method (const QList &) const\nThis is a reimplementation of QAbstractProxyModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); - methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method () const\nThis is a reimplementation of QAbstractProxyModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractProxyModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("mapFromSource", "@brief Method QModelIndex QSortFilterProxyModel::mapFromSource(const QModelIndex &sourceIndex)\nThis is a reimplementation of QAbstractProxyModel::mapFromSource", true, &_init_f_mapFromSource_c2395, &_call_f_mapFromSource_c2395); + methods += new qt_gsi::GenericMethod ("mapSelectionFromSource", "@brief Method QItemSelection QSortFilterProxyModel::mapSelectionFromSource(const QItemSelection &sourceSelection)\nThis is a reimplementation of QAbstractProxyModel::mapSelectionFromSource", true, &_init_f_mapSelectionFromSource_c2727, &_call_f_mapSelectionFromSource_c2727); + methods += new qt_gsi::GenericMethod ("mapSelectionToSource", "@brief Method QItemSelection QSortFilterProxyModel::mapSelectionToSource(const QItemSelection &proxySelection)\nThis is a reimplementation of QAbstractProxyModel::mapSelectionToSource", true, &_init_f_mapSelectionToSource_c2727, &_call_f_mapSelectionToSource_c2727); + methods += new qt_gsi::GenericMethod ("mapToSource", "@brief Method QModelIndex QSortFilterProxyModel::mapToSource(const QModelIndex &proxyIndex)\nThis is a reimplementation of QAbstractProxyModel::mapToSource", true, &_init_f_mapToSource_c2395, &_call_f_mapToSource_c2395); + methods += new qt_gsi::GenericMethod ("match", "@brief Method QList QSortFilterProxyModel::match(const QModelIndex &start, int role, const QVariant &value, int hits, QFlags flags)\nThis is a reimplementation of QAbstractItemModel::match", true, &_init_f_match_c7932, &_call_f_match_c7932); + methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method QMimeData *QSortFilterProxyModel::mimeData(const QList &indexes)\nThis is a reimplementation of QAbstractProxyModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); + methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method QStringList QSortFilterProxyModel::mimeTypes()\nThis is a reimplementation of QAbstractProxyModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QObject *QSortFilterProxyModel::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QSortFilterProxyModel::parent(const QModelIndex &child)\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QSortFilterProxyModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method bool QSortFilterProxyModel::removeRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QSortFilterProxyModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QSortFilterProxyModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractProxyModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setDynamicSortFilter|dynamicSortFilter=", "@brief Method void QSortFilterProxyModel::setDynamicSortFilter(bool enable)\n", false, &_init_f_setDynamicSortFilter_864, &_call_f_setDynamicSortFilter_864); methods += new qt_gsi::GenericMethod ("setFilterCaseSensitivity|filterCaseSensitivity=", "@brief Method void QSortFilterProxyModel::setFilterCaseSensitivity(Qt::CaseSensitivity cs)\n", false, &_init_f_setFilterCaseSensitivity_2324, &_call_f_setFilterCaseSensitivity_2324); methods += new qt_gsi::GenericMethod ("setFilterFixedString", "@brief Method void QSortFilterProxyModel::setFilterFixedString(const QString &pattern)\n", false, &_init_f_setFilterFixedString_2025, &_call_f_setFilterFixedString_2025); @@ -1229,19 +1229,19 @@ static gsi::Methods methods_QSortFilterProxyModel () { methods += new qt_gsi::GenericMethod ("setFilterRegExp|filterRegExp=", "@brief Method void QSortFilterProxyModel::setFilterRegExp(const QString &pattern)\n", false, &_init_f_setFilterRegExp_2025, &_call_f_setFilterRegExp_2025); methods += new qt_gsi::GenericMethod ("setFilterRole|filterRole=", "@brief Method void QSortFilterProxyModel::setFilterRole(int role)\n", false, &_init_f_setFilterRole_767, &_call_f_setFilterRole_767); methods += new qt_gsi::GenericMethod ("setFilterWildcard", "@brief Method void QSortFilterProxyModel::setFilterWildcard(const QString &pattern)\n", false, &_init_f_setFilterWildcard_2025, &_call_f_setFilterWildcard_2025); - methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method (int, Qt::Orientation, const QVariant &, int)\nThis is a reimplementation of QAbstractProxyModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); + methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method bool QSortFilterProxyModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role)\nThis is a reimplementation of QAbstractProxyModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); methods += new qt_gsi::GenericMethod ("setSortCaseSensitivity|sortCaseSensitivity=", "@brief Method void QSortFilterProxyModel::setSortCaseSensitivity(Qt::CaseSensitivity cs)\n", false, &_init_f_setSortCaseSensitivity_2324, &_call_f_setSortCaseSensitivity_2324); methods += new qt_gsi::GenericMethod ("setSortLocaleAware", "@brief Method void QSortFilterProxyModel::setSortLocaleAware(bool on)\n", false, &_init_f_setSortLocaleAware_864, &_call_f_setSortLocaleAware_864); methods += new qt_gsi::GenericMethod ("setSortRole|sortRole=", "@brief Method void QSortFilterProxyModel::setSortRole(int role)\n", false, &_init_f_setSortRole_767, &_call_f_setSortRole_767); - methods += new qt_gsi::GenericMethod ("setSourceModel|sourceModel=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractProxyModel::setSourceModel", false, &_init_f_setSourceModel_2419, &_call_f_setSourceModel_2419); - methods += new qt_gsi::GenericMethod ("sibling", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractProxyModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("setSourceModel|sourceModel=", "@brief Method void QSortFilterProxyModel::setSourceModel(QAbstractItemModel *sourceModel)\nThis is a reimplementation of QAbstractProxyModel::setSourceModel", false, &_init_f_setSourceModel_2419, &_call_f_setSourceModel_2419); + methods += new qt_gsi::GenericMethod ("sibling", "@brief Method QModelIndex QSortFilterProxyModel::sibling(int row, int column, const QModelIndex &idx)\nThis is a reimplementation of QAbstractProxyModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QSortFilterProxyModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractProxyModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); methods += new qt_gsi::GenericMethod (":sortCaseSensitivity", "@brief Method Qt::CaseSensitivity QSortFilterProxyModel::sortCaseSensitivity()\n", true, &_init_f_sortCaseSensitivity_c0, &_call_f_sortCaseSensitivity_c0); methods += new qt_gsi::GenericMethod ("sortColumn", "@brief Method int QSortFilterProxyModel::sortColumn()\n", true, &_init_f_sortColumn_c0, &_call_f_sortColumn_c0); methods += new qt_gsi::GenericMethod ("sortOrder", "@brief Method Qt::SortOrder QSortFilterProxyModel::sortOrder()\n", true, &_init_f_sortOrder_c0, &_call_f_sortOrder_c0); methods += new qt_gsi::GenericMethod (":sortRole", "@brief Method int QSortFilterProxyModel::sortRole()\n", true, &_init_f_sortRole_c0, &_call_f_sortRole_c0); - methods += new qt_gsi::GenericMethod ("span", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractProxyModel::span", true, &_init_f_span_c2395, &_call_f_span_c2395); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractProxyModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("span", "@brief Method QSize QSortFilterProxyModel::span(const QModelIndex &index)\nThis is a reimplementation of QAbstractProxyModel::span", true, &_init_f_span_c2395, &_call_f_span_c2395); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QSortFilterProxyModel::supportedDropActions()\nThis is a reimplementation of QAbstractProxyModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += gsi::qt_signal & > ("dataChanged(const QModelIndex &, const QModelIndex &, const QVector &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), gsi::arg("roles"), "@brief Signal declaration for QSortFilterProxyModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QSortFilterProxyModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QSortFilterProxyModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc index 35d339767..831187e6c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc @@ -195,7 +195,7 @@ static void _call_f_errorString_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QObject *, QEvent *) +// bool QStateMachine::eventFilter(QObject *watched, QEvent *event) static void _init_f_eventFilter_2411 (qt_gsi::GenericMethod *decl) @@ -503,7 +503,7 @@ static gsi::Methods methods_QStateMachine () { methods += new qt_gsi::GenericMethod ("defaultAnimations", "@brief Method QList QStateMachine::defaultAnimations()\n", true, &_init_f_defaultAnimations_c0, &_call_f_defaultAnimations_c0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QStateMachine::Error QStateMachine::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod (":errorString", "@brief Method QString QStateMachine::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Method (QObject *, QEvent *)\nThis is a reimplementation of QObject::eventFilter", false, &_init_f_eventFilter_2411, &_call_f_eventFilter_2411); + methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Method bool QStateMachine::eventFilter(QObject *watched, QEvent *event)\nThis is a reimplementation of QObject::eventFilter", false, &_init_f_eventFilter_2411, &_call_f_eventFilter_2411); methods += new qt_gsi::GenericMethod (":globalRestorePolicy", "@brief Method QState::RestorePolicy QStateMachine::globalRestorePolicy()\n", true, &_init_f_globalRestorePolicy_c0, &_call_f_globalRestorePolicy_c0); methods += new qt_gsi::GenericMethod ("isAnimated?|:animated", "@brief Method bool QStateMachine::isAnimated()\n", true, &_init_f_isAnimated_c0, &_call_f_isAnimated_c0); methods += new qt_gsi::GenericMethod ("isRunning?|:running", "@brief Method bool QStateMachine::isRunning()\n", true, &_init_f_isRunning_c0, &_call_f_isRunning_c0); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc index 43601b929..1799d6034 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc @@ -60,7 +60,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &, int) const +// QVariant QStringListModel::data(const QModelIndex &index, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -82,7 +82,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QModelIndex &) const +// QFlags QStringListModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, int, const QModelIndex &) +// bool QStringListModel::insertRows(int row, int count, const QModelIndex &parent) static void _init_f_insertRows_3713 (qt_gsi::GenericMethod *decl) @@ -126,7 +126,7 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (int, int, const QModelIndex &) +// bool QStringListModel::removeRows(int row, int count, const QModelIndex &parent) static void _init_f_removeRows_3713 (qt_gsi::GenericMethod *decl) @@ -151,7 +151,7 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QModelIndex &) const +// int QStringListModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -170,7 +170,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, const QVariant &, int) +// bool QStringListModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -215,7 +215,7 @@ static void _call_f_setStringList_2437 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) const +// QModelIndex QStringListModel::sibling(int row, int column, const QModelIndex &idx) static void _init_f_sibling_c3713 (qt_gsi::GenericMethod *decl) @@ -240,7 +240,7 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, Qt::SortOrder) +// void QStringListModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -278,7 +278,7 @@ static void _call_f_stringList_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QFlags QStringListModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -349,17 +349,17 @@ namespace gsi static gsi::Methods methods_QStringListModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractListModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); - methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QStringListModel::data(const QModelIndex &index, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QStringListModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractListModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method bool QStringListModel::insertRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); + methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method bool QStringListModel::removeRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QStringListModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QStringListModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setStringList|stringList=", "@brief Method void QStringListModel::setStringList(const QStringList &strings)\n", false, &_init_f_setStringList_2437, &_call_f_setStringList_2437); - methods += new qt_gsi::GenericMethod ("sibling", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractListModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("sibling", "@brief Method QModelIndex QStringListModel::sibling(int row, int column, const QModelIndex &idx)\nThis is a reimplementation of QAbstractListModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QStringListModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); methods += new qt_gsi::GenericMethod (":stringList", "@brief Method QStringList QStringListModel::stringList()\n", true, &_init_f_stringList_c0, &_call_f_stringList_c0); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QStringListModel::supportedDropActions()\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += gsi::qt_signal & > ("dataChanged(const QModelIndex &, const QModelIndex &, const QVector &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), gsi::arg("roles"), "@brief Signal declaration for QStringListModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QStringListModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QStringListModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc index 39b7e9828..517f26d4b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc @@ -144,7 +144,7 @@ static void _call_f_autoRemove_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QString QTemporaryFile::fileName() static void _init_f_fileName_c0 (qt_gsi::GenericMethod *decl) @@ -174,7 +174,7 @@ static void _call_f_fileTemplate_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () +// bool QTemporaryFile::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -367,9 +367,9 @@ static gsi::Methods methods_QTemporaryFile () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTemporaryFile::QTemporaryFile(const QString &templateName, QObject *parent)\nThis method creates an object of class QTemporaryFile.", &_init_ctor_QTemporaryFile_3219, &_call_ctor_QTemporaryFile_3219); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":autoRemove", "@brief Method bool QTemporaryFile::autoRemove()\n", true, &_init_f_autoRemove_c0, &_call_f_autoRemove_c0); - methods += new qt_gsi::GenericMethod (":fileName", "@brief Method () const\nThis is a reimplementation of QFile::fileName", true, &_init_f_fileName_c0, &_call_f_fileName_c0); + methods += new qt_gsi::GenericMethod (":fileName", "@brief Method QString QTemporaryFile::fileName()\nThis is a reimplementation of QFile::fileName", true, &_init_f_fileName_c0, &_call_f_fileName_c0); methods += new qt_gsi::GenericMethod (":fileTemplate", "@brief Method QString QTemporaryFile::fileTemplate()\n", true, &_init_f_fileTemplate_c0, &_call_f_fileTemplate_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\n", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method bool QTemporaryFile::open()\n", false, &_init_f_open_0, &_call_f_open_0); methods += new qt_gsi::GenericMethod ("setAutoRemove|autoRemove=", "@brief Method void QTemporaryFile::setAutoRemove(bool b)\n", false, &_init_f_setAutoRemove_864, &_call_f_setAutoRemove_864); methods += new qt_gsi::GenericMethod ("setFileTemplate|fileTemplate=", "@brief Method void QTemporaryFile::setFileTemplate(const QString &name)\n", false, &_init_f_setFileTemplate_2025, &_call_f_setFileTemplate_2025); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QTemporaryFile::aboutToClose()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc b/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc index 86d7437cd..66fbee8ba 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc @@ -50,7 +50,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QEvent *) +// bool QThread::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -518,7 +518,7 @@ namespace gsi static gsi::Methods methods_QThread () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QObject::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QThread::event(QEvent *event)\nThis is a reimplementation of QObject::event", false, &_init_f_event_1217, &_call_f_event_1217); methods += new qt_gsi::GenericMethod (":eventDispatcher", "@brief Method QAbstractEventDispatcher *QThread::eventDispatcher()\n", true, &_init_f_eventDispatcher_c0, &_call_f_eventDispatcher_c0); methods += new qt_gsi::GenericMethod ("exit", "@brief Method void QThread::exit(int retcode)\n", false, &_init_f_exit_767, &_call_f_exit_767); methods += new qt_gsi::GenericMethod ("isFinished?", "@brief Method bool QThread::isFinished()\n", true, &_init_f_isFinished_c0, &_call_f_isFinished_c0); diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc index 26ed6dcec..49577cf1b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc @@ -72,7 +72,7 @@ static void _call_f_currentValue_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// int QVariantAnimation::duration() static void _init_f_duration_c0 (qt_gsi::GenericMethod *decl) @@ -346,7 +346,7 @@ static gsi::Methods methods_QVariantAnimation () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":currentValue", "@brief Method QVariant QVariantAnimation::currentValue()\n", true, &_init_f_currentValue_c0, &_call_f_currentValue_c0); - methods += new qt_gsi::GenericMethod (":duration", "@brief Method () const\nThis is a reimplementation of QAbstractAnimation::duration", true, &_init_f_duration_c0, &_call_f_duration_c0); + methods += new qt_gsi::GenericMethod (":duration", "@brief Method int QVariantAnimation::duration()\nThis is a reimplementation of QAbstractAnimation::duration", true, &_init_f_duration_c0, &_call_f_duration_c0); methods += new qt_gsi::GenericMethod (":easingCurve", "@brief Method QEasingCurve QVariantAnimation::easingCurve()\n", true, &_init_f_easingCurve_c0, &_call_f_easingCurve_c0); methods += new qt_gsi::GenericMethod (":endValue", "@brief Method QVariant QVariantAnimation::endValue()\n", true, &_init_f_endValue_c0, &_call_f_endValue_c0); methods += new qt_gsi::GenericMethod ("keyValueAt", "@brief Method QVariant QVariantAnimation::keyValueAt(double step)\n", true, &_init_f_keyValueAt_c1071, &_call_f_keyValueAt_c1071); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc index d1667dc20..a42ba875b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc @@ -42,7 +42,7 @@ // ----------------------------------------------------------------------- // class QAccessibleObject -// (int, int) const +// QAccessibleInterface *QAccessibleObject::childAt(int x, int y) static void _init_f_childAt_c1426 (qt_gsi::GenericMethod *decl) @@ -64,7 +64,7 @@ static void _call_f_childAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// bool QAccessibleObject::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -79,7 +79,7 @@ static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QObject *QAccessibleObject::object() static void _init_f_object_c0 (qt_gsi::GenericMethod *decl) @@ -94,7 +94,7 @@ static void _call_f_object_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QRect QAccessibleObject::rect() static void _init_f_rect_c0 (qt_gsi::GenericMethod *decl) @@ -109,7 +109,7 @@ static void _call_f_rect_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QAccessible::Text, const QString &) +// void QAccessibleObject::setText(QAccessible::Text t, const QString &text) static void _init_f_setText_3977 (qt_gsi::GenericMethod *decl) @@ -138,11 +138,11 @@ namespace gsi static gsi::Methods methods_QAccessibleObject () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("childAt", "@brief Method (int, int) const\nThis is a reimplementation of QAccessibleInterface::childAt", true, &_init_f_childAt_c1426, &_call_f_childAt_c1426); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::isValid", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod ("object", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::object", true, &_init_f_object_c0, &_call_f_object_c0); - methods += new qt_gsi::GenericMethod ("rect", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::rect", true, &_init_f_rect_c0, &_call_f_rect_c0); - methods += new qt_gsi::GenericMethod ("setText", "@brief Method (QAccessible::Text, const QString &)\nThis is a reimplementation of QAccessibleInterface::setText", false, &_init_f_setText_3977, &_call_f_setText_3977); + methods += new qt_gsi::GenericMethod ("childAt", "@brief Method QAccessibleInterface *QAccessibleObject::childAt(int x, int y)\nThis is a reimplementation of QAccessibleInterface::childAt", true, &_init_f_childAt_c1426, &_call_f_childAt_c1426); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QAccessibleObject::isValid()\nThis is a reimplementation of QAccessibleInterface::isValid", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("object", "@brief Method QObject *QAccessibleObject::object()\nThis is a reimplementation of QAccessibleInterface::object", true, &_init_f_object_c0, &_call_f_object_c0); + methods += new qt_gsi::GenericMethod ("rect", "@brief Method QRect QAccessibleObject::rect()\nThis is a reimplementation of QAccessibleInterface::rect", true, &_init_f_rect_c0, &_call_f_rect_c0); + methods += new qt_gsi::GenericMethod ("setText", "@brief Method void QAccessibleObject::setText(QAccessible::Text t, const QString &text)\nThis is a reimplementation of QAccessibleInterface::setText", false, &_init_f_setText_3977, &_call_f_setText_3977); return methods; } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc b/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc index 32b92bf64..38a79005c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc @@ -67,7 +67,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QPixmap &) +// QBitmap &QBitmap::operator=(const QPixmap &) static void _init_f_operator_eq__2017 (qt_gsi::GenericMethod *decl) @@ -86,7 +86,7 @@ static void _call_f_operator_eq__2017 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QBitmap &) +// void QBitmap::swap(QBitmap &other) static void _init_f_swap_1304 (qt_gsi::GenericMethod *decl) @@ -106,7 +106,7 @@ static void _call_f_swap_1304 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QMatrix &) const +// QBitmap QBitmap::transformed(const QMatrix &) static void _init_f_transformed_c2023 (qt_gsi::GenericMethod *decl) @@ -125,7 +125,7 @@ static void _call_f_transformed_c2023 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QTransform &) const +// QBitmap QBitmap::transformed(const QTransform &matrix) static void _init_f_transformed_c2350 (qt_gsi::GenericMethod *decl) @@ -197,10 +197,10 @@ namespace gsi static gsi::Methods methods_QBitmap () { gsi::Methods methods; methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QBitmap::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QPixmap &)\n", false, &_init_f_operator_eq__2017, &_call_f_operator_eq__2017); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method (QBitmap &)\n", false, &_init_f_swap_1304, &_call_f_swap_1304); - methods += new qt_gsi::GenericMethod ("transformed", "@brief Method (const QMatrix &) const\n", true, &_init_f_transformed_c2023, &_call_f_transformed_c2023); - methods += new qt_gsi::GenericMethod ("transformed", "@brief Method (const QTransform &) const\n", true, &_init_f_transformed_c2350, &_call_f_transformed_c2350); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QBitmap &QBitmap::operator=(const QPixmap &)\n", false, &_init_f_operator_eq__2017, &_call_f_operator_eq__2017); + methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QBitmap::swap(QBitmap &other)\n", false, &_init_f_swap_1304, &_call_f_swap_1304); + methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QBitmap QBitmap::transformed(const QMatrix &)\n", true, &_init_f_transformed_c2023, &_call_f_transformed_c2023); + methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QBitmap QBitmap::transformed(const QTransform &matrix)\n", true, &_init_f_transformed_c2350, &_call_f_transformed_c2350); methods += new qt_gsi::GenericStaticMethod ("fromData", "@brief Static method QBitmap QBitmap::fromData(const QSize &size, const unsigned char *bits, QImage::Format monoFormat)\nThis method is static and can be called without an instance.", &_init_f_fromData_6058, &_call_f_fromData_6058); methods += new qt_gsi::GenericStaticMethod ("fromImage", "@brief Static method QBitmap QBitmap::fromImage(const QImage &image, QFlags flags)\nThis method is static and can be called without an instance.", &_init_f_fromImage_5137, &_call_f_fromImage_5137); return methods; diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc index 596093576..1d1b5fb91 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc @@ -222,7 +222,7 @@ static void _call_f_top_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QString &, int &) const +// QValidator::State QDoubleValidator::validate(QString &, int &) static void _init_f_validate_c2171 (qt_gsi::GenericMethod *decl) @@ -309,7 +309,7 @@ static gsi::Methods methods_QDoubleValidator () { methods += new qt_gsi::GenericMethod ("setRange", "@brief Method void QDoubleValidator::setRange(double bottom, double top, int decimals)\n", false, &_init_f_setRange_2693, &_call_f_setRange_2693); methods += new qt_gsi::GenericMethod ("setTop|top=", "@brief Method void QDoubleValidator::setTop(double)\n", false, &_init_f_setTop_1071, &_call_f_setTop_1071); methods += new qt_gsi::GenericMethod (":top", "@brief Method double QDoubleValidator::top()\n", true, &_init_f_top_c0, &_call_f_top_c0); - methods += new qt_gsi::GenericMethod ("validate", "@brief Method (QString &, int &) const\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); + methods += new qt_gsi::GenericMethod ("validate", "@brief Method QValidator::State QDoubleValidator::validate(QString &, int &)\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); methods += gsi::qt_signal ("bottomChanged(double)", "bottomChanged", gsi::arg("bottom"), "@brief Signal declaration for QDoubleValidator::bottomChanged(double bottom)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("changed()", "changed", "@brief Signal declaration for QDoubleValidator::changed()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("decimalsChanged(int)", "decimalsChanged", gsi::arg("decimals"), "@brief Signal declaration for QDoubleValidator::decimalsChanged(int decimals)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc index 0a63460c1..df39e464d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc @@ -42,7 +42,7 @@ // ----------------------------------------------------------------------- // class QDragMoveEvent -// () +// void QDragMoveEvent::accept() static void _init_f_accept_0 (qt_gsi::GenericMethod *decl) @@ -58,7 +58,7 @@ static void _call_f_accept_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QRect &) +// void QDragMoveEvent::accept(const QRect &r) static void _init_f_accept_1792 (qt_gsi::GenericMethod *decl) @@ -93,7 +93,7 @@ static void _call_f_answerRect_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QDragMoveEvent::ignore() static void _init_f_ignore_0 (qt_gsi::GenericMethod *decl) @@ -109,7 +109,7 @@ static void _call_f_ignore_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QRect &) +// void QDragMoveEvent::ignore(const QRect &r) static void _init_f_ignore_1792 (qt_gsi::GenericMethod *decl) @@ -134,11 +134,11 @@ namespace gsi static gsi::Methods methods_QDragMoveEvent () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("accept", "@brief Method ()\n", false, &_init_f_accept_0, &_call_f_accept_0); - methods += new qt_gsi::GenericMethod ("accept", "@brief Method (const QRect &)\n", false, &_init_f_accept_1792, &_call_f_accept_1792); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QDragMoveEvent::accept()\n", false, &_init_f_accept_0, &_call_f_accept_0); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QDragMoveEvent::accept(const QRect &r)\n", false, &_init_f_accept_1792, &_call_f_accept_1792); methods += new qt_gsi::GenericMethod ("answerRect", "@brief Method QRect QDragMoveEvent::answerRect()\n", true, &_init_f_answerRect_c0, &_call_f_answerRect_c0); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method ()\n", false, &_init_f_ignore_0, &_call_f_ignore_0); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method (const QRect &)\n", false, &_init_f_ignore_1792, &_call_f_ignore_1792); + methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QDragMoveEvent::ignore()\n", false, &_init_f_ignore_0, &_call_f_ignore_0); + methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QDragMoveEvent::ignore(const QRect &r)\n", false, &_init_f_ignore_1792, &_call_f_ignore_1792); return methods; } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc index 9e14f5a9e..d01e730f9 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc @@ -99,7 +99,7 @@ static void _call_f_isSessionRestored_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QObject *, QEvent *) +// bool QGuiApplication::notify(QObject *, QEvent *) static void _init_f_notify_2411 (qt_gsi::GenericMethod *decl) @@ -831,7 +831,7 @@ static gsi::Methods methods_QGuiApplication () { methods += new qt_gsi::GenericMethod ("devicePixelRatio", "@brief Method double QGuiApplication::devicePixelRatio()\n", true, &_init_f_devicePixelRatio_c0, &_call_f_devicePixelRatio_c0); methods += new qt_gsi::GenericMethod ("isSavingSession?", "@brief Method bool QGuiApplication::isSavingSession()\n", true, &_init_f_isSavingSession_c0, &_call_f_isSavingSession_c0); methods += new qt_gsi::GenericMethod ("isSessionRestored?", "@brief Method bool QGuiApplication::isSessionRestored()\n", true, &_init_f_isSessionRestored_c0, &_call_f_isSessionRestored_c0); - methods += new qt_gsi::GenericMethod ("notify", "@brief Method (QObject *, QEvent *)\nThis is a reimplementation of QCoreApplication::notify", false, &_init_f_notify_2411, &_call_f_notify_2411); + methods += new qt_gsi::GenericMethod ("notify", "@brief Method bool QGuiApplication::notify(QObject *, QEvent *)\nThis is a reimplementation of QCoreApplication::notify", false, &_init_f_notify_2411, &_call_f_notify_2411); methods += new qt_gsi::GenericMethod ("sessionId", "@brief Method QString QGuiApplication::sessionId()\n", true, &_init_f_sessionId_c0, &_call_f_sessionId_c0); methods += new qt_gsi::GenericMethod ("sessionKey", "@brief Method QString QGuiApplication::sessionKey()\n", true, &_init_f_sessionKey_c0, &_call_f_sessionKey_c0); methods += gsi::qt_signal ("applicationNameChanged()", "applicationNameChanged", "@brief Signal declaration for QGuiApplication::applicationNameChanged()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc index 0faf553f2..186c0eed8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc @@ -171,7 +171,7 @@ static void _call_f_color_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// int QImage::colorCount() static void _init_f_colorCount_c0 (qt_gsi::GenericMethod *decl) @@ -389,7 +389,7 @@ static void _call_f_createMaskFromColor_c3198 (const qt_gsi::GenericMethod * /*d } -// () const +// int QImage::depth() static void _init_f_depth_c0 (qt_gsi::GenericMethod *decl) @@ -420,7 +420,7 @@ static void _call_f_detach_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// double QImage::devicePixelRatio() static void _init_f_devicePixelRatio_c0 (qt_gsi::GenericMethod *decl) @@ -555,7 +555,7 @@ static void _call_f_hasAlphaChannel_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QImage::height() static void _init_f_height_c0 (qt_gsi::GenericMethod *decl) @@ -782,7 +782,7 @@ static void _call_f_operator_excl__eq__c1877 (const qt_gsi::GenericMethod * /*de } -// (const QImage &) +// QImage &QImage::operator=(const QImage &) static void _init_f_operator_eq__1877 (qt_gsi::GenericMethod *decl) @@ -820,7 +820,7 @@ static void _call_f_operator_eq__eq__c1877 (const qt_gsi::GenericMethod * /*decl } -// () const +// QPaintEngine *QImage::paintEngine() static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl) @@ -1498,7 +1498,7 @@ static void _call_f_valid_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QImage::width() static void _init_f_width_c0 (qt_gsi::GenericMethod *decl) @@ -1661,7 +1661,7 @@ static gsi::Methods methods_QImage () { methods += new qt_gsi::GenericMethod ("bytesPerLine", "@brief Method int QImage::bytesPerLine()\n", true, &_init_f_bytesPerLine_c0, &_call_f_bytesPerLine_c0); methods += new qt_gsi::GenericMethod ("cacheKey", "@brief Method qint64 QImage::cacheKey()\n", true, &_init_f_cacheKey_c0, &_call_f_cacheKey_c0); methods += new qt_gsi::GenericMethod ("color", "@brief Method unsigned int QImage::color(int i)\n", true, &_init_f_color_c767, &_call_f_color_c767); - methods += new qt_gsi::GenericMethod (":colorCount", "@brief Method () const\n", true, &_init_f_colorCount_c0, &_call_f_colorCount_c0); + methods += new qt_gsi::GenericMethod (":colorCount", "@brief Method int QImage::colorCount()\n", true, &_init_f_colorCount_c0, &_call_f_colorCount_c0); methods += new qt_gsi::GenericMethod ("colorTable", "@brief Method QVector QImage::colorTable()\n", true, &_init_f_colorTable_c0, &_call_f_colorTable_c0); methods += new qt_gsi::GenericMethod ("constBits", "@brief Method const unsigned char *QImage::constBits()\n", true, &_init_f_constBits_c0, &_call_f_constBits_c0); methods += new qt_gsi::GenericMethod ("constScanLine", "@brief Method const unsigned char *QImage::constScanLine(int)\n", true, &_init_f_constScanLine_c767, &_call_f_constScanLine_c767); @@ -1672,9 +1672,9 @@ static gsi::Methods methods_QImage () { methods += new qt_gsi::GenericMethod ("createAlphaMask", "@brief Method QImage QImage::createAlphaMask(QFlags flags)\n", true, &_init_f_createAlphaMask_c3368, &_call_f_createAlphaMask_c3368); methods += new qt_gsi::GenericMethod ("createHeuristicMask", "@brief Method QImage QImage::createHeuristicMask(bool clipTight)\n", true, &_init_f_createHeuristicMask_c864, &_call_f_createHeuristicMask_c864); methods += new qt_gsi::GenericMethod ("createMaskFromColor", "@brief Method QImage QImage::createMaskFromColor(unsigned int color, Qt::MaskMode mode)\n", true, &_init_f_createMaskFromColor_c3198, &_call_f_createMaskFromColor_c3198); - methods += new qt_gsi::GenericMethod ("depth", "@brief Method () const\n", true, &_init_f_depth_c0, &_call_f_depth_c0); + methods += new qt_gsi::GenericMethod ("depth", "@brief Method int QImage::depth()\n", true, &_init_f_depth_c0, &_call_f_depth_c0); methods += new qt_gsi::GenericMethod ("detach", "@brief Method void QImage::detach()\n", false, &_init_f_detach_0, &_call_f_detach_0); - methods += new qt_gsi::GenericMethod (":devicePixelRatio", "@brief Method () const\n", true, &_init_f_devicePixelRatio_c0, &_call_f_devicePixelRatio_c0); + methods += new qt_gsi::GenericMethod (":devicePixelRatio", "@brief Method double QImage::devicePixelRatio()\n", true, &_init_f_devicePixelRatio_c0, &_call_f_devicePixelRatio_c0); methods += new qt_gsi::GenericMethod (":dotsPerMeterX", "@brief Method int QImage::dotsPerMeterX()\n", true, &_init_f_dotsPerMeterX_c0, &_call_f_dotsPerMeterX_c0); methods += new qt_gsi::GenericMethod (":dotsPerMeterY", "@brief Method int QImage::dotsPerMeterY()\n", true, &_init_f_dotsPerMeterY_c0, &_call_f_dotsPerMeterY_c0); methods += new qt_gsi::GenericMethod ("fill", "@brief Method void QImage::fill(unsigned int pixel)\n", false, &_init_f_fill_1772, &_call_f_fill_1772); @@ -1682,7 +1682,7 @@ static gsi::Methods methods_QImage () { methods += new qt_gsi::GenericMethod ("fill", "@brief Method void QImage::fill(Qt::GlobalColor color)\n", false, &_init_f_fill_1853, &_call_f_fill_1853); methods += new qt_gsi::GenericMethod ("format", "@brief Method QImage::Format QImage::format()\n", true, &_init_f_format_c0, &_call_f_format_c0); methods += new qt_gsi::GenericMethod ("hasAlphaChannel", "@brief Method bool QImage::hasAlphaChannel()\n", true, &_init_f_hasAlphaChannel_c0, &_call_f_hasAlphaChannel_c0); - methods += new qt_gsi::GenericMethod ("height", "@brief Method () const\n", true, &_init_f_height_c0, &_call_f_height_c0); + methods += new qt_gsi::GenericMethod ("height", "@brief Method int QImage::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); methods += new qt_gsi::GenericMethod ("invertPixels", "@brief Method void QImage::invertPixels(QImage::InvertMode)\n", false, &_init_f_invertPixels_2137, &_call_f_invertPixels_2137); methods += new qt_gsi::GenericMethod ("isDetached?", "@brief Method bool QImage::isDetached()\n", true, &_init_f_isDetached_c0, &_call_f_isDetached_c0); methods += new qt_gsi::GenericMethod ("isGrayscale?", "@brief Method bool QImage::isGrayscale()\n", true, &_init_f_isGrayscale_c0, &_call_f_isGrayscale_c0); @@ -1694,9 +1694,9 @@ static gsi::Methods methods_QImage () { methods += new qt_gsi::GenericMethod ("mirrored", "@brief Method QImage QImage::mirrored(bool horizontally, bool vertically)\n", true, &_init_f_mirrored_c1620, &_call_f_mirrored_c1620); methods += new qt_gsi::GenericMethod (":offset", "@brief Method QPoint QImage::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0); methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QImage::operator!=(const QImage &)\n", true, &_init_f_operator_excl__eq__c1877, &_call_f_operator_excl__eq__c1877); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QImage &)\n", false, &_init_f_operator_eq__1877, &_call_f_operator_eq__1877); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QImage &QImage::operator=(const QImage &)\n", false, &_init_f_operator_eq__1877, &_call_f_operator_eq__1877); methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QImage::operator==(const QImage &)\n", true, &_init_f_operator_eq__eq__c1877, &_call_f_operator_eq__eq__c1877); - methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); + methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method QPaintEngine *QImage::paintEngine()\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); methods += new qt_gsi::GenericMethod ("pixel", "@brief Method unsigned int QImage::pixel(int x, int y)\n", true, &_init_f_pixel_c1426, &_call_f_pixel_c1426); methods += new qt_gsi::GenericMethod ("pixel", "@brief Method unsigned int QImage::pixel(const QPoint &pt)\n", true, &_init_f_pixel_c1916, &_call_f_pixel_c1916); methods += new qt_gsi::GenericMethod ("pixelFormat", "@brief Method QPixelFormat QImage::pixelFormat()\n", true, &_init_f_pixelFormat_c0, &_call_f_pixelFormat_c0); @@ -1729,7 +1729,7 @@ static gsi::Methods methods_QImage () { methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QImage QImage::transformed(const QTransform &matrix, Qt::TransformationMode mode)\n", true, &_init_f_transformed_c4875, &_call_f_transformed_c4875); methods += new qt_gsi::GenericMethod ("valid", "@brief Method bool QImage::valid(int x, int y)\n", true, &_init_f_valid_c1426, &_call_f_valid_c1426); methods += new qt_gsi::GenericMethod ("valid", "@brief Method bool QImage::valid(const QPoint &pt)\n", true, &_init_f_valid_c1916, &_call_f_valid_c1916); - methods += new qt_gsi::GenericMethod ("width", "@brief Method () const\n", true, &_init_f_width_c0, &_call_f_width_c0); + methods += new qt_gsi::GenericMethod ("width", "@brief Method int QImage::width()\n", true, &_init_f_width_c0, &_call_f_width_c0); methods += new qt_gsi::GenericStaticMethod ("fromData", "@brief Static method QImage QImage::fromData(const unsigned char *data, int size, const char *format)\nThis method is static and can be called without an instance.", &_init_f_fromData_5018, &_call_f_fromData_5018); methods += new qt_gsi::GenericStaticMethod ("fromData", "@brief Static method QImage QImage::fromData(const QByteArray &data, const char *format)\nThis method is static and can be called without an instance.", &_init_f_fromData_3932, &_call_f_fromData_3932); methods += new qt_gsi::GenericStaticMethod ("toImageFormat", "@brief Static method QImage::Format QImage::toImageFormat(QPixelFormat format)\nThis method is static and can be called without an instance.", &_init_f_toImageFormat_1648, &_call_f_toImageFormat_1648); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc index b1c68ad2e..3c02f7312 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc @@ -71,7 +71,7 @@ static void _call_f_bottom_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (QString &) const +// void QIntValidator::fixup(QString &input) static void _init_f_fixup_c1330 (qt_gsi::GenericMethod *decl) @@ -169,7 +169,7 @@ static void _call_f_top_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QString &, int &) const +// QValidator::State QIntValidator::validate(QString &, int &) static void _init_f_validate_c2171 (qt_gsi::GenericMethod *decl) @@ -248,12 +248,12 @@ static gsi::Methods methods_QIntValidator () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":bottom", "@brief Method int QIntValidator::bottom()\n", true, &_init_f_bottom_c0, &_call_f_bottom_c0); - methods += new qt_gsi::GenericMethod ("fixup", "@brief Method (QString &) const\nThis is a reimplementation of QValidator::fixup", true, &_init_f_fixup_c1330, &_call_f_fixup_c1330); + methods += new qt_gsi::GenericMethod ("fixup", "@brief Method void QIntValidator::fixup(QString &input)\nThis is a reimplementation of QValidator::fixup", true, &_init_f_fixup_c1330, &_call_f_fixup_c1330); methods += new qt_gsi::GenericMethod ("setBottom|bottom=", "@brief Method void QIntValidator::setBottom(int)\n", false, &_init_f_setBottom_767, &_call_f_setBottom_767); methods += new qt_gsi::GenericMethod ("setRange", "@brief Method void QIntValidator::setRange(int bottom, int top)\n", false, &_init_f_setRange_1426, &_call_f_setRange_1426); methods += new qt_gsi::GenericMethod ("setTop|top=", "@brief Method void QIntValidator::setTop(int)\n", false, &_init_f_setTop_767, &_call_f_setTop_767); methods += new qt_gsi::GenericMethod (":top", "@brief Method int QIntValidator::top()\n", true, &_init_f_top_c0, &_call_f_top_c0); - methods += new qt_gsi::GenericMethod ("validate", "@brief Method (QString &, int &) const\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); + methods += new qt_gsi::GenericMethod ("validate", "@brief Method QValidator::State QIntValidator::validate(QString &, int &)\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); methods += gsi::qt_signal ("bottomChanged(int)", "bottomChanged", gsi::arg("bottom"), "@brief Signal declaration for QIntValidator::bottomChanged(int bottom)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("changed()", "changed", "@brief Signal declaration for QIntValidator::changed()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QIntValidator::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc index 519069230..ec52e9cb6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc @@ -101,7 +101,7 @@ static void _call_f_matches_c2869 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QFlags QKeyEvent::modifiers() static void _init_f_modifiers_c0 (qt_gsi::GenericMethod *decl) @@ -185,7 +185,7 @@ static gsi::Methods methods_QKeyEvent () { methods += new qt_gsi::GenericMethod ("isAutoRepeat?", "@brief Method bool QKeyEvent::isAutoRepeat()\n", true, &_init_f_isAutoRepeat_c0, &_call_f_isAutoRepeat_c0); methods += new qt_gsi::GenericMethod ("key", "@brief Method int QKeyEvent::key()\n", true, &_init_f_key_c0, &_call_f_key_c0); methods += new qt_gsi::GenericMethod ("matches", "@brief Method bool QKeyEvent::matches(QKeySequence::StandardKey key)\n", true, &_init_f_matches_c2869, &_call_f_matches_c2869); - methods += new qt_gsi::GenericMethod (":modifiers", "@brief Method () const\n", true, &_init_f_modifiers_c0, &_call_f_modifiers_c0); + methods += new qt_gsi::GenericMethod (":modifiers", "@brief Method QFlags QKeyEvent::modifiers()\n", true, &_init_f_modifiers_c0, &_call_f_modifiers_c0); methods += new qt_gsi::GenericMethod ("nativeModifiers", "@brief Method quint32 QKeyEvent::nativeModifiers()\n", true, &_init_f_nativeModifiers_c0, &_call_f_nativeModifiers_c0); methods += new qt_gsi::GenericMethod ("nativeScanCode", "@brief Method quint32 QKeyEvent::nativeScanCode()\n", true, &_init_f_nativeScanCode_c0, &_call_f_nativeScanCode_c0); methods += new qt_gsi::GenericMethod ("nativeVirtualKey", "@brief Method quint32 QKeyEvent::nativeVirtualKey()\n", true, &_init_f_nativeVirtualKey_c0, &_call_f_nativeVirtualKey_c0); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc index 88caf6368..712fb98a8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc @@ -82,7 +82,7 @@ static void _call_f_destroy_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QSurfaceFormat QOffscreenSurface::format() static void _init_f_format_c0 (qt_gsi::GenericMethod *decl) @@ -182,7 +182,7 @@ static void _call_f_setScreen_1311 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QOffscreenSurface::size() static void _init_f_size_c0 (qt_gsi::GenericMethod *decl) @@ -197,7 +197,7 @@ static void _call_f_size_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QSurface::SurfaceType QOffscreenSurface::surfaceType() static void _init_f_surfaceType_c0 (qt_gsi::GenericMethod *decl) @@ -315,14 +315,14 @@ static gsi::Methods methods_QOffscreenSurface () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("qt_create", "@brief Method void QOffscreenSurface::create()\n", false, &_init_f_create_0, &_call_f_create_0); methods += new qt_gsi::GenericMethod ("qt_destroy", "@brief Method void QOffscreenSurface::destroy()\n", false, &_init_f_destroy_0, &_call_f_destroy_0); - methods += new qt_gsi::GenericMethod (":format", "@brief Method () const\nThis is a reimplementation of QSurface::format", true, &_init_f_format_c0, &_call_f_format_c0); + methods += new qt_gsi::GenericMethod (":format", "@brief Method QSurfaceFormat QOffscreenSurface::format()\nThis is a reimplementation of QSurface::format", true, &_init_f_format_c0, &_call_f_format_c0); methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QOffscreenSurface::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod ("requestedFormat", "@brief Method QSurfaceFormat QOffscreenSurface::requestedFormat()\n", true, &_init_f_requestedFormat_c0, &_call_f_requestedFormat_c0); methods += new qt_gsi::GenericMethod (":screen", "@brief Method QScreen *QOffscreenSurface::screen()\n", true, &_init_f_screen_c0, &_call_f_screen_c0); methods += new qt_gsi::GenericMethod ("setFormat|format=", "@brief Method void QOffscreenSurface::setFormat(const QSurfaceFormat &format)\n", false, &_init_f_setFormat_2724, &_call_f_setFormat_2724); methods += new qt_gsi::GenericMethod ("setScreen|screen=", "@brief Method void QOffscreenSurface::setScreen(QScreen *screen)\n", false, &_init_f_setScreen_1311, &_call_f_setScreen_1311); - methods += new qt_gsi::GenericMethod ("size", "@brief Method () const\nThis is a reimplementation of QSurface::size", true, &_init_f_size_c0, &_call_f_size_c0); - methods += new qt_gsi::GenericMethod ("surfaceType", "@brief Method () const\nThis is a reimplementation of QSurface::surfaceType", true, &_init_f_surfaceType_c0, &_call_f_surfaceType_c0); + methods += new qt_gsi::GenericMethod ("size", "@brief Method QSize QOffscreenSurface::size()\nThis is a reimplementation of QSurface::size", true, &_init_f_size_c0, &_call_f_size_c0); + methods += new qt_gsi::GenericMethod ("surfaceType", "@brief Method QSurface::SurfaceType QOffscreenSurface::surfaceType()\nThis is a reimplementation of QSurface::surfaceType", true, &_init_f_surfaceType_c0, &_call_f_surfaceType_c0); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QOffscreenSurface::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("screenChanged(QScreen *)", "screenChanged", gsi::arg("screen"), "@brief Signal declaration for QOffscreenSurface::screenChanged(QScreen *screen)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QOffscreenSurface::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc index d777f07bd..6c2548e61 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc @@ -80,7 +80,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// double QPaintDeviceWindow::devicePixelRatio() static void _init_f_devicePixelRatio_c0 (qt_gsi::GenericMethod *decl) @@ -95,7 +95,7 @@ static void _call_f_devicePixelRatio_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QPaintDeviceWindow::height() static void _init_f_height_c0 (qt_gsi::GenericMethod *decl) @@ -166,7 +166,7 @@ static void _call_f_update_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QPaintDeviceWindow::width() static void _init_f_width_c0 (qt_gsi::GenericMethod *decl) @@ -282,12 +282,12 @@ namespace gsi static gsi::Methods methods_QPaintDeviceWindow () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("devicePixelRatio", "@brief Method () const\n", true, &_init_f_devicePixelRatio_c0, &_call_f_devicePixelRatio_c0); - methods += new qt_gsi::GenericMethod (":height", "@brief Method () const\n", true, &_init_f_height_c0, &_call_f_height_c0); + methods += new qt_gsi::GenericMethod ("devicePixelRatio", "@brief Method double QPaintDeviceWindow::devicePixelRatio()\n", true, &_init_f_devicePixelRatio_c0, &_call_f_devicePixelRatio_c0); + methods += new qt_gsi::GenericMethod (":height", "@brief Method int QPaintDeviceWindow::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); methods += new qt_gsi::GenericMethod ("update", "@brief Method void QPaintDeviceWindow::update(const QRect &rect)\n", false, &_init_f_update_1792, &_call_f_update_1792); methods += new qt_gsi::GenericMethod ("update", "@brief Method void QPaintDeviceWindow::update(const QRegion ®ion)\n", false, &_init_f_update_2006, &_call_f_update_2006); methods += new qt_gsi::GenericMethod ("update", "@brief Method void QPaintDeviceWindow::update()\n", false, &_init_f_update_0, &_call_f_update_0); - methods += new qt_gsi::GenericMethod (":width", "@brief Method () const\n", true, &_init_f_width_c0, &_call_f_width_c0); + methods += new qt_gsi::GenericMethod (":width", "@brief Method int QPaintDeviceWindow::width()\n", true, &_init_f_width_c0, &_call_f_width_c0); methods += gsi::qt_signal ("activeChanged()", "activeChanged", "@brief Signal declaration for QPaintDeviceWindow::activeChanged()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type & > ("contentOrientationChanged(Qt::ScreenOrientation)", "contentOrientationChanged", gsi::arg("orientation"), "@brief Signal declaration for QPaintDeviceWindow::contentOrientationChanged(Qt::ScreenOrientation orientation)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QPaintDeviceWindow::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc index 79d2aae33..dadbef8a6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc @@ -78,7 +78,7 @@ static void _call_f_creator_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () +// bool QPdfWriter::newPage() static void _init_f_newPage_0 (qt_gsi::GenericMethod *decl) @@ -128,7 +128,7 @@ static void _call_f_setCreator_2025 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPagedPaintDevice::Margins &) +// void QPdfWriter::setMargins(const QPagedPaintDevice::Margins &m) static void _init_f_setMargins_3812 (qt_gsi::GenericMethod *decl) @@ -148,7 +148,7 @@ static void _call_f_setMargins_3812 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QPagedPaintDevice::PageSize) +// void QPdfWriter::setPageSize(QPagedPaintDevice::PageSize size) static void _init_f_setPageSize_3006 (qt_gsi::GenericMethod *decl) @@ -168,7 +168,7 @@ static void _call_f_setPageSize_3006 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QSizeF &) +// void QPdfWriter::setPageSizeMM(const QSizeF &size) static void _init_f_setPageSizeMM_1875 (qt_gsi::GenericMethod *decl) @@ -345,12 +345,12 @@ static gsi::Methods methods_QPdfWriter () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":creator", "@brief Method QString QPdfWriter::creator()\n", true, &_init_f_creator_c0, &_call_f_creator_c0); - methods += new qt_gsi::GenericMethod ("newPage", "@brief Method ()\nThis is a reimplementation of QPagedPaintDevice::newPage", false, &_init_f_newPage_0, &_call_f_newPage_0); + methods += new qt_gsi::GenericMethod ("newPage", "@brief Method bool QPdfWriter::newPage()\nThis is a reimplementation of QPagedPaintDevice::newPage", false, &_init_f_newPage_0, &_call_f_newPage_0); methods += new qt_gsi::GenericMethod (":resolution", "@brief Method int QPdfWriter::resolution()\n", true, &_init_f_resolution_c0, &_call_f_resolution_c0); methods += new qt_gsi::GenericMethod ("setCreator|creator=", "@brief Method void QPdfWriter::setCreator(const QString &creator)\n", false, &_init_f_setCreator_2025, &_call_f_setCreator_2025); - methods += new qt_gsi::GenericMethod ("setMargins", "@brief Method (const QPagedPaintDevice::Margins &)\nThis is a reimplementation of QPagedPaintDevice::setMargins", false, &_init_f_setMargins_3812, &_call_f_setMargins_3812); - methods += new qt_gsi::GenericMethod ("setPageSize|pageSize=", "@brief Method (QPagedPaintDevice::PageSize)\nThis is a reimplementation of QPagedPaintDevice::setPageSize", false, &_init_f_setPageSize_3006, &_call_f_setPageSize_3006); - methods += new qt_gsi::GenericMethod ("setPageSizeMM", "@brief Method (const QSizeF &)\nThis is a reimplementation of QPagedPaintDevice::setPageSizeMM", false, &_init_f_setPageSizeMM_1875, &_call_f_setPageSizeMM_1875); + methods += new qt_gsi::GenericMethod ("setMargins", "@brief Method void QPdfWriter::setMargins(const QPagedPaintDevice::Margins &m)\nThis is a reimplementation of QPagedPaintDevice::setMargins", false, &_init_f_setMargins_3812, &_call_f_setMargins_3812); + methods += new qt_gsi::GenericMethod ("setPageSize|pageSize=", "@brief Method void QPdfWriter::setPageSize(QPagedPaintDevice::PageSize size)\nThis is a reimplementation of QPagedPaintDevice::setPageSize", false, &_init_f_setPageSize_3006, &_call_f_setPageSize_3006); + methods += new qt_gsi::GenericMethod ("setPageSizeMM", "@brief Method void QPdfWriter::setPageSizeMM(const QSizeF &size)\nThis is a reimplementation of QPagedPaintDevice::setPageSizeMM", false, &_init_f_setPageSizeMM_1875, &_call_f_setPageSizeMM_1875); methods += new qt_gsi::GenericMethod ("setResolution|resolution=", "@brief Method void QPdfWriter::setResolution(int resolution)\n", false, &_init_f_setResolution_767, &_call_f_setResolution_767); methods += new qt_gsi::GenericMethod ("setTitle|title=", "@brief Method void QPdfWriter::setTitle(const QString &title)\n", false, &_init_f_setTitle_2025, &_call_f_setTitle_2025); methods += new qt_gsi::GenericMethod (":title", "@brief Method QString QPdfWriter::title()\n", true, &_init_f_title_c0, &_call_f_title_c0); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc index f3e19ad57..c6ce3c86f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc @@ -162,7 +162,7 @@ static void _call_f_load_3648 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QPicture &) +// QPicture &QPicture::operator=(const QPicture &p) static void _init_f_operator_eq__2126 (qt_gsi::GenericMethod *decl) @@ -181,7 +181,7 @@ static void _call_f_operator_eq__2126 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QPaintEngine *QPicture::paintEngine() static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl) @@ -428,8 +428,8 @@ static gsi::Methods methods_QPicture () { methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QPicture::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0); methods += new qt_gsi::GenericMethod ("load", "@brief Method bool QPicture::load(QIODevice *dev, const char *format)\n", false, &_init_f_load_3070, &_call_f_load_3070); methods += new qt_gsi::GenericMethod ("load", "@brief Method bool QPicture::load(const QString &fileName, const char *format)\n", false, &_init_f_load_3648, &_call_f_load_3648); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QPicture &)\n", false, &_init_f_operator_eq__2126, &_call_f_operator_eq__2126); - methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QPicture &QPicture::operator=(const QPicture &p)\n", false, &_init_f_operator_eq__2126, &_call_f_operator_eq__2126); + methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method QPaintEngine *QPicture::paintEngine()\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); methods += new qt_gsi::GenericMethod ("play", "@brief Method bool QPicture::play(QPainter *p)\n", false, &_init_f_play_1426, &_call_f_play_1426); methods += new qt_gsi::GenericMethod ("save", "@brief Method bool QPicture::save(QIODevice *dev, const char *format)\n", false, &_init_f_save_3070, &_call_f_save_3070); methods += new qt_gsi::GenericMethod ("save", "@brief Method bool QPicture::save(const QString &fileName, const char *format)\n", false, &_init_f_save_3648, &_call_f_save_3648); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc index 4a15bca2b..040e6da88 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc @@ -176,7 +176,7 @@ static void _call_f_createMaskFromColor_c3331 (const qt_gsi::GenericMethod * /*d } -// () const +// int QPixmap::depth() static void _init_f_depth_c0 (qt_gsi::GenericMethod *decl) @@ -207,7 +207,7 @@ static void _call_f_detach_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// double QPixmap::devicePixelRatio() static void _init_f_devicePixelRatio_c0 (qt_gsi::GenericMethod *decl) @@ -321,7 +321,7 @@ static void _call_f_hasAlphaChannel_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QPixmap::height() static void _init_f_height_c0 (qt_gsi::GenericMethod *decl) @@ -489,7 +489,7 @@ static void _call_f_operator_excl__c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QPixmap &) +// QPixmap &QPixmap::operator=(const QPixmap &) static void _init_f_operator_eq__2017 (qt_gsi::GenericMethod *decl) @@ -508,7 +508,7 @@ static void _call_f_operator_eq__2017 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QPaintEngine *QPixmap::paintEngine() static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl) @@ -886,7 +886,7 @@ static void _call_f_transformed_c4875 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// int QPixmap::width() static void _init_f_width_c0 (qt_gsi::GenericMethod *decl) @@ -1105,15 +1105,15 @@ static gsi::Methods methods_QPixmap () { methods += new qt_gsi::GenericMethod ("copy", "@brief Method QPixmap QPixmap::copy(const QRect &rect)\n", true, &_init_f_copy_c1792, &_call_f_copy_c1792); methods += new qt_gsi::GenericMethod ("createHeuristicMask", "@brief Method QBitmap QPixmap::createHeuristicMask(bool clipTight)\n", true, &_init_f_createHeuristicMask_c864, &_call_f_createHeuristicMask_c864); methods += new qt_gsi::GenericMethod ("createMaskFromColor", "@brief Method QBitmap QPixmap::createMaskFromColor(const QColor &maskColor, Qt::MaskMode mode)\n", true, &_init_f_createMaskFromColor_c3331, &_call_f_createMaskFromColor_c3331); - methods += new qt_gsi::GenericMethod ("depth", "@brief Method () const\n", true, &_init_f_depth_c0, &_call_f_depth_c0); + methods += new qt_gsi::GenericMethod ("depth", "@brief Method int QPixmap::depth()\n", true, &_init_f_depth_c0, &_call_f_depth_c0); methods += new qt_gsi::GenericMethod ("detach", "@brief Method void QPixmap::detach()\n", false, &_init_f_detach_0, &_call_f_detach_0); - methods += new qt_gsi::GenericMethod (":devicePixelRatio", "@brief Method () const\n", true, &_init_f_devicePixelRatio_c0, &_call_f_devicePixelRatio_c0); + methods += new qt_gsi::GenericMethod (":devicePixelRatio", "@brief Method double QPixmap::devicePixelRatio()\n", true, &_init_f_devicePixelRatio_c0, &_call_f_devicePixelRatio_c0); methods += new qt_gsi::GenericMethod ("fill", "@brief Method void QPixmap::fill(const QColor &fillColor)\n", false, &_init_f_fill_1905, &_call_f_fill_1905); methods += new qt_gsi::GenericMethod ("fill", "@brief Method void QPixmap::fill(const QPaintDevice *device, const QPoint &ofs)\n", false, &_init_f_fill_4306, &_call_f_fill_4306); methods += new qt_gsi::GenericMethod ("fill", "@brief Method void QPixmap::fill(const QPaintDevice *device, int xofs, int yofs)\n", false, &_init_f_fill_3816, &_call_f_fill_3816); methods += new qt_gsi::GenericMethod ("hasAlpha", "@brief Method bool QPixmap::hasAlpha()\n", true, &_init_f_hasAlpha_c0, &_call_f_hasAlpha_c0); methods += new qt_gsi::GenericMethod ("hasAlphaChannel", "@brief Method bool QPixmap::hasAlphaChannel()\n", true, &_init_f_hasAlphaChannel_c0, &_call_f_hasAlphaChannel_c0); - methods += new qt_gsi::GenericMethod ("height", "@brief Method () const\n", true, &_init_f_height_c0, &_call_f_height_c0); + methods += new qt_gsi::GenericMethod ("height", "@brief Method int QPixmap::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); methods += new qt_gsi::GenericMethod ("isDetached?", "@brief Method bool QPixmap::isDetached()\n", true, &_init_f_isDetached_c0, &_call_f_isDetached_c0); methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QPixmap::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0); methods += new qt_gsi::GenericMethod ("isQBitmap?", "@brief Method bool QPixmap::isQBitmap()\n", true, &_init_f_isQBitmap_c0, &_call_f_isQBitmap_c0); @@ -1122,8 +1122,8 @@ static gsi::Methods methods_QPixmap () { methods += new qt_gsi::GenericMethod ("loadFromData", "@brief Method bool QPixmap::loadFromData(const QByteArray &data, const char *format, QFlags flags)\n", false, &_init_f_loadFromData_7192, &_call_f_loadFromData_7192); methods += new qt_gsi::GenericMethod (":mask", "@brief Method QBitmap QPixmap::mask()\n", true, &_init_f_mask_c0, &_call_f_mask_c0); methods += new qt_gsi::GenericMethod ("!", "@brief Method bool QPixmap::operator!()\n", true, &_init_f_operator_excl__c0, &_call_f_operator_excl__c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QPixmap &)\n", false, &_init_f_operator_eq__2017, &_call_f_operator_eq__2017); - methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QPixmap &QPixmap::operator=(const QPixmap &)\n", false, &_init_f_operator_eq__2017, &_call_f_operator_eq__2017); + methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method QPaintEngine *QPixmap::paintEngine()\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); methods += new qt_gsi::GenericMethod ("rect", "@brief Method QRect QPixmap::rect()\n", true, &_init_f_rect_c0, &_call_f_rect_c0); methods += new qt_gsi::GenericMethod ("save", "@brief Method bool QPixmap::save(const QString &fileName, const char *format, int quality)\n", true, &_init_f_save_c4307, &_call_f_save_c4307); methods += new qt_gsi::GenericMethod ("save", "@brief Method bool QPixmap::save(QIODevice *device, const char *format, int quality)\n", true, &_init_f_save_c3729, &_call_f_save_c3729); @@ -1140,7 +1140,7 @@ static gsi::Methods methods_QPixmap () { methods += new qt_gsi::GenericMethod ("toImage", "@brief Method QImage QPixmap::toImage()\n", true, &_init_f_toImage_c0, &_call_f_toImage_c0); methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QPixmap QPixmap::transformed(const QMatrix &, Qt::TransformationMode mode)\n", true, &_init_f_transformed_c4548, &_call_f_transformed_c4548); methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QPixmap QPixmap::transformed(const QTransform &, Qt::TransformationMode mode)\n", true, &_init_f_transformed_c4875, &_call_f_transformed_c4875); - methods += new qt_gsi::GenericMethod ("width", "@brief Method () const\n", true, &_init_f_width_c0, &_call_f_width_c0); + methods += new qt_gsi::GenericMethod ("width", "@brief Method int QPixmap::width()\n", true, &_init_f_width_c0, &_call_f_width_c0); methods += new qt_gsi::GenericStaticMethod ("defaultDepth", "@brief Static method int QPixmap::defaultDepth()\nThis method is static and can be called without an instance.", &_init_f_defaultDepth_0, &_call_f_defaultDepth_0); methods += new qt_gsi::GenericStaticMethod ("fromImage", "@brief Static method QPixmap QPixmap::fromImage(const QImage &image, QFlags flags)\nThis method is static and can be called without an instance.", &_init_f_fromImage_5137, &_call_f_fromImage_5137); methods += new qt_gsi::GenericStaticMethod ("fromImageReader", "@brief Static method QPixmap QPixmap::fromImageReader(QImageReader *imageReader, QFlags flags)\nThis method is static and can be called without an instance.", &_init_f_fromImageReader_5041, &_call_f_fromImageReader_5041); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc index f4d09f35a..7f645ad20 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc @@ -92,7 +92,7 @@ static void _call_f_setRegExp_1981 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QString &, int &) const +// QValidator::State QRegExpValidator::validate(QString &input, int &pos) static void _init_f_validate_c2171 (qt_gsi::GenericMethod *decl) @@ -172,7 +172,7 @@ static gsi::Methods methods_QRegExpValidator () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":regExp", "@brief Method const QRegExp &QRegExpValidator::regExp()\n", true, &_init_f_regExp_c0, &_call_f_regExp_c0); methods += new qt_gsi::GenericMethod ("setRegExp|regExp=", "@brief Method void QRegExpValidator::setRegExp(const QRegExp &rx)\n", false, &_init_f_setRegExp_1981, &_call_f_setRegExp_1981); - methods += new qt_gsi::GenericMethod ("validate", "@brief Method (QString &, int &) const\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); + methods += new qt_gsi::GenericMethod ("validate", "@brief Method QValidator::State QRegExpValidator::validate(QString &input, int &pos)\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); methods += gsi::qt_signal ("changed()", "changed", "@brief Signal declaration for QRegExpValidator::changed()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QRegExpValidator::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("regExpChanged(const QRegExp &)", "regExpChanged", gsi::arg("regExp"), "@brief Signal declaration for QRegExpValidator::regExpChanged(const QRegExp ®Exp)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc index 8bedd4e79..113e63e45 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc @@ -92,7 +92,7 @@ static void _call_f_setRegularExpression_3188 (const qt_gsi::GenericMethod * /*d } -// (QString &, int &) const +// QValidator::State QRegularExpressionValidator::validate(QString &input, int &pos) static void _init_f_validate_c2171 (qt_gsi::GenericMethod *decl) @@ -172,7 +172,7 @@ static gsi::Methods methods_QRegularExpressionValidator () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":regularExpression", "@brief Method QRegularExpression QRegularExpressionValidator::regularExpression()\n", true, &_init_f_regularExpression_c0, &_call_f_regularExpression_c0); methods += new qt_gsi::GenericMethod ("setRegularExpression|regularExpression=", "@brief Method void QRegularExpressionValidator::setRegularExpression(const QRegularExpression &re)\n", false, &_init_f_setRegularExpression_3188, &_call_f_setRegularExpression_3188); - methods += new qt_gsi::GenericMethod ("validate", "@brief Method (QString &, int &) const\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); + methods += new qt_gsi::GenericMethod ("validate", "@brief Method QValidator::State QRegularExpressionValidator::validate(QString &input, int &pos)\nThis is a reimplementation of QValidator::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); methods += gsi::qt_signal ("changed()", "changed", "@brief Signal declaration for QRegularExpressionValidator::changed()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QRegularExpressionValidator::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("regularExpressionChanged(const QRegularExpression &)", "regularExpressionChanged", gsi::arg("re"), "@brief Signal declaration for QRegularExpressionValidator::regularExpressionChanged(const QRegularExpression &re)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc index 67b9d507a..9c7f118a2 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc @@ -137,7 +137,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &) const +// int QStandardItemModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -156,7 +156,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int) const +// QVariant QStandardItemModel::data(const QModelIndex &index, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -178,7 +178,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QStandardItemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -234,7 +234,7 @@ static void _call_f_findItems_c4892 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QModelIndex &) const +// QFlags QStandardItemModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -253,7 +253,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QStandardItemModel::hasChildren(const QModelIndex &parent) static void _init_f_hasChildren_c2395 (qt_gsi::GenericMethod *decl) @@ -272,7 +272,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, Qt::Orientation, int) const +// QVariant QStandardItemModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -316,7 +316,7 @@ static void _call_f_horizontalHeaderItem_c767 (const qt_gsi::GenericMethod * /*d } -// (int, int, const QModelIndex &) const +// QModelIndex QStandardItemModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -360,7 +360,7 @@ static void _call_f_indexFromItem_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, const QList &) +// void QStandardItemModel::insertColumn(int column, const QList &items) static void _init_f_insertColumn_3926 (qt_gsi::GenericMethod *decl) @@ -383,7 +383,7 @@ static void _call_f_insertColumn_3926 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, const QModelIndex &) +// bool QStandardItemModel::insertColumn(int column, const QModelIndex &parent) static void _init_f_insertColumn_3054 (qt_gsi::GenericMethod *decl) @@ -405,7 +405,7 @@ static void _call_f_insertColumn_3054 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, int, const QModelIndex &) +// bool QStandardItemModel::insertColumns(int column, int count, const QModelIndex &parent) static void _init_f_insertColumns_3713 (qt_gsi::GenericMethod *decl) @@ -430,7 +430,7 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, const QList &) +// void QStandardItemModel::insertRow(int row, const QList &items) static void _init_f_insertRow_3926 (qt_gsi::GenericMethod *decl) @@ -453,7 +453,7 @@ static void _call_f_insertRow_3926 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, QStandardItem *) +// void QStandardItemModel::insertRow(int row, QStandardItem *item) static void _init_f_insertRow_2578 (qt_gsi::GenericMethod *decl) @@ -476,7 +476,7 @@ static void _call_f_insertRow_2578 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, const QModelIndex &) +// bool QStandardItemModel::insertRow(int row, const QModelIndex &parent) static void _init_f_insertRow_3054 (qt_gsi::GenericMethod *decl) @@ -498,7 +498,7 @@ static void _call_f_insertRow_3054 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, int, const QModelIndex &) +// bool QStandardItemModel::insertRows(int row, int count, const QModelIndex &parent) static void _init_f_insertRows_3713 (qt_gsi::GenericMethod *decl) @@ -560,7 +560,7 @@ static void _call_f_item_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QModelIndex &) const +// QMap QStandardItemModel::itemData(const QModelIndex &index) static void _init_f_itemData_c2395 (qt_gsi::GenericMethod *decl) @@ -613,7 +613,7 @@ static void _call_f_itemPrototype_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QList &) const +// QMimeData *QStandardItemModel::mimeData(const QList &indexes) static void _init_f_mimeData_c3010 (qt_gsi::GenericMethod *decl) @@ -632,7 +632,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QStringList QStandardItemModel::mimeTypes() static void _init_f_mimeTypes_c0 (qt_gsi::GenericMethod *decl) @@ -647,7 +647,7 @@ static void _call_f_mimeTypes_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QModelIndex &) const +// QModelIndex QStandardItemModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -666,7 +666,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QObject *QStandardItemModel::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -681,7 +681,7 @@ static void _call_f_parent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int, int, const QModelIndex &) +// bool QStandardItemModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -706,7 +706,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QStandardItemModel::removeRows(int row, int count, const QModelIndex &parent) static void _init_f_removeRows_3713 (qt_gsi::GenericMethod *decl) @@ -731,7 +731,7 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QModelIndex &) const +// int QStandardItemModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -770,7 +770,7 @@ static void _call_f_setColumnCount_767 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &, const QVariant &, int) +// bool QStandardItemModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -795,7 +795,7 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, Qt::Orientation, const QVariant &, int) +// bool QStandardItemModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role) static void _init_f_setHeaderData_5242 (qt_gsi::GenericMethod *decl) @@ -915,7 +915,7 @@ static void _call_f_setItem_2578 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QModelIndex &, const QMap &) +// bool QStandardItemModel::setItemData(const QModelIndex &index, const QMap &roles) static void _init_f_setItemData_5414 (qt_gsi::GenericMethod *decl) @@ -1060,7 +1060,7 @@ static void _call_f_setVerticalHeaderLabels_2437 (const qt_gsi::GenericMethod * } -// (int, int, const QModelIndex &) const +// QModelIndex QStandardItemModel::sibling(int row, int column, const QModelIndex &idx) static void _init_f_sibling_c3713 (qt_gsi::GenericMethod *decl) @@ -1085,7 +1085,7 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, Qt::SortOrder) +// void QStandardItemModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -1123,7 +1123,7 @@ static void _call_f_sortRole_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QFlags QStandardItemModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -1315,53 +1315,53 @@ static gsi::Methods methods_QStandardItemModel () { methods += new qt_gsi::GenericMethod ("appendRow", "@brief Method void QStandardItemModel::appendRow(const QList &items)\n", false, &_init_f_appendRow_3267, &_call_f_appendRow_3267); methods += new qt_gsi::GenericMethod ("appendRow", "@brief Method void QStandardItemModel::appendRow(QStandardItem *item)\n", false, &_init_f_appendRow_1919, &_call_f_appendRow_1919); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QStandardItemModel::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QStandardItemModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QStandardItemModel::data(const QModelIndex &index, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QStandardItemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); methods += new qt_gsi::GenericMethod ("findItems", "@brief Method QList QStandardItemModel::findItems(const QString &text, QFlags flags, int column)\n", true, &_init_f_findItems_c4892, &_call_f_findItems_c4892); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QStandardItemModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method bool QStandardItemModel::hasChildren(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QStandardItemModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); methods += new qt_gsi::GenericMethod ("horizontalHeaderItem", "@brief Method QStandardItem *QStandardItemModel::horizontalHeaderItem(int column)\n", true, &_init_f_horizontalHeaderItem_c767, &_call_f_horizontalHeaderItem_c767); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QStandardItemModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); methods += new qt_gsi::GenericMethod ("indexFromItem", "@brief Method QModelIndex QStandardItemModel::indexFromItem(const QStandardItem *item)\n", true, &_init_f_indexFromItem_c2614, &_call_f_indexFromItem_c2614); - methods += new qt_gsi::GenericMethod ("insertColumn", "@brief Method (int, const QList &)\n", false, &_init_f_insertColumn_3926, &_call_f_insertColumn_3926); - methods += new qt_gsi::GenericMethod ("insertColumn", "@brief Method (int, const QModelIndex &)\n", false, &_init_f_insertColumn_3054, &_call_f_insertColumn_3054); - methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); - methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method (int, const QList &)\n", false, &_init_f_insertRow_3926, &_call_f_insertRow_3926); - methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method (int, QStandardItem *)\n", false, &_init_f_insertRow_2578, &_call_f_insertRow_2578); - methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method (int, const QModelIndex &)\n", false, &_init_f_insertRow_3054, &_call_f_insertRow_3054); - methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); + methods += new qt_gsi::GenericMethod ("insertColumn", "@brief Method void QStandardItemModel::insertColumn(int column, const QList &items)\n", false, &_init_f_insertColumn_3926, &_call_f_insertColumn_3926); + methods += new qt_gsi::GenericMethod ("insertColumn", "@brief Method bool QStandardItemModel::insertColumn(int column, const QModelIndex &parent)\n", false, &_init_f_insertColumn_3054, &_call_f_insertColumn_3054); + methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method bool QStandardItemModel::insertColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); + methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QStandardItemModel::insertRow(int row, const QList &items)\n", false, &_init_f_insertRow_3926, &_call_f_insertRow_3926); + methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QStandardItemModel::insertRow(int row, QStandardItem *item)\n", false, &_init_f_insertRow_2578, &_call_f_insertRow_2578); + methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method bool QStandardItemModel::insertRow(int row, const QModelIndex &parent)\n", false, &_init_f_insertRow_3054, &_call_f_insertRow_3054); + methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method bool QStandardItemModel::insertRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); methods += new qt_gsi::GenericMethod ("invisibleRootItem", "@brief Method QStandardItem *QStandardItemModel::invisibleRootItem()\n", true, &_init_f_invisibleRootItem_c0, &_call_f_invisibleRootItem_c0); methods += new qt_gsi::GenericMethod ("item", "@brief Method QStandardItem *QStandardItemModel::item(int row, int column)\n", true, &_init_f_item_c1426, &_call_f_item_c1426); - methods += new qt_gsi::GenericMethod ("itemData", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::itemData", true, &_init_f_itemData_c2395, &_call_f_itemData_c2395); + methods += new qt_gsi::GenericMethod ("itemData", "@brief Method QMap QStandardItemModel::itemData(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::itemData", true, &_init_f_itemData_c2395, &_call_f_itemData_c2395); methods += new qt_gsi::GenericMethod ("itemFromIndex", "@brief Method QStandardItem *QStandardItemModel::itemFromIndex(const QModelIndex &index)\n", true, &_init_f_itemFromIndex_c2395, &_call_f_itemFromIndex_c2395); methods += new qt_gsi::GenericMethod (":itemPrototype", "@brief Method const QStandardItem *QStandardItemModel::itemPrototype()\n", true, &_init_f_itemPrototype_c0, &_call_f_itemPrototype_c0); - methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method (const QList &) const\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); - methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method QMimeData *QStandardItemModel::mimeData(const QList &indexes)\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); + methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method QStringList QStandardItemModel::mimeTypes()\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QStandardItemModel::parent(const QModelIndex &child)\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QObject *QStandardItemModel::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QStandardItemModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method bool QStandardItemModel::removeRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QStandardItemModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); methods += new qt_gsi::GenericMethod ("setColumnCount|columnCount=", "@brief Method void QStandardItemModel::setColumnCount(int columns)\n", false, &_init_f_setColumnCount_767, &_call_f_setColumnCount_767); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); - methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method (int, Qt::Orientation, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QStandardItemModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method bool QStandardItemModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); methods += new qt_gsi::GenericMethod ("setHorizontalHeaderItem", "@brief Method void QStandardItemModel::setHorizontalHeaderItem(int column, QStandardItem *item)\n", false, &_init_f_setHorizontalHeaderItem_2578, &_call_f_setHorizontalHeaderItem_2578); methods += new qt_gsi::GenericMethod ("setHorizontalHeaderLabels", "@brief Method void QStandardItemModel::setHorizontalHeaderLabels(const QStringList &labels)\n", false, &_init_f_setHorizontalHeaderLabels_2437, &_call_f_setHorizontalHeaderLabels_2437); methods += new qt_gsi::GenericMethod ("setItem", "@brief Method void QStandardItemModel::setItem(int row, int column, QStandardItem *item)\n", false, &_init_f_setItem_3237, &_call_f_setItem_3237); methods += new qt_gsi::GenericMethod ("setItem", "@brief Method void QStandardItemModel::setItem(int row, QStandardItem *item)\n", false, &_init_f_setItem_2578, &_call_f_setItem_2578); - methods += new qt_gsi::GenericMethod ("setItemData", "@brief Method (const QModelIndex &, const QMap &)\nThis is a reimplementation of QAbstractItemModel::setItemData", false, &_init_f_setItemData_5414, &_call_f_setItemData_5414); + methods += new qt_gsi::GenericMethod ("setItemData", "@brief Method bool QStandardItemModel::setItemData(const QModelIndex &index, const QMap &roles)\nThis is a reimplementation of QAbstractItemModel::setItemData", false, &_init_f_setItemData_5414, &_call_f_setItemData_5414); methods += new qt_gsi::GenericMethod ("setItemPrototype|itemPrototype=", "@brief Method void QStandardItemModel::setItemPrototype(const QStandardItem *item)\n", false, &_init_f_setItemPrototype_2614, &_call_f_setItemPrototype_2614); methods += new qt_gsi::GenericMethod ("setItemRoleNames", "@brief Method void QStandardItemModel::setItemRoleNames(const QHash &roleNames)\n", false, &_init_f_setItemRoleNames_3419, &_call_f_setItemRoleNames_3419); methods += new qt_gsi::GenericMethod ("setRowCount|rowCount=", "@brief Method void QStandardItemModel::setRowCount(int rows)\n", false, &_init_f_setRowCount_767, &_call_f_setRowCount_767); methods += new qt_gsi::GenericMethod ("setSortRole|sortRole=", "@brief Method void QStandardItemModel::setSortRole(int role)\n", false, &_init_f_setSortRole_767, &_call_f_setSortRole_767); methods += new qt_gsi::GenericMethod ("setVerticalHeaderItem", "@brief Method void QStandardItemModel::setVerticalHeaderItem(int row, QStandardItem *item)\n", false, &_init_f_setVerticalHeaderItem_2578, &_call_f_setVerticalHeaderItem_2578); methods += new qt_gsi::GenericMethod ("setVerticalHeaderLabels", "@brief Method void QStandardItemModel::setVerticalHeaderLabels(const QStringList &labels)\n", false, &_init_f_setVerticalHeaderLabels_2437, &_call_f_setVerticalHeaderLabels_2437); - methods += new qt_gsi::GenericMethod ("sibling", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("sibling", "@brief Method QModelIndex QStandardItemModel::sibling(int row, int column, const QModelIndex &idx)\nThis is a reimplementation of QAbstractItemModel::sibling", true, &_init_f_sibling_c3713, &_call_f_sibling_c3713); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QStandardItemModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); methods += new qt_gsi::GenericMethod (":sortRole", "@brief Method int QStandardItemModel::sortRole()\n", true, &_init_f_sortRole_c0, &_call_f_sortRole_c0); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QStandardItemModel::supportedDropActions()\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += new qt_gsi::GenericMethod ("takeColumn", "@brief Method QList QStandardItemModel::takeColumn(int column)\n", false, &_init_f_takeColumn_767, &_call_f_takeColumn_767); methods += new qt_gsi::GenericMethod ("takeHorizontalHeaderItem", "@brief Method QStandardItem *QStandardItemModel::takeHorizontalHeaderItem(int column)\n", false, &_init_f_takeHorizontalHeaderItem_767, &_call_f_takeHorizontalHeaderItem_767); methods += new qt_gsi::GenericMethod ("takeItem", "@brief Method QStandardItem *QStandardItemModel::takeItem(int row, int column)\n", false, &_init_f_takeItem_1426, &_call_f_takeItem_1426); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc index 8b642bbfb..f6f9cbb14 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc @@ -107,7 +107,7 @@ static void _call_f_indent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QTextBlockFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -512,7 +512,7 @@ static gsi::Methods methods_QTextBlockFormat () { methods += new qt_gsi::GenericMethod (":alignment", "@brief Method QFlags QTextBlockFormat::alignment()\n", true, &_init_f_alignment_c0, &_call_f_alignment_c0); methods += new qt_gsi::GenericMethod (":bottomMargin", "@brief Method double QTextBlockFormat::bottomMargin()\n", true, &_init_f_bottomMargin_c0, &_call_f_bottomMargin_c0); methods += new qt_gsi::GenericMethod (":indent", "@brief Method int QTextBlockFormat::indent()\n", true, &_init_f_indent_c0, &_call_f_indent_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextBlockFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod (":leftMargin", "@brief Method double QTextBlockFormat::leftMargin()\n", true, &_init_f_leftMargin_c0, &_call_f_leftMargin_c0); methods += new qt_gsi::GenericMethod ("lineHeight", "@brief Method double QTextBlockFormat::lineHeight(double scriptLineHeight, double scaling)\n", true, &_init_f_lineHeight_c2034, &_call_f_lineHeight_c2034); methods += new qt_gsi::GenericMethod ("lineHeight", "@brief Method double QTextBlockFormat::lineHeight()\n", true, &_init_f_lineHeight_c0, &_call_f_lineHeight_c0); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc index 8d06b4187..734005cef 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc @@ -393,7 +393,7 @@ static void _call_f_isAnchor_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// bool QTextCharFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -1148,7 +1148,7 @@ static gsi::Methods methods_QTextCharFormat () { methods += new qt_gsi::GenericMethod (":fontWeight", "@brief Method int QTextCharFormat::fontWeight()\n", true, &_init_f_fontWeight_c0, &_call_f_fontWeight_c0); methods += new qt_gsi::GenericMethod (":fontWordSpacing", "@brief Method double QTextCharFormat::fontWordSpacing()\n", true, &_init_f_fontWordSpacing_c0, &_call_f_fontWordSpacing_c0); methods += new qt_gsi::GenericMethod ("isAnchor?|:anchor", "@brief Method bool QTextCharFormat::isAnchor()\n", true, &_init_f_isAnchor_c0, &_call_f_isAnchor_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextCharFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod ("setAnchor|anchor=", "@brief Method void QTextCharFormat::setAnchor(bool anchor)\n", false, &_init_f_setAnchor_864, &_call_f_setAnchor_864); methods += new qt_gsi::GenericMethod ("setAnchorHref|anchorHref=", "@brief Method void QTextCharFormat::setAnchorHref(const QString &value)\n", false, &_init_f_setAnchorHref_2025, &_call_f_setAnchorHref_2025); methods += new qt_gsi::GenericMethod ("setAnchorName|anchorName=", "@brief Method void QTextCharFormat::setAnchorName(const QString &name)\n", false, &_init_f_setAnchorName_2025, &_call_f_setAnchorName_2025); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc index f38d53989..778aeeb63 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc @@ -137,7 +137,7 @@ static void _call_f_height_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QTextFrameFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -584,7 +584,7 @@ static gsi::Methods methods_QTextFrameFormat () { methods += new qt_gsi::GenericMethod (":borderStyle", "@brief Method QTextFrameFormat::BorderStyle QTextFrameFormat::borderStyle()\n", true, &_init_f_borderStyle_c0, &_call_f_borderStyle_c0); methods += new qt_gsi::GenericMethod (":bottomMargin", "@brief Method double QTextFrameFormat::bottomMargin()\n", true, &_init_f_bottomMargin_c0, &_call_f_bottomMargin_c0); methods += new qt_gsi::GenericMethod ("height", "@brief Method QTextLength QTextFrameFormat::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextFrameFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod (":leftMargin", "@brief Method double QTextFrameFormat::leftMargin()\n", true, &_init_f_leftMargin_c0, &_call_f_leftMargin_c0); methods += new qt_gsi::GenericMethod (":margin", "@brief Method double QTextFrameFormat::margin()\n", true, &_init_f_margin_c0, &_call_f_margin_c0); methods += new qt_gsi::GenericMethod (":padding", "@brief Method double QTextFrameFormat::padding()\n", true, &_init_f_padding_c0, &_call_f_padding_c0); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc index d0b083016..44e42b87d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc @@ -78,7 +78,7 @@ static void _call_f_height_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QTextImageFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -191,7 +191,7 @@ static gsi::Methods methods_QTextImageFormat () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTextImageFormat::QTextImageFormat()\nThis method creates an object of class QTextImageFormat.", &_init_ctor_QTextImageFormat_0, &_call_ctor_QTextImageFormat_0); methods += new qt_gsi::GenericMethod (":height", "@brief Method double QTextImageFormat::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextImageFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod (":name", "@brief Method QString QTextImageFormat::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); methods += new qt_gsi::GenericMethod ("setHeight|height=", "@brief Method void QTextImageFormat::setHeight(double height)\n", false, &_init_f_setHeight_1071, &_call_f_setHeight_1071); methods += new qt_gsi::GenericMethod ("setName|name=", "@brief Method void QTextImageFormat::setName(const QString &name)\n", false, &_init_f_setName_2025, &_call_f_setName_2025); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc index 87949c600..0872f6743 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc @@ -93,7 +93,7 @@ static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QTextListFormat QTextList::format() static void _init_f_format_c0 (qt_gsi::GenericMethod *decl) @@ -220,7 +220,7 @@ static void _call_f_removeItem_767 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QTextListFormat &) +// void QTextList::setFormat(const QTextListFormat &format) static void _init_f_setFormat_2844 (qt_gsi::GenericMethod *decl) @@ -298,14 +298,14 @@ static gsi::Methods methods_QTextList () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("add", "@brief Method void QTextList::add(const QTextBlock &block)\n", false, &_init_f_add_2306, &_call_f_add_2306); methods += new qt_gsi::GenericMethod ("count", "@brief Method int QTextList::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); - methods += new qt_gsi::GenericMethod (":format", "@brief Method () const\n", true, &_init_f_format_c0, &_call_f_format_c0); + methods += new qt_gsi::GenericMethod (":format", "@brief Method QTextListFormat QTextList::format()\n", true, &_init_f_format_c0, &_call_f_format_c0); methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method bool QTextList::isEmpty()\n", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); methods += new qt_gsi::GenericMethod ("item", "@brief Method QTextBlock QTextList::item(int i)\n", true, &_init_f_item_c767, &_call_f_item_c767); methods += new qt_gsi::GenericMethod ("itemNumber", "@brief Method int QTextList::itemNumber(const QTextBlock &)\n", true, &_init_f_itemNumber_c2306, &_call_f_itemNumber_c2306); methods += new qt_gsi::GenericMethod ("itemText", "@brief Method QString QTextList::itemText(const QTextBlock &)\n", true, &_init_f_itemText_c2306, &_call_f_itemText_c2306); methods += new qt_gsi::GenericMethod ("remove", "@brief Method void QTextList::remove(const QTextBlock &)\n", false, &_init_f_remove_2306, &_call_f_remove_2306); methods += new qt_gsi::GenericMethod ("removeItem", "@brief Method void QTextList::removeItem(int i)\n", false, &_init_f_removeItem_767, &_call_f_removeItem_767); - methods += new qt_gsi::GenericMethod ("setFormat|format=", "@brief Method (const QTextListFormat &)\n", false, &_init_f_setFormat_2844, &_call_f_setFormat_2844); + methods += new qt_gsi::GenericMethod ("setFormat|format=", "@brief Method void QTextList::setFormat(const QTextListFormat &format)\n", false, &_init_f_setFormat_2844, &_call_f_setFormat_2844); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QTextList::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QTextList::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); methods += new qt_gsi::GenericStaticMethod ("trUtf8", "@brief Static method QString QTextList::trUtf8(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_4013, &_call_f_trUtf8_4013); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc index ff58dad07..98b677caf 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc @@ -77,7 +77,7 @@ static void _call_f_indent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// bool QTextListFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -225,7 +225,7 @@ static gsi::Methods methods_QTextListFormat () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTextListFormat::QTextListFormat()\nThis method creates an object of class QTextListFormat.", &_init_ctor_QTextListFormat_0, &_call_ctor_QTextListFormat_0); methods += new qt_gsi::GenericMethod (":indent", "@brief Method int QTextListFormat::indent()\n", true, &_init_f_indent_c0, &_call_f_indent_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextListFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod (":numberPrefix", "@brief Method QString QTextListFormat::numberPrefix()\n", true, &_init_f_numberPrefix_c0, &_call_f_numberPrefix_c0); methods += new qt_gsi::GenericMethod (":numberSuffix", "@brief Method QString QTextListFormat::numberSuffix()\n", true, &_init_f_numberSuffix_c0, &_call_f_numberSuffix_c0); methods += new qt_gsi::GenericMethod ("setIndent|indent=", "@brief Method void QTextListFormat::setIndent(int indent)\n", false, &_init_f_setIndent_767, &_call_f_setIndent_767); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc index ee6282ee1..0b41459d1 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc @@ -176,7 +176,7 @@ static void _call_f_columns_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QTextTableFormat QTextTable::format() static void _init_f_format_c0 (qt_gsi::GenericMethod *decl) @@ -408,7 +408,7 @@ static void _call_f_rows_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QTextTableFormat &) +// void QTextTable::setFormat(const QTextTableFormat &format) static void _init_f_setFormat_2920 (qt_gsi::GenericMethod *decl) @@ -519,7 +519,7 @@ static gsi::Methods methods_QTextTable () { methods += new qt_gsi::GenericMethod ("cellAt", "@brief Method QTextTableCell QTextTable::cellAt(int position)\n", true, &_init_f_cellAt_c767, &_call_f_cellAt_c767); methods += new qt_gsi::GenericMethod ("cellAt", "@brief Method QTextTableCell QTextTable::cellAt(const QTextCursor &c)\n", true, &_init_f_cellAt_c2453, &_call_f_cellAt_c2453); methods += new qt_gsi::GenericMethod ("columns", "@brief Method int QTextTable::columns()\n", true, &_init_f_columns_c0, &_call_f_columns_c0); - methods += new qt_gsi::GenericMethod (":format", "@brief Method () const\n", true, &_init_f_format_c0, &_call_f_format_c0); + methods += new qt_gsi::GenericMethod (":format", "@brief Method QTextTableFormat QTextTable::format()\n", true, &_init_f_format_c0, &_call_f_format_c0); methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method void QTextTable::insertColumns(int pos, int num)\n", false, &_init_f_insertColumns_1426, &_call_f_insertColumns_1426); methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method void QTextTable::insertRows(int pos, int num)\n", false, &_init_f_insertRows_1426, &_call_f_insertRows_1426); methods += new qt_gsi::GenericMethod ("mergeCells", "@brief Method void QTextTable::mergeCells(int row, int col, int numRows, int numCols)\n", false, &_init_f_mergeCells_2744, &_call_f_mergeCells_2744); @@ -530,7 +530,7 @@ static gsi::Methods methods_QTextTable () { methods += new qt_gsi::GenericMethod ("rowEnd", "@brief Method QTextCursor QTextTable::rowEnd(const QTextCursor &c)\n", true, &_init_f_rowEnd_c2453, &_call_f_rowEnd_c2453); methods += new qt_gsi::GenericMethod ("rowStart", "@brief Method QTextCursor QTextTable::rowStart(const QTextCursor &c)\n", true, &_init_f_rowStart_c2453, &_call_f_rowStart_c2453); methods += new qt_gsi::GenericMethod ("rows", "@brief Method int QTextTable::rows()\n", true, &_init_f_rows_c0, &_call_f_rows_c0); - methods += new qt_gsi::GenericMethod ("setFormat|format=", "@brief Method (const QTextTableFormat &)\n", false, &_init_f_setFormat_2920, &_call_f_setFormat_2920); + methods += new qt_gsi::GenericMethod ("setFormat|format=", "@brief Method void QTextTable::setFormat(const QTextTableFormat &format)\n", false, &_init_f_setFormat_2920, &_call_f_setFormat_2920); methods += new qt_gsi::GenericMethod ("splitCell", "@brief Method void QTextTable::splitCell(int row, int col, int numRows, int numCols)\n", false, &_init_f_splitCell_2744, &_call_f_splitCell_2744); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QTextTable::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QTextTable::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc index c5a13a486..54e54493a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc @@ -78,7 +78,7 @@ static void _call_f_bottomPadding_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// bool QTextTableCellFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -246,7 +246,7 @@ static gsi::Methods methods_QTextTableCellFormat () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTextTableCellFormat::QTextTableCellFormat()\nThis method creates an object of class QTextTableCellFormat.", &_init_ctor_QTextTableCellFormat_0, &_call_ctor_QTextTableCellFormat_0); methods += new qt_gsi::GenericMethod (":bottomPadding", "@brief Method double QTextTableCellFormat::bottomPadding()\n", true, &_init_f_bottomPadding_c0, &_call_f_bottomPadding_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextTableCellFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod (":leftPadding", "@brief Method double QTextTableCellFormat::leftPadding()\n", true, &_init_f_leftPadding_c0, &_call_f_leftPadding_c0); methods += new qt_gsi::GenericMethod (":rightPadding", "@brief Method double QTextTableCellFormat::rightPadding()\n", true, &_init_f_rightPadding_c0, &_call_f_rightPadding_c0); methods += new qt_gsi::GenericMethod ("setBottomPadding|bottomPadding=", "@brief Method void QTextTableCellFormat::setBottomPadding(double padding)\n", false, &_init_f_setBottomPadding_1071, &_call_f_setBottomPadding_1071); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc index 622f037b2..88aa993be 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc @@ -168,7 +168,7 @@ static void _call_f_headerRowCount_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// bool QTextTableFormat::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -317,7 +317,7 @@ static gsi::Methods methods_QTextTableFormat () { methods += new qt_gsi::GenericMethod (":columnWidthConstraints", "@brief Method QVector QTextTableFormat::columnWidthConstraints()\n", true, &_init_f_columnWidthConstraints_c0, &_call_f_columnWidthConstraints_c0); methods += new qt_gsi::GenericMethod (":columns", "@brief Method int QTextTableFormat::columns()\n", true, &_init_f_columns_c0, &_call_f_columns_c0); methods += new qt_gsi::GenericMethod (":headerRowCount", "@brief Method int QTextTableFormat::headerRowCount()\n", true, &_init_f_headerRowCount_c0, &_call_f_headerRowCount_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QTextTableFormat::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QTextTableFormat::setAlignment(QFlags alignment)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); methods += new qt_gsi::GenericMethod ("setCellPadding|cellPadding=", "@brief Method void QTextTableFormat::setCellPadding(double padding)\n", false, &_init_f_setCellPadding_1071, &_call_f_setCellPadding_1071); methods += new qt_gsi::GenericMethod ("setCellSpacing|cellSpacing=", "@brief Method void QTextTableFormat::setCellSpacing(double spacing)\n", false, &_init_f_setCellSpacing_1071, &_call_f_setCellSpacing_1071); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc index 834e432d4..57b375867 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc @@ -237,7 +237,7 @@ static void _call_f_focusObject_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSurfaceFormat QWindow::format() static void _init_f_format_c0 (qt_gsi::GenericMethod *decl) @@ -644,7 +644,7 @@ static void _call_f_opacity_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QWindow *QWindow::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -1242,7 +1242,7 @@ static void _call_f_setOpacity_1071 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QWindow *) +// void QWindow::setParent(QWindow *parent) static void _init_f_setParent_1335 (qt_gsi::GenericMethod *decl) @@ -1605,7 +1605,7 @@ static void _call_f_showNormal_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QSize QWindow::size() static void _init_f_size_c0 (qt_gsi::GenericMethod *decl) @@ -1635,7 +1635,7 @@ static void _call_f_sizeIncrement_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSurface::SurfaceType QWindow::surfaceType() static void _init_f_surfaceType_c0 (qt_gsi::GenericMethod *decl) @@ -1933,7 +1933,7 @@ static gsi::Methods methods_QWindow () { methods += new qt_gsi::GenericMethod (":filePath", "@brief Method QString QWindow::filePath()\n", true, &_init_f_filePath_c0, &_call_f_filePath_c0); methods += new qt_gsi::GenericMethod (":flags", "@brief Method QFlags QWindow::flags()\n", true, &_init_f_flags_c0, &_call_f_flags_c0); methods += new qt_gsi::GenericMethod ("focusObject", "@brief Method QObject *QWindow::focusObject()\n", true, &_init_f_focusObject_c0, &_call_f_focusObject_c0); - methods += new qt_gsi::GenericMethod (":format", "@brief Method () const\nThis is a reimplementation of QSurface::format", true, &_init_f_format_c0, &_call_f_format_c0); + methods += new qt_gsi::GenericMethod (":format", "@brief Method QSurfaceFormat QWindow::format()\nThis is a reimplementation of QSurface::format", true, &_init_f_format_c0, &_call_f_format_c0); methods += new qt_gsi::GenericMethod ("frameGeometry", "@brief Method QRect QWindow::frameGeometry()\n", true, &_init_f_frameGeometry_c0, &_call_f_frameGeometry_c0); methods += new qt_gsi::GenericMethod ("frameMargins", "@brief Method QMargins QWindow::frameMargins()\n", true, &_init_f_frameMargins_c0, &_call_f_frameMargins_c0); methods += new qt_gsi::GenericMethod (":framePosition", "@brief Method QPoint QWindow::framePosition()\n", true, &_init_f_framePosition_c0, &_call_f_framePosition_c0); @@ -1959,7 +1959,7 @@ static gsi::Methods methods_QWindow () { methods += new qt_gsi::GenericMethod (":minimumWidth", "@brief Method int QWindow::minimumWidth()\n", true, &_init_f_minimumWidth_c0, &_call_f_minimumWidth_c0); methods += new qt_gsi::GenericMethod (":modality", "@brief Method Qt::WindowModality QWindow::modality()\n", true, &_init_f_modality_c0, &_call_f_modality_c0); methods += new qt_gsi::GenericMethod (":opacity", "@brief Method double QWindow::opacity()\n", true, &_init_f_opacity_c0, &_call_f_opacity_c0); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QWindow *QWindow::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); methods += new qt_gsi::GenericMethod (":position", "@brief Method QPoint QWindow::position()\n", true, &_init_f_position_c0, &_call_f_position_c0); methods += new qt_gsi::GenericMethod ("qt_raise", "@brief Method void QWindow::raise()\n", false, &_init_f_raise_0, &_call_f_raise_0); methods += new qt_gsi::GenericMethod ("reportContentOrientationChange", "@brief Method void QWindow::reportContentOrientationChange(Qt::ScreenOrientation orientation)\n", false, &_init_f_reportContentOrientationChange_2521, &_call_f_reportContentOrientationChange_2521); @@ -1990,7 +1990,7 @@ static gsi::Methods methods_QWindow () { methods += new qt_gsi::GenericMethod ("setModality|modality=", "@brief Method void QWindow::setModality(Qt::WindowModality modality)\n", false, &_init_f_setModality_2216, &_call_f_setModality_2216); methods += new qt_gsi::GenericMethod ("setMouseGrabEnabled", "@brief Method bool QWindow::setMouseGrabEnabled(bool grab)\n", false, &_init_f_setMouseGrabEnabled_864, &_call_f_setMouseGrabEnabled_864); methods += new qt_gsi::GenericMethod ("setOpacity|opacity=", "@brief Method void QWindow::setOpacity(double level)\n", false, &_init_f_setOpacity_1071, &_call_f_setOpacity_1071); - methods += new qt_gsi::GenericMethod ("setParent|parent=", "@brief Method (QWindow *)\n", false, &_init_f_setParent_1335, &_call_f_setParent_1335); + methods += new qt_gsi::GenericMethod ("setParent|parent=", "@brief Method void QWindow::setParent(QWindow *parent)\n", false, &_init_f_setParent_1335, &_call_f_setParent_1335); methods += new qt_gsi::GenericMethod ("setPosition|position=", "@brief Method void QWindow::setPosition(const QPoint &pt)\n", false, &_init_f_setPosition_1916, &_call_f_setPosition_1916); methods += new qt_gsi::GenericMethod ("setPosition", "@brief Method void QWindow::setPosition(int posx, int posy)\n", false, &_init_f_setPosition_1426, &_call_f_setPosition_1426); methods += new qt_gsi::GenericMethod ("setScreen|screen=", "@brief Method void QWindow::setScreen(QScreen *screen)\n", false, &_init_f_setScreen_1311, &_call_f_setScreen_1311); @@ -2009,9 +2009,9 @@ static gsi::Methods methods_QWindow () { methods += new qt_gsi::GenericMethod ("showMaximized", "@brief Method void QWindow::showMaximized()\n", false, &_init_f_showMaximized_0, &_call_f_showMaximized_0); methods += new qt_gsi::GenericMethod ("showMinimized", "@brief Method void QWindow::showMinimized()\n", false, &_init_f_showMinimized_0, &_call_f_showMinimized_0); methods += new qt_gsi::GenericMethod ("showNormal", "@brief Method void QWindow::showNormal()\n", false, &_init_f_showNormal_0, &_call_f_showNormal_0); - methods += new qt_gsi::GenericMethod ("size", "@brief Method () const\nThis is a reimplementation of QSurface::size", true, &_init_f_size_c0, &_call_f_size_c0); + methods += new qt_gsi::GenericMethod ("size", "@brief Method QSize QWindow::size()\nThis is a reimplementation of QSurface::size", true, &_init_f_size_c0, &_call_f_size_c0); methods += new qt_gsi::GenericMethod (":sizeIncrement", "@brief Method QSize QWindow::sizeIncrement()\n", true, &_init_f_sizeIncrement_c0, &_call_f_sizeIncrement_c0); - methods += new qt_gsi::GenericMethod (":surfaceType", "@brief Method () const\nThis is a reimplementation of QSurface::surfaceType", true, &_init_f_surfaceType_c0, &_call_f_surfaceType_c0); + methods += new qt_gsi::GenericMethod (":surfaceType", "@brief Method QSurface::SurfaceType QWindow::surfaceType()\nThis is a reimplementation of QSurface::surfaceType", true, &_init_f_surfaceType_c0, &_call_f_surfaceType_c0); methods += new qt_gsi::GenericMethod (":title", "@brief Method QString QWindow::title()\n", true, &_init_f_title_c0, &_call_f_title_c0); methods += new qt_gsi::GenericMethod (":transientParent", "@brief Method QWindow *QWindow::transientParent()\n", true, &_init_f_transientParent_c0, &_call_f_transientParent_c0); methods += new qt_gsi::GenericMethod ("type", "@brief Method Qt::WindowType QWindow::type()\n", true, &_init_f_type_c0, &_call_f_type_c0); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc index 2bb781147..cde18f723 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc @@ -74,7 +74,7 @@ static void _call_f_audioFormat_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QObject *) +// bool QAudioDecoder::bind(QObject *) static void _init_f_bind_1302 (qt_gsi::GenericMethod *decl) @@ -320,7 +320,7 @@ static void _call_f_stop_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *) +// void QAudioDecoder::unbind(QObject *) static void _init_f_unbind_1302 (qt_gsi::GenericMethod *decl) @@ -419,7 +419,7 @@ static gsi::Methods methods_QAudioDecoder () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":audioFormat", "@brief Method QAudioFormat QAudioDecoder::audioFormat()\n", true, &_init_f_audioFormat_c0, &_call_f_audioFormat_c0); - methods += new qt_gsi::GenericMethod ("bind", "@brief Method (QObject *)\nThis is a reimplementation of QMediaObject::bind", false, &_init_f_bind_1302, &_call_f_bind_1302); + methods += new qt_gsi::GenericMethod ("bind", "@brief Method bool QAudioDecoder::bind(QObject *)\nThis is a reimplementation of QMediaObject::bind", false, &_init_f_bind_1302, &_call_f_bind_1302); methods += new qt_gsi::GenericMethod (":bufferAvailable", "@brief Method bool QAudioDecoder::bufferAvailable()\n", true, &_init_f_bufferAvailable_c0, &_call_f_bufferAvailable_c0); methods += new qt_gsi::GenericMethod ("duration", "@brief Method qint64 QAudioDecoder::duration()\n", true, &_init_f_duration_c0, &_call_f_duration_c0); methods += new qt_gsi::GenericMethod (":error", "@brief Method QAudioDecoder::Error QAudioDecoder::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); @@ -434,7 +434,7 @@ static gsi::Methods methods_QAudioDecoder () { methods += new qt_gsi::GenericMethod ("start", "@brief Method void QAudioDecoder::start()\n", false, &_init_f_start_0, &_call_f_start_0); methods += new qt_gsi::GenericMethod (":state", "@brief Method QAudioDecoder::State QAudioDecoder::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); methods += new qt_gsi::GenericMethod ("stop", "@brief Method void QAudioDecoder::stop()\n", false, &_init_f_stop_0, &_call_f_stop_0); - methods += new qt_gsi::GenericMethod ("unbind", "@brief Method (QObject *)\nThis is a reimplementation of QMediaObject::unbind", false, &_init_f_unbind_1302, &_call_f_unbind_1302); + methods += new qt_gsi::GenericMethod ("unbind", "@brief Method void QAudioDecoder::unbind(QObject *)\nThis is a reimplementation of QMediaObject::unbind", false, &_init_f_unbind_1302, &_call_f_unbind_1302); methods += gsi::qt_signal ("availabilityChanged(bool)", "availabilityChanged_bool", gsi::arg("available"), "@brief Signal declaration for QAudioDecoder::availabilityChanged(bool available)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type & > ("availabilityChanged(QMultimedia::AvailabilityStatus)", "availabilityChanged_status", gsi::arg("availability"), "@brief Signal declaration for QAudioDecoder::availabilityChanged(QMultimedia::AvailabilityStatus availability)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bufferAvailableChanged(bool)", "bufferAvailableChanged", gsi::arg("arg1"), "@brief Signal declaration for QAudioDecoder::bufferAvailableChanged(bool)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc index 6124175a1..ecbe71b49 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc @@ -58,7 +58,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QAudio::Mode) const +// QList QAudioSystemPlugin::availableDevices(QAudio::Mode) static void _init_f_availableDevices_c1520 (qt_gsi::GenericMethod *decl) @@ -77,7 +77,7 @@ static void _call_f_availableDevices_c1520 (const qt_gsi::GenericMethod * /*decl } -// (const QByteArray &, QAudio::Mode) +// QAbstractAudioDeviceInfo *QAudioSystemPlugin::createDeviceInfo(const QByteArray &device, QAudio::Mode mode) static void _init_f_createDeviceInfo_3721 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_createDeviceInfo_3721 (const qt_gsi::GenericMethod * /*decl* } -// (const QByteArray &) +// QAbstractAudioInput *QAudioSystemPlugin::createInput(const QByteArray &device) static void _init_f_createInput_2309 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_createInput_2309 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QByteArray &) +// QAbstractAudioOutput *QAudioSystemPlugin::createOutput(const QByteArray &device) static void _init_f_createOutput_2309 (qt_gsi::GenericMethod *decl) @@ -238,10 +238,10 @@ namespace gsi static gsi::Methods methods_QAudioSystemPlugin () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("availableDevices", "@brief Method (QAudio::Mode) const\nThis is a reimplementation of QAudioSystemFactoryInterface::availableDevices", true, &_init_f_availableDevices_c1520, &_call_f_availableDevices_c1520); - methods += new qt_gsi::GenericMethod ("createDeviceInfo", "@brief Method (const QByteArray &, QAudio::Mode)\nThis is a reimplementation of QAudioSystemFactoryInterface::createDeviceInfo", false, &_init_f_createDeviceInfo_3721, &_call_f_createDeviceInfo_3721); - methods += new qt_gsi::GenericMethod ("createInput", "@brief Method (const QByteArray &)\nThis is a reimplementation of QAudioSystemFactoryInterface::createInput", false, &_init_f_createInput_2309, &_call_f_createInput_2309); - methods += new qt_gsi::GenericMethod ("createOutput", "@brief Method (const QByteArray &)\nThis is a reimplementation of QAudioSystemFactoryInterface::createOutput", false, &_init_f_createOutput_2309, &_call_f_createOutput_2309); + methods += new qt_gsi::GenericMethod ("availableDevices", "@brief Method QList QAudioSystemPlugin::availableDevices(QAudio::Mode)\nThis is a reimplementation of QAudioSystemFactoryInterface::availableDevices", true, &_init_f_availableDevices_c1520, &_call_f_availableDevices_c1520); + methods += new qt_gsi::GenericMethod ("createDeviceInfo", "@brief Method QAbstractAudioDeviceInfo *QAudioSystemPlugin::createDeviceInfo(const QByteArray &device, QAudio::Mode mode)\nThis is a reimplementation of QAudioSystemFactoryInterface::createDeviceInfo", false, &_init_f_createDeviceInfo_3721, &_call_f_createDeviceInfo_3721); + methods += new qt_gsi::GenericMethod ("createInput", "@brief Method QAbstractAudioInput *QAudioSystemPlugin::createInput(const QByteArray &device)\nThis is a reimplementation of QAudioSystemFactoryInterface::createInput", false, &_init_f_createInput_2309, &_call_f_createInput_2309); + methods += new qt_gsi::GenericMethod ("createOutput", "@brief Method QAbstractAudioOutput *QAudioSystemPlugin::createOutput(const QByteArray &device)\nThis is a reimplementation of QAudioSystemFactoryInterface::createOutput", false, &_init_f_createOutput_2309, &_call_f_createOutput_2309); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QAudioSystemPlugin::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QAudioSystemPlugin::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); methods += new qt_gsi::GenericStaticMethod ("trUtf8", "@brief Static method QString QAudioSystemPlugin::trUtf8(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_4013, &_call_f_trUtf8_4013); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc index 1426c6a33..d8a685e0e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc @@ -53,7 +53,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// QMultimedia::AvailabilityStatus QCamera::availability() static void _init_f_availability_c0 (qt_gsi::GenericMethod *decl) @@ -688,7 +688,7 @@ namespace gsi static gsi::Methods methods_QCamera () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("availability", "@brief Method () const\nThis is a reimplementation of QMediaObject::availability", true, &_init_f_availability_c0, &_call_f_availability_c0); + methods += new qt_gsi::GenericMethod ("availability", "@brief Method QMultimedia::AvailabilityStatus QCamera::availability()\nThis is a reimplementation of QMediaObject::availability", true, &_init_f_availability_c0, &_call_f_availability_c0); methods += new qt_gsi::GenericMethod (":captureMode", "@brief Method QFlags QCamera::captureMode()\n", true, &_init_f_captureMode_c0, &_call_f_captureMode_c0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QCamera::Error QCamera::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("errorString", "@brief Method QString QCamera::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc index 6344c22f1..30d44fec3 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc @@ -253,7 +253,7 @@ static void _call_f_isReadyForCapture_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QMediaObject *QCameraImageCapture::mediaObject() static void _init_f_mediaObject_c0 (qt_gsi::GenericMethod *decl) @@ -493,7 +493,7 @@ static gsi::Methods methods_QCameraImageCapture () { methods += new qt_gsi::GenericMethod ("isAvailable?", "@brief Method bool QCameraImageCapture::isAvailable()\n", true, &_init_f_isAvailable_c0, &_call_f_isAvailable_c0); methods += new qt_gsi::GenericMethod ("isCaptureDestinationSupported?", "@brief Method bool QCameraImageCapture::isCaptureDestinationSupported(QFlags destination)\n", true, &_init_f_isCaptureDestinationSupported_c4999, &_call_f_isCaptureDestinationSupported_c4999); methods += new qt_gsi::GenericMethod ("isReadyForCapture?|:readyForCapture", "@brief Method bool QCameraImageCapture::isReadyForCapture()\n", true, &_init_f_isReadyForCapture_c0, &_call_f_isReadyForCapture_c0); - methods += new qt_gsi::GenericMethod ("mediaObject", "@brief Method () const\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); + methods += new qt_gsi::GenericMethod ("mediaObject", "@brief Method QMediaObject *QCameraImageCapture::mediaObject()\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); methods += new qt_gsi::GenericMethod ("setBufferFormat|bufferFormat=", "@brief Method void QCameraImageCapture::setBufferFormat(const QVideoFrame::PixelFormat format)\n", false, &_init_f_setBufferFormat_3453, &_call_f_setBufferFormat_3453); methods += new qt_gsi::GenericMethod ("setCaptureDestination|captureDestination=", "@brief Method void QCameraImageCapture::setCaptureDestination(QFlags destination)\n", false, &_init_f_setCaptureDestination_4999, &_call_f_setCaptureDestination_4999); methods += new qt_gsi::GenericMethod ("setEncodingSettings|encodingSettings=", "@brief Method void QCameraImageCapture::setEncodingSettings(const QImageEncoderSettings &settings)\n", false, &_init_f_setEncodingSettings_3430, &_call_f_setEncodingSettings_3430); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc index 79e8f5fff..286642422 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc @@ -98,7 +98,7 @@ static void _call_f_aspectRatioMode_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QRectF QGraphicsVideoItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -113,7 +113,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QMediaObject *QGraphicsVideoItem::mediaObject() static void _init_f_mediaObject_c0 (qt_gsi::GenericMethod *decl) @@ -158,7 +158,7 @@ static void _call_f_offset_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsVideoItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -361,11 +361,11 @@ static gsi::Methods methods_QGraphicsVideoItem () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":aspectRatioMode", "@brief Method Qt::AspectRatioMode QGraphicsVideoItem::aspectRatioMode()\n", true, &_init_f_aspectRatioMode_c0, &_call_f_aspectRatioMode_c0); - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod (":mediaObject", "@brief Method () const\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsVideoItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod (":mediaObject", "@brief Method QMediaObject *QGraphicsVideoItem::mediaObject()\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); methods += new qt_gsi::GenericMethod (":nativeSize", "@brief Method QSizeF QGraphicsVideoItem::nativeSize()\n", true, &_init_f_nativeSize_c0, &_call_f_nativeSize_c0); methods += new qt_gsi::GenericMethod (":offset", "@brief Method QPointF QGraphicsVideoItem::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsVideoItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod ("setAspectRatioMode|aspectRatioMode=", "@brief Method void QGraphicsVideoItem::setAspectRatioMode(Qt::AspectRatioMode mode)\n", false, &_init_f_setAspectRatioMode_2257, &_call_f_setAspectRatioMode_2257); methods += new qt_gsi::GenericMethod ("setOffset|offset=", "@brief Method void QGraphicsVideoItem::setOffset(const QPointF &offset)\n", false, &_init_f_setOffset_1986, &_call_f_setOffset_1986); methods += new qt_gsi::GenericMethod ("setSize|size=", "@brief Method void QGraphicsVideoItem::setSize(const QSizeF &size)\n", false, &_init_f_setSize_1875, &_call_f_setSize_1875); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc index 614acc505..aff5a4db2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc @@ -53,7 +53,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// QMultimedia::AvailabilityStatus QMediaPlayer::availability() static void _init_f_availability_c0 (qt_gsi::GenericMethod *decl) @@ -68,7 +68,7 @@ static void _call_f_availability_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QObject *) +// bool QMediaPlayer::bind(QObject *) static void _init_f_bind_1302 (qt_gsi::GenericMethod *decl) @@ -593,7 +593,7 @@ static void _call_f_stop_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *) +// void QMediaPlayer::unbind(QObject *) static void _init_f_unbind_1302 (qt_gsi::GenericMethod *decl) @@ -728,8 +728,8 @@ namespace gsi static gsi::Methods methods_QMediaPlayer () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("availability", "@brief Method () const\nThis is a reimplementation of QMediaObject::availability", true, &_init_f_availability_c0, &_call_f_availability_c0); - methods += new qt_gsi::GenericMethod ("bind", "@brief Method (QObject *)\nThis is a reimplementation of QMediaObject::bind", false, &_init_f_bind_1302, &_call_f_bind_1302); + methods += new qt_gsi::GenericMethod ("availability", "@brief Method QMultimedia::AvailabilityStatus QMediaPlayer::availability()\nThis is a reimplementation of QMediaObject::availability", true, &_init_f_availability_c0, &_call_f_availability_c0); + methods += new qt_gsi::GenericMethod ("bind", "@brief Method bool QMediaPlayer::bind(QObject *)\nThis is a reimplementation of QMediaObject::bind", false, &_init_f_bind_1302, &_call_f_bind_1302); methods += new qt_gsi::GenericMethod (":bufferStatus", "@brief Method int QMediaPlayer::bufferStatus()\n", true, &_init_f_bufferStatus_c0, &_call_f_bufferStatus_c0); methods += new qt_gsi::GenericMethod (":currentMedia", "@brief Method QMediaContent QMediaPlayer::currentMedia()\n", true, &_init_f_currentMedia_c0, &_call_f_currentMedia_c0); methods += new qt_gsi::GenericMethod ("currentNetworkConfiguration", "@brief Method QNetworkConfiguration QMediaPlayer::currentNetworkConfiguration()\n", true, &_init_f_currentNetworkConfiguration_c0, &_call_f_currentNetworkConfiguration_c0); @@ -760,7 +760,7 @@ static gsi::Methods methods_QMediaPlayer () { methods += new qt_gsi::GenericMethod ("setVolume|volume=", "@brief Method void QMediaPlayer::setVolume(int volume)\n", false, &_init_f_setVolume_767, &_call_f_setVolume_767); methods += new qt_gsi::GenericMethod (":state", "@brief Method QMediaPlayer::State QMediaPlayer::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); methods += new qt_gsi::GenericMethod ("stop", "@brief Method void QMediaPlayer::stop()\n", false, &_init_f_stop_0, &_call_f_stop_0); - methods += new qt_gsi::GenericMethod ("unbind", "@brief Method (QObject *)\nThis is a reimplementation of QMediaObject::unbind", false, &_init_f_unbind_1302, &_call_f_unbind_1302); + methods += new qt_gsi::GenericMethod ("unbind", "@brief Method void QMediaPlayer::unbind(QObject *)\nThis is a reimplementation of QMediaObject::unbind", false, &_init_f_unbind_1302, &_call_f_unbind_1302); methods += new qt_gsi::GenericMethod (":volume", "@brief Method int QMediaPlayer::volume()\n", true, &_init_f_volume_c0, &_call_f_volume_c0); methods += gsi::qt_signal ("audioAvailableChanged(bool)", "audioAvailableChanged", gsi::arg("available"), "@brief Signal declaration for QMediaPlayer::audioAvailableChanged(bool available)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("availabilityChanged(bool)", "availabilityChanged_bool", gsi::arg("available"), "@brief Signal declaration for QMediaPlayer::availabilityChanged(bool available)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc index 006425da2..66360eb0e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc @@ -350,7 +350,7 @@ static void _call_f_mediaCount_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QMediaObject *QMediaPlaylist::mediaObject() static void _init_f_mediaObject_c0 (qt_gsi::GenericMethod *decl) @@ -708,7 +708,7 @@ static gsi::Methods methods_QMediaPlaylist () { methods += new qt_gsi::GenericMethod ("load", "@brief Method void QMediaPlaylist::load(QIODevice *device, const char *format)\n", false, &_init_f_load_3070, &_call_f_load_3070); methods += new qt_gsi::GenericMethod ("media", "@brief Method QMediaContent QMediaPlaylist::media(int index)\n", true, &_init_f_media_c767, &_call_f_media_c767); methods += new qt_gsi::GenericMethod ("mediaCount", "@brief Method int QMediaPlaylist::mediaCount()\n", true, &_init_f_mediaCount_c0, &_call_f_mediaCount_c0); - methods += new qt_gsi::GenericMethod ("mediaObject", "@brief Method () const\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); + methods += new qt_gsi::GenericMethod ("mediaObject", "@brief Method QMediaObject *QMediaPlaylist::mediaObject()\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); methods += new qt_gsi::GenericMethod ("next", "@brief Method void QMediaPlaylist::next()\n", false, &_init_f_next_0, &_call_f_next_0); methods += new qt_gsi::GenericMethod ("nextIndex", "@brief Method int QMediaPlaylist::nextIndex(int steps)\n", true, &_init_f_nextIndex_c767, &_call_f_nextIndex_c767); methods += new qt_gsi::GenericMethod (":playbackMode", "@brief Method QMediaPlaylist::PlaybackMode QMediaPlaylist::playbackMode()\n", true, &_init_f_playbackMode_c0, &_call_f_playbackMode_c0); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc index 6b7e2aeac..52bbf9800 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc @@ -278,7 +278,7 @@ static void _call_f_isMuted_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QMediaObject *QMediaRecorder::mediaObject() static void _init_f_mediaObject_c0 (qt_gsi::GenericMethod *decl) @@ -848,7 +848,7 @@ static gsi::Methods methods_QMediaRecorder () { methods += new qt_gsi::GenericMethod ("isMetaDataAvailable?|:metaDataAvailable", "@brief Method bool QMediaRecorder::isMetaDataAvailable()\n", true, &_init_f_isMetaDataAvailable_c0, &_call_f_isMetaDataAvailable_c0); methods += new qt_gsi::GenericMethod ("isMetaDataWritable?|:metaDataWritable", "@brief Method bool QMediaRecorder::isMetaDataWritable()\n", true, &_init_f_isMetaDataWritable_c0, &_call_f_isMetaDataWritable_c0); methods += new qt_gsi::GenericMethod ("isMuted?|:muted", "@brief Method bool QMediaRecorder::isMuted()\n", true, &_init_f_isMuted_c0, &_call_f_isMuted_c0); - methods += new qt_gsi::GenericMethod ("mediaObject", "@brief Method () const\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); + methods += new qt_gsi::GenericMethod ("mediaObject", "@brief Method QMediaObject *QMediaRecorder::mediaObject()\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); methods += new qt_gsi::GenericMethod ("metaData", "@brief Method QVariant QMediaRecorder::metaData(const QString &key)\n", true, &_init_f_metaData_c2025, &_call_f_metaData_c2025); methods += new qt_gsi::GenericMethod (":outputLocation", "@brief Method QUrl QMediaRecorder::outputLocation()\n", true, &_init_f_outputLocation_c0, &_call_f_outputLocation_c0); methods += new qt_gsi::GenericMethod ("pause", "@brief Method void QMediaRecorder::pause()\n", false, &_init_f_pause_0, &_call_f_pause_0); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc index 9d008b31e..fedf81bfe 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc @@ -56,7 +56,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QString &) +// QMediaService *QMediaServiceProviderPlugin::create(const QString &key) static void _init_f_create_2025u1 (qt_gsi::GenericMethod *decl) @@ -75,7 +75,7 @@ static void _call_f_create_2025u1 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QMediaService *) +// void QMediaServiceProviderPlugin::release(QMediaService *service) static void _init_f_release_1904 (qt_gsi::GenericMethod *decl) @@ -196,8 +196,8 @@ namespace gsi static gsi::Methods methods_QMediaServiceProviderPlugin () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("qt_create", "@brief Method (const QString &)\n", false, &_init_f_create_2025u1, &_call_f_create_2025u1); - methods += new qt_gsi::GenericMethod ("release", "@brief Method (QMediaService *)\nThis is a reimplementation of QMediaServiceProviderFactoryInterface::release", false, &_init_f_release_1904, &_call_f_release_1904); + methods += new qt_gsi::GenericMethod ("qt_create", "@brief Method QMediaService *QMediaServiceProviderPlugin::create(const QString &key)\n", false, &_init_f_create_2025u1, &_call_f_create_2025u1); + methods += new qt_gsi::GenericMethod ("release", "@brief Method void QMediaServiceProviderPlugin::release(QMediaService *service)\nThis is a reimplementation of QMediaServiceProviderFactoryInterface::release", false, &_init_f_release_1904, &_call_f_release_1904); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QMediaServiceProviderPlugin::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QMediaServiceProviderPlugin::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); methods += new qt_gsi::GenericStaticMethod ("trUtf8", "@brief Static method QString QMediaServiceProviderPlugin::trUtf8(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_4013, &_call_f_trUtf8_4013); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc index c0f466645..1259e27b5 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc @@ -116,7 +116,7 @@ static void _call_f_isAlternativeFrequenciesEnabled_c0 (const qt_gsi::GenericMet } -// () const +// QMediaObject *QRadioData::mediaObject() static void _init_f_mediaObject_c0 (qt_gsi::GenericMethod *decl) @@ -331,7 +331,7 @@ static gsi::Methods methods_QRadioData () { methods += new qt_gsi::GenericMethod ("error", "@brief Method QRadioData::Error QRadioData::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("errorString", "@brief Method QString QRadioData::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0); methods += new qt_gsi::GenericMethod ("isAlternativeFrequenciesEnabled?|:alternativeFrequenciesEnabled", "@brief Method bool QRadioData::isAlternativeFrequenciesEnabled()\n", true, &_init_f_isAlternativeFrequenciesEnabled_c0, &_call_f_isAlternativeFrequenciesEnabled_c0); - methods += new qt_gsi::GenericMethod ("mediaObject", "@brief Method () const\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); + methods += new qt_gsi::GenericMethod ("mediaObject", "@brief Method QMediaObject *QRadioData::mediaObject()\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); methods += new qt_gsi::GenericMethod (":programType", "@brief Method QRadioData::ProgramType QRadioData::programType()\n", true, &_init_f_programType_c0, &_call_f_programType_c0); methods += new qt_gsi::GenericMethod (":programTypeName", "@brief Method QString QRadioData::programTypeName()\n", true, &_init_f_programTypeName_c0, &_call_f_programTypeName_c0); methods += new qt_gsi::GenericMethod (":radioText", "@brief Method QString QRadioData::radioText()\n", true, &_init_f_radioText_c0, &_call_f_radioText_c0); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc index 4753975bf..0083a6894 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc @@ -57,7 +57,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// QMultimedia::AvailabilityStatus QRadioTuner::availability() static void _init_f_availability_c0 (qt_gsi::GenericMethod *decl) @@ -580,7 +580,7 @@ namespace gsi static gsi::Methods methods_QRadioTuner () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("availability", "@brief Method () const\nThis is a reimplementation of QMediaObject::availability", true, &_init_f_availability_c0, &_call_f_availability_c0); + methods += new qt_gsi::GenericMethod ("availability", "@brief Method QMultimedia::AvailabilityStatus QRadioTuner::availability()\nThis is a reimplementation of QMediaObject::availability", true, &_init_f_availability_c0, &_call_f_availability_c0); methods += new qt_gsi::GenericMethod (":band", "@brief Method QRadioTuner::Band QRadioTuner::band()\n", true, &_init_f_band_c0, &_call_f_band_c0); methods += new qt_gsi::GenericMethod ("cancelSearch", "@brief Method void QRadioTuner::cancelSearch()\n", false, &_init_f_cancelSearch_0, &_call_f_cancelSearch_0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QRadioTuner::Error QRadioTuner::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc index 0d5f225d6..e398c75c0 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc @@ -161,7 +161,7 @@ static void _call_f_hue_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// () const +// QMediaObject *QVideoWidget::mediaObject() static void _init_f_mediaObject_c0 (qt_gsi::GenericMethod *decl) @@ -311,7 +311,7 @@ static void _call_f_setSaturation_767 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QSize QVideoWidget::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -431,7 +431,7 @@ static gsi::Methods methods_QVideoWidget () { methods += new qt_gsi::GenericMethod (":brightness", "@brief Method int QVideoWidget::brightness()\n", true, &_init_f_brightness_c0, &_call_f_brightness_c0); methods += new qt_gsi::GenericMethod (":contrast", "@brief Method int QVideoWidget::contrast()\n", true, &_init_f_contrast_c0, &_call_f_contrast_c0); methods += new qt_gsi::GenericMethod (":hue", "@brief Method int QVideoWidget::hue()\n", true, &_init_f_hue_c0, &_call_f_hue_c0); - methods += new qt_gsi::GenericMethod (":mediaObject", "@brief Method () const\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); + methods += new qt_gsi::GenericMethod (":mediaObject", "@brief Method QMediaObject *QVideoWidget::mediaObject()\nThis is a reimplementation of QMediaBindableInterface::mediaObject", true, &_init_f_mediaObject_c0, &_call_f_mediaObject_c0); methods += new qt_gsi::GenericMethod (":saturation", "@brief Method int QVideoWidget::saturation()\n", true, &_init_f_saturation_c0, &_call_f_saturation_c0); methods += new qt_gsi::GenericMethod ("setAspectRatioMode|aspectRatioMode=", "@brief Method void QVideoWidget::setAspectRatioMode(Qt::AspectRatioMode mode)\n", false, &_init_f_setAspectRatioMode_2257, &_call_f_setAspectRatioMode_2257); methods += new qt_gsi::GenericMethod ("setBrightness|brightness=", "@brief Method void QVideoWidget::setBrightness(int brightness)\n", false, &_init_f_setBrightness_767, &_call_f_setBrightness_767); @@ -439,7 +439,7 @@ static gsi::Methods methods_QVideoWidget () { methods += new qt_gsi::GenericMethod ("setFullScreen|fullScreen=", "@brief Method void QVideoWidget::setFullScreen(bool fullScreen)\n", false, &_init_f_setFullScreen_864, &_call_f_setFullScreen_864); methods += new qt_gsi::GenericMethod ("setHue|hue=", "@brief Method void QVideoWidget::setHue(int hue)\n", false, &_init_f_setHue_767, &_call_f_setHue_767); methods += new qt_gsi::GenericMethod ("setSaturation|saturation=", "@brief Method void QVideoWidget::setSaturation(int saturation)\n", false, &_init_f_setSaturation_767, &_call_f_setSaturation_767); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QVideoWidget::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("brightnessChanged(int)", "brightnessChanged", gsi::arg("brightness"), "@brief Signal declaration for QVideoWidget::brightnessChanged(int brightness)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("contrastChanged(int)", "contrastChanged", gsi::arg("contrast"), "@brief Signal declaration for QVideoWidget::contrastChanged(int contrast)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QVideoWidget::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc index f3d2a25dd..b74efc8b9 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc @@ -94,7 +94,7 @@ static void _call_f_abort_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// bool QAbstractSocket::atEnd() static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) @@ -156,7 +156,7 @@ static void _call_f_bind_4517 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// qint64 QAbstractSocket::bytesAvailable() static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) @@ -171,7 +171,7 @@ static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// qint64 QAbstractSocket::bytesToWrite() static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) @@ -186,7 +186,7 @@ static void _call_f_bytesToWrite_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// bool QAbstractSocket::canReadLine() static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) @@ -201,7 +201,7 @@ static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QAbstractSocket::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -318,7 +318,7 @@ static void _call_f_flush_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// bool QAbstractSocket::isSequential() static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) @@ -656,7 +656,7 @@ static void _call_f_state_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (int) +// bool QAbstractSocket::waitForBytesWritten(int msecs) static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) @@ -713,7 +713,7 @@ static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*dec } -// (int) +// bool QAbstractSocket::waitForReadyRead(int msecs) static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) @@ -791,19 +791,19 @@ static gsi::Methods methods_QAbstractSocket () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAbstractSocket::QAbstractSocket(QAbstractSocket::SocketType socketType, QObject *parent)\nThis method creates an object of class QAbstractSocket.", &_init_ctor_QAbstractSocket_4299, &_call_ctor_QAbstractSocket_4299); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QAbstractSocket::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); + methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method bool QAbstractSocket::atEnd()\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); methods += new qt_gsi::GenericMethod ("bind", "@brief Method bool QAbstractSocket::bind(const QHostAddress &address, quint16 port, QFlags mode)\n", false, &_init_f_bind_6927, &_call_f_bind_6927); methods += new qt_gsi::GenericMethod ("bind", "@brief Method bool QAbstractSocket::bind(quint16 port, QFlags mode)\n", false, &_init_f_bind_4517, &_call_f_bind_4517); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method qint64 QAbstractSocket::bytesAvailable()\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); + methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method qint64 QAbstractSocket::bytesToWrite()\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); + methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method bool QAbstractSocket::canReadLine()\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QAbstractSocket::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method void QAbstractSocket::connectToHost(const QString &hostName, quint16 port, QFlags mode, QAbstractSocket::NetworkLayerProtocol protocol)\n", false, &_init_f_connectToHost_10218, &_call_f_connectToHost_10218); methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method void QAbstractSocket::connectToHost(const QHostAddress &address, quint16 port, QFlags mode)\n", false, &_init_f_connectToHost_6644, &_call_f_connectToHost_6644); methods += new qt_gsi::GenericMethod ("disconnectFromHost", "@brief Method void QAbstractSocket::disconnectFromHost()\n", false, &_init_f_disconnectFromHost_0, &_call_f_disconnectFromHost_0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QAbstractSocket::SocketError QAbstractSocket::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("flush", "@brief Method bool QAbstractSocket::flush()\n", false, &_init_f_flush_0, &_call_f_flush_0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); + methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method bool QAbstractSocket::isSequential()\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QAbstractSocket::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); methods += new qt_gsi::GenericMethod ("localAddress", "@brief Method QHostAddress QAbstractSocket::localAddress()\n", true, &_init_f_localAddress_c0, &_call_f_localAddress_c0); methods += new qt_gsi::GenericMethod ("localPort", "@brief Method quint16 QAbstractSocket::localPort()\n", true, &_init_f_localPort_c0, &_call_f_localPort_c0); @@ -823,10 +823,10 @@ static gsi::Methods methods_QAbstractSocket () { methods += new qt_gsi::GenericMethod ("socketOption", "@brief Method QVariant QAbstractSocket::socketOption(QAbstractSocket::SocketOption option)\n", false, &_init_f_socketOption_3320, &_call_f_socketOption_3320); methods += new qt_gsi::GenericMethod ("socketType", "@brief Method QAbstractSocket::SocketType QAbstractSocket::socketType()\n", true, &_init_f_socketType_c0, &_call_f_socketType_c0); methods += new qt_gsi::GenericMethod ("state", "@brief Method QAbstractSocket::SocketState QAbstractSocket::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); + methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method bool QAbstractSocket::waitForBytesWritten(int msecs)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method bool QAbstractSocket::waitForConnected(int msecs)\n", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method bool QAbstractSocket::waitForDisconnected(int msecs)\n", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); + methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method bool QAbstractSocket::waitForReadyRead(int msecs)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QAbstractSocket::aboutToClose()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QAbstractSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QAbstractSocket::connected()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc index 10674bbab..a6a1c8af5 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc @@ -88,7 +88,7 @@ static void _call_f_abort_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// qint64 QLocalSocket::bytesAvailable() static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) @@ -103,7 +103,7 @@ static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// qint64 QLocalSocket::bytesToWrite() static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_bytesToWrite_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// bool QLocalSocket::canReadLine() static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QLocalSocket::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -253,7 +253,7 @@ static void _call_f_fullServerName_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// bool QLocalSocket::isSequential() static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) @@ -283,7 +283,7 @@ static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (QFlags) +// bool QLocalSocket::open(QFlags openMode) static void _init_f_open_3242 (qt_gsi::GenericMethod *decl) @@ -427,7 +427,7 @@ static void _call_f_state_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (int) +// bool QLocalSocket::waitForBytesWritten(int msecs) static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) @@ -484,7 +484,7 @@ static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*dec } -// (int) +// bool QLocalSocket::waitForReadyRead(int msecs) static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) @@ -562,19 +562,19 @@ static gsi::Methods methods_QLocalSocket () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QLocalSocket::QLocalSocket(QObject *parent)\nThis method creates an object of class QLocalSocket.", &_init_ctor_QLocalSocket_1302, &_call_ctor_QLocalSocket_1302); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QLocalSocket::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method qint64 QLocalSocket::bytesAvailable()\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); + methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method qint64 QLocalSocket::bytesToWrite()\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); + methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method bool QLocalSocket::canReadLine()\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QLocalSocket::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("connectToServer", "@brief Method void QLocalSocket::connectToServer(QFlags openMode)\n", false, &_init_f_connectToServer_3242, &_call_f_connectToServer_3242); methods += new qt_gsi::GenericMethod ("connectToServer", "@brief Method void QLocalSocket::connectToServer(const QString &name, QFlags openMode)\n", false, &_init_f_connectToServer_5159, &_call_f_connectToServer_5159); methods += new qt_gsi::GenericMethod ("disconnectFromServer", "@brief Method void QLocalSocket::disconnectFromServer()\n", false, &_init_f_disconnectFromServer_0, &_call_f_disconnectFromServer_0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QLocalSocket::LocalSocketError QLocalSocket::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("flush", "@brief Method bool QLocalSocket::flush()\n", false, &_init_f_flush_0, &_call_f_flush_0); methods += new qt_gsi::GenericMethod ("fullServerName", "@brief Method QString QLocalSocket::fullServerName()\n", true, &_init_f_fullServerName_c0, &_call_f_fullServerName_c0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); + methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method bool QLocalSocket::isSequential()\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QLocalSocket::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QFlags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); + methods += new qt_gsi::GenericMethod ("open", "@brief Method bool QLocalSocket::open(QFlags openMode)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); methods += new qt_gsi::GenericMethod (":readBufferSize", "@brief Method qint64 QLocalSocket::readBufferSize()\n", true, &_init_f_readBufferSize_c0, &_call_f_readBufferSize_c0); methods += new qt_gsi::GenericMethod (":serverName", "@brief Method QString QLocalSocket::serverName()\n", true, &_init_f_serverName_c0, &_call_f_serverName_c0); methods += new qt_gsi::GenericMethod ("setReadBufferSize|readBufferSize=", "@brief Method void QLocalSocket::setReadBufferSize(qint64 size)\n", false, &_init_f_setReadBufferSize_986, &_call_f_setReadBufferSize_986); @@ -582,10 +582,10 @@ static gsi::Methods methods_QLocalSocket () { methods += new qt_gsi::GenericMethod ("setSocketDescriptor", "@brief Method bool QLocalSocket::setSocketDescriptor(QIntegerForSizeof::Signed socketDescriptor, QLocalSocket::LocalSocketState socketState, QFlags openMode)\n", false, &_init_f_setSocketDescriptor_9858, &_call_f_setSocketDescriptor_9858); methods += new qt_gsi::GenericMethod ("socketDescriptor", "@brief Method QIntegerForSizeof::Signed QLocalSocket::socketDescriptor()\n", true, &_init_f_socketDescriptor_c0, &_call_f_socketDescriptor_c0); methods += new qt_gsi::GenericMethod ("state", "@brief Method QLocalSocket::LocalSocketState QLocalSocket::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); + methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method bool QLocalSocket::waitForBytesWritten(int msecs)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method bool QLocalSocket::waitForConnected(int msecs)\n", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method bool QLocalSocket::waitForDisconnected(int msecs)\n", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); + methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method bool QLocalSocket::waitForReadyRead(int msecs)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QLocalSocket::aboutToClose()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QLocalSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QLocalSocket::connected()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc index dd4178c96..3cb7cf29d 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc @@ -73,7 +73,7 @@ static void _call_f_cacheDirectory_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// qint64 QNetworkDiskCache::cacheSize() static void _init_f_cacheSize_c0 (qt_gsi::GenericMethod *decl) @@ -88,7 +88,7 @@ static void _call_f_cacheSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () +// void QNetworkDiskCache::clear() static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) @@ -104,7 +104,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QUrl &) +// QIODevice *QNetworkDiskCache::data(const QUrl &url) static void _init_f_data_1701 (qt_gsi::GenericMethod *decl) @@ -142,7 +142,7 @@ static void _call_f_fileMetaData_c2025 (const qt_gsi::GenericMethod * /*decl*/, } -// (QIODevice *) +// void QNetworkDiskCache::insert(QIODevice *device) static void _init_f_insert_1447 (qt_gsi::GenericMethod *decl) @@ -177,7 +177,7 @@ static void _call_f_maximumCacheSize_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QUrl &) +// QNetworkCacheMetaData QNetworkDiskCache::metaData(const QUrl &url) static void _init_f_metaData_1701 (qt_gsi::GenericMethod *decl) @@ -196,7 +196,7 @@ static void _call_f_metaData_1701 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QNetworkCacheMetaData &) +// QIODevice *QNetworkDiskCache::prepare(const QNetworkCacheMetaData &metaData) static void _init_f_prepare_3377 (qt_gsi::GenericMethod *decl) @@ -215,7 +215,7 @@ static void _call_f_prepare_3377 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QUrl &) +// bool QNetworkDiskCache::remove(const QUrl &url) static void _init_f_remove_1701 (qt_gsi::GenericMethod *decl) @@ -274,7 +274,7 @@ static void _call_f_setMaximumCacheSize_986 (const qt_gsi::GenericMethod * /*dec } -// (const QNetworkCacheMetaData &) +// void QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData &metaData) static void _init_f_updateMetaData_3377 (qt_gsi::GenericMethod *decl) @@ -351,18 +351,18 @@ static gsi::Methods methods_QNetworkDiskCache () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":cacheDirectory", "@brief Method QString QNetworkDiskCache::cacheDirectory()\n", true, &_init_f_cacheDirectory_c0, &_call_f_cacheDirectory_c0); - methods += new qt_gsi::GenericMethod ("cacheSize", "@brief Method () const\nThis is a reimplementation of QAbstractNetworkCache::cacheSize", true, &_init_f_cacheSize_c0, &_call_f_cacheSize_c0); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method ()\nThis is a reimplementation of QAbstractNetworkCache::clear", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QUrl &)\nThis is a reimplementation of QAbstractNetworkCache::data", false, &_init_f_data_1701, &_call_f_data_1701); + methods += new qt_gsi::GenericMethod ("cacheSize", "@brief Method qint64 QNetworkDiskCache::cacheSize()\nThis is a reimplementation of QAbstractNetworkCache::cacheSize", true, &_init_f_cacheSize_c0, &_call_f_cacheSize_c0); + methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QNetworkDiskCache::clear()\nThis is a reimplementation of QAbstractNetworkCache::clear", false, &_init_f_clear_0, &_call_f_clear_0); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QIODevice *QNetworkDiskCache::data(const QUrl &url)\nThis is a reimplementation of QAbstractNetworkCache::data", false, &_init_f_data_1701, &_call_f_data_1701); methods += new qt_gsi::GenericMethod ("fileMetaData", "@brief Method QNetworkCacheMetaData QNetworkDiskCache::fileMetaData(const QString &fileName)\n", true, &_init_f_fileMetaData_c2025, &_call_f_fileMetaData_c2025); - methods += new qt_gsi::GenericMethod ("insert", "@brief Method (QIODevice *)\nThis is a reimplementation of QAbstractNetworkCache::insert", false, &_init_f_insert_1447, &_call_f_insert_1447); + methods += new qt_gsi::GenericMethod ("insert", "@brief Method void QNetworkDiskCache::insert(QIODevice *device)\nThis is a reimplementation of QAbstractNetworkCache::insert", false, &_init_f_insert_1447, &_call_f_insert_1447); methods += new qt_gsi::GenericMethod (":maximumCacheSize", "@brief Method qint64 QNetworkDiskCache::maximumCacheSize()\n", true, &_init_f_maximumCacheSize_c0, &_call_f_maximumCacheSize_c0); - methods += new qt_gsi::GenericMethod ("metaData", "@brief Method (const QUrl &)\nThis is a reimplementation of QAbstractNetworkCache::metaData", false, &_init_f_metaData_1701, &_call_f_metaData_1701); - methods += new qt_gsi::GenericMethod ("prepare", "@brief Method (const QNetworkCacheMetaData &)\nThis is a reimplementation of QAbstractNetworkCache::prepare", false, &_init_f_prepare_3377, &_call_f_prepare_3377); - methods += new qt_gsi::GenericMethod ("remove", "@brief Method (const QUrl &)\nThis is a reimplementation of QAbstractNetworkCache::remove", false, &_init_f_remove_1701, &_call_f_remove_1701); + methods += new qt_gsi::GenericMethod ("metaData", "@brief Method QNetworkCacheMetaData QNetworkDiskCache::metaData(const QUrl &url)\nThis is a reimplementation of QAbstractNetworkCache::metaData", false, &_init_f_metaData_1701, &_call_f_metaData_1701); + methods += new qt_gsi::GenericMethod ("prepare", "@brief Method QIODevice *QNetworkDiskCache::prepare(const QNetworkCacheMetaData &metaData)\nThis is a reimplementation of QAbstractNetworkCache::prepare", false, &_init_f_prepare_3377, &_call_f_prepare_3377); + methods += new qt_gsi::GenericMethod ("remove", "@brief Method bool QNetworkDiskCache::remove(const QUrl &url)\nThis is a reimplementation of QAbstractNetworkCache::remove", false, &_init_f_remove_1701, &_call_f_remove_1701); methods += new qt_gsi::GenericMethod ("setCacheDirectory|cacheDirectory=", "@brief Method void QNetworkDiskCache::setCacheDirectory(const QString &cacheDir)\n", false, &_init_f_setCacheDirectory_2025, &_call_f_setCacheDirectory_2025); methods += new qt_gsi::GenericMethod ("setMaximumCacheSize|maximumCacheSize=", "@brief Method void QNetworkDiskCache::setMaximumCacheSize(qint64 size)\n", false, &_init_f_setMaximumCacheSize_986, &_call_f_setMaximumCacheSize_986); - methods += new qt_gsi::GenericMethod ("updateMetaData", "@brief Method (const QNetworkCacheMetaData &)\nThis is a reimplementation of QAbstractNetworkCache::updateMetaData", false, &_init_f_updateMetaData_3377, &_call_f_updateMetaData_3377); + methods += new qt_gsi::GenericMethod ("updateMetaData", "@brief Method void QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData &metaData)\nThis is a reimplementation of QAbstractNetworkCache::updateMetaData", false, &_init_f_updateMetaData_3377, &_call_f_updateMetaData_3377); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QNetworkDiskCache::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QNetworkDiskCache::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); methods += new qt_gsi::GenericStaticMethod ("trUtf8", "@brief Static method QString QNetworkDiskCache::trUtf8(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_4013, &_call_f_trUtf8_4013); diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc index d135e6139..60ae6fe8d 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc @@ -94,7 +94,7 @@ static void _call_f_attribute_c3072 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () +// void QNetworkReply::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -229,7 +229,7 @@ static void _call_f_isRunning_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// bool QNetworkReply::isSequential() static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) @@ -482,7 +482,7 @@ static gsi::Methods methods_QNetworkReply () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QNetworkReply::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); methods += new qt_gsi::GenericMethod ("attribute", "@brief Method QVariant QNetworkReply::attribute(QNetworkRequest::Attribute code)\n", true, &_init_f_attribute_c3072, &_call_f_attribute_c3072); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QNetworkReply::close()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QNetworkReply::NetworkError QNetworkReply::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod ("hasRawHeader", "@brief Method bool QNetworkReply::hasRawHeader(const QByteArray &headerName)\n", true, &_init_f_hasRawHeader_c2309, &_call_f_hasRawHeader_c2309); methods += new qt_gsi::GenericMethod ("header", "@brief Method QVariant QNetworkReply::header(QNetworkRequest::KnownHeaders header)\n", true, &_init_f_header_c3349, &_call_f_header_c3349); @@ -490,7 +490,7 @@ static gsi::Methods methods_QNetworkReply () { methods += new qt_gsi::GenericMethod ("ignoreSslErrors", "@brief Method void QNetworkReply::ignoreSslErrors()\n", false, &_init_f_ignoreSslErrors_0, &_call_f_ignoreSslErrors_0); methods += new qt_gsi::GenericMethod ("isFinished?", "@brief Method bool QNetworkReply::isFinished()\n", true, &_init_f_isFinished_c0, &_call_f_isFinished_c0); methods += new qt_gsi::GenericMethod ("isRunning?", "@brief Method bool QNetworkReply::isRunning()\n", true, &_init_f_isRunning_c0, &_call_f_isRunning_c0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); + methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method bool QNetworkReply::isSequential()\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); methods += new qt_gsi::GenericMethod ("manager", "@brief Method QNetworkAccessManager *QNetworkReply::manager()\n", true, &_init_f_manager_c0, &_call_f_manager_c0); methods += new qt_gsi::GenericMethod ("operation", "@brief Method QNetworkAccessManager::Operation QNetworkReply::operation()\n", true, &_init_f_operation_c0, &_call_f_operation_c0); methods += new qt_gsi::GenericMethod ("rawHeader", "@brief Method QByteArray QNetworkReply::rawHeader(const QByteArray &headerName)\n", true, &_init_f_rawHeader_c2309, &_call_f_rawHeader_c2309); diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc index 85a726678..c3105095f 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc @@ -81,7 +81,7 @@ static void _call_ctor_QSslSocket_1302 (const qt_gsi::GenericStaticMethod * /*de } -// () +// void QSslSocket::abort() static void _init_f_abort_0 (qt_gsi::GenericMethod *decl) @@ -162,7 +162,7 @@ static void _call_f_addCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl } -// () const +// bool QSslSocket::atEnd() static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) @@ -177,7 +177,7 @@ static void _call_f_atEnd_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// qint64 QSslSocket::bytesAvailable() static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) @@ -192,7 +192,7 @@ static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// qint64 QSslSocket::bytesToWrite() static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) @@ -222,7 +222,7 @@ static void _call_f_caCertificates_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// bool QSslSocket::canReadLine() static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) @@ -252,7 +252,7 @@ static void _call_f_ciphers_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () +// void QSslSocket::close() static void _init_f_close_0 (qt_gsi::GenericMethod *decl) @@ -268,7 +268,7 @@ static void _call_f_close_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QHostAddress &, quint16, QFlags) +// void QSslSocket::connectToHost(const QHostAddress &address, quint16 port, QFlags mode) static void _init_f_connectToHost_6644 (qt_gsi::GenericMethod *decl) @@ -294,7 +294,7 @@ static void _call_f_connectToHost_6644 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QString &, quint16, QFlags, QAbstractSocket::NetworkLayerProtocol) +// void QSslSocket::connectToHost(const QString &hostName, quint16 port, QFlags openMode, QAbstractSocket::NetworkLayerProtocol protocol) static void _init_f_connectToHost_10218 (qt_gsi::GenericMethod *decl) @@ -384,7 +384,7 @@ static void _call_f_connectToHostEncrypted_12135 (const qt_gsi::GenericMethod * } -// () +// void QSslSocket::disconnectFromHost() static void _init_f_disconnectFromHost_0 (qt_gsi::GenericMethod *decl) @@ -430,7 +430,7 @@ static void _call_f_encryptedBytesToWrite_c0 (const qt_gsi::GenericMethod * /*de } -// () +// bool QSslSocket::flush() static void _init_f_flush_0 (qt_gsi::GenericMethod *decl) @@ -646,7 +646,7 @@ static void _call_f_protocol_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// void QSslSocket::resume() static void _init_f_resume_0 (qt_gsi::GenericMethod *decl) @@ -944,7 +944,7 @@ static void _call_f_setProtocol_2095 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (qint64) +// void QSslSocket::setReadBufferSize(qint64 size) static void _init_f_setReadBufferSize_986 (qt_gsi::GenericMethod *decl) @@ -964,7 +964,7 @@ static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl* } -// (QIntegerForSizeof::Signed, QAbstractSocket::SocketState, QFlags) +// bool QSslSocket::setSocketDescriptor(QIntegerForSizeof::Signed socketDescriptor, QAbstractSocket::SocketState state, QFlags openMode) static void _init_f_setSocketDescriptor_9696 (qt_gsi::GenericMethod *decl) @@ -989,7 +989,7 @@ static void _call_f_setSocketDescriptor_9696 (const qt_gsi::GenericMethod * /*de } -// (QAbstractSocket::SocketOption, const QVariant &) +// void QSslSocket::setSocketOption(QAbstractSocket::SocketOption option, const QVariant &value) static void _init_f_setSocketOption_5331 (qt_gsi::GenericMethod *decl) @@ -1032,7 +1032,7 @@ static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*de } -// (QAbstractSocket::SocketOption) +// QVariant QSslSocket::socketOption(QAbstractSocket::SocketOption option) static void _init_f_socketOption_3320 (qt_gsi::GenericMethod *decl) @@ -1113,7 +1113,7 @@ static void _call_f_startServerEncryption_0 (const qt_gsi::GenericMethod * /*dec } -// (int) +// bool QSslSocket::waitForBytesWritten(int msecs) static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) @@ -1132,7 +1132,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec } -// (int) +// bool QSslSocket::waitForConnected(int msecs) static void _init_f_waitForConnected_767 (qt_gsi::GenericMethod *decl) @@ -1151,7 +1151,7 @@ static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) +// bool QSslSocket::waitForDisconnected(int msecs) static void _init_f_waitForDisconnected_767 (qt_gsi::GenericMethod *decl) @@ -1189,7 +1189,7 @@ static void _call_f_waitForEncrypted_767 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) +// bool QSslSocket::waitForReadyRead(int msecs) static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) @@ -1506,25 +1506,25 @@ static gsi::Methods methods_QSslSocket () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslSocket::QSslSocket(QObject *parent)\nThis method creates an object of class QSslSocket.", &_init_ctor_QSslSocket_1302, &_call_ctor_QSslSocket_1302); methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("abort", "@brief Method ()\n", false, &_init_f_abort_0, &_call_f_abort_0); + methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QSslSocket::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); methods += new qt_gsi::GenericMethod ("addCaCertificate", "@brief Method void QSslSocket::addCaCertificate(const QSslCertificate &certificate)\n", false, &_init_f_addCaCertificate_2823, &_call_f_addCaCertificate_2823); methods += new qt_gsi::GenericMethod ("addCaCertificates", "@brief Method bool QSslSocket::addCaCertificates(const QString &path, QSsl::EncodingFormat format, QRegExp::PatternSyntax syntax)\n", false, &_init_f_addCaCertificates_6773, &_call_f_addCaCertificates_6773); methods += new qt_gsi::GenericMethod ("addCaCertificates", "@brief Method void QSslSocket::addCaCertificates(const QList &certificates)\n", false, &_init_f_addCaCertificates_3438, &_call_f_addCaCertificates_3438); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); + methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method bool QSslSocket::atEnd()\nThis is a reimplementation of QAbstractSocket::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); + methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method qint64 QSslSocket::bytesAvailable()\nThis is a reimplementation of QAbstractSocket::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); + methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method qint64 QSslSocket::bytesToWrite()\nThis is a reimplementation of QAbstractSocket::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); methods += new qt_gsi::GenericMethod (":caCertificates", "@brief Method QList QSslSocket::caCertificates()\n", true, &_init_f_caCertificates_c0, &_call_f_caCertificates_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); + methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method bool QSslSocket::canReadLine()\nThis is a reimplementation of QAbstractSocket::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); methods += new qt_gsi::GenericMethod (":ciphers", "@brief Method QList QSslSocket::ciphers()\n", true, &_init_f_ciphers_c0, &_call_f_ciphers_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QAbstractSocket::close", false, &_init_f_close_0, &_call_f_close_0); - methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method (const QHostAddress &, quint16, QFlags)\nThis is a reimplementation of QAbstractSocket::connectToHost", false, &_init_f_connectToHost_6644, &_call_f_connectToHost_6644); - methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method (const QString &, quint16, QFlags, QAbstractSocket::NetworkLayerProtocol)\nThis is a reimplementation of QAbstractSocket::connectToHost", false, &_init_f_connectToHost_10218, &_call_f_connectToHost_10218); + methods += new qt_gsi::GenericMethod ("close", "@brief Method void QSslSocket::close()\nThis is a reimplementation of QAbstractSocket::close", false, &_init_f_close_0, &_call_f_close_0); + methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method void QSslSocket::connectToHost(const QHostAddress &address, quint16 port, QFlags mode)\nThis is a reimplementation of QAbstractSocket::connectToHost", false, &_init_f_connectToHost_6644, &_call_f_connectToHost_6644); + methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method void QSslSocket::connectToHost(const QString &hostName, quint16 port, QFlags openMode, QAbstractSocket::NetworkLayerProtocol protocol)\nThis is a reimplementation of QAbstractSocket::connectToHost", false, &_init_f_connectToHost_10218, &_call_f_connectToHost_10218); methods += new qt_gsi::GenericMethod ("connectToHostEncrypted", "@brief Method void QSslSocket::connectToHostEncrypted(const QString &hostName, quint16 port, QFlags mode, QAbstractSocket::NetworkLayerProtocol protocol)\n", false, &_init_f_connectToHostEncrypted_10218, &_call_f_connectToHostEncrypted_10218); methods += new qt_gsi::GenericMethod ("connectToHostEncrypted", "@brief Method void QSslSocket::connectToHostEncrypted(const QString &hostName, quint16 port, const QString &sslPeerName, QFlags mode, QAbstractSocket::NetworkLayerProtocol protocol)\n", false, &_init_f_connectToHostEncrypted_12135, &_call_f_connectToHostEncrypted_12135); - methods += new qt_gsi::GenericMethod ("disconnectFromHost", "@brief Method ()\nThis is a reimplementation of QAbstractSocket::disconnectFromHost", false, &_init_f_disconnectFromHost_0, &_call_f_disconnectFromHost_0); + methods += new qt_gsi::GenericMethod ("disconnectFromHost", "@brief Method void QSslSocket::disconnectFromHost()\nThis is a reimplementation of QAbstractSocket::disconnectFromHost", false, &_init_f_disconnectFromHost_0, &_call_f_disconnectFromHost_0); methods += new qt_gsi::GenericMethod ("encryptedBytesAvailable", "@brief Method qint64 QSslSocket::encryptedBytesAvailable()\n", true, &_init_f_encryptedBytesAvailable_c0, &_call_f_encryptedBytesAvailable_c0); methods += new qt_gsi::GenericMethod ("encryptedBytesToWrite", "@brief Method qint64 QSslSocket::encryptedBytesToWrite()\n", true, &_init_f_encryptedBytesToWrite_c0, &_call_f_encryptedBytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("flush", "@brief Method ()\n", false, &_init_f_flush_0, &_call_f_flush_0); + methods += new qt_gsi::GenericMethod ("flush", "@brief Method bool QSslSocket::flush()\n", false, &_init_f_flush_0, &_call_f_flush_0); methods += new qt_gsi::GenericMethod ("ignoreSslErrors", "@brief Method void QSslSocket::ignoreSslErrors(const QList &errors)\n", false, &_init_f_ignoreSslErrors_2837, &_call_f_ignoreSslErrors_2837); methods += new qt_gsi::GenericMethod ("ignoreSslErrors", "@brief Method void QSslSocket::ignoreSslErrors()\n", false, &_init_f_ignoreSslErrors_0, &_call_f_ignoreSslErrors_0); methods += new qt_gsi::GenericMethod ("isEncrypted?", "@brief Method bool QSslSocket::isEncrypted()\n", true, &_init_f_isEncrypted_c0, &_call_f_isEncrypted_c0); @@ -1538,7 +1538,7 @@ static gsi::Methods methods_QSslSocket () { methods += new qt_gsi::GenericMethod (":peerVerifyName", "@brief Method QString QSslSocket::peerVerifyName()\n", true, &_init_f_peerVerifyName_c0, &_call_f_peerVerifyName_c0); methods += new qt_gsi::GenericMethod (":privateKey", "@brief Method QSslKey QSslSocket::privateKey()\n", true, &_init_f_privateKey_c0, &_call_f_privateKey_c0); methods += new qt_gsi::GenericMethod (":protocol", "@brief Method QSsl::SslProtocol QSslSocket::protocol()\n", true, &_init_f_protocol_c0, &_call_f_protocol_c0); - methods += new qt_gsi::GenericMethod ("resume", "@brief Method ()\nThis is a reimplementation of QAbstractSocket::resume", false, &_init_f_resume_0, &_call_f_resume_0); + methods += new qt_gsi::GenericMethod ("resume", "@brief Method void QSslSocket::resume()\nThis is a reimplementation of QAbstractSocket::resume", false, &_init_f_resume_0, &_call_f_resume_0); methods += new qt_gsi::GenericMethod ("sessionCipher", "@brief Method QSslCipher QSslSocket::sessionCipher()\n", true, &_init_f_sessionCipher_c0, &_call_f_sessionCipher_c0); methods += new qt_gsi::GenericMethod ("sessionProtocol", "@brief Method QSsl::SslProtocol QSslSocket::sessionProtocol()\n", true, &_init_f_sessionProtocol_c0, &_call_f_sessionProtocol_c0); methods += new qt_gsi::GenericMethod ("setCaCertificates|caCertificates=", "@brief Method void QSslSocket::setCaCertificates(const QList &certificates)\n", false, &_init_f_setCaCertificates_3438, &_call_f_setCaCertificates_3438); @@ -1553,20 +1553,20 @@ static gsi::Methods methods_QSslSocket () { methods += new qt_gsi::GenericMethod ("setPrivateKey|privateKey=", "@brief Method void QSslSocket::setPrivateKey(const QSslKey &key)\n", false, &_init_f_setPrivateKey_1997, &_call_f_setPrivateKey_1997); methods += new qt_gsi::GenericMethod ("setPrivateKey", "@brief Method void QSslSocket::setPrivateKey(const QString &fileName, QSsl::KeyAlgorithm algorithm, QSsl::EncodingFormat format, const QByteArray &passPhrase)\n", false, &_init_f_setPrivateKey_8544, &_call_f_setPrivateKey_8544); methods += new qt_gsi::GenericMethod ("setProtocol|protocol=", "@brief Method void QSslSocket::setProtocol(QSsl::SslProtocol protocol)\n", false, &_init_f_setProtocol_2095, &_call_f_setProtocol_2095); - methods += new qt_gsi::GenericMethod ("setReadBufferSize|readBufferSize=", "@brief Method (qint64)\nThis is a reimplementation of QAbstractSocket::setReadBufferSize", false, &_init_f_setReadBufferSize_986, &_call_f_setReadBufferSize_986); - methods += new qt_gsi::GenericMethod ("setSocketDescriptor", "@brief Method (QIntegerForSizeof::Signed, QAbstractSocket::SocketState, QFlags)\nThis is a reimplementation of QAbstractSocket::setSocketDescriptor", false, &_init_f_setSocketDescriptor_9696, &_call_f_setSocketDescriptor_9696); - methods += new qt_gsi::GenericMethod ("setSocketOption", "@brief Method (QAbstractSocket::SocketOption, const QVariant &)\nThis is a reimplementation of QAbstractSocket::setSocketOption", false, &_init_f_setSocketOption_5331, &_call_f_setSocketOption_5331); + methods += new qt_gsi::GenericMethod ("setReadBufferSize|readBufferSize=", "@brief Method void QSslSocket::setReadBufferSize(qint64 size)\nThis is a reimplementation of QAbstractSocket::setReadBufferSize", false, &_init_f_setReadBufferSize_986, &_call_f_setReadBufferSize_986); + methods += new qt_gsi::GenericMethod ("setSocketDescriptor", "@brief Method bool QSslSocket::setSocketDescriptor(QIntegerForSizeof::Signed socketDescriptor, QAbstractSocket::SocketState state, QFlags openMode)\nThis is a reimplementation of QAbstractSocket::setSocketDescriptor", false, &_init_f_setSocketDescriptor_9696, &_call_f_setSocketDescriptor_9696); + methods += new qt_gsi::GenericMethod ("setSocketOption", "@brief Method void QSslSocket::setSocketOption(QAbstractSocket::SocketOption option, const QVariant &value)\nThis is a reimplementation of QAbstractSocket::setSocketOption", false, &_init_f_setSocketOption_5331, &_call_f_setSocketOption_5331); methods += new qt_gsi::GenericMethod ("setSslConfiguration|sslConfiguration=", "@brief Method void QSslSocket::setSslConfiguration(const QSslConfiguration &config)\n", false, &_init_f_setSslConfiguration_3068, &_call_f_setSslConfiguration_3068); - methods += new qt_gsi::GenericMethod ("socketOption", "@brief Method (QAbstractSocket::SocketOption)\nThis is a reimplementation of QAbstractSocket::socketOption", false, &_init_f_socketOption_3320, &_call_f_socketOption_3320); + methods += new qt_gsi::GenericMethod ("socketOption", "@brief Method QVariant QSslSocket::socketOption(QAbstractSocket::SocketOption option)\nThis is a reimplementation of QAbstractSocket::socketOption", false, &_init_f_socketOption_3320, &_call_f_socketOption_3320); methods += new qt_gsi::GenericMethod (":sslConfiguration", "@brief Method QSslConfiguration QSslSocket::sslConfiguration()\n", true, &_init_f_sslConfiguration_c0, &_call_f_sslConfiguration_c0); methods += new qt_gsi::GenericMethod ("sslErrors", "@brief Method QList QSslSocket::sslErrors()\n", true, &_init_f_sslErrors_c0, &_call_f_sslErrors_c0); methods += new qt_gsi::GenericMethod ("startClientEncryption", "@brief Method void QSslSocket::startClientEncryption()\n", false, &_init_f_startClientEncryption_0, &_call_f_startClientEncryption_0); methods += new qt_gsi::GenericMethod ("startServerEncryption", "@brief Method void QSslSocket::startServerEncryption()\n", false, &_init_f_startServerEncryption_0, &_call_f_startServerEncryption_0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QAbstractSocket::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); - methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method (int)\nThis is a reimplementation of QAbstractSocket::waitForConnected", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); - methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method (int)\nThis is a reimplementation of QAbstractSocket::waitForDisconnected", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); + methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method bool QSslSocket::waitForBytesWritten(int msecs)\nThis is a reimplementation of QAbstractSocket::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); + methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method bool QSslSocket::waitForConnected(int msecs)\nThis is a reimplementation of QAbstractSocket::waitForConnected", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); + methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method bool QSslSocket::waitForDisconnected(int msecs)\nThis is a reimplementation of QAbstractSocket::waitForDisconnected", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); methods += new qt_gsi::GenericMethod ("waitForEncrypted", "@brief Method bool QSslSocket::waitForEncrypted(int msecs)\n", false, &_init_f_waitForEncrypted_767, &_call_f_waitForEncrypted_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QAbstractSocket::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); + methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method bool QSslSocket::waitForReadyRead(int msecs)\nThis is a reimplementation of QAbstractSocket::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QSslSocket::aboutToClose()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QSslSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QSslSocket::connected()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc index b817db390..2c7515159 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc @@ -136,7 +136,7 @@ static void _call_f_enabledOptions_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () +// int QAbstractPrintDialog::exec() static void _init_f_exec_0 (qt_gsi::GenericMethod *decl) @@ -424,7 +424,7 @@ static gsi::Methods methods_QAbstractPrintDialog () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("addEnabledOption", "@brief Method void QAbstractPrintDialog::addEnabledOption(QAbstractPrintDialog::PrintDialogOption option)\n", false, &_init_f_addEnabledOption_4320, &_call_f_addEnabledOption_4320); methods += new qt_gsi::GenericMethod (":enabledOptions", "@brief Method QFlags QAbstractPrintDialog::enabledOptions()\n", true, &_init_f_enabledOptions_c0, &_call_f_enabledOptions_c0); - methods += new qt_gsi::GenericMethod ("exec", "@brief Method ()\nThis is a reimplementation of QDialog::exec", false, &_init_f_exec_0, &_call_f_exec_0); + methods += new qt_gsi::GenericMethod ("exec", "@brief Method int QAbstractPrintDialog::exec()\nThis is a reimplementation of QDialog::exec", false, &_init_f_exec_0, &_call_f_exec_0); methods += new qt_gsi::GenericMethod ("fromPage", "@brief Method int QAbstractPrintDialog::fromPage()\n", true, &_init_f_fromPage_c0, &_call_f_fromPage_c0); methods += new qt_gsi::GenericMethod ("isOptionEnabled?", "@brief Method bool QAbstractPrintDialog::isOptionEnabled(QAbstractPrintDialog::PrintDialogOption option)\n", true, &_init_f_isOptionEnabled_c4320, &_call_f_isOptionEnabled_c4320); methods += new qt_gsi::GenericMethod ("maxPage", "@brief Method int QAbstractPrintDialog::maxPage()\n", true, &_init_f_maxPage_c0, &_call_f_maxPage_c0); diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc index 6d9f1c06f..f19a1a66a 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc @@ -101,7 +101,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () +// void QPrintDialog::accept() static void _init_f_accept_0 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_accept_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (int) +// void QPrintDialog::done(int result) static void _init_f_done_767 (qt_gsi::GenericMethod *decl) @@ -137,7 +137,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () +// int QPrintDialog::exec() static void _init_f_exec_0 (qt_gsi::GenericMethod *decl) @@ -152,7 +152,7 @@ static void _call_f_exec_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// () +// void QPrintDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -168,7 +168,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QPrintDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -249,7 +249,7 @@ static void _call_f_setOptions_5016 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (bool) +// void QPrintDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -344,15 +344,15 @@ namespace gsi static gsi::Methods methods_QPrintDialog () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("accept", "@brief Method ()\nThis is a reimplementation of QDialog::accept", false, &_init_f_accept_0, &_call_f_accept_0); - methods += new qt_gsi::GenericMethod ("done", "@brief Method (int)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); - methods += new qt_gsi::GenericMethod ("exec", "@brief Method ()\nThis is a reimplementation of QAbstractPrintDialog::exec", false, &_init_f_exec_0, &_call_f_exec_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QPrintDialog::accept()\nThis is a reimplementation of QDialog::accept", false, &_init_f_accept_0, &_call_f_accept_0); + methods += new qt_gsi::GenericMethod ("done", "@brief Method void QPrintDialog::done(int result)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); + methods += new qt_gsi::GenericMethod ("exec", "@brief Method int QPrintDialog::exec()\nThis is a reimplementation of QAbstractPrintDialog::exec", false, &_init_f_exec_0, &_call_f_exec_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QPrintDialog::open()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QPrintDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod (":options", "@brief Method QFlags QPrintDialog::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); methods += new qt_gsi::GenericMethod ("setOption", "@brief Method void QPrintDialog::setOption(QAbstractPrintDialog::PrintDialogOption option, bool on)\n", false, &_init_f_setOption_5076, &_call_f_setOption_5076); methods += new qt_gsi::GenericMethod ("setOptions|options=", "@brief Method void QPrintDialog::setOptions(QFlags options)\n", false, &_init_f_setOptions_5016, &_call_f_setOptions_5016); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QPrintDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QPrintDialog::testOption(QAbstractPrintDialog::PrintDialogOption option)\n", true, &_init_f_testOption_c4320, &_call_f_testOption_c4320); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QPrintDialog::accepted()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("accepted(QPrinter *)", "accepted_sig", gsi::arg("printer"), "@brief Signal declaration for QPrintDialog::accepted(QPrinter *printer)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc index dbcd6d6f1..f4508ee17 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc @@ -101,7 +101,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (int) +// void QPrintPreviewDialog::done(int result) static void _init_f_done_767 (qt_gsi::GenericMethod *decl) @@ -121,7 +121,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () +// void QPrintPreviewDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -137,7 +137,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QPrintPreviewDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -175,7 +175,7 @@ static void _call_f_printer_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (bool) +// void QPrintPreviewDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -251,11 +251,11 @@ namespace gsi static gsi::Methods methods_QPrintPreviewDialog () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("done", "@brief Method (int)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("done", "@brief Method void QPrintPreviewDialog::done(int result)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QPrintPreviewDialog::open()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QPrintPreviewDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod ("printer", "@brief Method QPrinter *QPrintPreviewDialog::printer()\n", false, &_init_f_printer_0, &_call_f_printer_0); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QPrintPreviewDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QPrintPreviewDialog::accepted()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QPrintPreviewDialog::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QPrintPreviewDialog::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc index deb17307f..02ff4ff59 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc @@ -334,7 +334,7 @@ static void _call_f_setViewMode_3308 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (bool) +// void QPrintPreviewWidget::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -565,7 +565,7 @@ static gsi::Methods methods_QPrintPreviewWidget () { methods += new qt_gsi::GenericMethod ("setPortraitOrientation", "@brief Method void QPrintPreviewWidget::setPortraitOrientation()\n", false, &_init_f_setPortraitOrientation_0, &_call_f_setPortraitOrientation_0); methods += new qt_gsi::GenericMethod ("setSinglePageViewMode", "@brief Method void QPrintPreviewWidget::setSinglePageViewMode()\n", false, &_init_f_setSinglePageViewMode_0, &_call_f_setSinglePageViewMode_0); methods += new qt_gsi::GenericMethod ("setViewMode|viewMode=", "@brief Method void QPrintPreviewWidget::setViewMode(QPrintPreviewWidget::ViewMode viewMode)\n", false, &_init_f_setViewMode_3308, &_call_f_setViewMode_3308); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QPrintPreviewWidget::setVisible(bool visible)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("setZoomFactor|zoomFactor=", "@brief Method void QPrintPreviewWidget::setZoomFactor(double zoomFactor)\n", false, &_init_f_setZoomFactor_1071, &_call_f_setZoomFactor_1071); methods += new qt_gsi::GenericMethod ("setZoomMode|zoomMode=", "@brief Method void QPrintPreviewWidget::setZoomMode(QPrintPreviewWidget::ZoomMode zoomMode)\n", false, &_init_f_setZoomMode_3318, &_call_f_setZoomMode_3318); methods += new qt_gsi::GenericMethod ("updatePreview", "@brief Method void QPrintPreviewWidget::updatePreview()\n", false, &_init_f_updatePreview_0, &_call_f_updatePreview_0); diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc index 1dca8fc51..41d309b5c 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc @@ -274,7 +274,7 @@ static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () +// bool QPrinter::newPage() static void _init_f_newPage_0 (qt_gsi::GenericMethod *decl) @@ -398,7 +398,7 @@ static void _call_f_pageRect_c1789 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QPagedPaintDevice::PageSize QPrinter::pageSize() static void _init_f_pageSize_c0 (qt_gsi::GenericMethod *decl) @@ -413,7 +413,7 @@ static void _call_f_pageSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QPaintEngine *QPrinter::paintEngine() static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl) @@ -819,7 +819,7 @@ static void _call_f_setFullPage_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPagedPaintDevice::Margins &) +// void QPrinter::setMargins(const QPagedPaintDevice::Margins &m) static void _init_f_setMargins_3812 (qt_gsi::GenericMethod *decl) @@ -919,7 +919,7 @@ static void _call_f_setOutputFormat_2647 (const qt_gsi::GenericMethod * /*decl*/ } -// (const QMarginsF &, QPageLayout::Unit) +// bool QPrinter::setPageMargins(const QMarginsF &margins, QPageLayout::Unit units) static void _init_f_setPageMargins_4145 (qt_gsi::GenericMethod *decl) @@ -941,7 +941,7 @@ static void _call_f_setPageMargins_4145 (const qt_gsi::GenericMethod * /*decl*/, } -// (double, double, double, double, QPrinter::Unit) +// void QPrinter::setPageMargins(double left, double top, double right, double bottom, QPrinter::Unit unit) static void _init_f_setPageMargins_5641 (qt_gsi::GenericMethod *decl) @@ -993,7 +993,7 @@ static void _call_f_setPageOrder_2262 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QPagedPaintDevice::PageSize) +// void QPrinter::setPageSize(QPagedPaintDevice::PageSize size) static void _init_f_setPageSize_3006 (qt_gsi::GenericMethod *decl) @@ -1013,7 +1013,7 @@ static void _call_f_setPageSize_3006 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QSizeF &) +// void QPrinter::setPageSizeMM(const QSizeF &size) static void _init_f_setPageSizeMM_1875 (qt_gsi::GenericMethod *decl) @@ -1295,7 +1295,7 @@ static gsi::Methods methods_QPrinter () { methods += new qt_gsi::GenericMethod (":fullPage", "@brief Method bool QPrinter::fullPage()\n", true, &_init_f_fullPage_c0, &_call_f_fullPage_c0); methods += new qt_gsi::GenericMethod ("getPageMargins", "@brief Method void QPrinter::getPageMargins(double *left, double *top, double *right, double *bottom, QPrinter::Unit unit)\n", true, &_init_f_getPageMargins_c6385, &_call_f_getPageMargins_c6385); methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QPrinter::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod ("newPage", "@brief Method ()\nThis is a reimplementation of QPagedPaintDevice::newPage", false, &_init_f_newPage_0, &_call_f_newPage_0); + methods += new qt_gsi::GenericMethod ("newPage", "@brief Method bool QPrinter::newPage()\nThis is a reimplementation of QPagedPaintDevice::newPage", false, &_init_f_newPage_0, &_call_f_newPage_0); methods += new qt_gsi::GenericMethod (":numCopies", "@brief Method int QPrinter::numCopies()\n", true, &_init_f_numCopies_c0, &_call_f_numCopies_c0); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method QPrinter::Orientation QPrinter::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); methods += new qt_gsi::GenericMethod (":outputFileName", "@brief Method QString QPrinter::outputFileName()\n", true, &_init_f_outputFileName_c0, &_call_f_outputFileName_c0); @@ -1303,8 +1303,8 @@ static gsi::Methods methods_QPrinter () { methods += new qt_gsi::GenericMethod (":pageOrder", "@brief Method QPrinter::PageOrder QPrinter::pageOrder()\n", true, &_init_f_pageOrder_c0, &_call_f_pageOrder_c0); methods += new qt_gsi::GenericMethod ("pageRect", "@brief Method QRect QPrinter::pageRect()\n", true, &_init_f_pageRect_c0, &_call_f_pageRect_c0); methods += new qt_gsi::GenericMethod ("pageRect", "@brief Method QRectF QPrinter::pageRect(QPrinter::Unit)\n", true, &_init_f_pageRect_c1789, &_call_f_pageRect_c1789); - methods += new qt_gsi::GenericMethod (":pageSize", "@brief Method () const\n", true, &_init_f_pageSize_c0, &_call_f_pageSize_c0); - methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); + methods += new qt_gsi::GenericMethod (":pageSize", "@brief Method QPagedPaintDevice::PageSize QPrinter::pageSize()\n", true, &_init_f_pageSize_c0, &_call_f_pageSize_c0); + methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method QPaintEngine *QPrinter::paintEngine()\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); methods += new qt_gsi::GenericMethod (":paperName", "@brief Method QString QPrinter::paperName()\n", true, &_init_f_paperName_c0, &_call_f_paperName_c0); methods += new qt_gsi::GenericMethod ("paperRect", "@brief Method QRect QPrinter::paperRect()\n", true, &_init_f_paperRect_c0, &_call_f_paperRect_c0); methods += new qt_gsi::GenericMethod ("paperRect", "@brief Method QRectF QPrinter::paperRect(QPrinter::Unit)\n", true, &_init_f_paperRect_c1789, &_call_f_paperRect_c1789); @@ -1327,16 +1327,16 @@ static gsi::Methods methods_QPrinter () { methods += new qt_gsi::GenericMethod ("setFontEmbeddingEnabled|fontEmbeddingEnabled=", "@brief Method void QPrinter::setFontEmbeddingEnabled(bool enable)\n", false, &_init_f_setFontEmbeddingEnabled_864, &_call_f_setFontEmbeddingEnabled_864); methods += new qt_gsi::GenericMethod ("setFromTo", "@brief Method void QPrinter::setFromTo(int fromPage, int toPage)\n", false, &_init_f_setFromTo_1426, &_call_f_setFromTo_1426); methods += new qt_gsi::GenericMethod ("setFullPage|fullPage=", "@brief Method void QPrinter::setFullPage(bool)\n", false, &_init_f_setFullPage_864, &_call_f_setFullPage_864); - methods += new qt_gsi::GenericMethod ("setMargins|margins=", "@brief Method (const QPagedPaintDevice::Margins &)\nThis is a reimplementation of QPagedPaintDevice::setMargins", false, &_init_f_setMargins_3812, &_call_f_setMargins_3812); + methods += new qt_gsi::GenericMethod ("setMargins|margins=", "@brief Method void QPrinter::setMargins(const QPagedPaintDevice::Margins &m)\nThis is a reimplementation of QPagedPaintDevice::setMargins", false, &_init_f_setMargins_3812, &_call_f_setMargins_3812); methods += new qt_gsi::GenericMethod ("setNumCopies|numCopies=", "@brief Method void QPrinter::setNumCopies(int)\n", false, &_init_f_setNumCopies_767, &_call_f_setNumCopies_767); methods += new qt_gsi::GenericMethod ("setOrientation|orientation=", "@brief Method void QPrinter::setOrientation(QPrinter::Orientation)\n", false, &_init_f_setOrientation_2537, &_call_f_setOrientation_2537); methods += new qt_gsi::GenericMethod ("setOutputFileName|outputFileName=", "@brief Method void QPrinter::setOutputFileName(const QString &)\n", false, &_init_f_setOutputFileName_2025, &_call_f_setOutputFileName_2025); methods += new qt_gsi::GenericMethod ("setOutputFormat|outputFormat=", "@brief Method void QPrinter::setOutputFormat(QPrinter::OutputFormat format)\n", false, &_init_f_setOutputFormat_2647, &_call_f_setOutputFormat_2647); - methods += new qt_gsi::GenericMethod ("setPageMargins", "@brief Method (const QMarginsF &, QPageLayout::Unit)\n", false, &_init_f_setPageMargins_4145, &_call_f_setPageMargins_4145); - methods += new qt_gsi::GenericMethod ("setPageMargins", "@brief Method (double, double, double, double, QPrinter::Unit)\n", false, &_init_f_setPageMargins_5641, &_call_f_setPageMargins_5641); + methods += new qt_gsi::GenericMethod ("setPageMargins", "@brief Method bool QPrinter::setPageMargins(const QMarginsF &margins, QPageLayout::Unit units)\n", false, &_init_f_setPageMargins_4145, &_call_f_setPageMargins_4145); + methods += new qt_gsi::GenericMethod ("setPageMargins", "@brief Method void QPrinter::setPageMargins(double left, double top, double right, double bottom, QPrinter::Unit unit)\n", false, &_init_f_setPageMargins_5641, &_call_f_setPageMargins_5641); methods += new qt_gsi::GenericMethod ("setPageOrder|pageOrder=", "@brief Method void QPrinter::setPageOrder(QPrinter::PageOrder)\n", false, &_init_f_setPageOrder_2262, &_call_f_setPageOrder_2262); - methods += new qt_gsi::GenericMethod ("setPageSize|pageSize=", "@brief Method (QPagedPaintDevice::PageSize)\nThis is a reimplementation of QPagedPaintDevice::setPageSize", false, &_init_f_setPageSize_3006, &_call_f_setPageSize_3006); - methods += new qt_gsi::GenericMethod ("setPageSizeMM|pageSizeMM=", "@brief Method (const QSizeF &)\nThis is a reimplementation of QPagedPaintDevice::setPageSizeMM", false, &_init_f_setPageSizeMM_1875, &_call_f_setPageSizeMM_1875); + methods += new qt_gsi::GenericMethod ("setPageSize|pageSize=", "@brief Method void QPrinter::setPageSize(QPagedPaintDevice::PageSize size)\nThis is a reimplementation of QPagedPaintDevice::setPageSize", false, &_init_f_setPageSize_3006, &_call_f_setPageSize_3006); + methods += new qt_gsi::GenericMethod ("setPageSizeMM|pageSizeMM=", "@brief Method void QPrinter::setPageSizeMM(const QSizeF &size)\nThis is a reimplementation of QPagedPaintDevice::setPageSizeMM", false, &_init_f_setPageSizeMM_1875, &_call_f_setPageSizeMM_1875); methods += new qt_gsi::GenericMethod ("setPaperName|paperName=", "@brief Method void QPrinter::setPaperName(const QString &paperName)\n", false, &_init_f_setPaperName_2025, &_call_f_setPaperName_2025); methods += new qt_gsi::GenericMethod ("setPaperSize|paperSize=", "@brief Method void QPrinter::setPaperSize(QPagedPaintDevice::PageSize)\n", false, &_init_f_setPaperSize_3006, &_call_f_setPaperSize_3006); methods += new qt_gsi::GenericMethod ("setPaperSize", "@brief Method void QPrinter::setPaperSize(const QSizeF &paperSize, QPrinter::Unit unit)\n", false, &_init_f_setPaperSize_3556, &_call_f_setPaperSize_3556); diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc index 95180084e..f0c81eab8 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc @@ -79,7 +79,7 @@ static void _call_ctor_QSqlIndex_2202 (const qt_gsi::GenericStaticMethod * /*dec } -// (const QSqlField &) +// void QSqlIndex::append(const QSqlField &field) static void _init_f_append_2182 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_append_2182 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QSqlField &, bool) +// void QSqlIndex::append(const QSqlField &field, bool desc) static void _init_f_append_2938 (qt_gsi::GenericMethod *decl) @@ -171,7 +171,7 @@ static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QSqlIndex &) +// QSqlIndex &QSqlIndex::operator=(const QSqlIndex &other) static void _init_f_operator_eq__2202 (qt_gsi::GenericMethod *decl) @@ -261,12 +261,12 @@ static gsi::Methods methods_QSqlIndex () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSqlIndex::QSqlIndex(const QString &cursorName, const QString &name)\nThis method creates an object of class QSqlIndex.", &_init_ctor_QSqlIndex_3942, &_call_ctor_QSqlIndex_3942); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSqlIndex::QSqlIndex(const QSqlIndex &other)\nThis method creates an object of class QSqlIndex.", &_init_ctor_QSqlIndex_2202, &_call_ctor_QSqlIndex_2202); - methods += new qt_gsi::GenericMethod ("append", "@brief Method (const QSqlField &)\n", false, &_init_f_append_2182, &_call_f_append_2182); - methods += new qt_gsi::GenericMethod ("append", "@brief Method (const QSqlField &, bool)\n", false, &_init_f_append_2938, &_call_f_append_2938); + methods += new qt_gsi::GenericMethod ("append", "@brief Method void QSqlIndex::append(const QSqlField &field)\n", false, &_init_f_append_2182, &_call_f_append_2182); + methods += new qt_gsi::GenericMethod ("append", "@brief Method void QSqlIndex::append(const QSqlField &field, bool desc)\n", false, &_init_f_append_2938, &_call_f_append_2938); methods += new qt_gsi::GenericMethod (":cursorName", "@brief Method QString QSqlIndex::cursorName()\n", true, &_init_f_cursorName_c0, &_call_f_cursorName_c0); methods += new qt_gsi::GenericMethod ("isDescending?", "@brief Method bool QSqlIndex::isDescending(int i)\n", true, &_init_f_isDescending_c767, &_call_f_isDescending_c767); methods += new qt_gsi::GenericMethod (":name", "@brief Method QString QSqlIndex::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QSqlIndex &)\n", false, &_init_f_operator_eq__2202, &_call_f_operator_eq__2202); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QSqlIndex &QSqlIndex::operator=(const QSqlIndex &other)\n", false, &_init_f_operator_eq__2202, &_call_f_operator_eq__2202); methods += new qt_gsi::GenericMethod ("setCursorName|cursorName=", "@brief Method void QSqlIndex::setCursorName(const QString &cursorName)\n", false, &_init_f_setCursorName_2025, &_call_f_setCursorName_2025); methods += new qt_gsi::GenericMethod ("setDescending", "@brief Method void QSqlIndex::setDescending(int i, bool desc)\n", false, &_init_f_setDescending_1523, &_call_f_setDescending_1523); methods += new qt_gsi::GenericMethod ("setName|name=", "@brief Method void QSqlIndex::setName(const QString &name)\n", false, &_init_f_setName_2025, &_call_f_setName_2025); diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc index b79473e74..64b6a37b3 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc @@ -64,7 +64,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &) const +// bool QSqlQueryModel::canFetchMore(const QModelIndex &parent) static void _init_f_canFetchMore_c2395 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &) const +// int QSqlQueryModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int) const +// QVariant QSqlQueryModel::data(const QModelIndex &item, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -140,7 +140,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QModelIndex &) +// void QSqlQueryModel::fetchMore(const QModelIndex &parent) static void _init_f_fetchMore_2395 (qt_gsi::GenericMethod *decl) @@ -160,7 +160,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, Qt::Orientation, int) const +// QVariant QSqlQueryModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -185,7 +185,7 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int, int, const QModelIndex &) +// bool QSqlQueryModel::insertColumns(int column, int count, const QModelIndex &parent) static void _init_f_insertColumns_3713 (qt_gsi::GenericMethod *decl) @@ -274,7 +274,7 @@ static void _call_f_record_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int, int, const QModelIndex &) +// bool QSqlQueryModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -299,7 +299,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &) const +// int QSqlQueryModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -318,7 +318,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, Qt::Orientation, const QVariant &, int) +// bool QSqlQueryModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role) static void _init_f_setHeaderData_5242 (qt_gsi::GenericMethod *decl) @@ -445,20 +445,20 @@ namespace gsi static gsi::Methods methods_QSqlQueryModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); + methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method bool QSqlQueryModel::canFetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QSqlQueryModel::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); - methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QSqlQueryModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QSqlQueryModel::data(const QModelIndex &item, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method void QSqlQueryModel::fetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QSqlQueryModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("insertColumns", "@brief Method bool QSqlQueryModel::insertColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertColumns", false, &_init_f_insertColumns_3713, &_call_f_insertColumns_3713); methods += new qt_gsi::GenericMethod ("lastError", "@brief Method QSqlError QSqlQueryModel::lastError()\n", true, &_init_f_lastError_c0, &_call_f_lastError_c0); methods += new qt_gsi::GenericMethod (":query", "@brief Method QSqlQuery QSqlQueryModel::query()\n", true, &_init_f_query_c0, &_call_f_query_c0); methods += new qt_gsi::GenericMethod ("record", "@brief Method QSqlRecord QSqlQueryModel::record(int row)\n", true, &_init_f_record_c767, &_call_f_record_c767); methods += new qt_gsi::GenericMethod ("record", "@brief Method QSqlRecord QSqlQueryModel::record()\n", true, &_init_f_record_c0, &_call_f_record_c0); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method (int, Qt::Orientation, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QSqlQueryModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QSqlQueryModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setHeaderData", "@brief Method bool QSqlQueryModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setHeaderData", false, &_init_f_setHeaderData_5242, &_call_f_setHeaderData_5242); methods += new qt_gsi::GenericMethod ("setQuery|query=", "@brief Method void QSqlQueryModel::setQuery(const QSqlQuery &query)\n", false, &_init_f_setQuery_2232, &_call_f_setQuery_2232); methods += new qt_gsi::GenericMethod ("setQuery", "@brief Method void QSqlQueryModel::setQuery(const QString &query, const QSqlDatabase &db)\n", false, &_init_f_setQuery_4404, &_call_f_setQuery_4404); methods += gsi::qt_signal & > ("dataChanged(const QModelIndex &, const QModelIndex &, const QVector &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), gsi::arg("roles"), "@brief Signal declaration for QSqlQueryModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc index 40ba2cc3e..bbcfa346b 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc @@ -67,7 +67,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () +// void QSqlRelationalTableModel::clear() static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) @@ -83,7 +83,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &, int) const +// QVariant QSqlRelationalTableModel::data(const QModelIndex &item, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -143,7 +143,7 @@ static void _call_f_relationModel_c767 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QSqlRelationalTableModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -168,7 +168,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) +// void QSqlRelationalTableModel::revertRow(int row) static void _init_f_revertRow_767 (qt_gsi::GenericMethod *decl) @@ -188,7 +188,7 @@ static void _call_f_revertRow_767 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// bool QSqlRelationalTableModel::select() static void _init_f_select_0 (qt_gsi::GenericMethod *decl) @@ -203,7 +203,7 @@ static void _call_f_select_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &, const QVariant &, int) +// bool QSqlRelationalTableModel::setData(const QModelIndex &item, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -271,7 +271,7 @@ static void _call_f_setRelation_3187 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QString &) +// void QSqlRelationalTableModel::setTable(const QString &tableName) static void _init_f_setTable_2025 (qt_gsi::GenericMethod *decl) @@ -347,17 +347,17 @@ namespace gsi static gsi::Methods methods_QSqlRelationalTableModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method ()\nThis is a reimplementation of QSqlTableModel::clear", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QSqlTableModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QSqlRelationalTableModel::clear()\nThis is a reimplementation of QSqlTableModel::clear", false, &_init_f_clear_0, &_call_f_clear_0); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QSqlRelationalTableModel::data(const QModelIndex &item, int role)\nThis is a reimplementation of QSqlTableModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); methods += new qt_gsi::GenericMethod ("relation", "@brief Method QSqlRelation QSqlRelationalTableModel::relation(int column)\n", true, &_init_f_relation_c767, &_call_f_relation_c767); methods += new qt_gsi::GenericMethod ("relationModel", "@brief Method QSqlTableModel *QSqlRelationalTableModel::relationModel(int column)\n", true, &_init_f_relationModel_c767, &_call_f_relationModel_c767); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QSqlTableModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("revertRow", "@brief Method (int)\nThis is a reimplementation of QSqlTableModel::revertRow", false, &_init_f_revertRow_767, &_call_f_revertRow_767); - methods += new qt_gsi::GenericMethod ("select", "@brief Method ()\nThis is a reimplementation of QSqlTableModel::select", false, &_init_f_select_0, &_call_f_select_0); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QSqlTableModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QSqlRelationalTableModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QSqlTableModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("revertRow", "@brief Method void QSqlRelationalTableModel::revertRow(int row)\nThis is a reimplementation of QSqlTableModel::revertRow", false, &_init_f_revertRow_767, &_call_f_revertRow_767); + methods += new qt_gsi::GenericMethod ("select", "@brief Method bool QSqlRelationalTableModel::select()\nThis is a reimplementation of QSqlTableModel::select", false, &_init_f_select_0, &_call_f_select_0); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QSqlRelationalTableModel::setData(const QModelIndex &item, const QVariant &value, int role)\nThis is a reimplementation of QSqlTableModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setJoinMode", "@brief Method void QSqlRelationalTableModel::setJoinMode(QSqlRelationalTableModel::JoinMode joinMode)\n", false, &_init_f_setJoinMode_3746, &_call_f_setJoinMode_3746); methods += new qt_gsi::GenericMethod ("setRelation", "@brief Method void QSqlRelationalTableModel::setRelation(int column, const QSqlRelation &relation)\n", false, &_init_f_setRelation_3187, &_call_f_setRelation_3187); - methods += new qt_gsi::GenericMethod ("setTable", "@brief Method (const QString &)\nThis is a reimplementation of QSqlTableModel::setTable", false, &_init_f_setTable_2025, &_call_f_setTable_2025); + methods += new qt_gsi::GenericMethod ("setTable", "@brief Method void QSqlRelationalTableModel::setTable(const QString &tableName)\nThis is a reimplementation of QSqlTableModel::setTable", false, &_init_f_setTable_2025, &_call_f_setTable_2025); methods += gsi::qt_signal ("beforeDelete(int)", "beforeDelete", gsi::arg("row"), "@brief Signal declaration for QSqlRelationalTableModel::beforeDelete(int row)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("beforeInsert(QSqlRecord &)", "beforeInsert", gsi::arg("record"), "@brief Signal declaration for QSqlRelationalTableModel::beforeInsert(QSqlRecord &record)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("beforeUpdate(int, QSqlRecord &)", "beforeUpdate", gsi::arg("row"), gsi::arg("record"), "@brief Signal declaration for QSqlRelationalTableModel::beforeUpdate(int row, QSqlRecord &record)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc index 9fdcb4015..e7e3db430 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc @@ -65,7 +65,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () +// void QSqlTableModel::clear() static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) @@ -81,7 +81,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QModelIndex &, int) const +// QVariant QSqlTableModel::data(const QModelIndex &idx, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -167,7 +167,7 @@ static void _call_f_filter_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QModelIndex &) const +// QFlags QSqlTableModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -186,7 +186,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, Qt::Orientation, int) const +// QVariant QSqlTableModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -233,7 +233,7 @@ static void _call_f_insertRecord_2964 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, int, const QModelIndex &) +// bool QSqlTableModel::insertRows(int row, int count, const QModelIndex &parent) static void _init_f_insertRows_3713 (qt_gsi::GenericMethod *decl) @@ -307,7 +307,7 @@ static void _call_f_primaryKey_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSqlRecord QSqlTableModel::record() static void _init_f_record_c0 (qt_gsi::GenericMethod *decl) @@ -322,7 +322,7 @@ static void _call_f_record_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int) const +// QSqlRecord QSqlTableModel::record(int row) static void _init_f_record_c767 (qt_gsi::GenericMethod *decl) @@ -341,7 +341,7 @@ static void _call_f_record_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int, int, const QModelIndex &) +// bool QSqlTableModel::removeColumns(int column, int count, const QModelIndex &parent) static void _init_f_removeColumns_3713 (qt_gsi::GenericMethod *decl) @@ -366,7 +366,7 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, } -// (int, int, const QModelIndex &) +// bool QSqlTableModel::removeRows(int row, int count, const QModelIndex &parent) static void _init_f_removeRows_3713 (qt_gsi::GenericMethod *decl) @@ -391,7 +391,7 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () +// void QSqlTableModel::revert() static void _init_f_revert_0 (qt_gsi::GenericMethod *decl) @@ -443,7 +443,7 @@ static void _call_f_revertRow_767 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// int QSqlTableModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -496,7 +496,7 @@ static void _call_f_selectRow_767 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, const QVariant &, int) +// bool QSqlTableModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -626,7 +626,7 @@ static void _call_f_setTable_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int, Qt::SortOrder) +// void QSqlTableModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -649,7 +649,7 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () +// bool QSqlTableModel::submit() static void _init_f_submit_0 (qt_gsi::GenericMethod *decl) @@ -750,37 +750,37 @@ namespace gsi static gsi::Methods methods_QSqlTableModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method ()\nThis is a reimplementation of QSqlQueryModel::clear", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QSqlQueryModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QSqlTableModel::clear()\nThis is a reimplementation of QSqlQueryModel::clear", false, &_init_f_clear_0, &_call_f_clear_0); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QSqlTableModel::data(const QModelIndex &idx, int role)\nThis is a reimplementation of QSqlQueryModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); methods += new qt_gsi::GenericMethod ("database", "@brief Method QSqlDatabase QSqlTableModel::database()\n", true, &_init_f_database_c0, &_call_f_database_c0); methods += new qt_gsi::GenericMethod (":editStrategy", "@brief Method QSqlTableModel::EditStrategy QSqlTableModel::editStrategy()\n", true, &_init_f_editStrategy_c0, &_call_f_editStrategy_c0); methods += new qt_gsi::GenericMethod ("fieldIndex", "@brief Method int QSqlTableModel::fieldIndex(const QString &fieldName)\n", true, &_init_f_fieldIndex_c2025, &_call_f_fieldIndex_c2025); methods += new qt_gsi::GenericMethod (":filter", "@brief Method QString QSqlTableModel::filter()\n", true, &_init_f_filter_c0, &_call_f_filter_c0); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractTableModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QSqlQueryModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QSqlTableModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractTableModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QSqlTableModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QSqlQueryModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); methods += new qt_gsi::GenericMethod ("insertRecord", "@brief Method bool QSqlTableModel::insertRecord(int row, const QSqlRecord &record)\n", false, &_init_f_insertRecord_2964, &_call_f_insertRecord_2964); - methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); + methods += new qt_gsi::GenericMethod ("insertRows", "@brief Method bool QSqlTableModel::insertRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::insertRows", false, &_init_f_insertRows_3713, &_call_f_insertRows_3713); methods += new qt_gsi::GenericMethod ("isDirty?", "@brief Method bool QSqlTableModel::isDirty()\n", true, &_init_f_isDirty_c0, &_call_f_isDirty_c0); methods += new qt_gsi::GenericMethod ("isDirty?", "@brief Method bool QSqlTableModel::isDirty(const QModelIndex &index)\n", true, &_init_f_isDirty_c2395, &_call_f_isDirty_c2395); methods += new qt_gsi::GenericMethod ("primaryKey", "@brief Method QSqlIndex QSqlTableModel::primaryKey()\n", true, &_init_f_primaryKey_c0, &_call_f_primaryKey_c0); - methods += new qt_gsi::GenericMethod ("record", "@brief Method () const\n", true, &_init_f_record_c0, &_call_f_record_c0); - methods += new qt_gsi::GenericMethod ("record", "@brief Method (int) const\n", true, &_init_f_record_c767, &_call_f_record_c767); - methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QSqlQueryModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); - methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method (int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); - methods += new qt_gsi::GenericMethod ("revert", "@brief Method ()\nThis is a reimplementation of QAbstractItemModel::revert", false, &_init_f_revert_0, &_call_f_revert_0); + methods += new qt_gsi::GenericMethod ("record", "@brief Method QSqlRecord QSqlTableModel::record()\n", true, &_init_f_record_c0, &_call_f_record_c0); + methods += new qt_gsi::GenericMethod ("record", "@brief Method QSqlRecord QSqlTableModel::record(int row)\n", true, &_init_f_record_c767, &_call_f_record_c767); + methods += new qt_gsi::GenericMethod ("removeColumns", "@brief Method bool QSqlTableModel::removeColumns(int column, int count, const QModelIndex &parent)\nThis is a reimplementation of QSqlQueryModel::removeColumns", false, &_init_f_removeColumns_3713, &_call_f_removeColumns_3713); + methods += new qt_gsi::GenericMethod ("removeRows", "@brief Method bool QSqlTableModel::removeRows(int row, int count, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::removeRows", false, &_init_f_removeRows_3713, &_call_f_removeRows_3713); + methods += new qt_gsi::GenericMethod ("revert", "@brief Method void QSqlTableModel::revert()\nThis is a reimplementation of QAbstractItemModel::revert", false, &_init_f_revert_0, &_call_f_revert_0); methods += new qt_gsi::GenericMethod ("revertAll", "@brief Method void QSqlTableModel::revertAll()\n", false, &_init_f_revertAll_0, &_call_f_revertAll_0); methods += new qt_gsi::GenericMethod ("revertRow", "@brief Method void QSqlTableModel::revertRow(int row)\n", false, &_init_f_revertRow_767, &_call_f_revertRow_767); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QSqlQueryModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QSqlTableModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QSqlQueryModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); methods += new qt_gsi::GenericMethod ("select", "@brief Method bool QSqlTableModel::select()\n", false, &_init_f_select_0, &_call_f_select_0); methods += new qt_gsi::GenericMethod ("selectRow", "@brief Method bool QSqlTableModel::selectRow(int row)\n", false, &_init_f_selectRow_767, &_call_f_selectRow_767); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QSqlTableModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setEditStrategy|editStrategy=", "@brief Method void QSqlTableModel::setEditStrategy(QSqlTableModel::EditStrategy strategy)\n", false, &_init_f_setEditStrategy_3163, &_call_f_setEditStrategy_3163); methods += new qt_gsi::GenericMethod ("setFilter|filter=", "@brief Method void QSqlTableModel::setFilter(const QString &filter)\n", false, &_init_f_setFilter_2025, &_call_f_setFilter_2025); methods += new qt_gsi::GenericMethod ("setRecord", "@brief Method bool QSqlTableModel::setRecord(int row, const QSqlRecord &record)\n", false, &_init_f_setRecord_2964, &_call_f_setRecord_2964); methods += new qt_gsi::GenericMethod ("setSort", "@brief Method void QSqlTableModel::setSort(int column, Qt::SortOrder order)\n", false, &_init_f_setSort_2340, &_call_f_setSort_2340); methods += new qt_gsi::GenericMethod ("setTable", "@brief Method void QSqlTableModel::setTable(const QString &tableName)\n", false, &_init_f_setTable_2025, &_call_f_setTable_2025); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); - methods += new qt_gsi::GenericMethod ("submit", "@brief Method ()\nThis is a reimplementation of QAbstractItemModel::submit", false, &_init_f_submit_0, &_call_f_submit_0); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QSqlTableModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("submit", "@brief Method bool QSqlTableModel::submit()\nThis is a reimplementation of QAbstractItemModel::submit", false, &_init_f_submit_0, &_call_f_submit_0); methods += new qt_gsi::GenericMethod ("submitAll", "@brief Method bool QSqlTableModel::submitAll()\n", false, &_init_f_submitAll_0, &_call_f_submitAll_0); methods += new qt_gsi::GenericMethod ("tableName", "@brief Method QString QSqlTableModel::tableName()\n", true, &_init_f_tableName_c0, &_call_f_tableName_c0); methods += gsi::qt_signal ("beforeDelete(int)", "beforeDelete", gsi::arg("row"), "@brief Signal declaration for QSqlTableModel::beforeDelete(int row)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc index f2c4a6c4f..4e36d02db 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc @@ -82,7 +82,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// QRectF QGraphicsSvgItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -142,7 +142,7 @@ static void _call_f_maximumCacheSize_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsSvgItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -263,7 +263,7 @@ static void _call_f_setSharedRenderer_1830 (const qt_gsi::GenericMethod * /*decl } -// () const +// int QGraphicsSvgItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -334,17 +334,17 @@ namespace gsi static gsi::Methods methods_QGraphicsSvgItem () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsSvgItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); methods += new qt_gsi::GenericMethod (":elementId", "@brief Method QString QGraphicsSvgItem::elementId()\n", true, &_init_f_elementId_c0, &_call_f_elementId_c0); methods += new qt_gsi::GenericMethod ("isCachingEnabled?|:cachingEnabled", "@brief Method bool QGraphicsSvgItem::isCachingEnabled()\n", true, &_init_f_isCachingEnabled_c0, &_call_f_isCachingEnabled_c0); methods += new qt_gsi::GenericMethod (":maximumCacheSize", "@brief Method QSize QGraphicsSvgItem::maximumCacheSize()\n", true, &_init_f_maximumCacheSize_c0, &_call_f_maximumCacheSize_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsSvgItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod ("renderer", "@brief Method QSvgRenderer *QGraphicsSvgItem::renderer()\n", true, &_init_f_renderer_c0, &_call_f_renderer_c0); methods += new qt_gsi::GenericMethod ("setCachingEnabled|cachingEnabled=", "@brief Method void QGraphicsSvgItem::setCachingEnabled(bool)\n", false, &_init_f_setCachingEnabled_864, &_call_f_setCachingEnabled_864); methods += new qt_gsi::GenericMethod ("setElementId|elementId=", "@brief Method void QGraphicsSvgItem::setElementId(const QString &id)\n", false, &_init_f_setElementId_2025, &_call_f_setElementId_2025); methods += new qt_gsi::GenericMethod ("setMaximumCacheSize|maximumCacheSize=", "@brief Method void QGraphicsSvgItem::setMaximumCacheSize(const QSize &size)\n", false, &_init_f_setMaximumCacheSize_1805, &_call_f_setMaximumCacheSize_1805); methods += new qt_gsi::GenericMethod ("setSharedRenderer", "@brief Method void QGraphicsSvgItem::setSharedRenderer(QSvgRenderer *renderer)\n", false, &_init_f_setSharedRenderer_1830, &_call_f_setSharedRenderer_1830); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsSvgItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); methods += gsi::qt_signal ("childrenChanged()", "childrenChanged", "@brief Signal declaration for QGraphicsSvgItem::childrenChanged()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QGraphicsSvgItem::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("enabledChanged()", "enabledChanged", "@brief Signal declaration for QGraphicsSvgItem::enabledChanged()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc index a0f5fa59f..49f62ed5c 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc @@ -156,7 +156,7 @@ static void _call_f_renderer_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QSize QSvgWidget::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -230,7 +230,7 @@ static gsi::Methods methods_QSvgWidget () { methods += new qt_gsi::GenericMethod ("load", "@brief Method void QSvgWidget::load(const QString &file)\n", false, &_init_f_load_2025, &_call_f_load_2025); methods += new qt_gsi::GenericMethod ("load", "@brief Method void QSvgWidget::load(const QByteArray &contents)\n", false, &_init_f_load_2309, &_call_f_load_2309); methods += new qt_gsi::GenericMethod ("renderer", "@brief Method QSvgRenderer *QSvgWidget::renderer()\n", true, &_init_f_renderer_c0, &_call_f_renderer_c0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QSvgWidget::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QSvgWidget::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QSvgWidget::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("windowIconChanged(const QIcon &)", "windowIconChanged", gsi::arg("icon"), "@brief Signal declaration for QSvgWidget::windowIconChanged(const QIcon &icon)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc index 6e8b04986..2a9f9e634 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc @@ -80,7 +80,7 @@ static void _call_f_brush_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QGraphicsItem *) const +// bool QAbstractGraphicsShapeItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QAbstractGraphicsShapeItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -175,8 +175,8 @@ namespace gsi static gsi::Methods methods_QAbstractGraphicsShapeItem () { gsi::Methods methods; methods += new qt_gsi::GenericMethod (":brush", "@brief Method QBrush QAbstractGraphicsShapeItem::brush()\n", true, &_init_f_brush_c0, &_call_f_brush_c0); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QAbstractGraphicsShapeItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QAbstractGraphicsShapeItem::opaqueArea()\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); methods += new qt_gsi::GenericMethod (":pen", "@brief Method QPen QAbstractGraphicsShapeItem::pen()\n", true, &_init_f_pen_c0, &_call_f_pen_c0); methods += new qt_gsi::GenericMethod ("setBrush|brush=", "@brief Method void QAbstractGraphicsShapeItem::setBrush(const QBrush &brush)\n", false, &_init_f_setBrush_1910, &_call_f_setBrush_1910); methods += new qt_gsi::GenericMethod ("setPen|pen=", "@brief Method void QAbstractGraphicsShapeItem::setPen(const QPen &pen)\n", false, &_init_f_setPen_1685, &_call_f_setPen_1685); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc index 6c740fbbe..1059c856c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc @@ -383,7 +383,7 @@ static void _call_f_indexWidget_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (Qt::InputMethodQuery) const +// QVariant QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery query) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -1267,7 +1267,7 @@ static void _call_f_textElideMode_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QRegion &) +// void QAbstractItemView::update(const QRegion &) static void _init_f_update_2006 (qt_gsi::GenericMethod *decl) @@ -1287,7 +1287,7 @@ static void _call_f_update_2006 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) +// void QAbstractItemView::update(const QModelIndex &index) static void _init_f_update_2395 (qt_gsi::GenericMethod *decl) @@ -1414,7 +1414,7 @@ static gsi::Methods methods_QAbstractItemView () { methods += new qt_gsi::GenericMethod (":iconSize", "@brief Method QSize QAbstractItemView::iconSize()\n", true, &_init_f_iconSize_c0, &_call_f_iconSize_c0); methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method QModelIndex QAbstractItemView::indexAt(const QPoint &point)\n", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); methods += new qt_gsi::GenericMethod ("indexWidget", "@brief Method QWidget *QAbstractItemView::indexWidget(const QModelIndex &index)\n", true, &_init_f_indexWidget_c2395, &_call_f_indexWidget_c2395); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery query)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); methods += new qt_gsi::GenericMethod (":itemDelegate", "@brief Method QAbstractItemDelegate *QAbstractItemView::itemDelegate()\n", true, &_init_f_itemDelegate_c0, &_call_f_itemDelegate_c0); methods += new qt_gsi::GenericMethod ("itemDelegate", "@brief Method QAbstractItemDelegate *QAbstractItemView::itemDelegate(const QModelIndex &index)\n", true, &_init_f_itemDelegate_c2395, &_call_f_itemDelegate_c2395); methods += new qt_gsi::GenericMethod ("itemDelegateForColumn", "@brief Method QAbstractItemDelegate *QAbstractItemView::itemDelegateForColumn(int column)\n", true, &_init_f_itemDelegateForColumn_c767, &_call_f_itemDelegateForColumn_c767); @@ -1461,8 +1461,8 @@ static gsi::Methods methods_QAbstractItemView () { methods += new qt_gsi::GenericMethod ("sizeHintForRow", "@brief Method int QAbstractItemView::sizeHintForRow(int row)\n", true, &_init_f_sizeHintForRow_c767, &_call_f_sizeHintForRow_c767); methods += new qt_gsi::GenericMethod (":tabKeyNavigation", "@brief Method bool QAbstractItemView::tabKeyNavigation()\n", true, &_init_f_tabKeyNavigation_c0, &_call_f_tabKeyNavigation_c0); methods += new qt_gsi::GenericMethod (":textElideMode", "@brief Method Qt::TextElideMode QAbstractItemView::textElideMode()\n", true, &_init_f_textElideMode_c0, &_call_f_textElideMode_c0); - methods += new qt_gsi::GenericMethod ("update", "@brief Method (const QRegion &)\n", false, &_init_f_update_2006, &_call_f_update_2006); - methods += new qt_gsi::GenericMethod ("update", "@brief Method (const QModelIndex &)\n", false, &_init_f_update_2395, &_call_f_update_2395); + methods += new qt_gsi::GenericMethod ("update", "@brief Method void QAbstractItemView::update(const QRegion &)\n", false, &_init_f_update_2006, &_call_f_update_2006); + methods += new qt_gsi::GenericMethod ("update", "@brief Method void QAbstractItemView::update(const QModelIndex &index)\n", false, &_init_f_update_2395, &_call_f_update_2395); methods += new qt_gsi::GenericMethod (":verticalScrollMode", "@brief Method QAbstractItemView::ScrollMode QAbstractItemView::verticalScrollMode()\n", true, &_init_f_verticalScrollMode_c0, &_call_f_verticalScrollMode_c0); methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method QRect QAbstractItemView::visualRect(const QModelIndex &index)\n", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); methods += gsi::qt_signal ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QAbstractItemView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc index 83641bd76..e7456f273 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc @@ -185,7 +185,7 @@ static void _call_f_maximumViewportSize_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// QSize QAbstractScrollArea::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -394,7 +394,7 @@ static void _call_f_sizeAdjustPolicy_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QAbstractScrollArea::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -515,7 +515,7 @@ static gsi::Methods methods_QAbstractScrollArea () { methods += new qt_gsi::GenericMethod (":horizontalScrollBar", "@brief Method QScrollBar *QAbstractScrollArea::horizontalScrollBar()\n", true, &_init_f_horizontalScrollBar_c0, &_call_f_horizontalScrollBar_c0); methods += new qt_gsi::GenericMethod (":horizontalScrollBarPolicy", "@brief Method Qt::ScrollBarPolicy QAbstractScrollArea::horizontalScrollBarPolicy()\n", true, &_init_f_horizontalScrollBarPolicy_c0, &_call_f_horizontalScrollBarPolicy_c0); methods += new qt_gsi::GenericMethod ("maximumViewportSize", "@brief Method QSize QAbstractScrollArea::maximumViewportSize()\n", true, &_init_f_maximumViewportSize_c0, &_call_f_maximumViewportSize_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QAbstractScrollArea::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("scrollBarWidgets", "@brief Method QList QAbstractScrollArea::scrollBarWidgets(QFlags alignment)\n", false, &_init_f_scrollBarWidgets_2750, &_call_f_scrollBarWidgets_2750); methods += new qt_gsi::GenericMethod ("setCornerWidget|cornerWidget=", "@brief Method void QAbstractScrollArea::setCornerWidget(QWidget *widget)\n", false, &_init_f_setCornerWidget_1315, &_call_f_setCornerWidget_1315); methods += new qt_gsi::GenericMethod ("setHorizontalScrollBar|horizontalScrollBar=", "@brief Method void QAbstractScrollArea::setHorizontalScrollBar(QScrollBar *scrollbar)\n", false, &_init_f_setHorizontalScrollBar_1603, &_call_f_setHorizontalScrollBar_1603); @@ -526,7 +526,7 @@ static gsi::Methods methods_QAbstractScrollArea () { methods += new qt_gsi::GenericMethod ("setViewport|viewport=", "@brief Method void QAbstractScrollArea::setViewport(QWidget *widget)\n", false, &_init_f_setViewport_1315, &_call_f_setViewport_1315); methods += new qt_gsi::GenericMethod ("setupViewport", "@brief Method void QAbstractScrollArea::setupViewport(QWidget *viewport)\n", false, &_init_f_setupViewport_1315, &_call_f_setupViewport_1315); methods += new qt_gsi::GenericMethod (":sizeAdjustPolicy", "@brief Method QAbstractScrollArea::SizeAdjustPolicy QAbstractScrollArea::sizeAdjustPolicy()\n", true, &_init_f_sizeAdjustPolicy_c0, &_call_f_sizeAdjustPolicy_c0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QAbstractScrollArea::sizeHint()\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":verticalScrollBar", "@brief Method QScrollBar *QAbstractScrollArea::verticalScrollBar()\n", true, &_init_f_verticalScrollBar_c0, &_call_f_verticalScrollBar_c0); methods += new qt_gsi::GenericMethod (":verticalScrollBarPolicy", "@brief Method Qt::ScrollBarPolicy QAbstractScrollArea::verticalScrollBarPolicy()\n", true, &_init_f_verticalScrollBarPolicy_c0, &_call_f_verticalScrollBarPolicy_c0); methods += new qt_gsi::GenericMethod (":viewport", "@brief Method QWidget *QAbstractScrollArea::viewport()\n", true, &_init_f_viewport_c0, &_call_f_viewport_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc index 76081ea7b..4aad1981f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc @@ -163,7 +163,7 @@ static void _call_f_correctionMode_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QEvent *) +// bool QAbstractSpinBox::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -232,7 +232,7 @@ static void _call_f_hasFrame_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (Qt::InputMethodQuery) const +// QVariant QAbstractSpinBox::inputMethodQuery(Qt::InputMethodQuery) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -327,7 +327,7 @@ static void _call_f_keyboardTracking_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QAbstractSpinBox::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -558,7 +558,7 @@ static void _call_f_setWrapping_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QAbstractSpinBox::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -752,17 +752,17 @@ static gsi::Methods methods_QAbstractSpinBox () { methods += new qt_gsi::GenericMethod (":buttonSymbols", "@brief Method QAbstractSpinBox::ButtonSymbols QAbstractSpinBox::buttonSymbols()\n", true, &_init_f_buttonSymbols_c0, &_call_f_buttonSymbols_c0); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QAbstractSpinBox::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); methods += new qt_gsi::GenericMethod (":correctionMode", "@brief Method QAbstractSpinBox::CorrectionMode QAbstractSpinBox::correctionMode()\n", true, &_init_f_correctionMode_c0, &_call_f_correctionMode_c0); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QAbstractSpinBox::event(QEvent *event)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); methods += new qt_gsi::GenericMethod ("fixup", "@brief Method void QAbstractSpinBox::fixup(QString &input)\n", true, &_init_f_fixup_c1330, &_call_f_fixup_c1330); methods += new qt_gsi::GenericMethod ("hasAcceptableInput|:acceptableInput", "@brief Method bool QAbstractSpinBox::hasAcceptableInput()\n", true, &_init_f_hasAcceptableInput_c0, &_call_f_hasAcceptableInput_c0); methods += new qt_gsi::GenericMethod ("hasFrame|:frame", "@brief Method bool QAbstractSpinBox::hasFrame()\n", true, &_init_f_hasFrame_c0, &_call_f_hasFrame_c0); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QAbstractSpinBox::inputMethodQuery(Qt::InputMethodQuery)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); methods += new qt_gsi::GenericMethod ("interpretText", "@brief Method void QAbstractSpinBox::interpretText()\n", false, &_init_f_interpretText_0, &_call_f_interpretText_0); methods += new qt_gsi::GenericMethod ("isAccelerated?|:accelerated", "@brief Method bool QAbstractSpinBox::isAccelerated()\n", true, &_init_f_isAccelerated_c0, &_call_f_isAccelerated_c0); methods += new qt_gsi::GenericMethod ("isGroupSeparatorShown?|:groupSeparatorShown", "@brief Method bool QAbstractSpinBox::isGroupSeparatorShown()\n", true, &_init_f_isGroupSeparatorShown_c0, &_call_f_isGroupSeparatorShown_c0); methods += new qt_gsi::GenericMethod ("isReadOnly?|:readOnly", "@brief Method bool QAbstractSpinBox::isReadOnly()\n", true, &_init_f_isReadOnly_c0, &_call_f_isReadOnly_c0); methods += new qt_gsi::GenericMethod (":keyboardTracking", "@brief Method bool QAbstractSpinBox::keyboardTracking()\n", true, &_init_f_keyboardTracking_c0, &_call_f_keyboardTracking_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QAbstractSpinBox::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method void QAbstractSpinBox::selectAll()\n", false, &_init_f_selectAll_0, &_call_f_selectAll_0); methods += new qt_gsi::GenericMethod ("setAccelerated|accelerated=", "@brief Method void QAbstractSpinBox::setAccelerated(bool on)\n", false, &_init_f_setAccelerated_864, &_call_f_setAccelerated_864); methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QAbstractSpinBox::setAlignment(QFlags flag)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); @@ -774,7 +774,7 @@ static gsi::Methods methods_QAbstractSpinBox () { methods += new qt_gsi::GenericMethod ("setReadOnly|readOnly=", "@brief Method void QAbstractSpinBox::setReadOnly(bool r)\n", false, &_init_f_setReadOnly_864, &_call_f_setReadOnly_864); methods += new qt_gsi::GenericMethod ("setSpecialValueText|specialValueText=", "@brief Method void QAbstractSpinBox::setSpecialValueText(const QString &txt)\n", false, &_init_f_setSpecialValueText_2025, &_call_f_setSpecialValueText_2025); methods += new qt_gsi::GenericMethod ("setWrapping|wrapping=", "@brief Method void QAbstractSpinBox::setWrapping(bool w)\n", false, &_init_f_setWrapping_864, &_call_f_setWrapping_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QAbstractSpinBox::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":specialValueText", "@brief Method QString QAbstractSpinBox::specialValueText()\n", true, &_init_f_specialValueText_c0, &_call_f_specialValueText_c0); methods += new qt_gsi::GenericMethod ("stepBy", "@brief Method void QAbstractSpinBox::stepBy(int steps)\n", false, &_init_f_stepBy_767, &_call_f_stepBy_767); methods += new qt_gsi::GenericMethod ("stepDown", "@brief Method void QAbstractSpinBox::stepDown()\n", false, &_init_f_stepDown_0, &_call_f_stepDown_0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc index 63d972044..bcf722489 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc @@ -68,7 +68,7 @@ static void _call_ctor_QAccessibleWidget_5165 (const qt_gsi::GenericStaticMethod } -// () const +// QStringList QAccessibleWidget::actionNames() static void _init_f_actionNames_c0 (qt_gsi::GenericMethod *decl) @@ -83,7 +83,7 @@ static void _call_f_actionNames_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QColor QAccessibleWidget::backgroundColor() static void _init_f_backgroundColor_c0 (qt_gsi::GenericMethod *decl) @@ -98,7 +98,7 @@ static void _call_f_backgroundColor_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) const +// QAccessibleInterface *QAccessibleWidget::child(int index) static void _init_f_child_c767 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_child_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// int QAccessibleWidget::childCount() static void _init_f_childCount_c0 (qt_gsi::GenericMethod *decl) @@ -132,7 +132,7 @@ static void _call_f_childCount_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) +// void QAccessibleWidget::doAction(const QString &actionName) static void _init_f_doAction_2025 (qt_gsi::GenericMethod *decl) @@ -152,7 +152,7 @@ static void _call_f_doAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QAccessibleInterface *QAccessibleWidget::focusChild() static void _init_f_focusChild_c0 (qt_gsi::GenericMethod *decl) @@ -167,7 +167,7 @@ static void _call_f_focusChild_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QColor QAccessibleWidget::foregroundColor() static void _init_f_foregroundColor_c0 (qt_gsi::GenericMethod *decl) @@ -182,7 +182,7 @@ static void _call_f_foregroundColor_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QAccessibleInterface *) const +// int QAccessibleWidget::indexOfChild(const QAccessibleInterface *child) static void _init_f_indexOfChild_c3317 (qt_gsi::GenericMethod *decl) @@ -201,7 +201,7 @@ static void _call_f_indexOfChild_c3317 (const qt_gsi::GenericMethod * /*decl*/, } -// (QAccessible::InterfaceType) +// void *QAccessibleWidget::interface_cast(QAccessible::InterfaceType t) static void _init_f_interface_cast_2970 (qt_gsi::GenericMethod *decl) @@ -220,7 +220,7 @@ static void _call_f_interface_cast_2970 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// bool QAccessibleWidget::isValid() static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) @@ -235,7 +235,7 @@ static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QString &) const +// QStringList QAccessibleWidget::keyBindingsForAction(const QString &actionName) static void _init_f_keyBindingsForAction_c2025 (qt_gsi::GenericMethod *decl) @@ -254,7 +254,7 @@ static void _call_f_keyBindingsForAction_c2025 (const qt_gsi::GenericMethod * /* } -// () const +// QAccessibleInterface *QAccessibleWidget::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -269,7 +269,7 @@ static void _call_f_parent_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QRect QAccessibleWidget::rect() static void _init_f_rect_c0 (qt_gsi::GenericMethod *decl) @@ -284,7 +284,7 @@ static void _call_f_rect_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QFlags) const +// QVector > QAccessibleWidget::relations(QFlags match) static void _init_f_relations_c3543 (qt_gsi::GenericMethod *decl) @@ -303,7 +303,7 @@ static void _call_f_relations_c3543 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QAccessible::Role QAccessibleWidget::role() static void _init_f_role_c0 (qt_gsi::GenericMethod *decl) @@ -318,7 +318,7 @@ static void _call_f_role_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QAccessible::State QAccessibleWidget::state() static void _init_f_state_c0 (qt_gsi::GenericMethod *decl) @@ -333,7 +333,7 @@ static void _call_f_state_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QAccessible::Text) const +// QString QAccessibleWidget::text(QAccessible::Text t) static void _init_f_text_c2060 (qt_gsi::GenericMethod *decl) @@ -352,7 +352,7 @@ static void _call_f_text_c2060 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QWindow *QAccessibleWidget::window() static void _init_f_window_c0 (qt_gsi::GenericMethod *decl) @@ -419,24 +419,24 @@ namespace gsi static gsi::Methods methods_QAccessibleWidget () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAccessibleWidget::QAccessibleWidget(QWidget *o, QAccessible::Role r, const QString &name)\nThis method creates an object of class QAccessibleWidget.", &_init_ctor_QAccessibleWidget_5165, &_call_ctor_QAccessibleWidget_5165); - methods += new qt_gsi::GenericMethod ("actionNames", "@brief Method () const\nThis is a reimplementation of QAccessibleActionInterface::actionNames", true, &_init_f_actionNames_c0, &_call_f_actionNames_c0); - methods += new qt_gsi::GenericMethod ("backgroundColor", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::backgroundColor", true, &_init_f_backgroundColor_c0, &_call_f_backgroundColor_c0); - methods += new qt_gsi::GenericMethod ("child", "@brief Method (int) const\nThis is a reimplementation of QAccessibleInterface::child", true, &_init_f_child_c767, &_call_f_child_c767); - methods += new qt_gsi::GenericMethod ("childCount", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::childCount", true, &_init_f_childCount_c0, &_call_f_childCount_c0); - methods += new qt_gsi::GenericMethod ("doAction", "@brief Method (const QString &)\nThis is a reimplementation of QAccessibleActionInterface::doAction", false, &_init_f_doAction_2025, &_call_f_doAction_2025); - methods += new qt_gsi::GenericMethod ("focusChild", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::focusChild", true, &_init_f_focusChild_c0, &_call_f_focusChild_c0); - methods += new qt_gsi::GenericMethod ("foregroundColor", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::foregroundColor", true, &_init_f_foregroundColor_c0, &_call_f_foregroundColor_c0); - methods += new qt_gsi::GenericMethod ("indexOfChild", "@brief Method (const QAccessibleInterface *) const\nThis is a reimplementation of QAccessibleInterface::indexOfChild", true, &_init_f_indexOfChild_c3317, &_call_f_indexOfChild_c3317); - methods += new qt_gsi::GenericMethod ("interface_cast", "@brief Method (QAccessible::InterfaceType)\nThis is a reimplementation of QAccessibleInterface::interface_cast", false, &_init_f_interface_cast_2970, &_call_f_interface_cast_2970); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method () const\nThis is a reimplementation of QAccessibleObject::isValid", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod ("keyBindingsForAction", "@brief Method (const QString &) const\nThis is a reimplementation of QAccessibleActionInterface::keyBindingsForAction", true, &_init_f_keyBindingsForAction_c2025, &_call_f_keyBindingsForAction_c2025); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::parent", true, &_init_f_parent_c0, &_call_f_parent_c0); - methods += new qt_gsi::GenericMethod ("rect", "@brief Method () const\nThis is a reimplementation of QAccessibleObject::rect", true, &_init_f_rect_c0, &_call_f_rect_c0); - methods += new qt_gsi::GenericMethod ("relations", "@brief Method (QFlags) const\nThis is a reimplementation of QAccessibleInterface::relations", true, &_init_f_relations_c3543, &_call_f_relations_c3543); - methods += new qt_gsi::GenericMethod ("role", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::role", true, &_init_f_role_c0, &_call_f_role_c0); - methods += new qt_gsi::GenericMethod ("state", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::state", true, &_init_f_state_c0, &_call_f_state_c0); - methods += new qt_gsi::GenericMethod ("text", "@brief Method (QAccessible::Text) const\nThis is a reimplementation of QAccessibleInterface::text", true, &_init_f_text_c2060, &_call_f_text_c2060); - methods += new qt_gsi::GenericMethod ("window", "@brief Method () const\nThis is a reimplementation of QAccessibleInterface::window", true, &_init_f_window_c0, &_call_f_window_c0); + methods += new qt_gsi::GenericMethod ("actionNames", "@brief Method QStringList QAccessibleWidget::actionNames()\nThis is a reimplementation of QAccessibleActionInterface::actionNames", true, &_init_f_actionNames_c0, &_call_f_actionNames_c0); + methods += new qt_gsi::GenericMethod ("backgroundColor", "@brief Method QColor QAccessibleWidget::backgroundColor()\nThis is a reimplementation of QAccessibleInterface::backgroundColor", true, &_init_f_backgroundColor_c0, &_call_f_backgroundColor_c0); + methods += new qt_gsi::GenericMethod ("child", "@brief Method QAccessibleInterface *QAccessibleWidget::child(int index)\nThis is a reimplementation of QAccessibleInterface::child", true, &_init_f_child_c767, &_call_f_child_c767); + methods += new qt_gsi::GenericMethod ("childCount", "@brief Method int QAccessibleWidget::childCount()\nThis is a reimplementation of QAccessibleInterface::childCount", true, &_init_f_childCount_c0, &_call_f_childCount_c0); + methods += new qt_gsi::GenericMethod ("doAction", "@brief Method void QAccessibleWidget::doAction(const QString &actionName)\nThis is a reimplementation of QAccessibleActionInterface::doAction", false, &_init_f_doAction_2025, &_call_f_doAction_2025); + methods += new qt_gsi::GenericMethod ("focusChild", "@brief Method QAccessibleInterface *QAccessibleWidget::focusChild()\nThis is a reimplementation of QAccessibleInterface::focusChild", true, &_init_f_focusChild_c0, &_call_f_focusChild_c0); + methods += new qt_gsi::GenericMethod ("foregroundColor", "@brief Method QColor QAccessibleWidget::foregroundColor()\nThis is a reimplementation of QAccessibleInterface::foregroundColor", true, &_init_f_foregroundColor_c0, &_call_f_foregroundColor_c0); + methods += new qt_gsi::GenericMethod ("indexOfChild", "@brief Method int QAccessibleWidget::indexOfChild(const QAccessibleInterface *child)\nThis is a reimplementation of QAccessibleInterface::indexOfChild", true, &_init_f_indexOfChild_c3317, &_call_f_indexOfChild_c3317); + methods += new qt_gsi::GenericMethod ("interface_cast", "@brief Method void *QAccessibleWidget::interface_cast(QAccessible::InterfaceType t)\nThis is a reimplementation of QAccessibleInterface::interface_cast", false, &_init_f_interface_cast_2970, &_call_f_interface_cast_2970); + methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QAccessibleWidget::isValid()\nThis is a reimplementation of QAccessibleObject::isValid", true, &_init_f_isValid_c0, &_call_f_isValid_c0); + methods += new qt_gsi::GenericMethod ("keyBindingsForAction", "@brief Method QStringList QAccessibleWidget::keyBindingsForAction(const QString &actionName)\nThis is a reimplementation of QAccessibleActionInterface::keyBindingsForAction", true, &_init_f_keyBindingsForAction_c2025, &_call_f_keyBindingsForAction_c2025); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QAccessibleInterface *QAccessibleWidget::parent()\nThis is a reimplementation of QAccessibleInterface::parent", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("rect", "@brief Method QRect QAccessibleWidget::rect()\nThis is a reimplementation of QAccessibleObject::rect", true, &_init_f_rect_c0, &_call_f_rect_c0); + methods += new qt_gsi::GenericMethod ("relations", "@brief Method QVector > QAccessibleWidget::relations(QFlags match)\nThis is a reimplementation of QAccessibleInterface::relations", true, &_init_f_relations_c3543, &_call_f_relations_c3543); + methods += new qt_gsi::GenericMethod ("role", "@brief Method QAccessible::Role QAccessibleWidget::role()\nThis is a reimplementation of QAccessibleInterface::role", true, &_init_f_role_c0, &_call_f_role_c0); + methods += new qt_gsi::GenericMethod ("state", "@brief Method QAccessible::State QAccessibleWidget::state()\nThis is a reimplementation of QAccessibleInterface::state", true, &_init_f_state_c0, &_call_f_state_c0); + methods += new qt_gsi::GenericMethod ("text", "@brief Method QString QAccessibleWidget::text(QAccessible::Text t)\nThis is a reimplementation of QAccessibleInterface::text", true, &_init_f_text_c2060, &_call_f_text_c2060); + methods += new qt_gsi::GenericMethod ("window", "@brief Method QWindow *QAccessibleWidget::window()\nThis is a reimplementation of QAccessibleInterface::window", true, &_init_f_window_c0, &_call_f_window_c0); methods += new qt_gsi::GenericMethod ("asQAccessibleObject", "@brief Delivers the base class interface QAccessibleObject of QAccessibleWidget\nClass QAccessibleWidget is derived from multiple base classes. This method delivers the QAccessibleObject base class aspect.", false, &_init_f_QAccessibleWidget_as_QAccessibleObject, &_call_f_QAccessibleWidget_as_QAccessibleObject); methods += new qt_gsi::GenericMethod ("asConstQAccessibleObject", "@brief Delivers the base class interface QAccessibleObject of QAccessibleWidget\nClass QAccessibleWidget is derived from multiple base classes. This method delivers the QAccessibleObject base class aspect.\n\nUse this version if you have a const reference.", true, &_init_f_QAccessibleWidget_as_const_QAccessibleObject, &_call_f_QAccessibleWidget_as_const_QAccessibleObject); methods += new qt_gsi::GenericMethod ("asQAccessibleActionInterface", "@brief Delivers the base class interface QAccessibleActionInterface of QAccessibleWidget\nClass QAccessibleWidget is derived from multiple base classes. This method delivers the QAccessibleActionInterface base class aspect.", false, &_init_f_QAccessibleWidget_as_QAccessibleActionInterface, &_call_f_QAccessibleWidget_as_QAccessibleActionInterface); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc index 55d41eee7..e16c5f849 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc @@ -69,7 +69,7 @@ static void _call_f_autoSipEnabled_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QObject *, QEvent *) +// bool QApplication::notify(QObject *, QEvent *) static void _init_f_notify_2411 (qt_gsi::GenericMethod *decl) @@ -1074,7 +1074,7 @@ static gsi::Methods methods_QApplication () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":autoSipEnabled", "@brief Method bool QApplication::autoSipEnabled()\n", true, &_init_f_autoSipEnabled_c0, &_call_f_autoSipEnabled_c0); - methods += new qt_gsi::GenericMethod ("notify", "@brief Method (QObject *, QEvent *)\nThis is a reimplementation of QGuiApplication::notify", false, &_init_f_notify_2411, &_call_f_notify_2411); + methods += new qt_gsi::GenericMethod ("notify", "@brief Method bool QApplication::notify(QObject *, QEvent *)\nThis is a reimplementation of QGuiApplication::notify", false, &_init_f_notify_2411, &_call_f_notify_2411); methods += new qt_gsi::GenericMethod ("setAutoSipEnabled|autoSipEnabled=", "@brief Method void QApplication::setAutoSipEnabled(const bool enabled)\n", false, &_init_f_setAutoSipEnabled_1559, &_call_f_setAutoSipEnabled_1559); methods += new qt_gsi::GenericMethod ("setStyleSheet|styleSheet=", "@brief Method void QApplication::setStyleSheet(const QString &sheet)\n", false, &_init_f_setStyleSheet_2025, &_call_f_setStyleSheet_2025); methods += new qt_gsi::GenericMethod (":styleSheet", "@brief Method QString QApplication::styleSheet()\n", true, &_init_f_styleSheet_c0, &_call_f_styleSheet_c0); @@ -1163,7 +1163,7 @@ GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QApplication () { return d class QApplication_Adaptor : public QApplication, public qt_gsi::QtObjectBase { public: - static QApplication *ctor_QApplication_Adaptor_args(const std::vector &args) + static QApplication *ctor_QApplication_Adaptor_args(const std::vector &args, bool gui) { // QApplication needs static sources, so we give it some. static char **argv = 0; @@ -1180,10 +1180,10 @@ public: argv[a - args_copy.begin ()] = (char *) a->c_str (); } - return new QApplication_Adaptor (argc, argv); + return new QApplication_Adaptor (argc, argv, gui); } - QApplication_Adaptor (int &argc, char **argv) : QApplication (argc, argv) { } + QApplication_Adaptor (int &argc, char **argv, bool gui) : QApplication (argc, argv, gui) { } virtual ~QApplication_Adaptor(); @@ -1991,7 +1991,7 @@ static gsi::Methods methods_QApplication_Adaptor () { } gsi::Class decl_QApplication_Adaptor (qtdecl_QApplication (), "QtWidgets", "QApplication", - gsi::constructor("new", &QApplication_Adaptor::ctor_QApplication_Adaptor_args, gsi::arg ("argv"), "@brief Creates a new QApplication object\n\n@param argv The command line arguments to pass to Qt") + gsi::constructor("new", &QApplication_Adaptor::ctor_QApplication_Adaptor_args, gsi::arg ("argv"), gsi::arg ("gui", false), "@brief Creates a new QApplication object\n\n@param argv The command line arguments to pass to Qt\n@param gui If true, a GUI-enabled application is constructed") + methods_QApplication_Adaptor (), "@qt\n@brief Binding of QApplication"); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc index a3dda1239..61a89bcf6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc @@ -62,7 +62,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QLayoutItem *) +// void QBoxLayout::addItem(QLayoutItem *) static void _init_f_addItem_1740 (qt_gsi::GenericMethod *decl) @@ -186,7 +186,7 @@ static void _call_f_addStrut_767 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (QWidget *, int, QFlags) +// void QBoxLayout::addWidget(QWidget *, int stretch, QFlags alignment) static void _init_f_addWidget_4616 (qt_gsi::GenericMethod *decl) @@ -212,7 +212,7 @@ static void _call_f_addWidget_4616 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QBoxLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -242,7 +242,7 @@ static void _call_f_direction_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QFlags QBoxLayout::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -257,7 +257,7 @@ static void _call_f_expandingDirections_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// bool QBoxLayout::hasHeightForWidth() static void _init_f_hasHeightForWidth_c0 (qt_gsi::GenericMethod *decl) @@ -272,7 +272,7 @@ static void _call_f_hasHeightForWidth_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QBoxLayout::heightForWidth(int) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -438,7 +438,7 @@ static void _call_f_insertWidget_5275 (const qt_gsi::GenericMethod * /*decl*/, v } -// () +// void QBoxLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -454,7 +454,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QLayoutItem *QBoxLayout::itemAt(int) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -473,7 +473,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QSize QBoxLayout::maximumSize() static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl) @@ -488,7 +488,7 @@ static void _call_f_maximumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int) const +// int QBoxLayout::minimumHeightForWidth(int) static void _init_f_minimumHeightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -507,7 +507,7 @@ static void _call_f_minimumHeightForWidth_c767 (const qt_gsi::GenericMethod * /* } -// () const +// QSize QBoxLayout::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -542,7 +542,7 @@ static void _call_f_setDirection_2497 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QRect &) +// void QBoxLayout::setGeometry(const QRect &) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -562,7 +562,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int) +// void QBoxLayout::setSpacing(int spacing) static void _init_f_setSpacing_767 (qt_gsi::GenericMethod *decl) @@ -649,7 +649,7 @@ static void _call_f_setStretchFactor_2000 (const qt_gsi::GenericMethod * /*decl* } -// () const +// QSize QBoxLayout::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -664,7 +664,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QBoxLayout::spacing() static void _init_f_spacing_c0 (qt_gsi::GenericMethod *decl) @@ -698,7 +698,7 @@ static void _call_f_stretch_c767 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) +// QLayoutItem *QBoxLayout::takeAt(int) static void _init_f_takeAt_767 (qt_gsi::GenericMethod *decl) @@ -773,39 +773,39 @@ namespace gsi static gsi::Methods methods_QBoxLayout () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("addItem", "@brief Method (QLayoutItem *)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); + methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QBoxLayout::addItem(QLayoutItem *)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); methods += new qt_gsi::GenericMethod ("addLayout", "@brief Method void QBoxLayout::addLayout(QLayout *layout, int stretch)\n", false, &_init_f_addLayout_2000, &_call_f_addLayout_2000); methods += new qt_gsi::GenericMethod ("addSpacerItem", "@brief Method void QBoxLayout::addSpacerItem(QSpacerItem *spacerItem)\n", false, &_init_f_addSpacerItem_1708, &_call_f_addSpacerItem_1708); methods += new qt_gsi::GenericMethod ("addSpacing", "@brief Method void QBoxLayout::addSpacing(int size)\n", false, &_init_f_addSpacing_767, &_call_f_addSpacing_767); methods += new qt_gsi::GenericMethod ("addStretch", "@brief Method void QBoxLayout::addStretch(int stretch)\n", false, &_init_f_addStretch_767, &_call_f_addStretch_767); methods += new qt_gsi::GenericMethod ("addStrut", "@brief Method void QBoxLayout::addStrut(int)\n", false, &_init_f_addStrut_767, &_call_f_addStrut_767); - methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method (QWidget *, int, QFlags)\n", false, &_init_f_addWidget_4616, &_call_f_addWidget_4616); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method void QBoxLayout::addWidget(QWidget *, int stretch, QFlags alignment)\n", false, &_init_f_addWidget_4616, &_call_f_addWidget_4616); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QBoxLayout::count()\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":direction", "@brief Method QBoxLayout::Direction QBoxLayout::direction()\n", true, &_init_f_direction_c0, &_call_f_direction_c0); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); - methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method () const\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QBoxLayout::expandingDirections()\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QBoxLayout::hasHeightForWidth()\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QBoxLayout::heightForWidth(int)\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod ("insertItem", "@brief Method void QBoxLayout::insertItem(int index, QLayoutItem *)\n", false, &_init_f_insertItem_2399, &_call_f_insertItem_2399); methods += new qt_gsi::GenericMethod ("insertLayout", "@brief Method void QBoxLayout::insertLayout(int index, QLayout *layout, int stretch)\n", false, &_init_f_insertLayout_2659, &_call_f_insertLayout_2659); methods += new qt_gsi::GenericMethod ("insertSpacerItem", "@brief Method void QBoxLayout::insertSpacerItem(int index, QSpacerItem *spacerItem)\n", false, &_init_f_insertSpacerItem_2367, &_call_f_insertSpacerItem_2367); methods += new qt_gsi::GenericMethod ("insertSpacing", "@brief Method void QBoxLayout::insertSpacing(int index, int size)\n", false, &_init_f_insertSpacing_1426, &_call_f_insertSpacing_1426); methods += new qt_gsi::GenericMethod ("insertStretch", "@brief Method void QBoxLayout::insertStretch(int index, int stretch)\n", false, &_init_f_insertStretch_1426, &_call_f_insertStretch_1426); methods += new qt_gsi::GenericMethod ("insertWidget", "@brief Method void QBoxLayout::insertWidget(int index, QWidget *widget, int stretch, QFlags alignment)\n", false, &_init_f_insertWidget_5275, &_call_f_insertWidget_5275); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); - methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayout::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); - methods += new qt_gsi::GenericMethod ("minimumHeightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::minimumHeightForWidth", true, &_init_f_minimumHeightForWidth_c767, &_call_f_minimumHeightForWidth_c767); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QBoxLayout::invalidate()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QBoxLayout::itemAt(int)\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method QSize QBoxLayout::maximumSize()\nThis is a reimplementation of QLayout::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumHeightForWidth", "@brief Method int QBoxLayout::minimumHeightForWidth(int)\nThis is a reimplementation of QLayoutItem::minimumHeightForWidth", true, &_init_f_minimumHeightForWidth_c767, &_call_f_minimumHeightForWidth_c767); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QBoxLayout::minimumSize()\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); methods += new qt_gsi::GenericMethod ("setDirection|direction=", "@brief Method void QBoxLayout::setDirection(QBoxLayout::Direction)\n", false, &_init_f_setDirection_2497, &_call_f_setDirection_2497); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); - methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method (int)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QBoxLayout::setGeometry(const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QBoxLayout::setSpacing(int spacing)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); methods += new qt_gsi::GenericMethod ("setStretch", "@brief Method void QBoxLayout::setStretch(int index, int stretch)\n", false, &_init_f_setStretch_1426, &_call_f_setStretch_1426); methods += new qt_gsi::GenericMethod ("setStretchFactor", "@brief Method bool QBoxLayout::setStretchFactor(QWidget *w, int stretch)\n", false, &_init_f_setStretchFactor_1974, &_call_f_setStretchFactor_1974); methods += new qt_gsi::GenericMethod ("setStretchFactor", "@brief Method bool QBoxLayout::setStretchFactor(QLayout *l, int stretch)\n", false, &_init_f_setStretchFactor_2000, &_call_f_setStretchFactor_2000); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod (":spacing", "@brief Method () const\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QBoxLayout::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":spacing", "@brief Method int QBoxLayout::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); methods += new qt_gsi::GenericMethod ("stretch", "@brief Method int QBoxLayout::stretch(int index)\n", true, &_init_f_stretch_c767, &_call_f_stretch_c767); - methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method (int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); + methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method QLayoutItem *QBoxLayout::takeAt(int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QBoxLayout::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QBoxLayout::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); methods += new qt_gsi::GenericStaticMethod ("trUtf8", "@brief Static method QString QBoxLayout::trUtf8(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_4013, &_call_f_trUtf8_4013); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc index 7dae2d35d..f950f1d01 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc @@ -271,7 +271,7 @@ static void _call_f_minimumDate_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QCalendarWidget::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -759,7 +759,7 @@ static void _call_f_showToday_0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QSize QCalendarWidget::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -890,7 +890,7 @@ static gsi::Methods methods_QCalendarWidget () { methods += new qt_gsi::GenericMethod ("isNavigationBarVisible?|:navigationBarVisible", "@brief Method bool QCalendarWidget::isNavigationBarVisible()\n", true, &_init_f_isNavigationBarVisible_c0, &_call_f_isNavigationBarVisible_c0); methods += new qt_gsi::GenericMethod (":maximumDate", "@brief Method QDate QCalendarWidget::maximumDate()\n", true, &_init_f_maximumDate_c0, &_call_f_maximumDate_c0); methods += new qt_gsi::GenericMethod (":minimumDate", "@brief Method QDate QCalendarWidget::minimumDate()\n", true, &_init_f_minimumDate_c0, &_call_f_minimumDate_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QCalendarWidget::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("monthShown", "@brief Method int QCalendarWidget::monthShown()\n", true, &_init_f_monthShown_c0, &_call_f_monthShown_c0); methods += new qt_gsi::GenericMethod (":selectedDate", "@brief Method QDate QCalendarWidget::selectedDate()\n", true, &_init_f_selectedDate_c0, &_call_f_selectedDate_c0); methods += new qt_gsi::GenericMethod (":selectionMode", "@brief Method QCalendarWidget::SelectionMode QCalendarWidget::selectionMode()\n", true, &_init_f_selectionMode_c0, &_call_f_selectionMode_c0); @@ -916,7 +916,7 @@ static gsi::Methods methods_QCalendarWidget () { methods += new qt_gsi::GenericMethod ("showPreviousYear", "@brief Method void QCalendarWidget::showPreviousYear()\n", false, &_init_f_showPreviousYear_0, &_call_f_showPreviousYear_0); methods += new qt_gsi::GenericMethod ("showSelectedDate", "@brief Method void QCalendarWidget::showSelectedDate()\n", false, &_init_f_showSelectedDate_0, &_call_f_showSelectedDate_0); methods += new qt_gsi::GenericMethod ("showToday", "@brief Method void QCalendarWidget::showToday()\n", false, &_init_f_showToday_0, &_call_f_showToday_0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QCalendarWidget::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":verticalHeaderFormat", "@brief Method QCalendarWidget::VerticalHeaderFormat QCalendarWidget::verticalHeaderFormat()\n", true, &_init_f_verticalHeaderFormat_c0, &_call_f_verticalHeaderFormat_c0); methods += new qt_gsi::GenericMethod ("weekdayTextFormat", "@brief Method QTextCharFormat QCalendarWidget::weekdayTextFormat(Qt::DayOfWeek dayOfWeek)\n", true, &_init_f_weekdayTextFormat_c1612, &_call_f_weekdayTextFormat_c1612); methods += new qt_gsi::GenericMethod ("yearShown", "@brief Method int QCalendarWidget::yearShown()\n", true, &_init_f_yearShown_c0, &_call_f_yearShown_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc index 695fb3629..f8e5408d6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc @@ -132,7 +132,7 @@ static void _call_f_isTristate_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QCheckBox::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -187,7 +187,7 @@ static void _call_f_setTristate_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QCheckBox::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -260,10 +260,10 @@ static gsi::Methods methods_QCheckBox () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":checkState", "@brief Method Qt::CheckState QCheckBox::checkState()\n", true, &_init_f_checkState_c0, &_call_f_checkState_c0); methods += new qt_gsi::GenericMethod ("isTristate?|:tristate", "@brief Method bool QCheckBox::isTristate()\n", true, &_init_f_isTristate_c0, &_call_f_isTristate_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QCheckBox::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setCheckState|checkState=", "@brief Method void QCheckBox::setCheckState(Qt::CheckState state)\n", false, &_init_f_setCheckState_1740, &_call_f_setCheckState_1740); methods += new qt_gsi::GenericMethod ("setTristate|tristate=", "@brief Method void QCheckBox::setTristate(bool y)\n", false, &_init_f_setTristate_864, &_call_f_setTristate_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QCheckBox::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("clicked(bool)", "clicked", gsi::arg("checked"), "@brief Signal declaration for QCheckBox::clicked(bool checked)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QCheckBox::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QCheckBox::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc index 0654cee35..2357881ca 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc @@ -116,7 +116,7 @@ static void _call_f_currentColor_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () +// void QColorDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -132,7 +132,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QColorDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -248,7 +248,7 @@ static void _call_f_setOptions_4168 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (bool) +// void QColorDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -496,14 +496,14 @@ static gsi::Methods methods_QColorDialog () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":currentColor", "@brief Method QColor QColorDialog::currentColor()\n", true, &_init_f_currentColor_c0, &_call_f_currentColor_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QColorDialog::open()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QColorDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod (":options", "@brief Method QFlags QColorDialog::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); methods += new qt_gsi::GenericMethod ("selectedColor", "@brief Method QColor QColorDialog::selectedColor()\n", true, &_init_f_selectedColor_c0, &_call_f_selectedColor_c0); methods += new qt_gsi::GenericMethod ("setCurrentColor|currentColor=", "@brief Method void QColorDialog::setCurrentColor(const QColor &color)\n", false, &_init_f_setCurrentColor_1905, &_call_f_setCurrentColor_1905); methods += new qt_gsi::GenericMethod ("setOption", "@brief Method void QColorDialog::setOption(QColorDialog::ColorDialogOption option, bool on)\n", false, &_init_f_setOption_4228, &_call_f_setOption_4228); methods += new qt_gsi::GenericMethod ("setOptions|options=", "@brief Method void QColorDialog::setOptions(QFlags options)\n", false, &_init_f_setOptions_4168, &_call_f_setOptions_4168); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QColorDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QColorDialog::testOption(QColorDialog::ColorDialogOption option)\n", true, &_init_f_testOption_c3472, &_call_f_testOption_c3472); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QColorDialog::accepted()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("colorSelected(const QColor &)", "colorSelected", gsi::arg("color"), "@brief Signal declaration for QColorDialog::colorSelected(const QColor &color)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc index 5e91e71fc..c73983767 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc @@ -124,7 +124,7 @@ static void _call_f_columnWidths_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPoint &) const +// QModelIndex QColumnView::indexAt(const QPoint &point) static void _init_f_indexAt_c1916 (qt_gsi::GenericMethod *decl) @@ -173,7 +173,7 @@ static void _call_f_resizeGripsVisible_c0 (const qt_gsi::GenericMethod * /*decl* } -// (const QModelIndex &, QAbstractItemView::ScrollHint) +// void QColumnView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) static void _init_f_scrollTo_5576 (qt_gsi::GenericMethod *decl) @@ -196,7 +196,7 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QColumnView::selectAll() static void _init_f_selectAll_0 (qt_gsi::GenericMethod *decl) @@ -232,7 +232,7 @@ static void _call_f_setColumnWidths_2259 (const qt_gsi::GenericMethod * /*decl*/ } -// (QAbstractItemModel *) +// void QColumnView::setModel(QAbstractItemModel *model) static void _init_f_setModel_2419 (qt_gsi::GenericMethod *decl) @@ -292,7 +292,7 @@ static void _call_f_setResizeGripsVisible_864 (const qt_gsi::GenericMethod * /*d } -// (const QModelIndex &) +// void QColumnView::setRootIndex(const QModelIndex &index) static void _init_f_setRootIndex_2395 (qt_gsi::GenericMethod *decl) @@ -312,7 +312,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QItemSelectionModel *) +// void QColumnView::setSelectionModel(QItemSelectionModel *selectionModel) static void _init_f_setSelectionModel_2533 (qt_gsi::GenericMethod *decl) @@ -332,7 +332,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl } -// () const +// QSize QColumnView::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -347,7 +347,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// QRect QColumnView::visualRect(const QModelIndex &index) static void _init_f_visualRect_c2395 (qt_gsi::GenericMethod *decl) @@ -423,19 +423,19 @@ static gsi::Methods methods_QColumnView () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":columnWidths", "@brief Method QList QColumnView::columnWidths()\n", true, &_init_f_columnWidths_c0, &_call_f_columnWidths_c0); - methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method (const QPoint &) const\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); + methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method QModelIndex QColumnView::indexAt(const QPoint &point)\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); methods += new qt_gsi::GenericMethod (":previewWidget", "@brief Method QWidget *QColumnView::previewWidget()\n", true, &_init_f_previewWidget_c0, &_call_f_previewWidget_c0); methods += new qt_gsi::GenericMethod (":resizeGripsVisible", "@brief Method bool QColumnView::resizeGripsVisible()\n", true, &_init_f_resizeGripsVisible_c0, &_call_f_resizeGripsVisible_c0); - methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method (const QModelIndex &, QAbstractItemView::ScrollHint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); - methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::selectAll", false, &_init_f_selectAll_0, &_call_f_selectAll_0); + methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method void QColumnView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); + methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method void QColumnView::selectAll()\nThis is a reimplementation of QAbstractItemView::selectAll", false, &_init_f_selectAll_0, &_call_f_selectAll_0); methods += new qt_gsi::GenericMethod ("setColumnWidths|columnWidths=", "@brief Method void QColumnView::setColumnWidths(const QList &list)\n", false, &_init_f_setColumnWidths_2259, &_call_f_setColumnWidths_2259); - methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); + methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method void QColumnView::setModel(QAbstractItemModel *model)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); methods += new qt_gsi::GenericMethod ("setPreviewWidget|previewWidget=", "@brief Method void QColumnView::setPreviewWidget(QWidget *widget)\n", false, &_init_f_setPreviewWidget_1315, &_call_f_setPreviewWidget_1315); methods += new qt_gsi::GenericMethod ("setResizeGripsVisible|resizeGripsVisible=", "@brief Method void QColumnView::setResizeGripsVisible(bool visible)\n", false, &_init_f_setResizeGripsVisible_864, &_call_f_setResizeGripsVisible_864); - methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); - methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method (QItemSelectionModel *)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); + methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method void QColumnView::setRootIndex(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); + methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method void QColumnView::setSelectionModel(QItemSelectionModel *selectionModel)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QColumnView::sizeHint()\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method QRect QColumnView::visualRect(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); methods += gsi::qt_signal ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QColumnView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("clicked(const QModelIndex &)", "clicked", gsi::arg("index"), "@brief Signal declaration for QColumnView::clicked(const QModelIndex &index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QColumnView::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc index 3e2f252f4..a5bff6ed3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc @@ -333,7 +333,7 @@ static void _call_f_duplicatesEnabled_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QEvent *) +// bool QComboBox::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -445,7 +445,7 @@ static void _call_f_iconSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (Qt::InputMethodQuery) const +// QVariant QComboBox::inputMethodQuery(Qt::InputMethodQuery) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -727,7 +727,7 @@ static void _call_f_minimumContentsLength_c0 (const qt_gsi::GenericMethod * /*de } -// () const +// QSize QComboBox::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1350,7 +1350,7 @@ static void _call_f_sizeAdjustPolicy_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QComboBox::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1464,13 +1464,13 @@ static gsi::Methods methods_QComboBox () { methods += new qt_gsi::GenericMethod (":currentIndex", "@brief Method int QComboBox::currentIndex()\n", true, &_init_f_currentIndex_c0, &_call_f_currentIndex_c0); methods += new qt_gsi::GenericMethod (":currentText", "@brief Method QString QComboBox::currentText()\n", true, &_init_f_currentText_c0, &_call_f_currentText_c0); methods += new qt_gsi::GenericMethod (":duplicatesEnabled", "@brief Method bool QComboBox::duplicatesEnabled()\n", true, &_init_f_duplicatesEnabled_c0, &_call_f_duplicatesEnabled_c0); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QComboBox::event(QEvent *event)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); methods += new qt_gsi::GenericMethod ("findData", "@brief Method int QComboBox::findData(const QVariant &data, int role, QFlags flags)\n", true, &_init_f_findData_c4986, &_call_f_findData_c4986); methods += new qt_gsi::GenericMethod ("findText", "@brief Method int QComboBox::findText(const QString &text, QFlags flags)\n", true, &_init_f_findText_c4233, &_call_f_findText_c4233); methods += new qt_gsi::GenericMethod ("hasFrame|:frame", "@brief Method bool QComboBox::hasFrame()\n", true, &_init_f_hasFrame_c0, &_call_f_hasFrame_c0); methods += new qt_gsi::GenericMethod ("hidePopup", "@brief Method void QComboBox::hidePopup()\n", false, &_init_f_hidePopup_0, &_call_f_hidePopup_0); methods += new qt_gsi::GenericMethod (":iconSize", "@brief Method QSize QComboBox::iconSize()\n", true, &_init_f_iconSize_c0, &_call_f_iconSize_c0); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QComboBox::inputMethodQuery(Qt::InputMethodQuery)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); methods += new qt_gsi::GenericMethod ("insertItem", "@brief Method void QComboBox::insertItem(int index, const QString &text, const QVariant &userData)\n", false, &_init_f_insertItem_4695, &_call_f_insertItem_4695); methods += new qt_gsi::GenericMethod ("insertItem", "@brief Method void QComboBox::insertItem(int index, const QIcon &icon, const QString &text, const QVariant &userData)\n", false, &_init_f_insertItem_6374, &_call_f_insertItem_6374); methods += new qt_gsi::GenericMethod ("insertItems", "@brief Method void QComboBox::insertItems(int index, const QStringList &texts)\n", false, &_init_f_insertItems_3096, &_call_f_insertItems_3096); @@ -1485,7 +1485,7 @@ static gsi::Methods methods_QComboBox () { methods += new qt_gsi::GenericMethod (":maxCount", "@brief Method int QComboBox::maxCount()\n", true, &_init_f_maxCount_c0, &_call_f_maxCount_c0); methods += new qt_gsi::GenericMethod (":maxVisibleItems", "@brief Method int QComboBox::maxVisibleItems()\n", true, &_init_f_maxVisibleItems_c0, &_call_f_maxVisibleItems_c0); methods += new qt_gsi::GenericMethod (":minimumContentsLength", "@brief Method int QComboBox::minimumContentsLength()\n", true, &_init_f_minimumContentsLength_c0, &_call_f_minimumContentsLength_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QComboBox::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":model", "@brief Method QAbstractItemModel *QComboBox::model()\n", true, &_init_f_model_c0, &_call_f_model_c0); methods += new qt_gsi::GenericMethod (":modelColumn", "@brief Method int QComboBox::modelColumn()\n", true, &_init_f_modelColumn_c0, &_call_f_modelColumn_c0); methods += new qt_gsi::GenericMethod ("removeItem", "@brief Method void QComboBox::removeItem(int index)\n", false, &_init_f_removeItem_767, &_call_f_removeItem_767); @@ -1517,7 +1517,7 @@ static gsi::Methods methods_QComboBox () { methods += new qt_gsi::GenericMethod ("setView|view=", "@brief Method void QComboBox::setView(QAbstractItemView *itemView)\n", false, &_init_f_setView_2333, &_call_f_setView_2333); methods += new qt_gsi::GenericMethod ("showPopup", "@brief Method void QComboBox::showPopup()\n", false, &_init_f_showPopup_0, &_call_f_showPopup_0); methods += new qt_gsi::GenericMethod (":sizeAdjustPolicy", "@brief Method QComboBox::SizeAdjustPolicy QComboBox::sizeAdjustPolicy()\n", true, &_init_f_sizeAdjustPolicy_c0, &_call_f_sizeAdjustPolicy_c0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QComboBox::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":validator", "@brief Method const QValidator *QComboBox::validator()\n", true, &_init_f_validator_c0, &_call_f_validator_c0); methods += new qt_gsi::GenericMethod (":view", "@brief Method QAbstractItemView *QComboBox::view()\n", true, &_init_f_view_c0, &_call_f_view_c0); methods += gsi::qt_signal ("activated(int)", "activated", gsi::arg("index"), "@brief Signal declaration for QComboBox::activated(int index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc index b7a8c0a0c..dc30f6189 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc @@ -69,7 +69,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const +// void QCommonStyle::drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QPainter *p, const QWidget *w) static void _init_f_drawComplexControl_c9027 (qt_gsi::GenericMethod *decl) @@ -98,7 +98,7 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de } -// (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QCommonStyle::drawControl(QStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w) static void _init_f_drawControl_c8285 (qt_gsi::GenericMethod *decl) @@ -127,7 +127,7 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const +// void QCommonStyle::drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w) static void _init_f_drawPrimitive_c8501 (qt_gsi::GenericMethod *decl) @@ -156,7 +156,7 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, } -// (QIcon::Mode, const QPixmap &, const QStyleOption *) const +// QPixmap QCommonStyle::generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap, const QStyleOption *opt) static void _init_f_generatedIconPixmap_c5776 (qt_gsi::GenericMethod *decl) @@ -181,7 +181,7 @@ static void _call_f_generatedIconPixmap_c5776 (const qt_gsi::GenericMethod * /*d } -// (QStyle::ComplexControl, const QStyleOptionComplex *, const QPoint &, const QWidget *) const +// QStyle::SubControl QCommonStyle::hitTestComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, const QPoint &pt, const QWidget *w) static void _init_f_hitTestComplexControl_c9517 (qt_gsi::GenericMethod *decl) @@ -209,7 +209,7 @@ static void _call_f_hitTestComplexControl_c9517 (const qt_gsi::GenericMethod * / } -// (QSizePolicy::ControlType, QSizePolicy::ControlType, Qt::Orientation, const QStyleOption *, const QWidget *) const +// int QCommonStyle::layoutSpacing(QSizePolicy::ControlType control1, QSizePolicy::ControlType control2, Qt::Orientation orientation, const QStyleOption *option, const QWidget *widget) static void _init_f_layoutSpacing_c11697 (qt_gsi::GenericMethod *decl) @@ -240,7 +240,7 @@ static void _call_f_layoutSpacing_c11697 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const +// int QCommonStyle::pixelMetric(QStyle::PixelMetric m, const QStyleOption *opt, const QWidget *widget) static void _init_f_pixelMetric_c6642 (qt_gsi::GenericMethod *decl) @@ -265,7 +265,7 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QPalette &) +// void QCommonStyle::polish(QPalette &) static void _init_f_polish_1418 (qt_gsi::GenericMethod *decl) @@ -285,7 +285,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QApplication *) +// void QCommonStyle::polish(QApplication *app) static void _init_f_polish_1843 (qt_gsi::GenericMethod *decl) @@ -305,7 +305,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QWidget *) +// void QCommonStyle::polish(QWidget *widget) static void _init_f_polish_1315 (qt_gsi::GenericMethod *decl) @@ -325,7 +325,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const +// QSize QCommonStyle::sizeFromContents(QStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *widget) static void _init_f_sizeFromContents_c8477 (qt_gsi::GenericMethod *decl) @@ -353,7 +353,7 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl } -// (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const +// QIcon QCommonStyle::standardIcon(QStyle::StandardPixmap standardIcon, const QStyleOption *opt, const QWidget *widget) static void _init_f_standardIcon_c6956 (qt_gsi::GenericMethod *decl) @@ -378,7 +378,7 @@ static void _call_f_standardIcon_c6956 (const qt_gsi::GenericMethod * /*decl*/, } -// (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const +// QPixmap QCommonStyle::standardPixmap(QStyle::StandardPixmap sp, const QStyleOption *opt, const QWidget *widget) static void _init_f_standardPixmap_c6956 (qt_gsi::GenericMethod *decl) @@ -403,7 +403,7 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const +// int QCommonStyle::styleHint(QStyle::StyleHint sh, const QStyleOption *opt, const QWidget *w, QStyleHintReturn *shret) static void _init_f_styleHint_c8615 (qt_gsi::GenericMethod *decl) @@ -431,7 +431,7 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QStyle::ComplexControl, const QStyleOptionComplex *, QStyle::SubControl, const QWidget *) const +// QRect QCommonStyle::subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QStyle::SubControl sc, const QWidget *w) static void _init_f_subControlRect_c9798 (qt_gsi::GenericMethod *decl) @@ -459,7 +459,7 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ } -// (QStyle::SubElement, const QStyleOption *, const QWidget *) const +// QRect QCommonStyle::subElementRect(QStyle::SubElement r, const QStyleOption *opt, const QWidget *widget) static void _init_f_subElementRect_c6528 (qt_gsi::GenericMethod *decl) @@ -484,7 +484,7 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ } -// (QWidget *) +// void QCommonStyle::unpolish(QWidget *widget) static void _init_f_unpolish_1315 (qt_gsi::GenericMethod *decl) @@ -504,7 +504,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QApplication *) +// void QCommonStyle::unpolish(QApplication *application) static void _init_f_unpolish_1843 (qt_gsi::GenericMethod *decl) @@ -580,24 +580,24 @@ namespace gsi static gsi::Methods methods_QCommonStyle () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QPainter *, const QWidget *) const\nThis is a reimplementation of QStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); - methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method (QStyle::ControlElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); - methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method (QStyle::PrimitiveElement, const QStyleOption *, QPainter *, const QWidget *) const\nThis is a reimplementation of QStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); - methods += new qt_gsi::GenericMethod ("generatedIconPixmap", "@brief Method (QIcon::Mode, const QPixmap &, const QStyleOption *) const\nThis is a reimplementation of QStyle::generatedIconPixmap", true, &_init_f_generatedIconPixmap_c5776, &_call_f_generatedIconPixmap_c5776); - methods += new qt_gsi::GenericMethod ("hitTestComplexControl", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, const QPoint &, const QWidget *) const\nThis is a reimplementation of QStyle::hitTestComplexControl", true, &_init_f_hitTestComplexControl_c9517, &_call_f_hitTestComplexControl_c9517); - methods += new qt_gsi::GenericMethod ("layoutSpacing", "@brief Method (QSizePolicy::ControlType, QSizePolicy::ControlType, Qt::Orientation, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QStyle::layoutSpacing", true, &_init_f_layoutSpacing_c11697, &_call_f_layoutSpacing_c11697); - methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method (QStyle::PixelMetric, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QPalette &)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QApplication *)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); - methods += new qt_gsi::GenericMethod ("polish", "@brief Method (QWidget *)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); - methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method (QStyle::ContentsType, const QStyleOption *, const QSize &, const QWidget *) const\nThis is a reimplementation of QStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); - methods += new qt_gsi::GenericMethod ("standardIcon", "@brief Method (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QStyle::standardIcon", true, &_init_f_standardIcon_c6956, &_call_f_standardIcon_c6956); - methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method (QStyle::StandardPixmap, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); - methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method (QStyle::StyleHint, const QStyleOption *, const QWidget *, QStyleHintReturn *) const\nThis is a reimplementation of QStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); - methods += new qt_gsi::GenericMethod ("subControlRect", "@brief Method (QStyle::ComplexControl, const QStyleOptionComplex *, QStyle::SubControl, const QWidget *) const\nThis is a reimplementation of QStyle::subControlRect", true, &_init_f_subControlRect_c9798, &_call_f_subControlRect_c9798); - methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method (QStyle::SubElement, const QStyleOption *, const QWidget *) const\nThis is a reimplementation of QStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QWidget *)\nThis is a reimplementation of QStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); - methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method (QApplication *)\nThis is a reimplementation of QStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); + methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method void QCommonStyle::drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QStyle::drawComplexControl", true, &_init_f_drawComplexControl_c9027, &_call_f_drawComplexControl_c9027); + methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method void QCommonStyle::drawControl(QStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QStyle::drawControl", true, &_init_f_drawControl_c8285, &_call_f_drawControl_c8285); + methods += new qt_gsi::GenericMethod ("drawPrimitive", "@brief Method void QCommonStyle::drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w)\nThis is a reimplementation of QStyle::drawPrimitive", true, &_init_f_drawPrimitive_c8501, &_call_f_drawPrimitive_c8501); + methods += new qt_gsi::GenericMethod ("generatedIconPixmap", "@brief Method QPixmap QCommonStyle::generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap, const QStyleOption *opt)\nThis is a reimplementation of QStyle::generatedIconPixmap", true, &_init_f_generatedIconPixmap_c5776, &_call_f_generatedIconPixmap_c5776); + methods += new qt_gsi::GenericMethod ("hitTestComplexControl", "@brief Method QStyle::SubControl QCommonStyle::hitTestComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, const QPoint &pt, const QWidget *w)\nThis is a reimplementation of QStyle::hitTestComplexControl", true, &_init_f_hitTestComplexControl_c9517, &_call_f_hitTestComplexControl_c9517); + methods += new qt_gsi::GenericMethod ("layoutSpacing", "@brief Method int QCommonStyle::layoutSpacing(QSizePolicy::ControlType control1, QSizePolicy::ControlType control2, Qt::Orientation orientation, const QStyleOption *option, const QWidget *widget)\nThis is a reimplementation of QStyle::layoutSpacing", true, &_init_f_layoutSpacing_c11697, &_call_f_layoutSpacing_c11697); + methods += new qt_gsi::GenericMethod ("pixelMetric", "@brief Method int QCommonStyle::pixelMetric(QStyle::PixelMetric m, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QStyle::pixelMetric", true, &_init_f_pixelMetric_c6642, &_call_f_pixelMetric_c6642); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QCommonStyle::polish(QPalette &)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1418, &_call_f_polish_1418); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QCommonStyle::polish(QApplication *app)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1843, &_call_f_polish_1843); + methods += new qt_gsi::GenericMethod ("polish", "@brief Method void QCommonStyle::polish(QWidget *widget)\nThis is a reimplementation of QStyle::polish", false, &_init_f_polish_1315, &_call_f_polish_1315); + methods += new qt_gsi::GenericMethod ("sizeFromContents", "@brief Method QSize QCommonStyle::sizeFromContents(QStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *widget)\nThis is a reimplementation of QStyle::sizeFromContents", true, &_init_f_sizeFromContents_c8477, &_call_f_sizeFromContents_c8477); + methods += new qt_gsi::GenericMethod ("standardIcon", "@brief Method QIcon QCommonStyle::standardIcon(QStyle::StandardPixmap standardIcon, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QStyle::standardIcon", true, &_init_f_standardIcon_c6956, &_call_f_standardIcon_c6956); + methods += new qt_gsi::GenericMethod ("standardPixmap", "@brief Method QPixmap QCommonStyle::standardPixmap(QStyle::StandardPixmap sp, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QStyle::standardPixmap", true, &_init_f_standardPixmap_c6956, &_call_f_standardPixmap_c6956); + methods += new qt_gsi::GenericMethod ("styleHint", "@brief Method int QCommonStyle::styleHint(QStyle::StyleHint sh, const QStyleOption *opt, const QWidget *w, QStyleHintReturn *shret)\nThis is a reimplementation of QStyle::styleHint", true, &_init_f_styleHint_c8615, &_call_f_styleHint_c8615); + methods += new qt_gsi::GenericMethod ("subControlRect", "@brief Method QRect QCommonStyle::subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex *opt, QStyle::SubControl sc, const QWidget *w)\nThis is a reimplementation of QStyle::subControlRect", true, &_init_f_subControlRect_c9798, &_call_f_subControlRect_c9798); + methods += new qt_gsi::GenericMethod ("subElementRect", "@brief Method QRect QCommonStyle::subElementRect(QStyle::SubElement r, const QStyleOption *opt, const QWidget *widget)\nThis is a reimplementation of QStyle::subElementRect", true, &_init_f_subElementRect_c6528, &_call_f_subElementRect_c6528); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QCommonStyle::unpolish(QWidget *widget)\nThis is a reimplementation of QStyle::unpolish", false, &_init_f_unpolish_1315, &_call_f_unpolish_1315); + methods += new qt_gsi::GenericMethod ("unpolish", "@brief Method void QCommonStyle::unpolish(QApplication *application)\nThis is a reimplementation of QStyle::unpolish", false, &_init_f_unpolish_1843, &_call_f_unpolish_1843); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QCommonStyle::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QCommonStyle::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); methods += new qt_gsi::GenericStaticMethod ("trUtf8", "@brief Static method QString QCommonStyle::trUtf8(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_4013, &_call_f_trUtf8_4013); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc index bcc08d16f..58404e107 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc @@ -136,7 +136,7 @@ static void _call_f_calendarWidget_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () +// void QDateTimeEdit::clear() static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) @@ -338,7 +338,7 @@ static void _call_f_displayedSections_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QEvent *) +// bool QDateTimeEdit::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -889,7 +889,7 @@ static void _call_f_setTimeSpec_1543 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QDateTimeEdit::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -904,7 +904,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int) +// void QDateTimeEdit::stepBy(int steps) static void _init_f_stepBy_767 (qt_gsi::GenericMethod *decl) @@ -1012,7 +1012,7 @@ static gsi::Methods methods_QDateTimeEdit () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":calendarPopup", "@brief Method bool QDateTimeEdit::calendarPopup()\n", true, &_init_f_calendarPopup_c0, &_call_f_calendarPopup_c0); methods += new qt_gsi::GenericMethod (":calendarWidget", "@brief Method QCalendarWidget *QDateTimeEdit::calendarWidget()\n", true, &_init_f_calendarWidget_c0, &_call_f_calendarWidget_c0); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method ()\nThis is a reimplementation of QAbstractSpinBox::clear", false, &_init_f_clear_0, &_call_f_clear_0); + methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QDateTimeEdit::clear()\nThis is a reimplementation of QAbstractSpinBox::clear", false, &_init_f_clear_0, &_call_f_clear_0); methods += new qt_gsi::GenericMethod ("clearMaximumDate", "@brief Method void QDateTimeEdit::clearMaximumDate()\n", false, &_init_f_clearMaximumDate_0, &_call_f_clearMaximumDate_0); methods += new qt_gsi::GenericMethod ("clearMaximumDateTime", "@brief Method void QDateTimeEdit::clearMaximumDateTime()\n", false, &_init_f_clearMaximumDateTime_0, &_call_f_clearMaximumDateTime_0); methods += new qt_gsi::GenericMethod ("clearMaximumTime", "@brief Method void QDateTimeEdit::clearMaximumTime()\n", false, &_init_f_clearMaximumTime_0, &_call_f_clearMaximumTime_0); @@ -1025,7 +1025,7 @@ static gsi::Methods methods_QDateTimeEdit () { methods += new qt_gsi::GenericMethod (":dateTime", "@brief Method QDateTime QDateTimeEdit::dateTime()\n", true, &_init_f_dateTime_c0, &_call_f_dateTime_c0); methods += new qt_gsi::GenericMethod (":displayFormat", "@brief Method QString QDateTimeEdit::displayFormat()\n", true, &_init_f_displayFormat_c0, &_call_f_displayFormat_c0); methods += new qt_gsi::GenericMethod (":displayedSections", "@brief Method QFlags QDateTimeEdit::displayedSections()\n", true, &_init_f_displayedSections_c0, &_call_f_displayedSections_c0); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QAbstractSpinBox::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QDateTimeEdit::event(QEvent *event)\nThis is a reimplementation of QAbstractSpinBox::event", false, &_init_f_event_1217, &_call_f_event_1217); methods += new qt_gsi::GenericMethod (":maximumDate", "@brief Method QDate QDateTimeEdit::maximumDate()\n", true, &_init_f_maximumDate_c0, &_call_f_maximumDate_c0); methods += new qt_gsi::GenericMethod (":maximumDateTime", "@brief Method QDateTime QDateTimeEdit::maximumDateTime()\n", true, &_init_f_maximumDateTime_c0, &_call_f_maximumDateTime_c0); methods += new qt_gsi::GenericMethod (":maximumTime", "@brief Method QTime QDateTimeEdit::maximumTime()\n", true, &_init_f_maximumTime_c0, &_call_f_maximumTime_c0); @@ -1054,8 +1054,8 @@ static gsi::Methods methods_QDateTimeEdit () { methods += new qt_gsi::GenericMethod ("setTime|time=", "@brief Method void QDateTimeEdit::setTime(const QTime &time)\n", false, &_init_f_setTime_1793, &_call_f_setTime_1793); methods += new qt_gsi::GenericMethod ("setTimeRange", "@brief Method void QDateTimeEdit::setTimeRange(const QTime &min, const QTime &max)\n", false, &_init_f_setTimeRange_3478, &_call_f_setTimeRange_3478); methods += new qt_gsi::GenericMethod ("setTimeSpec|timeSpec=", "@brief Method void QDateTimeEdit::setTimeSpec(Qt::TimeSpec spec)\n", false, &_init_f_setTimeSpec_1543, &_call_f_setTimeSpec_1543); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractSpinBox::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod ("stepBy", "@brief Method (int)\nThis is a reimplementation of QAbstractSpinBox::stepBy", false, &_init_f_stepBy_767, &_call_f_stepBy_767); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QDateTimeEdit::sizeHint()\nThis is a reimplementation of QAbstractSpinBox::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("stepBy", "@brief Method void QDateTimeEdit::stepBy(int steps)\nThis is a reimplementation of QAbstractSpinBox::stepBy", false, &_init_f_stepBy_767, &_call_f_stepBy_767); methods += new qt_gsi::GenericMethod (":time", "@brief Method QTime QDateTimeEdit::time()\n", true, &_init_f_time_c0, &_call_f_time_c0); methods += new qt_gsi::GenericMethod (":timeSpec", "@brief Method Qt::TimeSpec QDateTimeEdit::timeSpec()\n", true, &_init_f_timeSpec_c0, &_call_f_timeSpec_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QDateTimeEdit::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc index 5384a007e..d064c6e7d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc @@ -101,7 +101,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// QSize QDial::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -221,7 +221,7 @@ static void _call_f_setWrapping_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QDial::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -307,14 +307,14 @@ namespace gsi static gsi::Methods methods_QDial () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QDial::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":notchSize", "@brief Method int QDial::notchSize()\n", true, &_init_f_notchSize_c0, &_call_f_notchSize_c0); methods += new qt_gsi::GenericMethod (":notchTarget", "@brief Method double QDial::notchTarget()\n", true, &_init_f_notchTarget_c0, &_call_f_notchTarget_c0); methods += new qt_gsi::GenericMethod (":notchesVisible", "@brief Method bool QDial::notchesVisible()\n", true, &_init_f_notchesVisible_c0, &_call_f_notchesVisible_c0); methods += new qt_gsi::GenericMethod ("setNotchTarget|notchTarget=", "@brief Method void QDial::setNotchTarget(double target)\n", false, &_init_f_setNotchTarget_1071, &_call_f_setNotchTarget_1071); methods += new qt_gsi::GenericMethod ("setNotchesVisible|notchesVisible=", "@brief Method void QDial::setNotchesVisible(bool visible)\n", false, &_init_f_setNotchesVisible_864, &_call_f_setNotchesVisible_864); methods += new qt_gsi::GenericMethod ("setWrapping|wrapping=", "@brief Method void QDial::setWrapping(bool on)\n", false, &_init_f_setWrapping_864, &_call_f_setWrapping_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QDial::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":wrapping", "@brief Method bool QDial::wrapping()\n", true, &_init_f_wrapping_c0, &_call_f_wrapping_c0); methods += gsi::qt_signal ("actionTriggered(int)", "actionTriggered", gsi::arg("action"), "@brief Signal declaration for QDial::actionTriggered(int action)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QDial::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc index bd4256992..569ca1eae 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc @@ -181,7 +181,7 @@ static void _call_f_isSizeGripEnabled_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QSize QDialog::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -358,7 +358,7 @@ static void _call_f_setSizeGripEnabled_864 (const qt_gsi::GenericMethod * /*decl } -// (bool) +// void QDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -398,7 +398,7 @@ static void _call_f_showExtension_864 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QSize QDialog::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -474,7 +474,7 @@ static gsi::Methods methods_QDialog () { methods += new qt_gsi::GenericMethod ("exec", "@brief Method int QDialog::exec()\n", false, &_init_f_exec_0, &_call_f_exec_0); methods += new qt_gsi::GenericMethod (":extension", "@brief Method QWidget *QDialog::extension()\n", true, &_init_f_extension_c0, &_call_f_extension_c0); methods += new qt_gsi::GenericMethod ("isSizeGripEnabled?|:sizeGripEnabled", "@brief Method bool QDialog::isSizeGripEnabled()\n", true, &_init_f_isSizeGripEnabled_c0, &_call_f_isSizeGripEnabled_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QDialog::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("open", "@brief Method void QDialog::open()\n", false, &_init_f_open_0, &_call_f_open_0); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method Qt::Orientation QDialog::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); methods += new qt_gsi::GenericMethod ("reject", "@brief Method void QDialog::reject()\n", false, &_init_f_reject_0, &_call_f_reject_0); @@ -484,9 +484,9 @@ static gsi::Methods methods_QDialog () { methods += new qt_gsi::GenericMethod ("setOrientation|orientation=", "@brief Method void QDialog::setOrientation(Qt::Orientation orientation)\n", false, &_init_f_setOrientation_1913, &_call_f_setOrientation_1913); methods += new qt_gsi::GenericMethod ("setResult|result=", "@brief Method void QDialog::setResult(int r)\n", false, &_init_f_setResult_767, &_call_f_setResult_767); methods += new qt_gsi::GenericMethod ("setSizeGripEnabled|sizeGripEnabled=", "@brief Method void QDialog::setSizeGripEnabled(bool)\n", false, &_init_f_setSizeGripEnabled_864, &_call_f_setSizeGripEnabled_864); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QDialog::setVisible(bool visible)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("showExtension", "@brief Method void QDialog::showExtension(bool)\n", false, &_init_f_showExtension_864, &_call_f_showExtension_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QDialog::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QDialog::accepted()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QDialog::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QDialog::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc index acbc0b183..c206fcaad 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc @@ -63,7 +63,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &) const +// int QDirModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -82,7 +82,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int) const +// QVariant QDirModel::data(const QModelIndex &index, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -104,7 +104,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QDirModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -226,7 +226,7 @@ static void _call_f_filter_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QModelIndex &) const +// QFlags QDirModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -245,7 +245,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QDirModel::hasChildren(const QModelIndex &index) static void _init_f_hasChildren_c2395 (qt_gsi::GenericMethod *decl) @@ -264,7 +264,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, Qt::Orientation, int) const +// QVariant QDirModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -304,7 +304,7 @@ static void _call_f_iconProvider_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (int, int, const QModelIndex &) const +// QModelIndex QDirModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -329,7 +329,7 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QString &, int) const +// QModelIndex QDirModel::index(const QString &path, int column) static void _init_f_index_c2684 (qt_gsi::GenericMethod *decl) @@ -400,7 +400,7 @@ static void _call_f_lazyChildCount_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QList &) const +// QMimeData *QDirModel::mimeData(const QList &indexes) static void _init_f_mimeData_c3010 (qt_gsi::GenericMethod *decl) @@ -419,7 +419,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QStringList QDirModel::mimeTypes() static void _init_f_mimeTypes_c0 (qt_gsi::GenericMethod *decl) @@ -471,7 +471,7 @@ static void _call_f_nameFilters_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// QModelIndex QDirModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -490,7 +490,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QObject *QDirModel::parent() static void _init_f_parent_c0 (qt_gsi::GenericMethod *decl) @@ -578,7 +578,7 @@ static void _call_f_rmdir_2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QModelIndex &) const +// int QDirModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -597,7 +597,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, const QVariant &, int) +// bool QDirModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -762,7 +762,7 @@ static void _call_f_setSorting_2418 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (int, Qt::SortOrder) +// void QDirModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -800,7 +800,7 @@ static void _call_f_sorting_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QFlags QDirModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -871,35 +871,35 @@ namespace gsi static gsi::Methods methods_QDirModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QDirModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QDirModel::data(const QModelIndex &index, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QDirModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); methods += new qt_gsi::GenericMethod ("fileIcon", "@brief Method QIcon QDirModel::fileIcon(const QModelIndex &index)\n", true, &_init_f_fileIcon_c2395, &_call_f_fileIcon_c2395); methods += new qt_gsi::GenericMethod ("fileInfo", "@brief Method QFileInfo QDirModel::fileInfo(const QModelIndex &index)\n", true, &_init_f_fileInfo_c2395, &_call_f_fileInfo_c2395); methods += new qt_gsi::GenericMethod ("fileName", "@brief Method QString QDirModel::fileName(const QModelIndex &index)\n", true, &_init_f_fileName_c2395, &_call_f_fileName_c2395); methods += new qt_gsi::GenericMethod ("filePath", "@brief Method QString QDirModel::filePath(const QModelIndex &index)\n", true, &_init_f_filePath_c2395, &_call_f_filePath_c2395); methods += new qt_gsi::GenericMethod (":filter", "@brief Method QFlags QDirModel::filter()\n", true, &_init_f_filter_c0, &_call_f_filter_c0); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QDirModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method bool QDirModel::hasChildren(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QDirModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); methods += new qt_gsi::GenericMethod (":iconProvider", "@brief Method QFileIconProvider *QDirModel::iconProvider()\n", true, &_init_f_iconProvider_c0, &_call_f_iconProvider_c0); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (const QString &, int) const\n", true, &_init_f_index_c2684, &_call_f_index_c2684); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QDirModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QDirModel::index(const QString &path, int column)\n", true, &_init_f_index_c2684, &_call_f_index_c2684); methods += new qt_gsi::GenericMethod ("isDir?", "@brief Method bool QDirModel::isDir(const QModelIndex &index)\n", true, &_init_f_isDir_c2395, &_call_f_isDir_c2395); methods += new qt_gsi::GenericMethod ("isReadOnly?|:readOnly", "@brief Method bool QDirModel::isReadOnly()\n", true, &_init_f_isReadOnly_c0, &_call_f_isReadOnly_c0); methods += new qt_gsi::GenericMethod (":lazyChildCount", "@brief Method bool QDirModel::lazyChildCount()\n", true, &_init_f_lazyChildCount_c0, &_call_f_lazyChildCount_c0); - methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method (const QList &) const\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); - methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); + methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method QMimeData *QDirModel::mimeData(const QList &indexes)\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); + methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method QStringList QDirModel::mimeTypes()\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); methods += new qt_gsi::GenericMethod ("mkdir", "@brief Method QModelIndex QDirModel::mkdir(const QModelIndex &parent, const QString &name)\n", false, &_init_f_mkdir_4312, &_call_f_mkdir_4312); methods += new qt_gsi::GenericMethod (":nameFilters", "@brief Method QStringList QDirModel::nameFilters()\n", true, &_init_f_nameFilters_c0, &_call_f_nameFilters_c0); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); - methods += new qt_gsi::GenericMethod (":parent", "@brief Method () const\n", true, &_init_f_parent_c0, &_call_f_parent_c0); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QDirModel::parent(const QModelIndex &child)\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod (":parent", "@brief Method QObject *QDirModel::parent()\n", true, &_init_f_parent_c0, &_call_f_parent_c0); methods += new qt_gsi::GenericMethod ("refresh", "@brief Method void QDirModel::refresh(const QModelIndex &parent)\n", false, &_init_f_refresh_2395, &_call_f_refresh_2395); methods += new qt_gsi::GenericMethod ("remove", "@brief Method bool QDirModel::remove(const QModelIndex &index)\n", false, &_init_f_remove_2395, &_call_f_remove_2395); methods += new qt_gsi::GenericMethod (":resolveSymlinks", "@brief Method bool QDirModel::resolveSymlinks()\n", true, &_init_f_resolveSymlinks_c0, &_call_f_resolveSymlinks_c0); methods += new qt_gsi::GenericMethod ("rmdir", "@brief Method bool QDirModel::rmdir(const QModelIndex &index)\n", false, &_init_f_rmdir_2395, &_call_f_rmdir_2395); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QDirModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QDirModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setFilter|filter=", "@brief Method void QDirModel::setFilter(QFlags filters)\n", false, &_init_f_setFilter_2230, &_call_f_setFilter_2230); methods += new qt_gsi::GenericMethod ("setIconProvider|iconProvider=", "@brief Method void QDirModel::setIconProvider(QFileIconProvider *provider)\n", false, &_init_f_setIconProvider_2323, &_call_f_setIconProvider_2323); methods += new qt_gsi::GenericMethod ("setLazyChildCount|lazyChildCount=", "@brief Method void QDirModel::setLazyChildCount(bool enable)\n", false, &_init_f_setLazyChildCount_864, &_call_f_setLazyChildCount_864); @@ -907,9 +907,9 @@ static gsi::Methods methods_QDirModel () { methods += new qt_gsi::GenericMethod ("setReadOnly|readOnly=", "@brief Method void QDirModel::setReadOnly(bool enable)\n", false, &_init_f_setReadOnly_864, &_call_f_setReadOnly_864); methods += new qt_gsi::GenericMethod ("setResolveSymlinks|resolveSymlinks=", "@brief Method void QDirModel::setResolveSymlinks(bool enable)\n", false, &_init_f_setResolveSymlinks_864, &_call_f_setResolveSymlinks_864); methods += new qt_gsi::GenericMethod ("setSorting|sorting=", "@brief Method void QDirModel::setSorting(QFlags sort)\n", false, &_init_f_setSorting_2418, &_call_f_setSorting_2418); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QDirModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); methods += new qt_gsi::GenericMethod (":sorting", "@brief Method QFlags QDirModel::sorting()\n", true, &_init_f_sorting_c0, &_call_f_sorting_c0); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QDirModel::supportedDropActions()\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += gsi::qt_signal & > ("dataChanged(const QModelIndex &, const QModelIndex &, const QVector &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), gsi::arg("roles"), "@brief Signal declaration for QDirModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QDirModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal::target_type &, int, int > ("headerDataChanged(Qt::Orientation, int, int)", "headerDataChanged", gsi::arg("orientation"), gsi::arg("first"), gsi::arg("last"), "@brief Signal declaration for QDirModel::headerDataChanged(Qt::Orientation orientation, int first, int last)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc index 4a866eb9a..6650742e7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc @@ -132,7 +132,7 @@ static void _call_f_decimals_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QString &) const +// void QDoubleSpinBox::fixup(QString &str) static void _init_f_fixup_c1330 (qt_gsi::GenericMethod *decl) @@ -409,7 +409,7 @@ static void _call_f_textFromValue_c1071 (const qt_gsi::GenericMethod * /*decl*/, } -// (QString &, int &) const +// QValidator::State QDoubleSpinBox::validate(QString &input, int &pos) static void _init_f_validate_c2171 (qt_gsi::GenericMethod *decl) @@ -523,7 +523,7 @@ static gsi::Methods methods_QDoubleSpinBox () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":cleanText", "@brief Method QString QDoubleSpinBox::cleanText()\n", true, &_init_f_cleanText_c0, &_call_f_cleanText_c0); methods += new qt_gsi::GenericMethod (":decimals", "@brief Method int QDoubleSpinBox::decimals()\n", true, &_init_f_decimals_c0, &_call_f_decimals_c0); - methods += new qt_gsi::GenericMethod ("fixup", "@brief Method (QString &) const\nThis is a reimplementation of QAbstractSpinBox::fixup", true, &_init_f_fixup_c1330, &_call_f_fixup_c1330); + methods += new qt_gsi::GenericMethod ("fixup", "@brief Method void QDoubleSpinBox::fixup(QString &str)\nThis is a reimplementation of QAbstractSpinBox::fixup", true, &_init_f_fixup_c1330, &_call_f_fixup_c1330); methods += new qt_gsi::GenericMethod (":maximum", "@brief Method double QDoubleSpinBox::maximum()\n", true, &_init_f_maximum_c0, &_call_f_maximum_c0); methods += new qt_gsi::GenericMethod (":minimum", "@brief Method double QDoubleSpinBox::minimum()\n", true, &_init_f_minimum_c0, &_call_f_minimum_c0); methods += new qt_gsi::GenericMethod (":prefix", "@brief Method QString QDoubleSpinBox::prefix()\n", true, &_init_f_prefix_c0, &_call_f_prefix_c0); @@ -538,7 +538,7 @@ static gsi::Methods methods_QDoubleSpinBox () { methods += new qt_gsi::GenericMethod (":singleStep", "@brief Method double QDoubleSpinBox::singleStep()\n", true, &_init_f_singleStep_c0, &_call_f_singleStep_c0); methods += new qt_gsi::GenericMethod (":suffix", "@brief Method QString QDoubleSpinBox::suffix()\n", true, &_init_f_suffix_c0, &_call_f_suffix_c0); methods += new qt_gsi::GenericMethod ("textFromValue", "@brief Method QString QDoubleSpinBox::textFromValue(double val)\n", true, &_init_f_textFromValue_c1071, &_call_f_textFromValue_c1071); - methods += new qt_gsi::GenericMethod ("validate", "@brief Method (QString &, int &) const\nThis is a reimplementation of QAbstractSpinBox::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); + methods += new qt_gsi::GenericMethod ("validate", "@brief Method QValidator::State QDoubleSpinBox::validate(QString &input, int &pos)\nThis is a reimplementation of QAbstractSpinBox::validate", true, &_init_f_validate_c2171, &_call_f_validate_c2171); methods += new qt_gsi::GenericMethod (":value", "@brief Method double QDoubleSpinBox::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); methods += new qt_gsi::GenericMethod ("valueFromText", "@brief Method double QDoubleSpinBox::valueFromText(const QString &text)\n", true, &_init_f_valueFromText_c2025, &_call_f_valueFromText_c2025); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QDoubleSpinBox::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc index 41ea4ba1a..d4cf740c0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc @@ -334,7 +334,7 @@ static void _call_f_nameFilters_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QFileDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -350,7 +350,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QFileDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -1043,7 +1043,7 @@ static void _call_f_setViewMode_2409 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (bool) +// void QFileDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -1455,8 +1455,8 @@ static gsi::Methods methods_QFileDialog () { methods += new qt_gsi::GenericMethod ("labelText", "@brief Method QString QFileDialog::labelText(QFileDialog::DialogLabel label)\n", true, &_init_f_labelText_c2681, &_call_f_labelText_c2681); methods += new qt_gsi::GenericMethod (":mimeTypeFilters", "@brief Method QStringList QFileDialog::mimeTypeFilters()\n", true, &_init_f_mimeTypeFilters_c0, &_call_f_mimeTypeFilters_c0); methods += new qt_gsi::GenericMethod (":nameFilters", "@brief Method QStringList QFileDialog::nameFilters()\n", true, &_init_f_nameFilters_c0, &_call_f_nameFilters_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QFileDialog::open()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QFileDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod (":options", "@brief Method QFlags QFileDialog::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); methods += new qt_gsi::GenericMethod (":proxyModel", "@brief Method QAbstractProxyModel *QFileDialog::proxyModel()\n", true, &_init_f_proxyModel_c0, &_call_f_proxyModel_c0); methods += new qt_gsi::GenericMethod (":resolveSymlinks", "@brief Method bool QFileDialog::resolveSymlinks()\n", true, &_init_f_resolveSymlinks_c0, &_call_f_resolveSymlinks_c0); @@ -1492,7 +1492,7 @@ static gsi::Methods methods_QFileDialog () { methods += new qt_gsi::GenericMethod ("setResolveSymlinks|resolveSymlinks=", "@brief Method void QFileDialog::setResolveSymlinks(bool enabled)\n", false, &_init_f_setResolveSymlinks_864, &_call_f_setResolveSymlinks_864); methods += new qt_gsi::GenericMethod ("setSidebarUrls|sidebarUrls=", "@brief Method void QFileDialog::setSidebarUrls(const QList &urls)\n", false, &_init_f_setSidebarUrls_2316, &_call_f_setSidebarUrls_2316); methods += new qt_gsi::GenericMethod ("setViewMode|viewMode=", "@brief Method void QFileDialog::setViewMode(QFileDialog::ViewMode mode)\n", false, &_init_f_setViewMode_2409, &_call_f_setViewMode_2409); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QFileDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod (":sidebarUrls", "@brief Method QList QFileDialog::sidebarUrls()\n", true, &_init_f_sidebarUrls_c0, &_call_f_sidebarUrls_c0); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QFileDialog::testOption(QFileDialog::Option option)\n", true, &_init_f_testOption_c2242, &_call_f_testOption_c2242); methods += new qt_gsi::GenericMethod (":viewMode", "@brief Method QFileDialog::ViewMode QFileDialog::viewMode()\n", true, &_init_f_viewMode_c0, &_call_f_viewMode_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc index 5e9b883ac..aac15e9e8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc @@ -65,7 +65,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QModelIndex &) const +// bool QFileSystemModel::canFetchMore(const QModelIndex &parent) static void _init_f_canFetchMore_c2395 (qt_gsi::GenericMethod *decl) @@ -84,7 +84,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &) const +// int QFileSystemModel::columnCount(const QModelIndex &parent) static void _init_f_columnCount_c2395 (qt_gsi::GenericMethod *decl) @@ -103,7 +103,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &, int) const +// QVariant QFileSystemModel::data(const QModelIndex &index, int role) static void _init_f_data_c3054 (qt_gsi::GenericMethod *decl) @@ -125,7 +125,7 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) +// bool QFileSystemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) static void _init_f_dropMimeData_7425 (qt_gsi::GenericMethod *decl) @@ -156,7 +156,7 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &) +// void QFileSystemModel::fetchMore(const QModelIndex &parent) static void _init_f_fetchMore_2395 (qt_gsi::GenericMethod *decl) @@ -267,7 +267,7 @@ static void _call_f_filter_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QModelIndex &) const +// QFlags QFileSystemModel::flags(const QModelIndex &index) static void _init_f_flags_c2395 (qt_gsi::GenericMethod *decl) @@ -286,7 +286,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// bool QFileSystemModel::hasChildren(const QModelIndex &parent) static void _init_f_hasChildren_c2395 (qt_gsi::GenericMethod *decl) @@ -305,7 +305,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int, Qt::Orientation, int) const +// QVariant QFileSystemModel::headerData(int section, Qt::Orientation orientation, int role) static void _init_f_headerData_c3231 (qt_gsi::GenericMethod *decl) @@ -345,7 +345,7 @@ static void _call_f_iconProvider_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (int, int, const QModelIndex &) const +// QModelIndex QFileSystemModel::index(int row, int column, const QModelIndex &parent) static void _init_f_index_c3713 (qt_gsi::GenericMethod *decl) @@ -370,7 +370,7 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QString &, int) const +// QModelIndex QFileSystemModel::index(const QString &path, int column) static void _init_f_index_c2684 (qt_gsi::GenericMethod *decl) @@ -445,7 +445,7 @@ static void _call_f_lastModified_c2395 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QList &) const +// QMimeData *QFileSystemModel::mimeData(const QList &indexes) static void _init_f_mimeData_c3010 (qt_gsi::GenericMethod *decl) @@ -464,7 +464,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QStringList QFileSystemModel::mimeTypes() static void _init_f_mimeTypes_c0 (qt_gsi::GenericMethod *decl) @@ -550,7 +550,7 @@ static void _call_f_nameFilters_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) const +// QModelIndex QFileSystemModel::parent(const QModelIndex &child) static void _init_f_parent_c2395 (qt_gsi::GenericMethod *decl) @@ -671,7 +671,7 @@ static void _call_f_rootPath_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// int QFileSystemModel::rowCount(const QModelIndex &parent) static void _init_f_rowCount_c2395 (qt_gsi::GenericMethod *decl) @@ -690,7 +690,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, const QVariant &, int) +// bool QFileSystemModel::setData(const QModelIndex &index, const QVariant &value, int role) static void _init_f_setData_5065 (qt_gsi::GenericMethod *decl) @@ -873,7 +873,7 @@ static void _call_f_size_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (int, Qt::SortOrder) +// void QFileSystemModel::sort(int column, Qt::SortOrder order) static void _init_f_sort_2340 (qt_gsi::GenericMethod *decl) @@ -896,7 +896,7 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QFlags QFileSystemModel::supportedDropActions() static void _init_f_supportedDropActions_c0 (qt_gsi::GenericMethod *decl) @@ -986,40 +986,40 @@ namespace gsi static gsi::Methods methods_QFileSystemModel () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); - methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QModelIndex &, int) const\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); - methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); - methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); + methods += new qt_gsi::GenericMethod ("canFetchMore", "@brief Method bool QFileSystemModel::canFetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::canFetchMore", true, &_init_f_canFetchMore_c2395, &_call_f_canFetchMore_c2395); + methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QFileSystemModel::columnCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::columnCount", true, &_init_f_columnCount_c2395, &_call_f_columnCount_c2395); + methods += new qt_gsi::GenericMethod ("data", "@brief Method QVariant QFileSystemModel::data(const QModelIndex &index, int role)\nThis is a reimplementation of QAbstractItemModel::data", true, &_init_f_data_c3054, &_call_f_data_c3054); + methods += new qt_gsi::GenericMethod ("dropMimeData", "@brief Method bool QFileSystemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::dropMimeData", false, &_init_f_dropMimeData_7425, &_call_f_dropMimeData_7425); + methods += new qt_gsi::GenericMethod ("fetchMore", "@brief Method void QFileSystemModel::fetchMore(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::fetchMore", false, &_init_f_fetchMore_2395, &_call_f_fetchMore_2395); methods += new qt_gsi::GenericMethod ("fileIcon", "@brief Method QIcon QFileSystemModel::fileIcon(const QModelIndex &index)\n", true, &_init_f_fileIcon_c2395, &_call_f_fileIcon_c2395); methods += new qt_gsi::GenericMethod ("fileInfo", "@brief Method QFileInfo QFileSystemModel::fileInfo(const QModelIndex &index)\n", true, &_init_f_fileInfo_c2395, &_call_f_fileInfo_c2395); methods += new qt_gsi::GenericMethod ("fileName", "@brief Method QString QFileSystemModel::fileName(const QModelIndex &index)\n", true, &_init_f_fileName_c2395, &_call_f_fileName_c2395); methods += new qt_gsi::GenericMethod ("filePath", "@brief Method QString QFileSystemModel::filePath(const QModelIndex &index)\n", true, &_init_f_filePath_c2395, &_call_f_filePath_c2395); methods += new qt_gsi::GenericMethod (":filter", "@brief Method QFlags QFileSystemModel::filter()\n", true, &_init_f_filter_c0, &_call_f_filter_c0); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); - methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); - methods += new qt_gsi::GenericMethod ("headerData", "@brief Method (int, Qt::Orientation, int) const\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); + methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QFileSystemModel::flags(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemModel::flags", true, &_init_f_flags_c2395, &_call_f_flags_c2395); + methods += new qt_gsi::GenericMethod ("hasChildren", "@brief Method bool QFileSystemModel::hasChildren(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::hasChildren", true, &_init_f_hasChildren_c2395, &_call_f_hasChildren_c2395); + methods += new qt_gsi::GenericMethod ("headerData", "@brief Method QVariant QFileSystemModel::headerData(int section, Qt::Orientation orientation, int role)\nThis is a reimplementation of QAbstractItemModel::headerData", true, &_init_f_headerData_c3231, &_call_f_headerData_c3231); methods += new qt_gsi::GenericMethod (":iconProvider", "@brief Method QFileIconProvider *QFileSystemModel::iconProvider()\n", true, &_init_f_iconProvider_c0, &_call_f_iconProvider_c0); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (int, int, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); - methods += new qt_gsi::GenericMethod ("index", "@brief Method (const QString &, int) const\n", true, &_init_f_index_c2684, &_call_f_index_c2684); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QFileSystemModel::index(int row, int column, const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::index", true, &_init_f_index_c3713, &_call_f_index_c3713); + methods += new qt_gsi::GenericMethod ("index", "@brief Method QModelIndex QFileSystemModel::index(const QString &path, int column)\n", true, &_init_f_index_c2684, &_call_f_index_c2684); methods += new qt_gsi::GenericMethod ("isDir?", "@brief Method bool QFileSystemModel::isDir(const QModelIndex &index)\n", true, &_init_f_isDir_c2395, &_call_f_isDir_c2395); methods += new qt_gsi::GenericMethod ("isReadOnly?|:readOnly", "@brief Method bool QFileSystemModel::isReadOnly()\n", true, &_init_f_isReadOnly_c0, &_call_f_isReadOnly_c0); methods += new qt_gsi::GenericMethod ("lastModified", "@brief Method QDateTime QFileSystemModel::lastModified(const QModelIndex &index)\n", true, &_init_f_lastModified_c2395, &_call_f_lastModified_c2395); - methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method (const QList &) const\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); - methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); + methods += new qt_gsi::GenericMethod ("mimeData", "@brief Method QMimeData *QFileSystemModel::mimeData(const QList &indexes)\nThis is a reimplementation of QAbstractItemModel::mimeData", true, &_init_f_mimeData_c3010, &_call_f_mimeData_c3010); + methods += new qt_gsi::GenericMethod ("mimeTypes", "@brief Method QStringList QFileSystemModel::mimeTypes()\nThis is a reimplementation of QAbstractItemModel::mimeTypes", true, &_init_f_mimeTypes_c0, &_call_f_mimeTypes_c0); methods += new qt_gsi::GenericMethod ("mkdir", "@brief Method QModelIndex QFileSystemModel::mkdir(const QModelIndex &parent, const QString &name)\n", false, &_init_f_mkdir_4312, &_call_f_mkdir_4312); methods += new qt_gsi::GenericMethod ("myComputer", "@brief Method QVariant QFileSystemModel::myComputer(int role)\n", true, &_init_f_myComputer_c767, &_call_f_myComputer_c767); methods += new qt_gsi::GenericMethod (":nameFilterDisables", "@brief Method bool QFileSystemModel::nameFilterDisables()\n", true, &_init_f_nameFilterDisables_c0, &_call_f_nameFilterDisables_c0); methods += new qt_gsi::GenericMethod (":nameFilters", "@brief Method QStringList QFileSystemModel::nameFilters()\n", true, &_init_f_nameFilters_c0, &_call_f_nameFilters_c0); - methods += new qt_gsi::GenericMethod ("parent", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); + methods += new qt_gsi::GenericMethod ("parent", "@brief Method QModelIndex QFileSystemModel::parent(const QModelIndex &child)\nThis is a reimplementation of QAbstractItemModel::parent", true, &_init_f_parent_c2395, &_call_f_parent_c2395); methods += new qt_gsi::GenericMethod ("permissions", "@brief Method QFlags QFileSystemModel::permissions(const QModelIndex &index)\n", true, &_init_f_permissions_c2395, &_call_f_permissions_c2395); methods += new qt_gsi::GenericMethod ("remove", "@brief Method bool QFileSystemModel::remove(const QModelIndex &index)\n", false, &_init_f_remove_2395, &_call_f_remove_2395); methods += new qt_gsi::GenericMethod (":resolveSymlinks", "@brief Method bool QFileSystemModel::resolveSymlinks()\n", true, &_init_f_resolveSymlinks_c0, &_call_f_resolveSymlinks_c0); methods += new qt_gsi::GenericMethod ("rmdir", "@brief Method bool QFileSystemModel::rmdir(const QModelIndex &index)\n", false, &_init_f_rmdir_2395, &_call_f_rmdir_2395); methods += new qt_gsi::GenericMethod ("rootDirectory", "@brief Method QDir QFileSystemModel::rootDirectory()\n", true, &_init_f_rootDirectory_c0, &_call_f_rootDirectory_c0); methods += new qt_gsi::GenericMethod ("rootPath", "@brief Method QString QFileSystemModel::rootPath()\n", true, &_init_f_rootPath_c0, &_call_f_rootPath_c0); - methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); - methods += new qt_gsi::GenericMethod ("setData", "@brief Method (const QModelIndex &, const QVariant &, int)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); + methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QFileSystemModel::rowCount(const QModelIndex &parent)\nThis is a reimplementation of QAbstractItemModel::rowCount", true, &_init_f_rowCount_c2395, &_call_f_rowCount_c2395); + methods += new qt_gsi::GenericMethod ("setData", "@brief Method bool QFileSystemModel::setData(const QModelIndex &index, const QVariant &value, int role)\nThis is a reimplementation of QAbstractItemModel::setData", false, &_init_f_setData_5065, &_call_f_setData_5065); methods += new qt_gsi::GenericMethod ("setFilter|filter=", "@brief Method void QFileSystemModel::setFilter(QFlags filters)\n", false, &_init_f_setFilter_2230, &_call_f_setFilter_2230); methods += new qt_gsi::GenericMethod ("setIconProvider|iconProvider=", "@brief Method void QFileSystemModel::setIconProvider(QFileIconProvider *provider)\n", false, &_init_f_setIconProvider_2323, &_call_f_setIconProvider_2323); methods += new qt_gsi::GenericMethod ("setNameFilterDisables|nameFilterDisables=", "@brief Method void QFileSystemModel::setNameFilterDisables(bool enable)\n", false, &_init_f_setNameFilterDisables_864, &_call_f_setNameFilterDisables_864); @@ -1028,8 +1028,8 @@ static gsi::Methods methods_QFileSystemModel () { methods += new qt_gsi::GenericMethod ("setResolveSymlinks|resolveSymlinks=", "@brief Method void QFileSystemModel::setResolveSymlinks(bool enable)\n", false, &_init_f_setResolveSymlinks_864, &_call_f_setResolveSymlinks_864); methods += new qt_gsi::GenericMethod ("setRootPath", "@brief Method QModelIndex QFileSystemModel::setRootPath(const QString &path)\n", false, &_init_f_setRootPath_2025, &_call_f_setRootPath_2025); methods += new qt_gsi::GenericMethod ("size", "@brief Method qint64 QFileSystemModel::size(const QModelIndex &index)\n", true, &_init_f_size_c2395, &_call_f_size_c2395); - methods += new qt_gsi::GenericMethod ("sort", "@brief Method (int, Qt::SortOrder)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); - methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method () const\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); + methods += new qt_gsi::GenericMethod ("sort", "@brief Method void QFileSystemModel::sort(int column, Qt::SortOrder order)\nThis is a reimplementation of QAbstractItemModel::sort", false, &_init_f_sort_2340, &_call_f_sort_2340); + methods += new qt_gsi::GenericMethod ("supportedDropActions", "@brief Method QFlags QFileSystemModel::supportedDropActions()\nThis is a reimplementation of QAbstractItemModel::supportedDropActions", true, &_init_f_supportedDropActions_c0, &_call_f_supportedDropActions_c0); methods += new qt_gsi::GenericMethod ("type", "@brief Method QString QFileSystemModel::type(const QModelIndex &index)\n", true, &_init_f_type_c2395, &_call_f_type_c2395); methods += gsi::qt_signal & > ("dataChanged(const QModelIndex &, const QModelIndex &, const QVector &)", "dataChanged", gsi::arg("topLeft"), gsi::arg("bottomRight"), gsi::arg("roles"), "@brief Signal declaration for QFileSystemModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QFileSystemModel::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc index 8fbb82051..55406a969 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc @@ -198,7 +198,7 @@ static void _call_f_setWritingSystem_3214 (const qt_gsi::GenericMethod * /*decl* } -// () const +// QSize QFontComboBox::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -289,7 +289,7 @@ static gsi::Methods methods_QFontComboBox () { methods += new qt_gsi::GenericMethod ("setCurrentFont|currentFont=", "@brief Method void QFontComboBox::setCurrentFont(const QFont &f)\n", false, &_init_f_setCurrentFont_1801, &_call_f_setCurrentFont_1801); methods += new qt_gsi::GenericMethod ("setFontFilters|fontFilters=", "@brief Method void QFontComboBox::setFontFilters(QFlags filters)\n", false, &_init_f_setFontFilters_3550, &_call_f_setFontFilters_3550); methods += new qt_gsi::GenericMethod ("setWritingSystem|writingSystem=", "@brief Method void QFontComboBox::setWritingSystem(QFontDatabase::WritingSystem)\n", false, &_init_f_setWritingSystem_3214, &_call_f_setWritingSystem_3214); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QComboBox::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QFontComboBox::sizeHint()\nThis is a reimplementation of QComboBox::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":writingSystem", "@brief Method QFontDatabase::WritingSystem QFontComboBox::writingSystem()\n", true, &_init_f_writingSystem_c0, &_call_f_writingSystem_c0); methods += gsi::qt_signal ("activated(int)", "activated", gsi::arg("index"), "@brief Signal declaration for QFontComboBox::activated(int index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("activated(const QString &)", "activated_qs", gsi::arg("arg1"), "@brief Signal declaration for QFontComboBox::activated(const QString &)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc index 2b900de0f..5f8f82167 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc @@ -115,7 +115,7 @@ static void _call_f_currentFont_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QFontDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -131,7 +131,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QFontDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -247,7 +247,7 @@ static void _call_f_setOptions_3960 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (bool) +// void QFontDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -396,14 +396,14 @@ static gsi::Methods methods_QFontDialog () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":currentFont", "@brief Method QFont QFontDialog::currentFont()\n", true, &_init_f_currentFont_c0, &_call_f_currentFont_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QFontDialog::open()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QFontDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod (":options", "@brief Method QFlags QFontDialog::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); methods += new qt_gsi::GenericMethod ("selectedFont", "@brief Method QFont QFontDialog::selectedFont()\n", true, &_init_f_selectedFont_c0, &_call_f_selectedFont_c0); methods += new qt_gsi::GenericMethod ("setCurrentFont|currentFont=", "@brief Method void QFontDialog::setCurrentFont(const QFont &font)\n", false, &_init_f_setCurrentFont_1801, &_call_f_setCurrentFont_1801); methods += new qt_gsi::GenericMethod ("setOption", "@brief Method void QFontDialog::setOption(QFontDialog::FontDialogOption option, bool on)\n", false, &_init_f_setOption_4020, &_call_f_setOption_4020); methods += new qt_gsi::GenericMethod ("setOptions|options=", "@brief Method void QFontDialog::setOptions(QFlags options)\n", false, &_init_f_setOptions_3960, &_call_f_setOptions_3960); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QFontDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QFontDialog::testOption(QFontDialog::FontDialogOption option)\n", true, &_init_f_testOption_c3264, &_call_f_testOption_c3264); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QFontDialog::accepted()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("currentFontChanged(const QFont &)", "currentFontChanged", gsi::arg("font"), "@brief Signal declaration for QFontDialog::currentFontChanged(const QFont &font)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc index ba7010deb..042224af7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc @@ -62,7 +62,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QLayoutItem *) +// void QFormLayout::addItem(QLayoutItem *item) static void _init_f_addItem_1740 (qt_gsi::GenericMethod *decl) @@ -214,7 +214,7 @@ static void _call_f_addRow_1341 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QFormLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -229,7 +229,7 @@ static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QFlags QFormLayout::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -352,7 +352,7 @@ static void _call_f_getWidgetPosition_c4714 (const qt_gsi::GenericMethod * /*dec } -// () const +// bool QFormLayout::hasHeightForWidth() static void _init_f_hasHeightForWidth_c0 (qt_gsi::GenericMethod *decl) @@ -367,7 +367,7 @@ static void _call_f_hasHeightForWidth_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QFormLayout::heightForWidth(int width) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -551,7 +551,7 @@ static void _call_f_insertRow_2000 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QFormLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -567,7 +567,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, QFormLayout::ItemRole) const +// QLayoutItem *QFormLayout::itemAt(int row, QFormLayout::ItemRole role) static void _init_f_itemAt_c3135 (qt_gsi::GenericMethod *decl) @@ -589,7 +589,7 @@ static void _call_f_itemAt_c3135 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QLayoutItem *QFormLayout::itemAt(int index) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -661,7 +661,7 @@ static void _call_f_labelForField_c1341 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QFormLayout::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -746,7 +746,7 @@ static void _call_f_setFormAlignment_2750 (const qt_gsi::GenericMethod * /*decl* } -// (const QRect &) +// void QFormLayout::setGeometry(const QRect &rect) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -878,7 +878,7 @@ static void _call_f_setRowWrapPolicy_3021 (const qt_gsi::GenericMethod * /*decl* } -// (int) +// void QFormLayout::setSpacing(int) static void _init_f_setSpacing_767 (qt_gsi::GenericMethod *decl) @@ -944,7 +944,7 @@ static void _call_f_setWidget_4342 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QFormLayout::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -959,7 +959,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QFormLayout::spacing() static void _init_f_spacing_c0 (qt_gsi::GenericMethod *decl) @@ -974,7 +974,7 @@ static void _call_f_spacing_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (int) +// QLayoutItem *QFormLayout::takeAt(int index) static void _init_f_takeAt_767 (qt_gsi::GenericMethod *decl) @@ -1064,22 +1064,22 @@ namespace gsi static gsi::Methods methods_QFormLayout () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("addItem", "@brief Method (QLayoutItem *)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); + methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QFormLayout::addItem(QLayoutItem *item)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(QWidget *label, QWidget *field)\n", false, &_init_f_addRow_2522, &_call_f_addRow_2522); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(QWidget *label, QLayout *field)\n", false, &_init_f_addRow_2548, &_call_f_addRow_2548); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(const QString &labelText, QWidget *field)\n", false, &_init_f_addRow_3232, &_call_f_addRow_3232); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(const QString &labelText, QLayout *field)\n", false, &_init_f_addRow_3258, &_call_f_addRow_3258); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(QWidget *widget)\n", false, &_init_f_addRow_1315, &_call_f_addRow_1315); methods += new qt_gsi::GenericMethod ("addRow", "@brief Method void QFormLayout::addRow(QLayout *layout)\n", false, &_init_f_addRow_1341, &_call_f_addRow_1341); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QFormLayout::count()\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QFormLayout::expandingDirections()\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); methods += new qt_gsi::GenericMethod (":fieldGrowthPolicy", "@brief Method QFormLayout::FieldGrowthPolicy QFormLayout::fieldGrowthPolicy()\n", true, &_init_f_fieldGrowthPolicy_c0, &_call_f_fieldGrowthPolicy_c0); methods += new qt_gsi::GenericMethod (":formAlignment", "@brief Method QFlags QFormLayout::formAlignment()\n", true, &_init_f_formAlignment_c0, &_call_f_formAlignment_c0); methods += new qt_gsi::GenericMethod ("getItemPosition", "@brief Method void QFormLayout::getItemPosition(int index, int *rowPtr, QFormLayout::ItemRole *rolePtr)\n", true, &_init_f_getItemPosition_c4166, &_call_f_getItemPosition_c4166); methods += new qt_gsi::GenericMethod ("getLayoutPosition", "@brief Method void QFormLayout::getLayoutPosition(QLayout *layout, int *rowPtr, QFormLayout::ItemRole *rolePtr)\n", true, &_init_f_getLayoutPosition_c4740, &_call_f_getLayoutPosition_c4740); methods += new qt_gsi::GenericMethod ("getWidgetPosition", "@brief Method void QFormLayout::getWidgetPosition(QWidget *widget, int *rowPtr, QFormLayout::ItemRole *rolePtr)\n", true, &_init_f_getWidgetPosition_c4714, &_call_f_getWidgetPosition_c4714); - methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method () const\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QFormLayout::hasHeightForWidth()\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QFormLayout::heightForWidth(int width)\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod (":horizontalSpacing", "@brief Method int QFormLayout::horizontalSpacing()\n", true, &_init_f_horizontalSpacing_c0, &_call_f_horizontalSpacing_c0); methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QFormLayout::insertRow(int row, QWidget *label, QWidget *field)\n", false, &_init_f_insertRow_3181, &_call_f_insertRow_3181); methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QFormLayout::insertRow(int row, QWidget *label, QLayout *field)\n", false, &_init_f_insertRow_3207, &_call_f_insertRow_3207); @@ -1087,29 +1087,29 @@ static gsi::Methods methods_QFormLayout () { methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QFormLayout::insertRow(int row, const QString &labelText, QLayout *field)\n", false, &_init_f_insertRow_3917, &_call_f_insertRow_3917); methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QFormLayout::insertRow(int row, QWidget *widget)\n", false, &_init_f_insertRow_1974, &_call_f_insertRow_1974); methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QFormLayout::insertRow(int row, QLayout *layout)\n", false, &_init_f_insertRow_2000, &_call_f_insertRow_2000); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int, QFormLayout::ItemRole) const\n", true, &_init_f_itemAt_c3135, &_call_f_itemAt_c3135); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QFormLayout::invalidate()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QFormLayout::itemAt(int row, QFormLayout::ItemRole role)\n", true, &_init_f_itemAt_c3135, &_call_f_itemAt_c3135); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QFormLayout::itemAt(int index)\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); methods += new qt_gsi::GenericMethod (":labelAlignment", "@brief Method QFlags QFormLayout::labelAlignment()\n", true, &_init_f_labelAlignment_c0, &_call_f_labelAlignment_c0); methods += new qt_gsi::GenericMethod ("labelForField", "@brief Method QWidget *QFormLayout::labelForField(QWidget *field)\n", true, &_init_f_labelForField_c1315, &_call_f_labelForField_c1315); methods += new qt_gsi::GenericMethod ("labelForField", "@brief Method QWidget *QFormLayout::labelForField(QLayout *field)\n", true, &_init_f_labelForField_c1341, &_call_f_labelForField_c1341); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QFormLayout::minimumSize()\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QFormLayout::rowCount()\n", true, &_init_f_rowCount_c0, &_call_f_rowCount_c0); methods += new qt_gsi::GenericMethod (":rowWrapPolicy", "@brief Method QFormLayout::RowWrapPolicy QFormLayout::rowWrapPolicy()\n", true, &_init_f_rowWrapPolicy_c0, &_call_f_rowWrapPolicy_c0); methods += new qt_gsi::GenericMethod ("setFieldGrowthPolicy|fieldGrowthPolicy=", "@brief Method void QFormLayout::setFieldGrowthPolicy(QFormLayout::FieldGrowthPolicy policy)\n", false, &_init_f_setFieldGrowthPolicy_3418, &_call_f_setFieldGrowthPolicy_3418); methods += new qt_gsi::GenericMethod ("setFormAlignment|formAlignment=", "@brief Method void QFormLayout::setFormAlignment(QFlags alignment)\n", false, &_init_f_setFormAlignment_2750, &_call_f_setFormAlignment_2750); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QFormLayout::setGeometry(const QRect &rect)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); methods += new qt_gsi::GenericMethod ("setHorizontalSpacing|horizontalSpacing=", "@brief Method void QFormLayout::setHorizontalSpacing(int spacing)\n", false, &_init_f_setHorizontalSpacing_767, &_call_f_setHorizontalSpacing_767); methods += new qt_gsi::GenericMethod ("setItem", "@brief Method void QFormLayout::setItem(int row, QFormLayout::ItemRole role, QLayoutItem *item)\n", false, &_init_f_setItem_4767, &_call_f_setItem_4767); methods += new qt_gsi::GenericMethod ("setLabelAlignment|labelAlignment=", "@brief Method void QFormLayout::setLabelAlignment(QFlags alignment)\n", false, &_init_f_setLabelAlignment_2750, &_call_f_setLabelAlignment_2750); methods += new qt_gsi::GenericMethod ("setLayout", "@brief Method void QFormLayout::setLayout(int row, QFormLayout::ItemRole role, QLayout *layout)\n", false, &_init_f_setLayout_4368, &_call_f_setLayout_4368); methods += new qt_gsi::GenericMethod ("setRowWrapPolicy|rowWrapPolicy=", "@brief Method void QFormLayout::setRowWrapPolicy(QFormLayout::RowWrapPolicy policy)\n", false, &_init_f_setRowWrapPolicy_3021, &_call_f_setRowWrapPolicy_3021); - methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method (int)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); + methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QFormLayout::setSpacing(int)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); methods += new qt_gsi::GenericMethod ("setVerticalSpacing|verticalSpacing=", "@brief Method void QFormLayout::setVerticalSpacing(int spacing)\n", false, &_init_f_setVerticalSpacing_767, &_call_f_setVerticalSpacing_767); methods += new qt_gsi::GenericMethod ("setWidget", "@brief Method void QFormLayout::setWidget(int row, QFormLayout::ItemRole role, QWidget *widget)\n", false, &_init_f_setWidget_4342, &_call_f_setWidget_4342); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod (":spacing", "@brief Method () const\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); - methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method (int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QFormLayout::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":spacing", "@brief Method int QFormLayout::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); + methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method QLayoutItem *QFormLayout::takeAt(int index)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); methods += new qt_gsi::GenericMethod (":verticalSpacing", "@brief Method int QFormLayout::verticalSpacing()\n", true, &_init_f_verticalSpacing_c0, &_call_f_verticalSpacing_c0); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QFormLayout::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QFormLayout::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc index 931b3f36a..af2bf3d4a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc @@ -326,7 +326,7 @@ static void _call_f_setMidLineWidth_767 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QFrame::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -410,7 +410,7 @@ static gsi::Methods methods_QFrame () { methods += new qt_gsi::GenericMethod ("setFrameStyle|frameStyle=", "@brief Method void QFrame::setFrameStyle(int)\n", false, &_init_f_setFrameStyle_767, &_call_f_setFrameStyle_767); methods += new qt_gsi::GenericMethod ("setLineWidth|lineWidth=", "@brief Method void QFrame::setLineWidth(int)\n", false, &_init_f_setLineWidth_767, &_call_f_setLineWidth_767); methods += new qt_gsi::GenericMethod ("setMidLineWidth|midLineWidth=", "@brief Method void QFrame::setMidLineWidth(int)\n", false, &_init_f_setMidLineWidth_767, &_call_f_setMidLineWidth_767); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QFrame::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QFrame::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QFrame::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("windowIconChanged(const QIcon &)", "windowIconChanged", gsi::arg("icon"), "@brief Signal declaration for QFrame::windowIconChanged(const QIcon &icon)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc index 6a2568e5a..17bc45ba8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc @@ -40,7 +40,7 @@ // ----------------------------------------------------------------------- // class QGestureEvent -// () +// void QGestureEvent::accept() static void _init_f_accept_0 (qt_gsi::GenericMethod *decl) @@ -56,7 +56,7 @@ static void _call_f_accept_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QGesture *) +// void QGestureEvent::accept(QGesture *) static void _init_f_accept_1438 (qt_gsi::GenericMethod *decl) @@ -76,7 +76,7 @@ static void _call_f_accept_1438 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (Qt::GestureType) +// void QGestureEvent::accept(Qt::GestureType) static void _init_f_accept_1902 (qt_gsi::GenericMethod *decl) @@ -160,7 +160,7 @@ static void _call_f_gestures_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// void QGestureEvent::ignore() static void _init_f_ignore_0 (qt_gsi::GenericMethod *decl) @@ -176,7 +176,7 @@ static void _call_f_ignore_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QGesture *) +// void QGestureEvent::ignore(QGesture *) static void _init_f_ignore_1438 (qt_gsi::GenericMethod *decl) @@ -196,7 +196,7 @@ static void _call_f_ignore_1438 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (Qt::GestureType) +// void QGestureEvent::ignore(Qt::GestureType) static void _init_f_ignore_1902 (qt_gsi::GenericMethod *decl) @@ -216,7 +216,7 @@ static void _call_f_ignore_1902 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// bool QGestureEvent::isAccepted() static void _init_f_isAccepted_c0 (qt_gsi::GenericMethod *decl) @@ -231,7 +231,7 @@ static void _call_f_isAccepted_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QGesture *) const +// bool QGestureEvent::isAccepted(QGesture *) static void _init_f_isAccepted_c1438 (qt_gsi::GenericMethod *decl) @@ -250,7 +250,7 @@ static void _call_f_isAccepted_c1438 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (Qt::GestureType) const +// bool QGestureEvent::isAccepted(Qt::GestureType) static void _init_f_isAccepted_c1902 (qt_gsi::GenericMethod *decl) @@ -288,7 +288,7 @@ static void _call_f_mapToGraphicsScene_c1986 (const qt_gsi::GenericMethod * /*de } -// (bool) +// void QGestureEvent::setAccepted(bool accepted) static void _init_f_setAccepted_864 (qt_gsi::GenericMethod *decl) @@ -308,7 +308,7 @@ static void _call_f_setAccepted_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QGesture *, bool) +// void QGestureEvent::setAccepted(QGesture *, bool) static void _init_f_setAccepted_2194 (qt_gsi::GenericMethod *decl) @@ -331,7 +331,7 @@ static void _call_f_setAccepted_2194 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (Qt::GestureType, bool) +// void QGestureEvent::setAccepted(Qt::GestureType, bool) static void _init_f_setAccepted_2658 (qt_gsi::GenericMethod *decl) @@ -394,23 +394,23 @@ namespace gsi static gsi::Methods methods_QGestureEvent () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("accept", "@brief Method ()\n", false, &_init_f_accept_0, &_call_f_accept_0); - methods += new qt_gsi::GenericMethod ("accept", "@brief Method (QGesture *)\n", false, &_init_f_accept_1438, &_call_f_accept_1438); - methods += new qt_gsi::GenericMethod ("accept", "@brief Method (Qt::GestureType)\n", false, &_init_f_accept_1902, &_call_f_accept_1902); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QGestureEvent::accept()\n", false, &_init_f_accept_0, &_call_f_accept_0); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QGestureEvent::accept(QGesture *)\n", false, &_init_f_accept_1438, &_call_f_accept_1438); + methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QGestureEvent::accept(Qt::GestureType)\n", false, &_init_f_accept_1902, &_call_f_accept_1902); methods += new qt_gsi::GenericMethod ("activeGestures", "@brief Method QList QGestureEvent::activeGestures()\n", true, &_init_f_activeGestures_c0, &_call_f_activeGestures_c0); methods += new qt_gsi::GenericMethod ("canceledGestures", "@brief Method QList QGestureEvent::canceledGestures()\n", true, &_init_f_canceledGestures_c0, &_call_f_canceledGestures_c0); methods += new qt_gsi::GenericMethod ("gesture", "@brief Method QGesture *QGestureEvent::gesture(Qt::GestureType type)\n", true, &_init_f_gesture_c1902, &_call_f_gesture_c1902); methods += new qt_gsi::GenericMethod ("gestures", "@brief Method QList QGestureEvent::gestures()\n", true, &_init_f_gestures_c0, &_call_f_gestures_c0); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method ()\n", false, &_init_f_ignore_0, &_call_f_ignore_0); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method (QGesture *)\n", false, &_init_f_ignore_1438, &_call_f_ignore_1438); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method (Qt::GestureType)\n", false, &_init_f_ignore_1902, &_call_f_ignore_1902); - methods += new qt_gsi::GenericMethod ("isAccepted?|:accepted", "@brief Method () const\n", true, &_init_f_isAccepted_c0, &_call_f_isAccepted_c0); - methods += new qt_gsi::GenericMethod ("isAccepted?", "@brief Method (QGesture *) const\n", true, &_init_f_isAccepted_c1438, &_call_f_isAccepted_c1438); - methods += new qt_gsi::GenericMethod ("isAccepted?", "@brief Method (Qt::GestureType) const\n", true, &_init_f_isAccepted_c1902, &_call_f_isAccepted_c1902); + methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QGestureEvent::ignore()\n", false, &_init_f_ignore_0, &_call_f_ignore_0); + methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QGestureEvent::ignore(QGesture *)\n", false, &_init_f_ignore_1438, &_call_f_ignore_1438); + methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QGestureEvent::ignore(Qt::GestureType)\n", false, &_init_f_ignore_1902, &_call_f_ignore_1902); + methods += new qt_gsi::GenericMethod ("isAccepted?|:accepted", "@brief Method bool QGestureEvent::isAccepted()\n", true, &_init_f_isAccepted_c0, &_call_f_isAccepted_c0); + methods += new qt_gsi::GenericMethod ("isAccepted?", "@brief Method bool QGestureEvent::isAccepted(QGesture *)\n", true, &_init_f_isAccepted_c1438, &_call_f_isAccepted_c1438); + methods += new qt_gsi::GenericMethod ("isAccepted?", "@brief Method bool QGestureEvent::isAccepted(Qt::GestureType)\n", true, &_init_f_isAccepted_c1902, &_call_f_isAccepted_c1902); methods += new qt_gsi::GenericMethod ("mapToGraphicsScene", "@brief Method QPointF QGestureEvent::mapToGraphicsScene(const QPointF &gesturePoint)\n", true, &_init_f_mapToGraphicsScene_c1986, &_call_f_mapToGraphicsScene_c1986); - methods += new qt_gsi::GenericMethod ("setAccepted|accepted=", "@brief Method (bool)\n", false, &_init_f_setAccepted_864, &_call_f_setAccepted_864); - methods += new qt_gsi::GenericMethod ("setAccepted", "@brief Method (QGesture *, bool)\n", false, &_init_f_setAccepted_2194, &_call_f_setAccepted_2194); - methods += new qt_gsi::GenericMethod ("setAccepted", "@brief Method (Qt::GestureType, bool)\n", false, &_init_f_setAccepted_2658, &_call_f_setAccepted_2658); + methods += new qt_gsi::GenericMethod ("setAccepted|accepted=", "@brief Method void QGestureEvent::setAccepted(bool accepted)\n", false, &_init_f_setAccepted_864, &_call_f_setAccepted_864); + methods += new qt_gsi::GenericMethod ("setAccepted", "@brief Method void QGestureEvent::setAccepted(QGesture *, bool)\n", false, &_init_f_setAccepted_2194, &_call_f_setAccepted_2194); + methods += new qt_gsi::GenericMethod ("setAccepted", "@brief Method void QGestureEvent::setAccepted(Qt::GestureType, bool)\n", false, &_init_f_setAccepted_2658, &_call_f_setAccepted_2658); methods += new qt_gsi::GenericMethod ("setWidget|widget=", "@brief Method void QGestureEvent::setWidget(QWidget *widget)\n", false, &_init_f_setWidget_1315, &_call_f_setWidget_1315); methods += new qt_gsi::GenericMethod (":widget", "@brief Method QWidget *QGestureEvent::widget()\n", true, &_init_f_widget_c0, &_call_f_widget_c0); return methods; diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc index 9d6e335c7..d80871a1f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc @@ -154,7 +154,7 @@ static void _call_f_anchor_8538 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QGraphicsAnchorLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -184,7 +184,7 @@ static void _call_f_horizontalSpacing_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// () +// void QGraphicsAnchorLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -200,7 +200,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QGraphicsLayoutItem *QGraphicsAnchorLayout::itemAt(int index) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -219,7 +219,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int) +// void QGraphicsAnchorLayout::removeAt(int index) static void _init_f_removeAt_767 (qt_gsi::GenericMethod *decl) @@ -239,7 +239,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QRectF &) +// void QGraphicsAnchorLayout::setGeometry(const QRectF &rect) static void _init_f_setGeometry_1862 (qt_gsi::GenericMethod *decl) @@ -343,12 +343,12 @@ static gsi::Methods methods_QGraphicsAnchorLayout () { methods += new qt_gsi::GenericMethod ("addAnchors", "@brief Method void QGraphicsAnchorLayout::addAnchors(QGraphicsLayoutItem *firstItem, QGraphicsLayoutItem *secondItem, QFlags orientations)\n", false, &_init_f_addAnchors_7507, &_call_f_addAnchors_7507); methods += new qt_gsi::GenericMethod ("addCornerAnchors", "@brief Method void QGraphicsAnchorLayout::addCornerAnchors(QGraphicsLayoutItem *firstItem, Qt::Corner firstCorner, QGraphicsLayoutItem *secondItem, Qt::Corner secondCorner)\n", false, &_init_f_addCornerAnchors_7522, &_call_f_addCornerAnchors_7522); methods += new qt_gsi::GenericMethod ("anchor", "@brief Method QGraphicsAnchor *QGraphicsAnchorLayout::anchor(QGraphicsLayoutItem *firstItem, Qt::AnchorPoint firstEdge, QGraphicsLayoutItem *secondItem, Qt::AnchorPoint secondEdge)\n", false, &_init_f_anchor_8538, &_call_f_anchor_8538); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QGraphicsAnchorLayout::count()\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":horizontalSpacing", "@brief Method double QGraphicsAnchorLayout::horizontalSpacing()\n", true, &_init_f_horizontalSpacing_c0, &_call_f_horizontalSpacing_c0); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); - methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method (int)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRectF &)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QGraphicsAnchorLayout::invalidate()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QGraphicsLayoutItem *QGraphicsAnchorLayout::itemAt(int index)\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method void QGraphicsAnchorLayout::removeAt(int index)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGraphicsAnchorLayout::setGeometry(const QRectF &rect)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); methods += new qt_gsi::GenericMethod ("setHorizontalSpacing|horizontalSpacing=", "@brief Method void QGraphicsAnchorLayout::setHorizontalSpacing(double spacing)\n", false, &_init_f_setHorizontalSpacing_1071, &_call_f_setHorizontalSpacing_1071); methods += new qt_gsi::GenericMethod ("setSpacing", "@brief Method void QGraphicsAnchorLayout::setSpacing(double spacing)\n", false, &_init_f_setSpacing_1071, &_call_f_setSpacing_1071); methods += new qt_gsi::GenericMethod ("setVerticalSpacing|verticalSpacing=", "@brief Method void QGraphicsAnchorLayout::setVerticalSpacing(double spacing)\n", false, &_init_f_setVerticalSpacing_1071, &_call_f_setVerticalSpacing_1071); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc index 94fbb82f7..6ff361e25 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc @@ -89,7 +89,7 @@ static void _call_f_blurRadius_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QRectF &) const +// QRectF QGraphicsBlurEffect::boundingRectFor(const QRectF &rect) static void _init_f_boundingRectFor_c1862 (qt_gsi::GenericMethod *decl) @@ -206,7 +206,7 @@ static gsi::Methods methods_QGraphicsBlurEffect () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":blurHints", "@brief Method QFlags QGraphicsBlurEffect::blurHints()\n", true, &_init_f_blurHints_c0, &_call_f_blurHints_c0); methods += new qt_gsi::GenericMethod (":blurRadius", "@brief Method double QGraphicsBlurEffect::blurRadius()\n", true, &_init_f_blurRadius_c0, &_call_f_blurRadius_c0); - methods += new qt_gsi::GenericMethod ("boundingRectFor", "@brief Method (const QRectF &) const\nThis is a reimplementation of QGraphicsEffect::boundingRectFor", true, &_init_f_boundingRectFor_c1862, &_call_f_boundingRectFor_c1862); + methods += new qt_gsi::GenericMethod ("boundingRectFor", "@brief Method QRectF QGraphicsBlurEffect::boundingRectFor(const QRectF &rect)\nThis is a reimplementation of QGraphicsEffect::boundingRectFor", true, &_init_f_boundingRectFor_c1862, &_call_f_boundingRectFor_c1862); methods += new qt_gsi::GenericMethod ("setBlurHints|blurHints=", "@brief Method void QGraphicsBlurEffect::setBlurHints(QFlags hints)\n", false, &_init_f_setBlurHints_3948, &_call_f_setBlurHints_3948); methods += new qt_gsi::GenericMethod ("setBlurRadius|blurRadius=", "@brief Method void QGraphicsBlurEffect::setBlurRadius(double blurRadius)\n", false, &_init_f_setBlurRadius_1071, &_call_f_setBlurRadius_1071); methods += gsi::qt_signal > ("blurHintsChanged(QFlags)", "blurHintsChanged", gsi::arg("hints"), "@brief Signal declaration for QGraphicsBlurEffect::blurHintsChanged(QFlags hints)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc index 0aa3a51e4..4222b292c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc @@ -76,7 +76,7 @@ static void _call_f_blurRadius_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QRectF &) const +// QRectF QGraphicsDropShadowEffect::boundingRectFor(const QRectF &rect) static void _init_f_boundingRectFor_c1862 (qt_gsi::GenericMethod *decl) @@ -355,7 +355,7 @@ static gsi::Methods methods_QGraphicsDropShadowEffect () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":blurRadius", "@brief Method double QGraphicsDropShadowEffect::blurRadius()\n", true, &_init_f_blurRadius_c0, &_call_f_blurRadius_c0); - methods += new qt_gsi::GenericMethod ("boundingRectFor", "@brief Method (const QRectF &) const\nThis is a reimplementation of QGraphicsEffect::boundingRectFor", true, &_init_f_boundingRectFor_c1862, &_call_f_boundingRectFor_c1862); + methods += new qt_gsi::GenericMethod ("boundingRectFor", "@brief Method QRectF QGraphicsDropShadowEffect::boundingRectFor(const QRectF &rect)\nThis is a reimplementation of QGraphicsEffect::boundingRectFor", true, &_init_f_boundingRectFor_c1862, &_call_f_boundingRectFor_c1862); methods += new qt_gsi::GenericMethod (":color", "@brief Method QColor QGraphicsDropShadowEffect::color()\n", true, &_init_f_color_c0, &_call_f_color_c0); methods += new qt_gsi::GenericMethod (":offset", "@brief Method QPointF QGraphicsDropShadowEffect::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0); methods += new qt_gsi::GenericMethod ("setBlurRadius|blurRadius=", "@brief Method void QGraphicsDropShadowEffect::setBlurRadius(double blurRadius)\n", false, &_init_f_setBlurRadius_1071, &_call_f_setBlurRadius_1071); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc index 3296e8ba0..d19864849 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc @@ -65,7 +65,7 @@ // ----------------------------------------------------------------------- // class QGraphicsEllipseItem -// () const +// QRectF QGraphicsEllipseItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsEllipseItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QGraphicsItem *) const +// bool QGraphicsEllipseItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsEllipseItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsEllipseItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -263,7 +263,7 @@ static void _call_f_setStartAngle_767 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QPainterPath QGraphicsEllipseItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -308,7 +308,7 @@ static void _call_f_startAngle_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QGraphicsEllipseItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -328,20 +328,20 @@ namespace gsi static gsi::Methods methods_QGraphicsEllipseItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsEllipseItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsEllipseItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsEllipseItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsEllipseItem::opaqueArea()\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsEllipseItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":rect", "@brief Method QRectF QGraphicsEllipseItem::rect()\n", true, &_init_f_rect_c0, &_call_f_rect_c0); methods += new qt_gsi::GenericMethod ("setRect|rect=", "@brief Method void QGraphicsEllipseItem::setRect(const QRectF &rect)\n", false, &_init_f_setRect_1862, &_call_f_setRect_1862); methods += new qt_gsi::GenericMethod ("setRect", "@brief Method void QGraphicsEllipseItem::setRect(double x, double y, double w, double h)\n", false, &_init_f_setRect_3960, &_call_f_setRect_3960); methods += new qt_gsi::GenericMethod ("setSpanAngle|spanAngle=", "@brief Method void QGraphicsEllipseItem::setSpanAngle(int angle)\n", false, &_init_f_setSpanAngle_767, &_call_f_setSpanAngle_767); methods += new qt_gsi::GenericMethod ("setStartAngle|startAngle=", "@brief Method void QGraphicsEllipseItem::setStartAngle(int angle)\n", false, &_init_f_setStartAngle_767, &_call_f_setStartAngle_767); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsEllipseItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += new qt_gsi::GenericMethod (":spanAngle", "@brief Method int QGraphicsEllipseItem::spanAngle()\n", true, &_init_f_spanAngle_c0, &_call_f_spanAngle_c0); methods += new qt_gsi::GenericMethod (":startAngle", "@brief Method int QGraphicsEllipseItem::startAngle()\n", true, &_init_f_startAngle_c0, &_call_f_startAngle_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsEllipseItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc index 3a32f2cc3..d19ba7d89 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc @@ -254,7 +254,7 @@ static void _call_f_columnStretchFactor_c767 (const qt_gsi::GenericMethod * /*de } -// () const +// int QGraphicsGridLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -284,7 +284,7 @@ static void _call_f_horizontalSpacing_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// () +// void QGraphicsGridLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -300,7 +300,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int, int) const +// QGraphicsLayoutItem *QGraphicsGridLayout::itemAt(int row, int column) static void _init_f_itemAt_c1426 (qt_gsi::GenericMethod *decl) @@ -322,7 +322,7 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QGraphicsLayoutItem *QGraphicsGridLayout::itemAt(int index) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -341,7 +341,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (int) +// void QGraphicsGridLayout::removeAt(int index) static void _init_f_removeAt_767 (qt_gsi::GenericMethod *decl) @@ -694,7 +694,7 @@ static void _call_f_setColumnStretchFactor_1426 (const qt_gsi::GenericMethod * / } -// (const QRectF &) +// void QGraphicsGridLayout::setGeometry(const QRectF &rect) static void _init_f_setGeometry_1862 (qt_gsi::GenericMethod *decl) @@ -935,7 +935,7 @@ static void _call_f_setVerticalSpacing_1071 (const qt_gsi::GenericMethod * /*dec } -// (Qt::SizeHint, const QSizeF &) const +// QSizeF QGraphicsGridLayout::sizeHint(Qt::SizeHint which, const QSizeF &constraint) static void _init_f_sizeHint_c3330 (qt_gsi::GenericMethod *decl) @@ -987,12 +987,12 @@ static gsi::Methods methods_QGraphicsGridLayout () { methods += new qt_gsi::GenericMethod ("columnPreferredWidth", "@brief Method double QGraphicsGridLayout::columnPreferredWidth(int column)\n", true, &_init_f_columnPreferredWidth_c767, &_call_f_columnPreferredWidth_c767); methods += new qt_gsi::GenericMethod ("columnSpacing", "@brief Method double QGraphicsGridLayout::columnSpacing(int column)\n", true, &_init_f_columnSpacing_c767, &_call_f_columnSpacing_c767); methods += new qt_gsi::GenericMethod ("columnStretchFactor", "@brief Method int QGraphicsGridLayout::columnStretchFactor(int column)\n", true, &_init_f_columnStretchFactor_c767, &_call_f_columnStretchFactor_c767); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QGraphicsGridLayout::count()\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":horizontalSpacing", "@brief Method double QGraphicsGridLayout::horizontalSpacing()\n", true, &_init_f_horizontalSpacing_c0, &_call_f_horizontalSpacing_c0); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int, int) const\n", true, &_init_f_itemAt_c1426, &_call_f_itemAt_c1426); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); - methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method (int)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QGraphicsGridLayout::invalidate()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QGraphicsLayoutItem *QGraphicsGridLayout::itemAt(int row, int column)\n", true, &_init_f_itemAt_c1426, &_call_f_itemAt_c1426); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QGraphicsLayoutItem *QGraphicsGridLayout::itemAt(int index)\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method void QGraphicsGridLayout::removeAt(int index)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); methods += new qt_gsi::GenericMethod ("removeItem", "@brief Method void QGraphicsGridLayout::removeItem(QGraphicsLayoutItem *item)\n", false, &_init_f_removeItem_2557, &_call_f_removeItem_2557); methods += new qt_gsi::GenericMethod ("rowAlignment", "@brief Method QFlags QGraphicsGridLayout::rowAlignment(int row)\n", true, &_init_f_rowAlignment_c767, &_call_f_rowAlignment_c767); methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QGraphicsGridLayout::rowCount()\n", true, &_init_f_rowCount_c0, &_call_f_rowCount_c0); @@ -1009,7 +1009,7 @@ static gsi::Methods methods_QGraphicsGridLayout () { methods += new qt_gsi::GenericMethod ("setColumnPreferredWidth", "@brief Method void QGraphicsGridLayout::setColumnPreferredWidth(int column, double width)\n", false, &_init_f_setColumnPreferredWidth_1730, &_call_f_setColumnPreferredWidth_1730); methods += new qt_gsi::GenericMethod ("setColumnSpacing", "@brief Method void QGraphicsGridLayout::setColumnSpacing(int column, double spacing)\n", false, &_init_f_setColumnSpacing_1730, &_call_f_setColumnSpacing_1730); methods += new qt_gsi::GenericMethod ("setColumnStretchFactor", "@brief Method void QGraphicsGridLayout::setColumnStretchFactor(int column, int stretch)\n", false, &_init_f_setColumnStretchFactor_1426, &_call_f_setColumnStretchFactor_1426); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRectF &)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGraphicsGridLayout::setGeometry(const QRectF &rect)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); methods += new qt_gsi::GenericMethod ("setHorizontalSpacing|horizontalSpacing=", "@brief Method void QGraphicsGridLayout::setHorizontalSpacing(double spacing)\n", false, &_init_f_setHorizontalSpacing_1071, &_call_f_setHorizontalSpacing_1071); methods += new qt_gsi::GenericMethod ("setRowAlignment", "@brief Method void QGraphicsGridLayout::setRowAlignment(int row, QFlags alignment)\n", false, &_init_f_setRowAlignment_3409, &_call_f_setRowAlignment_3409); methods += new qt_gsi::GenericMethod ("setRowFixedHeight", "@brief Method void QGraphicsGridLayout::setRowFixedHeight(int row, double height)\n", false, &_init_f_setRowFixedHeight_1730, &_call_f_setRowFixedHeight_1730); @@ -1020,7 +1020,7 @@ static gsi::Methods methods_QGraphicsGridLayout () { methods += new qt_gsi::GenericMethod ("setRowStretchFactor", "@brief Method void QGraphicsGridLayout::setRowStretchFactor(int row, int stretch)\n", false, &_init_f_setRowStretchFactor_1426, &_call_f_setRowStretchFactor_1426); methods += new qt_gsi::GenericMethod ("setSpacing", "@brief Method void QGraphicsGridLayout::setSpacing(double spacing)\n", false, &_init_f_setSpacing_1071, &_call_f_setSpacing_1071); methods += new qt_gsi::GenericMethod ("setVerticalSpacing|verticalSpacing=", "@brief Method void QGraphicsGridLayout::setVerticalSpacing(double spacing)\n", false, &_init_f_setVerticalSpacing_1071, &_call_f_setVerticalSpacing_1071); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method (Qt::SizeHint, const QSizeF &) const\nThis is a reimplementation of QGraphicsLayoutItem::sizeHint", true, &_init_f_sizeHint_c3330, &_call_f_sizeHint_c3330); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSizeF QGraphicsGridLayout::sizeHint(Qt::SizeHint which, const QSizeF &constraint)\nThis is a reimplementation of QGraphicsLayoutItem::sizeHint", true, &_init_f_sizeHint_c3330, &_call_f_sizeHint_c3330); methods += new qt_gsi::GenericMethod (":verticalSpacing", "@brief Method double QGraphicsGridLayout::verticalSpacing()\n", true, &_init_f_verticalSpacing_c0, &_call_f_verticalSpacing_c0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc index 96554fc99..ee8d5d880 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc @@ -83,7 +83,7 @@ static void _call_f_addToGroup_1919 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QRectF QGraphicsItemGroup::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -98,7 +98,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QGraphicsItem *) const +// bool QGraphicsItemGroup::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsItemGroup::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -132,7 +132,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsItemGroup::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -178,7 +178,7 @@ static void _call_f_removeFromGroup_1919 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// int QGraphicsItemGroup::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -199,12 +199,12 @@ namespace gsi static gsi::Methods methods_QGraphicsItemGroup () { gsi::Methods methods; methods += new qt_gsi::GenericMethod ("addToGroup", "@brief Method void QGraphicsItemGroup::addToGroup(QGraphicsItem *item)\n", false, &_init_f_addToGroup_1919, &_call_f_addToGroup_1919); - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsItemGroup::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsItemGroup::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsItemGroup::opaqueArea()\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsItemGroup::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod ("removeFromGroup", "@brief Method void QGraphicsItemGroup::removeFromGroup(QGraphicsItem *item)\n", false, &_init_f_removeFromGroup_1919, &_call_f_removeFromGroup_1919); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsItemGroup::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc index 093e9da96..850279fa0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc @@ -73,7 +73,7 @@ static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (double *, double *, double *, double *) const +// void QGraphicsLayout::getContentsMargins(double *left, double *top, double *right, double *bottom) static void _init_f_getContentsMargins_c4704 (qt_gsi::GenericMethod *decl) @@ -201,7 +201,7 @@ static void _call_f_setContentsMargins_3960 (const qt_gsi::GenericMethod * /*dec } -// () +// void QGraphicsLayout::updateGeometry() static void _init_f_updateGeometry_0 (qt_gsi::GenericMethod *decl) @@ -279,13 +279,13 @@ static gsi::Methods methods_QGraphicsLayout () { gsi::Methods methods; methods += new qt_gsi::GenericMethod ("activate", "@brief Method void QGraphicsLayout::activate()\n", false, &_init_f_activate_0, &_call_f_activate_0); methods += new qt_gsi::GenericMethod ("count", "@brief Method int QGraphicsLayout::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); - methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method (double *, double *, double *, double *) const\nThis is a reimplementation of QGraphicsLayoutItem::getContentsMargins", true, &_init_f_getContentsMargins_c4704, &_call_f_getContentsMargins_c4704); + methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method void QGraphicsLayout::getContentsMargins(double *left, double *top, double *right, double *bottom)\nThis is a reimplementation of QGraphicsLayoutItem::getContentsMargins", true, &_init_f_getContentsMargins_c4704, &_call_f_getContentsMargins_c4704); methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QGraphicsLayout::invalidate()\n", false, &_init_f_invalidate_0, &_call_f_invalidate_0); methods += new qt_gsi::GenericMethod ("isActivated?", "@brief Method bool QGraphicsLayout::isActivated()\n", true, &_init_f_isActivated_c0, &_call_f_isActivated_c0); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QGraphicsLayoutItem *QGraphicsLayout::itemAt(int i)\n", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method void QGraphicsLayout::removeAt(int index)\n", false, &_init_f_removeAt_767, &_call_f_removeAt_767); methods += new qt_gsi::GenericMethod ("setContentsMargins", "@brief Method void QGraphicsLayout::setContentsMargins(double left, double top, double right, double bottom)\n", false, &_init_f_setContentsMargins_3960, &_call_f_setContentsMargins_3960); - methods += new qt_gsi::GenericMethod ("updateGeometry", "@brief Method ()\nThis is a reimplementation of QGraphicsLayoutItem::updateGeometry", false, &_init_f_updateGeometry_0, &_call_f_updateGeometry_0); + methods += new qt_gsi::GenericMethod ("updateGeometry", "@brief Method void QGraphicsLayout::updateGeometry()\nThis is a reimplementation of QGraphicsLayoutItem::updateGeometry", false, &_init_f_updateGeometry_0, &_call_f_updateGeometry_0); methods += new qt_gsi::GenericMethod ("widgetEvent", "@brief Method void QGraphicsLayout::widgetEvent(QEvent *e)\n", false, &_init_f_widgetEvent_1217, &_call_f_widgetEvent_1217); methods += new qt_gsi::GenericStaticMethod (":instantInvalidatePropagation", "@brief Static method bool QGraphicsLayout::instantInvalidatePropagation()\nThis method is static and can be called without an instance.", &_init_f_instantInvalidatePropagation_0, &_call_f_instantInvalidatePropagation_0); methods += new qt_gsi::GenericStaticMethod ("setInstantInvalidatePropagation|instantInvalidatePropagation=", "@brief Static method void QGraphicsLayout::setInstantInvalidatePropagation(bool enable)\nThis method is static and can be called without an instance.", &_init_f_setInstantInvalidatePropagation_864, &_call_f_setInstantInvalidatePropagation_864); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc index a933bc1ff..be66c9d79 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc @@ -65,7 +65,7 @@ // ----------------------------------------------------------------------- // class QGraphicsLineItem -// () const +// QRectF QGraphicsLineItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsLineItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QGraphicsItem *) const +// bool QGraphicsLineItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_line_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QPainterPath QGraphicsLineItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -148,7 +148,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsLineItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -258,7 +258,7 @@ static void _call_f_setPen_1685 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QPainterPath QGraphicsLineItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -273,7 +273,7 @@ static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QGraphicsLineItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -293,18 +293,18 @@ namespace gsi static gsi::Methods methods_QGraphicsLineItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsLineItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsLineItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsLineItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); methods += new qt_gsi::GenericMethod (":line", "@brief Method QLineF QGraphicsLineItem::line()\n", true, &_init_f_line_c0, &_call_f_line_c0); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsLineItem::opaqueArea()\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsLineItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":pen", "@brief Method QPen QGraphicsLineItem::pen()\n", true, &_init_f_pen_c0, &_call_f_pen_c0); methods += new qt_gsi::GenericMethod ("setLine|line=", "@brief Method void QGraphicsLineItem::setLine(const QLineF &line)\n", false, &_init_f_setLine_1856, &_call_f_setLine_1856); methods += new qt_gsi::GenericMethod ("setLine", "@brief Method void QGraphicsLineItem::setLine(double x1, double y1, double x2, double y2)\n", false, &_init_f_setLine_3960, &_call_f_setLine_3960); methods += new qt_gsi::GenericMethod ("setPen|pen=", "@brief Method void QGraphicsLineItem::setPen(const QPen &pen)\n", false, &_init_f_setPen_1685, &_call_f_setPen_1685); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsLineItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsLineItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc index e91a075c8..37d2ef60e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc @@ -101,7 +101,7 @@ static void _call_f_alignment_c2557 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// int QGraphicsLinearLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -182,7 +182,7 @@ static void _call_f_insertStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, } -// () +// void QGraphicsLinearLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -198,7 +198,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QGraphicsLayoutItem *QGraphicsLinearLayout::itemAt(int index) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -251,7 +251,7 @@ static void _call_f_orientation_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int) +// void QGraphicsLinearLayout::removeAt(int index) static void _init_f_removeAt_767 (qt_gsi::GenericMethod *decl) @@ -314,7 +314,7 @@ static void _call_f_setAlignment_5199 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QRectF &) +// void QGraphicsLinearLayout::setGeometry(const QRectF &rect) static void _init_f_setGeometry_1862 (qt_gsi::GenericMethod *decl) @@ -420,7 +420,7 @@ static void _call_f_setStretchFactor_3216 (const qt_gsi::GenericMethod * /*decl* } -// (Qt::SizeHint, const QSizeF &) const +// QSizeF QGraphicsLinearLayout::sizeHint(Qt::SizeHint which, const QSizeF &constraint) static void _init_f_sizeHint_c3330 (qt_gsi::GenericMethod *decl) @@ -484,23 +484,23 @@ static gsi::Methods methods_QGraphicsLinearLayout () { methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QGraphicsLinearLayout::addItem(QGraphicsLayoutItem *item)\n", false, &_init_f_addItem_2557, &_call_f_addItem_2557); methods += new qt_gsi::GenericMethod ("addStretch", "@brief Method void QGraphicsLinearLayout::addStretch(int stretch)\n", false, &_init_f_addStretch_767, &_call_f_addStretch_767); methods += new qt_gsi::GenericMethod ("alignment", "@brief Method QFlags QGraphicsLinearLayout::alignment(QGraphicsLayoutItem *item)\n", true, &_init_f_alignment_c2557, &_call_f_alignment_c2557); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QGraphicsLinearLayout::count()\nThis is a reimplementation of QGraphicsLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod ("dump", "@brief Method void QGraphicsLinearLayout::dump(int indent)\n", true, &_init_f_dump_c767, &_call_f_dump_c767); methods += new qt_gsi::GenericMethod ("insertItem", "@brief Method void QGraphicsLinearLayout::insertItem(int index, QGraphicsLayoutItem *item)\n", false, &_init_f_insertItem_3216, &_call_f_insertItem_3216); methods += new qt_gsi::GenericMethod ("insertStretch", "@brief Method void QGraphicsLinearLayout::insertStretch(int index, int stretch)\n", false, &_init_f_insertStretch_1426, &_call_f_insertStretch_1426); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QGraphicsLinearLayout::invalidate()\nThis is a reimplementation of QGraphicsLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QGraphicsLayoutItem *QGraphicsLinearLayout::itemAt(int index)\nThis is a reimplementation of QGraphicsLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); methods += new qt_gsi::GenericMethod ("itemSpacing", "@brief Method double QGraphicsLinearLayout::itemSpacing(int index)\n", true, &_init_f_itemSpacing_c767, &_call_f_itemSpacing_c767); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method Qt::Orientation QGraphicsLinearLayout::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); - methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method (int)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); + methods += new qt_gsi::GenericMethod ("removeAt", "@brief Method void QGraphicsLinearLayout::removeAt(int index)\nThis is a reimplementation of QGraphicsLayout::removeAt", false, &_init_f_removeAt_767, &_call_f_removeAt_767); methods += new qt_gsi::GenericMethod ("removeItem", "@brief Method void QGraphicsLinearLayout::removeItem(QGraphicsLayoutItem *item)\n", false, &_init_f_removeItem_2557, &_call_f_removeItem_2557); methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method void QGraphicsLinearLayout::setAlignment(QGraphicsLayoutItem *item, QFlags alignment)\n", false, &_init_f_setAlignment_5199, &_call_f_setAlignment_5199); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRectF &)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGraphicsLinearLayout::setGeometry(const QRectF &rect)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); methods += new qt_gsi::GenericMethod ("setItemSpacing", "@brief Method void QGraphicsLinearLayout::setItemSpacing(int index, double spacing)\n", false, &_init_f_setItemSpacing_1730, &_call_f_setItemSpacing_1730); methods += new qt_gsi::GenericMethod ("setOrientation|orientation=", "@brief Method void QGraphicsLinearLayout::setOrientation(Qt::Orientation orientation)\n", false, &_init_f_setOrientation_1913, &_call_f_setOrientation_1913); methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QGraphicsLinearLayout::setSpacing(double spacing)\n", false, &_init_f_setSpacing_1071, &_call_f_setSpacing_1071); methods += new qt_gsi::GenericMethod ("setStretchFactor", "@brief Method void QGraphicsLinearLayout::setStretchFactor(QGraphicsLayoutItem *item, int stretch)\n", false, &_init_f_setStretchFactor_3216, &_call_f_setStretchFactor_3216); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method (Qt::SizeHint, const QSizeF &) const\nThis is a reimplementation of QGraphicsLayoutItem::sizeHint", true, &_init_f_sizeHint_c3330, &_call_f_sizeHint_c3330); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSizeF QGraphicsLinearLayout::sizeHint(Qt::SizeHint which, const QSizeF &constraint)\nThis is a reimplementation of QGraphicsLayoutItem::sizeHint", true, &_init_f_sizeHint_c3330, &_call_f_sizeHint_c3330); methods += new qt_gsi::GenericMethod (":spacing", "@brief Method double QGraphicsLinearLayout::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); methods += new qt_gsi::GenericMethod ("stretchFactor", "@brief Method int QGraphicsLinearLayout::stretchFactor(QGraphicsLayoutItem *item)\n", true, &_init_f_stretchFactor_c2557, &_call_f_stretchFactor_c2557); return methods; diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc index 392d4d261..0e1e13183 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc @@ -80,7 +80,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// const QList &QGraphicsObject::children() static void _init_f_children_c0 (qt_gsi::GenericMethod *decl) @@ -239,7 +239,7 @@ namespace gsi static gsi::Methods methods_QGraphicsObject () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod (":children", "@brief Method () const\n", true, &_init_f_children_c0, &_call_f_children_c0); + methods += new qt_gsi::GenericMethod (":children", "@brief Method const QList &QGraphicsObject::children()\n", true, &_init_f_children_c0, &_call_f_children_c0); methods += new qt_gsi::GenericMethod ("grabGesture", "@brief Method void QGraphicsObject::grabGesture(Qt::GestureType type, QFlags flags)\n", false, &_init_f_grabGesture_4352, &_call_f_grabGesture_4352); methods += new qt_gsi::GenericMethod ("ungrabGesture", "@brief Method void QGraphicsObject::ungrabGesture(Qt::GestureType type)\n", false, &_init_f_ungrabGesture_1902, &_call_f_ungrabGesture_1902); methods += gsi::qt_signal ("childrenChanged()", "childrenChanged", "@brief Signal declaration for QGraphicsObject::childrenChanged()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc index d396adbdc..bc09bca6c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc @@ -65,7 +65,7 @@ // ----------------------------------------------------------------------- // class QGraphicsPathItem -// () const +// QRectF QGraphicsPathItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsPathItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QGraphicsItem *) const +// bool QGraphicsPathItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsPathItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsPathItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -194,7 +194,7 @@ static void _call_f_setPath_2514 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QPainterPath QGraphicsPathItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -209,7 +209,7 @@ static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QGraphicsPathItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -229,15 +229,15 @@ namespace gsi static gsi::Methods methods_QGraphicsPathItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsPathItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsPathItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsPathItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsPathItem::opaqueArea()\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsPathItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":path", "@brief Method QPainterPath QGraphicsPathItem::path()\n", true, &_init_f_path_c0, &_call_f_path_c0); methods += new qt_gsi::GenericMethod ("setPath|path=", "@brief Method void QGraphicsPathItem::setPath(const QPainterPath &path)\n", false, &_init_f_setPath_2514, &_call_f_setPath_2514); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsPathItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsPathItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc index db3ac657e..49e4797fa 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc @@ -64,7 +64,7 @@ // ----------------------------------------------------------------------- // class QGraphicsPixmapItem -// () const +// QRectF QGraphicsPixmapItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -79,7 +79,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsPixmapItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -98,7 +98,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QGraphicsItem *) const +// bool QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -132,7 +132,7 @@ static void _call_f_offset_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QPainterPath QGraphicsPixmapItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -147,7 +147,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsPixmapItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -291,7 +291,7 @@ static void _call_f_setTransformationMode_2633 (const qt_gsi::GenericMethod * /* } -// () const +// QPainterPath QGraphicsPixmapItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -336,7 +336,7 @@ static void _call_f_transformationMode_c0 (const qt_gsi::GenericMethod * /*decl* } -// () const +// int QGraphicsPixmapItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -356,22 +356,22 @@ namespace gsi static gsi::Methods methods_QGraphicsPixmapItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsPixmapItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsPixmapItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); methods += new qt_gsi::GenericMethod (":offset", "@brief Method QPointF QGraphicsPixmapItem::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsPixmapItem::opaqueArea()\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsPixmapItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":pixmap", "@brief Method QPixmap QGraphicsPixmapItem::pixmap()\n", true, &_init_f_pixmap_c0, &_call_f_pixmap_c0); methods += new qt_gsi::GenericMethod ("setOffset|offset=", "@brief Method void QGraphicsPixmapItem::setOffset(const QPointF &offset)\n", false, &_init_f_setOffset_1986, &_call_f_setOffset_1986); methods += new qt_gsi::GenericMethod ("setOffset", "@brief Method void QGraphicsPixmapItem::setOffset(double x, double y)\n", false, &_init_f_setOffset_2034, &_call_f_setOffset_2034); methods += new qt_gsi::GenericMethod ("setPixmap|pixmap=", "@brief Method void QGraphicsPixmapItem::setPixmap(const QPixmap &pixmap)\n", false, &_init_f_setPixmap_2017, &_call_f_setPixmap_2017); methods += new qt_gsi::GenericMethod ("setShapeMode|shapeMode=", "@brief Method void QGraphicsPixmapItem::setShapeMode(QGraphicsPixmapItem::ShapeMode mode)\n", false, &_init_f_setShapeMode_3358, &_call_f_setShapeMode_3358); methods += new qt_gsi::GenericMethod ("setTransformationMode|transformationMode=", "@brief Method void QGraphicsPixmapItem::setTransformationMode(Qt::TransformationMode mode)\n", false, &_init_f_setTransformationMode_2633, &_call_f_setTransformationMode_2633); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsPixmapItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += new qt_gsi::GenericMethod (":shapeMode", "@brief Method QGraphicsPixmapItem::ShapeMode QGraphicsPixmapItem::shapeMode()\n", true, &_init_f_shapeMode_c0, &_call_f_shapeMode_c0); methods += new qt_gsi::GenericMethod (":transformationMode", "@brief Method Qt::TransformationMode QGraphicsPixmapItem::transformationMode()\n", true, &_init_f_transformationMode_c0, &_call_f_transformationMode_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsPixmapItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc index cb530c425..46745cc4f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc @@ -65,7 +65,7 @@ // ----------------------------------------------------------------------- // class QGraphicsPolygonItem -// () const +// QRectF QGraphicsPolygonItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsPolygonItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -114,7 +114,7 @@ static void _call_f_fillRule_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QGraphicsItem *) const +// bool QGraphicsPolygonItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsPolygonItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -148,7 +148,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsPolygonItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -229,7 +229,7 @@ static void _call_f_setPolygon_2208 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QPainterPath QGraphicsPolygonItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -244,7 +244,7 @@ static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QGraphicsPolygonItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -264,17 +264,17 @@ namespace gsi static gsi::Methods methods_QGraphicsPolygonItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsPolygonItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsPolygonItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); methods += new qt_gsi::GenericMethod (":fillRule", "@brief Method Qt::FillRule QGraphicsPolygonItem::fillRule()\n", true, &_init_f_fillRule_c0, &_call_f_fillRule_c0); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsPolygonItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsPolygonItem::opaqueArea()\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsPolygonItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":polygon", "@brief Method QPolygonF QGraphicsPolygonItem::polygon()\n", true, &_init_f_polygon_c0, &_call_f_polygon_c0); methods += new qt_gsi::GenericMethod ("setFillRule|fillRule=", "@brief Method void QGraphicsPolygonItem::setFillRule(Qt::FillRule rule)\n", false, &_init_f_setFillRule_1548, &_call_f_setFillRule_1548); methods += new qt_gsi::GenericMethod ("setPolygon|polygon=", "@brief Method void QGraphicsPolygonItem::setPolygon(const QPolygonF &polygon)\n", false, &_init_f_setPolygon_2208, &_call_f_setPolygon_2208); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsPolygonItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsPolygonItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc index c73ea025b..db0e1d381 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc @@ -115,7 +115,7 @@ static void _call_f_createProxyForChildWidget_1315 (const qt_gsi::GenericMethod } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsProxyWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -141,7 +141,7 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QRectF &) +// void QGraphicsProxyWidget::setGeometry(const QRectF &rect) static void _init_f_setGeometry_1862 (qt_gsi::GenericMethod *decl) @@ -200,7 +200,7 @@ static void _call_f_subWidgetRect_c2010 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QGraphicsProxyWidget::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -287,11 +287,11 @@ static gsi::Methods methods_QGraphicsProxyWidget () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("createProxyForChildWidget", "@brief Method QGraphicsProxyWidget *QGraphicsProxyWidget::createProxyForChildWidget(QWidget *child)\n", false, &_init_f_createProxyForChildWidget_1315, &_call_f_createProxyForChildWidget_1315); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsWidget::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRectF &)\nThis is a reimplementation of QGraphicsWidget::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsProxyWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsWidget::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGraphicsProxyWidget::setGeometry(const QRectF &rect)\nThis is a reimplementation of QGraphicsWidget::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); methods += new qt_gsi::GenericMethod ("setWidget|widget=", "@brief Method void QGraphicsProxyWidget::setWidget(QWidget *widget)\n", false, &_init_f_setWidget_1315, &_call_f_setWidget_1315); methods += new qt_gsi::GenericMethod ("subWidgetRect", "@brief Method QRectF QGraphicsProxyWidget::subWidgetRect(const QWidget *widget)\n", true, &_init_f_subWidgetRect_c2010, &_call_f_subWidgetRect_c2010); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsWidget::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsProxyWidget::type()\nThis is a reimplementation of QGraphicsWidget::type", true, &_init_f_type_c0, &_call_f_type_c0); methods += new qt_gsi::GenericMethod (":widget", "@brief Method QWidget *QGraphicsProxyWidget::widget()\n", true, &_init_f_widget_c0, &_call_f_widget_c0); methods += gsi::qt_signal ("childrenChanged()", "childrenChanged", "@brief Signal declaration for QGraphicsProxyWidget::childrenChanged()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QGraphicsProxyWidget::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc index 3ca9d8945..b27aeb9b9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc @@ -65,7 +65,7 @@ // ----------------------------------------------------------------------- // class QGraphicsRectItem -// () const +// QRectF QGraphicsRectItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsRectItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -99,7 +99,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QGraphicsItem *) const +// bool QGraphicsRectItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsRectItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsRectItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -223,7 +223,7 @@ static void _call_f_setRect_3960 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QPainterPath QGraphicsRectItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -238,7 +238,7 @@ static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QGraphicsRectItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -258,16 +258,16 @@ namespace gsi static gsi::Methods methods_QGraphicsRectItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsRectItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsRectItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsRectItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsRectItem::opaqueArea()\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsRectItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod (":rect", "@brief Method QRectF QGraphicsRectItem::rect()\n", true, &_init_f_rect_c0, &_call_f_rect_c0); methods += new qt_gsi::GenericMethod ("setRect|rect=", "@brief Method void QGraphicsRectItem::setRect(const QRectF &rect)\n", false, &_init_f_setRect_1862, &_call_f_setRect_1862); methods += new qt_gsi::GenericMethod ("setRect", "@brief Method void QGraphicsRectItem::setRect(double x, double y, double w, double h)\n", false, &_init_f_setRect_3960, &_call_f_setRect_3960); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsRectItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsRectItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc index def626d95..1350a82ed 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc @@ -72,7 +72,7 @@ static void _call_f_angle_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QMatrix4x4 *) const +// void QGraphicsRotation::applyTo(QMatrix4x4 *matrix) static void _init_f_applyTo_c1556 (qt_gsi::GenericMethod *decl) @@ -259,7 +259,7 @@ static gsi::Methods methods_QGraphicsRotation () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":angle", "@brief Method double QGraphicsRotation::angle()\n", true, &_init_f_angle_c0, &_call_f_angle_c0); - methods += new qt_gsi::GenericMethod ("applyTo", "@brief Method (QMatrix4x4 *) const\nThis is a reimplementation of QGraphicsTransform::applyTo", true, &_init_f_applyTo_c1556, &_call_f_applyTo_c1556); + methods += new qt_gsi::GenericMethod ("applyTo", "@brief Method void QGraphicsRotation::applyTo(QMatrix4x4 *matrix)\nThis is a reimplementation of QGraphicsTransform::applyTo", true, &_init_f_applyTo_c1556, &_call_f_applyTo_c1556); methods += new qt_gsi::GenericMethod (":axis", "@brief Method QVector3D QGraphicsRotation::axis()\n", true, &_init_f_axis_c0, &_call_f_axis_c0); methods += new qt_gsi::GenericMethod (":origin", "@brief Method QVector3D QGraphicsRotation::origin()\n", true, &_init_f_origin_c0, &_call_f_origin_c0); methods += new qt_gsi::GenericMethod ("setAngle|angle=", "@brief Method void QGraphicsRotation::setAngle(double)\n", false, &_init_f_setAngle_1071, &_call_f_setAngle_1071); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc index 3d4284c8b..227a4bf92 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc @@ -57,7 +57,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QMatrix4x4 *) const +// void QGraphicsScale::applyTo(QMatrix4x4 *matrix) static void _init_f_applyTo_c1556 (qt_gsi::GenericMethod *decl) @@ -273,7 +273,7 @@ namespace gsi static gsi::Methods methods_QGraphicsScale () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("applyTo", "@brief Method (QMatrix4x4 *) const\nThis is a reimplementation of QGraphicsTransform::applyTo", true, &_init_f_applyTo_c1556, &_call_f_applyTo_c1556); + methods += new qt_gsi::GenericMethod ("applyTo", "@brief Method void QGraphicsScale::applyTo(QMatrix4x4 *matrix)\nThis is a reimplementation of QGraphicsTransform::applyTo", true, &_init_f_applyTo_c1556, &_call_f_applyTo_c1556); methods += new qt_gsi::GenericMethod (":origin", "@brief Method QVector3D QGraphicsScale::origin()\n", true, &_init_f_origin_c0, &_call_f_origin_c0); methods += new qt_gsi::GenericMethod ("setOrigin|origin=", "@brief Method void QGraphicsScale::setOrigin(const QVector3D &point)\n", false, &_init_f_setOrigin_2140, &_call_f_setOrigin_2140); methods += new qt_gsi::GenericMethod ("setXScale|xScale=", "@brief Method void QGraphicsScale::setXScale(double)\n", false, &_init_f_setXScale_1071, &_call_f_setXScale_1071); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc index 2b473b080..167baaab8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc @@ -66,7 +66,7 @@ // ----------------------------------------------------------------------- // class QGraphicsSimpleTextItem -// () const +// QRectF QGraphicsSimpleTextItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -81,7 +81,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsSimpleTextItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -115,7 +115,7 @@ static void _call_f_font_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QGraphicsItem *) const +// bool QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -134,7 +134,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsSimpleTextItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -149,7 +149,7 @@ static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsSimpleTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -215,7 +215,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QPainterPath QGraphicsSimpleTextItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -245,7 +245,7 @@ static void _call_f_text_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// int QGraphicsSimpleTextItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -265,17 +265,17 @@ namespace gsi static gsi::Methods methods_QGraphicsSimpleTextItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsSimpleTextItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsSimpleTextItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); methods += new qt_gsi::GenericMethod (":font", "@brief Method QFont QGraphicsSimpleTextItem::font()\n", true, &_init_f_font_c0, &_call_f_font_c0); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsSimpleTextItem::opaqueArea()\nThis is a reimplementation of QAbstractGraphicsShapeItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsSimpleTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod ("setFont|font=", "@brief Method void QGraphicsSimpleTextItem::setFont(const QFont &font)\n", false, &_init_f_setFont_1801, &_call_f_setFont_1801); methods += new qt_gsi::GenericMethod ("setText|text=", "@brief Method void QGraphicsSimpleTextItem::setText(const QString &text)\n", false, &_init_f_setText_2025, &_call_f_setText_2025); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsSimpleTextItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += new qt_gsi::GenericMethod (":text", "@brief Method QString QGraphicsSimpleTextItem::text()\n", true, &_init_f_text_c0, &_call_f_text_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsSimpleTextItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc index 7f64dda90..9dd58b974 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc @@ -101,7 +101,7 @@ static void _call_f_adjustSize_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QRectF QGraphicsTextItem::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -116,7 +116,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QPointF &) const +// bool QGraphicsTextItem::contains(const QPointF &point) static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl) @@ -180,7 +180,7 @@ static void _call_f_font_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QGraphicsItem *) const +// bool QGraphicsTextItem::isObscuredBy(const QGraphicsItem *item) static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl) @@ -199,7 +199,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsTextItem::opaqueArea() static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl) @@ -229,7 +229,7 @@ static void _call_f_openExternalLinks_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -455,7 +455,7 @@ static void _call_f_setTextWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QPainterPath QGraphicsTextItem::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -560,7 +560,7 @@ static void _call_f_toPlainText_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QGraphicsTextItem::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -632,15 +632,15 @@ static gsi::Methods methods_QGraphicsTextItem () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod ("adjustSize", "@brief Method void QGraphicsTextItem::adjustSize()\n", false, &_init_f_adjustSize_0, &_call_f_adjustSize_0); - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsTextItem::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QGraphicsTextItem::contains(const QPointF &point)\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986); methods += new qt_gsi::GenericMethod (":defaultTextColor", "@brief Method QColor QGraphicsTextItem::defaultTextColor()\n", true, &_init_f_defaultTextColor_c0, &_call_f_defaultTextColor_c0); methods += new qt_gsi::GenericMethod (":document", "@brief Method QTextDocument *QGraphicsTextItem::document()\n", true, &_init_f_document_c0, &_call_f_document_c0); methods += new qt_gsi::GenericMethod (":font", "@brief Method QFont QGraphicsTextItem::font()\n", true, &_init_f_font_c0, &_call_f_font_c0); - methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); - methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); + methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method bool QGraphicsTextItem::isObscuredBy(const QGraphicsItem *item)\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614); + methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method QPainterPath QGraphicsTextItem::opaqueArea()\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0); methods += new qt_gsi::GenericMethod (":openExternalLinks", "@brief Method bool QGraphicsTextItem::openExternalLinks()\n", true, &_init_f_openExternalLinks_c0, &_call_f_openExternalLinks_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod ("setDefaultTextColor|defaultTextColor=", "@brief Method void QGraphicsTextItem::setDefaultTextColor(const QColor &c)\n", false, &_init_f_setDefaultTextColor_1905, &_call_f_setDefaultTextColor_1905); methods += new qt_gsi::GenericMethod ("setDocument|document=", "@brief Method void QGraphicsTextItem::setDocument(QTextDocument *document)\n", false, &_init_f_setDocument_1955, &_call_f_setDocument_1955); methods += new qt_gsi::GenericMethod ("setFont|font=", "@brief Method void QGraphicsTextItem::setFont(const QFont &font)\n", false, &_init_f_setFont_1801, &_call_f_setFont_1801); @@ -651,14 +651,14 @@ static gsi::Methods methods_QGraphicsTextItem () { methods += new qt_gsi::GenericMethod ("setTextCursor|textCursor=", "@brief Method void QGraphicsTextItem::setTextCursor(const QTextCursor &cursor)\n", false, &_init_f_setTextCursor_2453, &_call_f_setTextCursor_2453); methods += new qt_gsi::GenericMethod ("setTextInteractionFlags|textInteractionFlags=", "@brief Method void QGraphicsTextItem::setTextInteractionFlags(QFlags flags)\n", false, &_init_f_setTextInteractionFlags_3396, &_call_f_setTextInteractionFlags_3396); methods += new qt_gsi::GenericMethod ("setTextWidth|textWidth=", "@brief Method void QGraphicsTextItem::setTextWidth(double width)\n", false, &_init_f_setTextWidth_1071, &_call_f_setTextWidth_1071); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsTextItem::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += new qt_gsi::GenericMethod (":tabChangesFocus", "@brief Method bool QGraphicsTextItem::tabChangesFocus()\n", true, &_init_f_tabChangesFocus_c0, &_call_f_tabChangesFocus_c0); methods += new qt_gsi::GenericMethod (":textCursor", "@brief Method QTextCursor QGraphicsTextItem::textCursor()\n", true, &_init_f_textCursor_c0, &_call_f_textCursor_c0); methods += new qt_gsi::GenericMethod (":textInteractionFlags", "@brief Method QFlags QGraphicsTextItem::textInteractionFlags()\n", true, &_init_f_textInteractionFlags_c0, &_call_f_textInteractionFlags_c0); methods += new qt_gsi::GenericMethod (":textWidth", "@brief Method double QGraphicsTextItem::textWidth()\n", true, &_init_f_textWidth_c0, &_call_f_textWidth_c0); methods += new qt_gsi::GenericMethod ("toHtml", "@brief Method QString QGraphicsTextItem::toHtml()\n", true, &_init_f_toHtml_c0, &_call_f_toHtml_c0); methods += new qt_gsi::GenericMethod ("toPlainText", "@brief Method QString QGraphicsTextItem::toPlainText()\n", true, &_init_f_toPlainText_c0, &_call_f_toPlainText_c0); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsTextItem::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); methods += gsi::qt_signal ("childrenChanged()", "childrenChanged", "@brief Signal declaration for QGraphicsTextItem::childrenChanged()\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QGraphicsTextItem::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("enabledChanged()", "enabledChanged", "@brief Signal declaration for QGraphicsTextItem::enabledChanged()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc index 022290278..275e33859 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc @@ -415,7 +415,7 @@ static void _call_f_foregroundBrush_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (Qt::InputMethodQuery) const +// QVariant QGraphicsView::inputMethodQuery(Qt::InputMethodQuery query) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -963,7 +963,7 @@ static void _call_f_optimizationFlags_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QPainter *, const QRectF &, const QRect &, Qt::AspectRatioMode) +// void QGraphicsView::render(QPainter *painter, const QRectF &target, const QRect &source, Qt::AspectRatioMode aspectRatioMode) static void _init_f_render_7013 (qt_gsi::GenericMethod *decl) @@ -1597,7 +1597,7 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QGraphicsView::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1805,7 +1805,7 @@ static gsi::Methods methods_QGraphicsView () { methods += new qt_gsi::GenericMethod ("fitInView", "@brief Method void QGraphicsView::fitInView(double x, double y, double w, double h, Qt::AspectRatioMode aspectRadioMode)\n", false, &_init_f_fitInView_6109, &_call_f_fitInView_6109); methods += new qt_gsi::GenericMethod ("fitInView", "@brief Method void QGraphicsView::fitInView(const QGraphicsItem *item, Qt::AspectRatioMode aspectRadioMode)\n", false, &_init_f_fitInView_4763, &_call_f_fitInView_4763); methods += new qt_gsi::GenericMethod (":foregroundBrush", "@brief Method QBrush QGraphicsView::foregroundBrush()\n", true, &_init_f_foregroundBrush_c0, &_call_f_foregroundBrush_c0); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QGraphicsView::inputMethodQuery(Qt::InputMethodQuery query)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); methods += new qt_gsi::GenericMethod ("invalidateScene", "@brief Method void QGraphicsView::invalidateScene(const QRectF &rect, QFlags layers)\n", false, &_init_f_invalidateScene_5397, &_call_f_invalidateScene_5397); methods += new qt_gsi::GenericMethod ("isInteractive?|:interactive", "@brief Method bool QGraphicsView::isInteractive()\n", true, &_init_f_isInteractive_c0, &_call_f_isInteractive_c0); methods += new qt_gsi::GenericMethod ("isTransformed?", "@brief Method bool QGraphicsView::isTransformed()\n", true, &_init_f_isTransformed_c0, &_call_f_isTransformed_c0); @@ -1832,7 +1832,7 @@ static gsi::Methods methods_QGraphicsView () { methods += new qt_gsi::GenericMethod ("mapToScene", "@brief Method QPolygonF QGraphicsView::mapToScene(int x, int y, int w, int h)\n", true, &_init_f_mapToScene_c2744, &_call_f_mapToScene_c2744); methods += new qt_gsi::GenericMethod (":matrix", "@brief Method QMatrix QGraphicsView::matrix()\n", true, &_init_f_matrix_c0, &_call_f_matrix_c0); methods += new qt_gsi::GenericMethod (":optimizationFlags", "@brief Method QFlags QGraphicsView::optimizationFlags()\n", true, &_init_f_optimizationFlags_c0, &_call_f_optimizationFlags_c0); - methods += new qt_gsi::GenericMethod ("render", "@brief Method (QPainter *, const QRectF &, const QRect &, Qt::AspectRatioMode)\n", false, &_init_f_render_7013, &_call_f_render_7013); + methods += new qt_gsi::GenericMethod ("render", "@brief Method void QGraphicsView::render(QPainter *painter, const QRectF &target, const QRect &source, Qt::AspectRatioMode aspectRatioMode)\n", false, &_init_f_render_7013, &_call_f_render_7013); methods += new qt_gsi::GenericMethod (":renderHints", "@brief Method QFlags QGraphicsView::renderHints()\n", true, &_init_f_renderHints_c0, &_call_f_renderHints_c0); methods += new qt_gsi::GenericMethod ("resetCachedContent", "@brief Method void QGraphicsView::resetCachedContent()\n", false, &_init_f_resetCachedContent_0, &_call_f_resetCachedContent_0); methods += new qt_gsi::GenericMethod ("resetMatrix", "@brief Method void QGraphicsView::resetMatrix()\n", false, &_init_f_resetMatrix_0, &_call_f_resetMatrix_0); @@ -1864,7 +1864,7 @@ static gsi::Methods methods_QGraphicsView () { methods += new qt_gsi::GenericMethod ("setTransformationAnchor|transformationAnchor=", "@brief Method void QGraphicsView::setTransformationAnchor(QGraphicsView::ViewportAnchor anchor)\n", false, &_init_f_setTransformationAnchor_3328, &_call_f_setTransformationAnchor_3328); methods += new qt_gsi::GenericMethod ("setViewportUpdateMode|viewportUpdateMode=", "@brief Method void QGraphicsView::setViewportUpdateMode(QGraphicsView::ViewportUpdateMode mode)\n", false, &_init_f_setViewportUpdateMode_3725, &_call_f_setViewportUpdateMode_3725); methods += new qt_gsi::GenericMethod ("shear", "@brief Method void QGraphicsView::shear(double sh, double sv)\n", false, &_init_f_shear_2034, &_call_f_shear_2034); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QGraphicsView::sizeHint()\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":transform", "@brief Method QTransform QGraphicsView::transform()\n", true, &_init_f_transform_c0, &_call_f_transform_c0); methods += new qt_gsi::GenericMethod (":transformationAnchor", "@brief Method QGraphicsView::ViewportAnchor QGraphicsView::transformationAnchor()\n", true, &_init_f_transformationAnchor_c0, &_call_f_transformationAnchor_c0); methods += new qt_gsi::GenericMethod ("translate", "@brief Method void QGraphicsView::translate(double dx, double dy)\n", false, &_init_f_translate_2034, &_call_f_translate_2034); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc index 14ac72464..125436725 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc @@ -181,7 +181,7 @@ static void _call_f_autoFillBackground_c0 (const qt_gsi::GenericMethod * /*decl* } -// () const +// QRectF QGraphicsWidget::boundingRect() static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl) @@ -196,7 +196,7 @@ static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// const QList &QGraphicsWidget::children() static void _init_f_children_c0 (qt_gsi::GenericMethod *decl) @@ -271,7 +271,7 @@ static void _call_f_font_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (double *, double *, double *, double *) const +// void QGraphicsWidget::getContentsMargins(double *left, double *top, double *right, double *bottom) static void _init_f_getContentsMargins_c4704 (qt_gsi::GenericMethod *decl) @@ -442,7 +442,7 @@ static void _call_f_layoutDirection_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *) +// void QGraphicsWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) static void _init_f_paint_6301 (qt_gsi::GenericMethod *decl) @@ -719,7 +719,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QRectF &) +// void QGraphicsWidget::setGeometry(const QRectF &rect) static void _init_f_setGeometry_1862 (qt_gsi::GenericMethod *decl) @@ -739,7 +739,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (double, double, double, double) +// void QGraphicsWidget::setGeometry(double x, double y, double w, double h) static void _init_f_setGeometry_3960 (qt_gsi::GenericMethod *decl) @@ -963,7 +963,7 @@ static void _call_f_setWindowTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QPainterPath QGraphicsWidget::shape() static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl) @@ -1027,7 +1027,7 @@ static void _call_f_testAttribute_c2309 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QGraphicsWidget::type() static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) @@ -1278,13 +1278,13 @@ static gsi::Methods methods_QGraphicsWidget () { methods += new qt_gsi::GenericMethod ("addActions", "@brief Method void QGraphicsWidget::addActions(QList actions)\n", false, &_init_f_addActions_1780, &_call_f_addActions_1780); methods += new qt_gsi::GenericMethod ("adjustSize", "@brief Method void QGraphicsWidget::adjustSize()\n", false, &_init_f_adjustSize_0, &_call_f_adjustSize_0); methods += new qt_gsi::GenericMethod (":autoFillBackground", "@brief Method bool QGraphicsWidget::autoFillBackground()\n", true, &_init_f_autoFillBackground_c0, &_call_f_autoFillBackground_c0); - methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); - methods += new qt_gsi::GenericMethod (":children", "@brief Method () const\n", true, &_init_f_children_c0, &_call_f_children_c0); + methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method QRectF QGraphicsWidget::boundingRect()\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0); + methods += new qt_gsi::GenericMethod (":children", "@brief Method const QList &QGraphicsWidget::children()\n", true, &_init_f_children_c0, &_call_f_children_c0); methods += new qt_gsi::GenericMethod ("close", "@brief Method bool QGraphicsWidget::close()\n", false, &_init_f_close_0, &_call_f_close_0); methods += new qt_gsi::GenericMethod (":focusPolicy", "@brief Method Qt::FocusPolicy QGraphicsWidget::focusPolicy()\n", true, &_init_f_focusPolicy_c0, &_call_f_focusPolicy_c0); methods += new qt_gsi::GenericMethod ("focusWidget", "@brief Method QGraphicsWidget *QGraphicsWidget::focusWidget()\n", true, &_init_f_focusWidget_c0, &_call_f_focusWidget_c0); methods += new qt_gsi::GenericMethod (":font", "@brief Method QFont QGraphicsWidget::font()\n", true, &_init_f_font_c0, &_call_f_font_c0); - methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method (double *, double *, double *, double *) const\nThis is a reimplementation of QGraphicsLayoutItem::getContentsMargins", true, &_init_f_getContentsMargins_c4704, &_call_f_getContentsMargins_c4704); + methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method void QGraphicsWidget::getContentsMargins(double *left, double *top, double *right, double *bottom)\nThis is a reimplementation of QGraphicsLayoutItem::getContentsMargins", true, &_init_f_getContentsMargins_c4704, &_call_f_getContentsMargins_c4704); methods += new qt_gsi::GenericMethod ("getWindowFrameMargins", "@brief Method void QGraphicsWidget::getWindowFrameMargins(double *left, double *top, double *right, double *bottom)\n", true, &_init_f_getWindowFrameMargins_c4704, &_call_f_getWindowFrameMargins_c4704); methods += new qt_gsi::GenericMethod ("grabShortcut", "@brief Method int QGraphicsWidget::grabShortcut(const QKeySequence &sequence, Qt::ShortcutContext context)\n", false, &_init_f_grabShortcut_4758, &_call_f_grabShortcut_4758); methods += new qt_gsi::GenericMethod ("insertAction", "@brief Method void QGraphicsWidget::insertAction(QAction *before, QAction *action)\n", false, &_init_f_insertAction_2510, &_call_f_insertAction_2510); @@ -1292,7 +1292,7 @@ static gsi::Methods methods_QGraphicsWidget () { methods += new qt_gsi::GenericMethod ("isActiveWindow?", "@brief Method bool QGraphicsWidget::isActiveWindow()\n", true, &_init_f_isActiveWindow_c0, &_call_f_isActiveWindow_c0); methods += new qt_gsi::GenericMethod (":layout", "@brief Method QGraphicsLayout *QGraphicsWidget::layout()\n", true, &_init_f_layout_c0, &_call_f_layout_c0); methods += new qt_gsi::GenericMethod (":layoutDirection", "@brief Method Qt::LayoutDirection QGraphicsWidget::layoutDirection()\n", true, &_init_f_layoutDirection_c0, &_call_f_layoutDirection_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QGraphicsWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301); methods += new qt_gsi::GenericMethod ("paintWindowFrame", "@brief Method void QGraphicsWidget::paintWindowFrame(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\n", false, &_init_f_paintWindowFrame_6301, &_call_f_paintWindowFrame_6301); methods += new qt_gsi::GenericMethod (":palette", "@brief Method QPalette QGraphicsWidget::palette()\n", true, &_init_f_palette_c0, &_call_f_palette_c0); methods += new qt_gsi::GenericMethod ("rect", "@brief Method QRectF QGraphicsWidget::rect()\n", true, &_init_f_rect_c0, &_call_f_rect_c0); @@ -1305,8 +1305,8 @@ static gsi::Methods methods_QGraphicsWidget () { methods += new qt_gsi::GenericMethod ("setContentsMargins", "@brief Method void QGraphicsWidget::setContentsMargins(double left, double top, double right, double bottom)\n", false, &_init_f_setContentsMargins_3960, &_call_f_setContentsMargins_3960); methods += new qt_gsi::GenericMethod ("setFocusPolicy|focusPolicy=", "@brief Method void QGraphicsWidget::setFocusPolicy(Qt::FocusPolicy policy)\n", false, &_init_f_setFocusPolicy_1885, &_call_f_setFocusPolicy_1885); methods += new qt_gsi::GenericMethod ("setFont|font=", "@brief Method void QGraphicsWidget::setFont(const QFont &font)\n", false, &_init_f_setFont_1801, &_call_f_setFont_1801); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRectF &)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); - methods += new qt_gsi::GenericMethod ("setGeometry", "@brief Method (double, double, double, double)\n", false, &_init_f_setGeometry_3960, &_call_f_setGeometry_3960); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGraphicsWidget::setGeometry(const QRectF &rect)\nThis is a reimplementation of QGraphicsLayoutItem::setGeometry", false, &_init_f_setGeometry_1862, &_call_f_setGeometry_1862); + methods += new qt_gsi::GenericMethod ("setGeometry", "@brief Method void QGraphicsWidget::setGeometry(double x, double y, double w, double h)\n", false, &_init_f_setGeometry_3960, &_call_f_setGeometry_3960); methods += new qt_gsi::GenericMethod ("setLayout|layout=", "@brief Method void QGraphicsWidget::setLayout(QGraphicsLayout *layout)\n", false, &_init_f_setLayout_2158, &_call_f_setLayout_2158); methods += new qt_gsi::GenericMethod ("setLayoutDirection|layoutDirection=", "@brief Method void QGraphicsWidget::setLayoutDirection(Qt::LayoutDirection direction)\n", false, &_init_f_setLayoutDirection_2316, &_call_f_setLayoutDirection_2316); methods += new qt_gsi::GenericMethod ("setPalette|palette=", "@brief Method void QGraphicsWidget::setPalette(const QPalette &palette)\n", false, &_init_f_setPalette_2113, &_call_f_setPalette_2113); @@ -1316,11 +1316,11 @@ static gsi::Methods methods_QGraphicsWidget () { methods += new qt_gsi::GenericMethod ("setWindowFlags|windowFlags=", "@brief Method void QGraphicsWidget::setWindowFlags(QFlags wFlags)\n", false, &_init_f_setWindowFlags_2495, &_call_f_setWindowFlags_2495); methods += new qt_gsi::GenericMethod ("setWindowFrameMargins", "@brief Method void QGraphicsWidget::setWindowFrameMargins(double left, double top, double right, double bottom)\n", false, &_init_f_setWindowFrameMargins_3960, &_call_f_setWindowFrameMargins_3960); methods += new qt_gsi::GenericMethod ("setWindowTitle|windowTitle=", "@brief Method void QGraphicsWidget::setWindowTitle(const QString &title)\n", false, &_init_f_setWindowTitle_2025, &_call_f_setWindowTitle_2025); - methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); + methods += new qt_gsi::GenericMethod ("shape", "@brief Method QPainterPath QGraphicsWidget::shape()\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += new qt_gsi::GenericMethod (":size", "@brief Method QSizeF QGraphicsWidget::size()\n", true, &_init_f_size_c0, &_call_f_size_c0); methods += new qt_gsi::GenericMethod (":style", "@brief Method QStyle *QGraphicsWidget::style()\n", true, &_init_f_style_c0, &_call_f_style_c0); methods += new qt_gsi::GenericMethod ("testAttribute", "@brief Method bool QGraphicsWidget::testAttribute(Qt::WidgetAttribute attribute)\n", true, &_init_f_testAttribute_c2309, &_call_f_testAttribute_c2309); - methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); + methods += new qt_gsi::GenericMethod ("type", "@brief Method int QGraphicsWidget::type()\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0); methods += new qt_gsi::GenericMethod ("unsetLayoutDirection", "@brief Method void QGraphicsWidget::unsetLayoutDirection()\n", false, &_init_f_unsetLayoutDirection_0, &_call_f_unsetLayoutDirection_0); methods += new qt_gsi::GenericMethod ("unsetWindowFrameMargins", "@brief Method void QGraphicsWidget::unsetWindowFrameMargins()\n", false, &_init_f_unsetWindowFrameMargins_0, &_call_f_unsetWindowFrameMargins_0); methods += new qt_gsi::GenericMethod (":windowFlags", "@brief Method QFlags QGraphicsWidget::windowFlags()\n", true, &_init_f_windowFlags_c0, &_call_f_windowFlags_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc index 135ce59ce..69644cc98 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc @@ -62,7 +62,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QLayoutItem *, int, int, int, int, QFlags) +// void QGridLayout::addItem(QLayoutItem *item, int row, int column, int rowSpan, int columnSpan, QFlags) static void _init_f_addItem_7018 (qt_gsi::GenericMethod *decl) @@ -163,7 +163,7 @@ static void _call_f_addLayout_6619 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *) +// void QGridLayout::addWidget(QWidget *w) static void _init_f_addWidget_1315 (qt_gsi::GenericMethod *decl) @@ -183,7 +183,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *, int, int, QFlags) +// void QGridLayout::addWidget(QWidget *, int row, int column, QFlags) static void _init_f_addWidget_5275 (qt_gsi::GenericMethod *decl) @@ -212,7 +212,7 @@ static void _call_f_addWidget_5275 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *, int, int, int, int, QFlags) +// void QGridLayout::addWidget(QWidget *, int row, int column, int rowSpan, int columnSpan, QFlags) static void _init_f_addWidget_6593 (qt_gsi::GenericMethod *decl) @@ -322,7 +322,7 @@ static void _call_f_columnStretch_c767 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QGridLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -337,7 +337,7 @@ static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QFlags QGridLayout::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -384,7 +384,7 @@ static void _call_f_getItemPosition_c4147 (const qt_gsi::GenericMethod * /*decl* } -// () const +// bool QGridLayout::hasHeightForWidth() static void _init_f_hasHeightForWidth_c0 (qt_gsi::GenericMethod *decl) @@ -399,7 +399,7 @@ static void _call_f_hasHeightForWidth_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QGridLayout::heightForWidth(int) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -433,7 +433,7 @@ static void _call_f_horizontalSpacing_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// () +// void QGridLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -449,7 +449,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (int) const +// QLayoutItem *QGridLayout::itemAt(int index) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -490,7 +490,7 @@ static void _call_f_itemAtPosition_c1426 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QSize QGridLayout::maximumSize() static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl) @@ -505,7 +505,7 @@ static void _call_f_maximumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (int) const +// int QGridLayout::minimumHeightForWidth(int) static void _init_f_minimumHeightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -524,7 +524,7 @@ static void _call_f_minimumHeightForWidth_c767 (const qt_gsi::GenericMethod * /* } -// () const +// QSize QGridLayout::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -676,7 +676,7 @@ static void _call_f_setDefaultPositioning_2572 (const qt_gsi::GenericMethod * /* } -// (const QRect &) +// void QGridLayout::setGeometry(const QRect &) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -782,7 +782,7 @@ static void _call_f_setRowStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) +// void QGridLayout::setSpacing(int spacing) static void _init_f_setSpacing_767 (qt_gsi::GenericMethod *decl) @@ -822,7 +822,7 @@ static void _call_f_setVerticalSpacing_767 (const qt_gsi::GenericMethod * /*decl } -// () const +// QSize QGridLayout::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -837,7 +837,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// int QGridLayout::spacing() static void _init_f_spacing_c0 (qt_gsi::GenericMethod *decl) @@ -852,7 +852,7 @@ static void _call_f_spacing_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (int) +// QLayoutItem *QGridLayout::takeAt(int index) static void _init_f_takeAt_767 (qt_gsi::GenericMethod *decl) @@ -942,28 +942,28 @@ namespace gsi static gsi::Methods methods_QGridLayout () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("addItem", "@brief Method (QLayoutItem *, int, int, int, int, QFlags)\n", false, &_init_f_addItem_7018, &_call_f_addItem_7018); + methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QGridLayout::addItem(QLayoutItem *item, int row, int column, int rowSpan, int columnSpan, QFlags)\n", false, &_init_f_addItem_7018, &_call_f_addItem_7018); methods += new qt_gsi::GenericMethod ("addLayout", "@brief Method void QGridLayout::addLayout(QLayout *, int row, int column, QFlags)\n", false, &_init_f_addLayout_5301, &_call_f_addLayout_5301); methods += new qt_gsi::GenericMethod ("addLayout", "@brief Method void QGridLayout::addLayout(QLayout *, int row, int column, int rowSpan, int columnSpan, QFlags)\n", false, &_init_f_addLayout_6619, &_call_f_addLayout_6619); - methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method (QWidget *)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); - methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method (QWidget *, int, int, QFlags)\n", false, &_init_f_addWidget_5275, &_call_f_addWidget_5275); - methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method (QWidget *, int, int, int, int, QFlags)\n", false, &_init_f_addWidget_6593, &_call_f_addWidget_6593); + methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method void QGridLayout::addWidget(QWidget *w)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); + methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method void QGridLayout::addWidget(QWidget *, int row, int column, QFlags)\n", false, &_init_f_addWidget_5275, &_call_f_addWidget_5275); + methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method void QGridLayout::addWidget(QWidget *, int row, int column, int rowSpan, int columnSpan, QFlags)\n", false, &_init_f_addWidget_6593, &_call_f_addWidget_6593); methods += new qt_gsi::GenericMethod ("cellRect", "@brief Method QRect QGridLayout::cellRect(int row, int column)\n", true, &_init_f_cellRect_c1426, &_call_f_cellRect_c1426); methods += new qt_gsi::GenericMethod ("columnCount", "@brief Method int QGridLayout::columnCount()\n", true, &_init_f_columnCount_c0, &_call_f_columnCount_c0); methods += new qt_gsi::GenericMethod ("columnMinimumWidth", "@brief Method int QGridLayout::columnMinimumWidth(int column)\n", true, &_init_f_columnMinimumWidth_c767, &_call_f_columnMinimumWidth_c767); methods += new qt_gsi::GenericMethod ("columnStretch", "@brief Method int QGridLayout::columnStretch(int column)\n", true, &_init_f_columnStretch_c767, &_call_f_columnStretch_c767); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QGridLayout::count()\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QGridLayout::expandingDirections()\nThis is a reimplementation of QLayout::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); methods += new qt_gsi::GenericMethod ("getItemPosition", "@brief Method void QGridLayout::getItemPosition(int idx, int *row, int *column, int *rowSpan, int *columnSpan)\n", true, &_init_f_getItemPosition_c4147, &_call_f_getItemPosition_c4147); - methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method () const\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QGridLayout::hasHeightForWidth()\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QGridLayout::heightForWidth(int)\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod (":horizontalSpacing", "@brief Method int QGridLayout::horizontalSpacing()\n", true, &_init_f_horizontalSpacing_c0, &_call_f_horizontalSpacing_c0); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QGridLayout::invalidate()\nThis is a reimplementation of QLayout::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QGridLayout::itemAt(int index)\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); methods += new qt_gsi::GenericMethod ("itemAtPosition", "@brief Method QLayoutItem *QGridLayout::itemAtPosition(int row, int column)\n", true, &_init_f_itemAtPosition_c1426, &_call_f_itemAtPosition_c1426); - methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayout::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); - methods += new qt_gsi::GenericMethod ("minimumHeightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::minimumHeightForWidth", true, &_init_f_minimumHeightForWidth_c767, &_call_f_minimumHeightForWidth_c767); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method QSize QGridLayout::maximumSize()\nThis is a reimplementation of QLayout::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumHeightForWidth", "@brief Method int QGridLayout::minimumHeightForWidth(int)\nThis is a reimplementation of QLayoutItem::minimumHeightForWidth", true, &_init_f_minimumHeightForWidth_c767, &_call_f_minimumHeightForWidth_c767); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QGridLayout::minimumSize()\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); methods += new qt_gsi::GenericMethod (":originCorner", "@brief Method Qt::Corner QGridLayout::originCorner()\n", true, &_init_f_originCorner_c0, &_call_f_originCorner_c0); methods += new qt_gsi::GenericMethod ("rowCount", "@brief Method int QGridLayout::rowCount()\n", true, &_init_f_rowCount_c0, &_call_f_rowCount_c0); methods += new qt_gsi::GenericMethod ("rowMinimumHeight", "@brief Method int QGridLayout::rowMinimumHeight(int row)\n", true, &_init_f_rowMinimumHeight_c767, &_call_f_rowMinimumHeight_c767); @@ -971,16 +971,16 @@ static gsi::Methods methods_QGridLayout () { methods += new qt_gsi::GenericMethod ("setColumnMinimumWidth", "@brief Method void QGridLayout::setColumnMinimumWidth(int column, int minSize)\n", false, &_init_f_setColumnMinimumWidth_1426, &_call_f_setColumnMinimumWidth_1426); methods += new qt_gsi::GenericMethod ("setColumnStretch", "@brief Method void QGridLayout::setColumnStretch(int column, int stretch)\n", false, &_init_f_setColumnStretch_1426, &_call_f_setColumnStretch_1426); methods += new qt_gsi::GenericMethod ("setDefaultPositioning", "@brief Method void QGridLayout::setDefaultPositioning(int n, Qt::Orientation orient)\n", false, &_init_f_setDefaultPositioning_2572, &_call_f_setDefaultPositioning_2572); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QGridLayout::setGeometry(const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); methods += new qt_gsi::GenericMethod ("setHorizontalSpacing|horizontalSpacing=", "@brief Method void QGridLayout::setHorizontalSpacing(int spacing)\n", false, &_init_f_setHorizontalSpacing_767, &_call_f_setHorizontalSpacing_767); methods += new qt_gsi::GenericMethod ("setOriginCorner|originCorner=", "@brief Method void QGridLayout::setOriginCorner(Qt::Corner)\n", false, &_init_f_setOriginCorner_1366, &_call_f_setOriginCorner_1366); methods += new qt_gsi::GenericMethod ("setRowMinimumHeight", "@brief Method void QGridLayout::setRowMinimumHeight(int row, int minSize)\n", false, &_init_f_setRowMinimumHeight_1426, &_call_f_setRowMinimumHeight_1426); methods += new qt_gsi::GenericMethod ("setRowStretch", "@brief Method void QGridLayout::setRowStretch(int row, int stretch)\n", false, &_init_f_setRowStretch_1426, &_call_f_setRowStretch_1426); - methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method (int)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); + methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QGridLayout::setSpacing(int spacing)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); methods += new qt_gsi::GenericMethod ("setVerticalSpacing|verticalSpacing=", "@brief Method void QGridLayout::setVerticalSpacing(int spacing)\n", false, &_init_f_setVerticalSpacing_767, &_call_f_setVerticalSpacing_767); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod (":spacing", "@brief Method () const\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); - methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method (int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QGridLayout::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":spacing", "@brief Method int QGridLayout::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); + methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method QLayoutItem *QGridLayout::takeAt(int index)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); methods += new qt_gsi::GenericMethod (":verticalSpacing", "@brief Method int QGridLayout::verticalSpacing()\n", true, &_init_f_verticalSpacing_c0, &_call_f_verticalSpacing_c0); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QGridLayout::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QGridLayout::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc index df7609ea0..30fef02d1 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc @@ -161,7 +161,7 @@ static void _call_f_isFlat_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QSize QGroupBox::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -351,7 +351,7 @@ static gsi::Methods methods_QGroupBox () { methods += new qt_gsi::GenericMethod ("isCheckable?|:checkable", "@brief Method bool QGroupBox::isCheckable()\n", true, &_init_f_isCheckable_c0, &_call_f_isCheckable_c0); methods += new qt_gsi::GenericMethod ("isChecked?|:checked", "@brief Method bool QGroupBox::isChecked()\n", true, &_init_f_isChecked_c0, &_call_f_isChecked_c0); methods += new qt_gsi::GenericMethod ("isFlat?|:flat", "@brief Method bool QGroupBox::isFlat()\n", true, &_init_f_isFlat_c0, &_call_f_isFlat_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QGroupBox::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QGroupBox::setAlignment(int alignment)\n", false, &_init_f_setAlignment_767, &_call_f_setAlignment_767); methods += new qt_gsi::GenericMethod ("setCheckable|checkable=", "@brief Method void QGroupBox::setCheckable(bool checkable)\n", false, &_init_f_setCheckable_864, &_call_f_setCheckable_864); methods += new qt_gsi::GenericMethod ("setChecked|checked=", "@brief Method void QGroupBox::setChecked(bool checked)\n", false, &_init_f_setChecked_864, &_call_f_setChecked_864); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc index f8581988a..4828f1efa 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc @@ -168,7 +168,7 @@ static void _call_f_defaultSectionSize_c0 (const qt_gsi::GenericMethod * /*decl* } -// () +// void QHeaderView::doItemsLayout() static void _init_f_doItemsLayout_0 (qt_gsi::GenericMethod *decl) @@ -471,7 +471,7 @@ static void _call_f_orientation_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QHeaderView::reset() static void _init_f_reset_0 (qt_gsi::GenericMethod *decl) @@ -870,7 +870,7 @@ static void _call_f_setMinimumSectionSize_767 (const qt_gsi::GenericMethod * /*d } -// (QAbstractItemModel *) +// void QHeaderView::setModel(QAbstractItemModel *model) static void _init_f_setModel_2419 (qt_gsi::GenericMethod *decl) @@ -1135,7 +1135,7 @@ static void _call_f_setStretchLastSection_864 (const qt_gsi::GenericMethod * /*d } -// (bool) +// void QHeaderView::setVisible(bool v) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -1175,7 +1175,7 @@ static void _call_f_showSection_767 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QHeaderView::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1371,7 +1371,7 @@ static gsi::Methods methods_QHeaderView () { methods += new qt_gsi::GenericMethod ("count", "@brief Method int QHeaderView::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":defaultAlignment", "@brief Method QFlags QHeaderView::defaultAlignment()\n", true, &_init_f_defaultAlignment_c0, &_call_f_defaultAlignment_c0); methods += new qt_gsi::GenericMethod (":defaultSectionSize", "@brief Method int QHeaderView::defaultSectionSize()\n", true, &_init_f_defaultSectionSize_c0, &_call_f_defaultSectionSize_c0); - methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); + methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method void QHeaderView::doItemsLayout()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); methods += new qt_gsi::GenericMethod ("headerDataChanged", "@brief Method void QHeaderView::headerDataChanged(Qt::Orientation orientation, int logicalFirst, int logicalLast)\n", false, &_init_f_headerDataChanged_3231, &_call_f_headerDataChanged_3231); methods += new qt_gsi::GenericMethod ("hiddenSectionCount", "@brief Method int QHeaderView::hiddenSectionCount()\n", true, &_init_f_hiddenSectionCount_c0, &_call_f_hiddenSectionCount_c0); methods += new qt_gsi::GenericMethod ("hideSection", "@brief Method void QHeaderView::hideSection(int logicalIndex)\n", false, &_init_f_hideSection_767, &_call_f_hideSection_767); @@ -1388,7 +1388,7 @@ static gsi::Methods methods_QHeaderView () { methods += new qt_gsi::GenericMethod ("moveSection", "@brief Method void QHeaderView::moveSection(int from, int to)\n", false, &_init_f_moveSection_1426, &_call_f_moveSection_1426); methods += new qt_gsi::GenericMethod (":offset", "@brief Method int QHeaderView::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0); methods += new qt_gsi::GenericMethod ("orientation", "@brief Method Qt::Orientation QHeaderView::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); - methods += new qt_gsi::GenericMethod ("reset", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); + methods += new qt_gsi::GenericMethod ("reset", "@brief Method void QHeaderView::reset()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); methods += new qt_gsi::GenericMethod ("resetDefaultSectionSize", "@brief Method void QHeaderView::resetDefaultSectionSize()\n", false, &_init_f_resetDefaultSectionSize_0, &_call_f_resetDefaultSectionSize_0); methods += new qt_gsi::GenericMethod (":resizeContentsPrecision", "@brief Method int QHeaderView::resizeContentsPrecision()\n", true, &_init_f_resizeContentsPrecision_c0, &_call_f_resizeContentsPrecision_c0); methods += new qt_gsi::GenericMethod ("resizeSection", "@brief Method void QHeaderView::resizeSection(int logicalIndex, int size)\n", false, &_init_f_resizeSection_1426, &_call_f_resizeSection_1426); @@ -1410,7 +1410,7 @@ static gsi::Methods methods_QHeaderView () { methods += new qt_gsi::GenericMethod ("setHighlightSections|highlightSections=", "@brief Method void QHeaderView::setHighlightSections(bool highlight)\n", false, &_init_f_setHighlightSections_864, &_call_f_setHighlightSections_864); methods += new qt_gsi::GenericMethod ("setMaximumSectionSize|maximumSectionSize=", "@brief Method void QHeaderView::setMaximumSectionSize(int size)\n", false, &_init_f_setMaximumSectionSize_767, &_call_f_setMaximumSectionSize_767); methods += new qt_gsi::GenericMethod ("setMinimumSectionSize|minimumSectionSize=", "@brief Method void QHeaderView::setMinimumSectionSize(int size)\n", false, &_init_f_setMinimumSectionSize_767, &_call_f_setMinimumSectionSize_767); - methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); + methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method void QHeaderView::setModel(QAbstractItemModel *model)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); methods += new qt_gsi::GenericMethod ("setOffset|offset=", "@brief Method void QHeaderView::setOffset(int offset)\n", false, &_init_f_setOffset_767, &_call_f_setOffset_767); methods += new qt_gsi::GenericMethod ("setOffsetToLastSection", "@brief Method void QHeaderView::setOffsetToLastSection()\n", false, &_init_f_setOffsetToLastSection_0, &_call_f_setOffsetToLastSection_0); methods += new qt_gsi::GenericMethod ("setOffsetToSectionPosition", "@brief Method void QHeaderView::setOffsetToSectionPosition(int visualIndex)\n", false, &_init_f_setOffsetToSectionPosition_767, &_call_f_setOffsetToSectionPosition_767); @@ -1423,9 +1423,9 @@ static gsi::Methods methods_QHeaderView () { methods += new qt_gsi::GenericMethod ("setSortIndicator", "@brief Method void QHeaderView::setSortIndicator(int logicalIndex, Qt::SortOrder order)\n", false, &_init_f_setSortIndicator_2340, &_call_f_setSortIndicator_2340); methods += new qt_gsi::GenericMethod ("setSortIndicatorShown|sortIndicatorShown=", "@brief Method void QHeaderView::setSortIndicatorShown(bool show)\n", false, &_init_f_setSortIndicatorShown_864, &_call_f_setSortIndicatorShown_864); methods += new qt_gsi::GenericMethod ("setStretchLastSection|stretchLastSection=", "@brief Method void QHeaderView::setStretchLastSection(bool stretch)\n", false, &_init_f_setStretchLastSection_864, &_call_f_setStretchLastSection_864); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QHeaderView::setVisible(bool v)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("showSection", "@brief Method void QHeaderView::showSection(int logicalIndex)\n", false, &_init_f_showSection_767, &_call_f_showSection_767); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QHeaderView::sizeHint()\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("sortIndicatorOrder", "@brief Method Qt::SortOrder QHeaderView::sortIndicatorOrder()\n", true, &_init_f_sortIndicatorOrder_c0, &_call_f_sortIndicatorOrder_c0); methods += new qt_gsi::GenericMethod ("sortIndicatorSection", "@brief Method int QHeaderView::sortIndicatorSection()\n", true, &_init_f_sortIndicatorSection_c0, &_call_f_sortIndicatorSection_c0); methods += new qt_gsi::GenericMethod (":stretchLastSection", "@brief Method bool QHeaderView::stretchLastSection()\n", true, &_init_f_stretchLastSection_c0, &_call_f_stretchLastSection_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc index 49228c37b..10a69cad1 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc @@ -130,7 +130,7 @@ static void _call_f_comboBoxItems_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int) +// void QInputDialog::done(int result) static void _init_f_done_767 (qt_gsi::GenericMethod *decl) @@ -315,7 +315,7 @@ static void _call_f_labelText_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QSize QInputDialog::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -345,7 +345,7 @@ static void _call_f_okButtonText_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () +// void QInputDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -361,7 +361,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QInputDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -808,7 +808,7 @@ static void _call_f_setTextValue_2025 (const qt_gsi::GenericMethod * /*decl*/, v } -// (bool) +// void QInputDialog::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -828,7 +828,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QInputDialog::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1156,7 +1156,7 @@ static gsi::Methods methods_QInputDialog () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":cancelButtonText", "@brief Method QString QInputDialog::cancelButtonText()\n", true, &_init_f_cancelButtonText_c0, &_call_f_cancelButtonText_c0); methods += new qt_gsi::GenericMethod (":comboBoxItems", "@brief Method QStringList QInputDialog::comboBoxItems()\n", true, &_init_f_comboBoxItems_c0, &_call_f_comboBoxItems_c0); - methods += new qt_gsi::GenericMethod ("done", "@brief Method (int)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); + methods += new qt_gsi::GenericMethod ("done", "@brief Method void QInputDialog::done(int result)\nThis is a reimplementation of QDialog::done", false, &_init_f_done_767, &_call_f_done_767); methods += new qt_gsi::GenericMethod (":doubleDecimals", "@brief Method int QInputDialog::doubleDecimals()\n", true, &_init_f_doubleDecimals_c0, &_call_f_doubleDecimals_c0); methods += new qt_gsi::GenericMethod (":doubleMaximum", "@brief Method double QInputDialog::doubleMaximum()\n", true, &_init_f_doubleMaximum_c0, &_call_f_doubleMaximum_c0); methods += new qt_gsi::GenericMethod (":doubleMinimum", "@brief Method double QInputDialog::doubleMinimum()\n", true, &_init_f_doubleMinimum_c0, &_call_f_doubleMinimum_c0); @@ -1168,10 +1168,10 @@ static gsi::Methods methods_QInputDialog () { methods += new qt_gsi::GenericMethod (":intValue", "@brief Method int QInputDialog::intValue()\n", true, &_init_f_intValue_c0, &_call_f_intValue_c0); methods += new qt_gsi::GenericMethod ("isComboBoxEditable?|:comboBoxEditable", "@brief Method bool QInputDialog::isComboBoxEditable()\n", true, &_init_f_isComboBoxEditable_c0, &_call_f_isComboBoxEditable_c0); methods += new qt_gsi::GenericMethod (":labelText", "@brief Method QString QInputDialog::labelText()\n", true, &_init_f_labelText_c0, &_call_f_labelText_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QDialog::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QInputDialog::minimumSizeHint()\nThis is a reimplementation of QDialog::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":okButtonText", "@brief Method QString QInputDialog::okButtonText()\n", true, &_init_f_okButtonText_c0, &_call_f_okButtonText_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QInputDialog::open()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QInputDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod (":options", "@brief Method QFlags QInputDialog::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); methods += new qt_gsi::GenericMethod ("setCancelButtonText|cancelButtonText=", "@brief Method void QInputDialog::setCancelButtonText(const QString &text)\n", false, &_init_f_setCancelButtonText_2025, &_call_f_setCancelButtonText_2025); methods += new qt_gsi::GenericMethod ("setComboBoxEditable|comboBoxEditable=", "@brief Method void QInputDialog::setComboBoxEditable(bool editable)\n", false, &_init_f_setComboBoxEditable_864, &_call_f_setComboBoxEditable_864); @@ -1193,8 +1193,8 @@ static gsi::Methods methods_QInputDialog () { methods += new qt_gsi::GenericMethod ("setOptions|options=", "@brief Method void QInputDialog::setOptions(QFlags options)\n", false, &_init_f_setOptions_4202, &_call_f_setOptions_4202); methods += new qt_gsi::GenericMethod ("setTextEchoMode|textEchoMode=", "@brief Method void QInputDialog::setTextEchoMode(QLineEdit::EchoMode mode)\n", false, &_init_f_setTextEchoMode_2187, &_call_f_setTextEchoMode_2187); methods += new qt_gsi::GenericMethod ("setTextValue|textValue=", "@brief Method void QInputDialog::setTextValue(const QString &text)\n", false, &_init_f_setTextValue_2025, &_call_f_setTextValue_2025); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QInputDialog::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QInputDialog::sizeHint()\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QInputDialog::testOption(QInputDialog::InputDialogOption option)\n", true, &_init_f_testOption_c3506, &_call_f_testOption_c3506); methods += new qt_gsi::GenericMethod (":textEchoMode", "@brief Method QLineEdit::EchoMode QInputDialog::textEchoMode()\n", true, &_init_f_textEchoMode_c0, &_call_f_textEchoMode_c0); methods += new qt_gsi::GenericMethod (":textValue", "@brief Method QString QInputDialog::textValue()\n", true, &_init_f_textValue_c0, &_call_f_textValue_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc index 9a15d1f0d..6ef48ee19 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc @@ -69,7 +69,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const +// QWidget *QItemDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_createEditor_c6860 (qt_gsi::GenericMethod *decl) @@ -124,7 +124,7 @@ static void _call_f_itemEditorFactory_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const +// void QItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_paint_c6971 (qt_gsi::GenericMethod *decl) @@ -170,7 +170,7 @@ static void _call_f_setClipping_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QWidget *, const QModelIndex &) const +// void QItemDelegate::setEditorData(QWidget *editor, const QModelIndex &index) static void _init_f_setEditorData_c3602 (qt_gsi::GenericMethod *decl) @@ -213,7 +213,7 @@ static void _call_f_setItemEditorFactory_2445 (const qt_gsi::GenericMethod * /*d } -// (QWidget *, QAbstractItemModel *, const QModelIndex &) const +// void QItemDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) static void _init_f_setModelData_c5913 (qt_gsi::GenericMethod *decl) @@ -239,7 +239,7 @@ static void _call_f_setModelData_c5913 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QStyleOptionViewItem &, const QModelIndex &) const +// QSize QItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_sizeHint_c5653 (qt_gsi::GenericMethod *decl) @@ -261,7 +261,7 @@ static void _call_f_sizeHint_c5653 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const +// void QItemDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_updateEditorGeometry_c6860 (qt_gsi::GenericMethod *decl) @@ -343,16 +343,16 @@ namespace gsi static gsi::Methods methods_QItemDelegate () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("createEditor", "@brief Method (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::createEditor", true, &_init_f_createEditor_c6860, &_call_f_createEditor_c6860); + methods += new qt_gsi::GenericMethod ("createEditor", "@brief Method QWidget *QItemDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::createEditor", true, &_init_f_createEditor_c6860, &_call_f_createEditor_c6860); methods += new qt_gsi::GenericMethod ("hasClipping|:clipping", "@brief Method bool QItemDelegate::hasClipping()\n", true, &_init_f_hasClipping_c0, &_call_f_hasClipping_c0); methods += new qt_gsi::GenericMethod (":itemEditorFactory", "@brief Method QItemEditorFactory *QItemDelegate::itemEditorFactory()\n", true, &_init_f_itemEditorFactory_c0, &_call_f_itemEditorFactory_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::paint", true, &_init_f_paint_c6971, &_call_f_paint_c6971); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::paint", true, &_init_f_paint_c6971, &_call_f_paint_c6971); methods += new qt_gsi::GenericMethod ("setClipping|clipping=", "@brief Method void QItemDelegate::setClipping(bool clip)\n", false, &_init_f_setClipping_864, &_call_f_setClipping_864); - methods += new qt_gsi::GenericMethod ("setEditorData", "@brief Method (QWidget *, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::setEditorData", true, &_init_f_setEditorData_c3602, &_call_f_setEditorData_c3602); + methods += new qt_gsi::GenericMethod ("setEditorData", "@brief Method void QItemDelegate::setEditorData(QWidget *editor, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::setEditorData", true, &_init_f_setEditorData_c3602, &_call_f_setEditorData_c3602); methods += new qt_gsi::GenericMethod ("setItemEditorFactory|itemEditorFactory=", "@brief Method void QItemDelegate::setItemEditorFactory(QItemEditorFactory *factory)\n", false, &_init_f_setItemEditorFactory_2445, &_call_f_setItemEditorFactory_2445); - methods += new qt_gsi::GenericMethod ("setModelData", "@brief Method (QWidget *, QAbstractItemModel *, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::setModelData", true, &_init_f_setModelData_c5913, &_call_f_setModelData_c5913); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method (const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::sizeHint", true, &_init_f_sizeHint_c5653, &_call_f_sizeHint_c5653); - methods += new qt_gsi::GenericMethod ("updateEditorGeometry", "@brief Method (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::updateEditorGeometry", true, &_init_f_updateEditorGeometry_c6860, &_call_f_updateEditorGeometry_c6860); + methods += new qt_gsi::GenericMethod ("setModelData", "@brief Method void QItemDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::setModelData", true, &_init_f_setModelData_c5913, &_call_f_setModelData_c5913); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::sizeHint", true, &_init_f_sizeHint_c5653, &_call_f_sizeHint_c5653); + methods += new qt_gsi::GenericMethod ("updateEditorGeometry", "@brief Method void QItemDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::updateEditorGeometry", true, &_init_f_updateEditorGeometry_c6860, &_call_f_updateEditorGeometry_c6860); methods += gsi::qt_signal::target_type & > ("closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint)", "closeEditor", gsi::arg("editor"), gsi::arg("hint"), "@brief Signal declaration for QItemDelegate::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("commitData(QWidget *)", "commitData", gsi::arg("editor"), "@brief Signal declaration for QItemDelegate::commitData(QWidget *editor)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QItemDelegate::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc index ad4cc43a1..ed57f33ee 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc @@ -403,7 +403,7 @@ static void _call_f_setSmallDecimalPoint_864 (const qt_gsi::GenericMethod * /*de } -// () const +// QSize QLCDNumber::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -521,7 +521,7 @@ static gsi::Methods methods_QLCDNumber () { methods += new qt_gsi::GenericMethod ("setOctMode", "@brief Method void QLCDNumber::setOctMode()\n", false, &_init_f_setOctMode_0, &_call_f_setOctMode_0); methods += new qt_gsi::GenericMethod ("setSegmentStyle|segmentStyle=", "@brief Method void QLCDNumber::setSegmentStyle(QLCDNumber::SegmentStyle)\n", false, &_init_f_setSegmentStyle_2713, &_call_f_setSegmentStyle_2713); methods += new qt_gsi::GenericMethod ("setSmallDecimalPoint|smallDecimalPoint=", "@brief Method void QLCDNumber::setSmallDecimalPoint(bool)\n", false, &_init_f_setSmallDecimalPoint_864, &_call_f_setSmallDecimalPoint_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QLCDNumber::sizeHint()\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":smallDecimalPoint", "@brief Method bool QLCDNumber::smallDecimalPoint()\n", true, &_init_f_smallDecimalPoint_c0, &_call_f_smallDecimalPoint_c0); methods += new qt_gsi::GenericMethod (":value", "@brief Method double QLCDNumber::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QLCDNumber::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc index a96eb915f..c1e3d0638 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc @@ -179,7 +179,7 @@ static void _call_f_hasSelectedText_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) const +// int QLabel::heightForWidth(int) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -228,7 +228,7 @@ static void _call_f_margin_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QSize QLabel::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -656,7 +656,7 @@ static void _call_f_setWordWrap_864 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QLabel::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -792,10 +792,10 @@ static gsi::Methods methods_QLabel () { methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QLabel::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); methods += new qt_gsi::GenericMethod ("hasScaledContents|:scaledContents", "@brief Method bool QLabel::hasScaledContents()\n", true, &_init_f_hasScaledContents_c0, &_call_f_hasScaledContents_c0); methods += new qt_gsi::GenericMethod (":hasSelectedText", "@brief Method bool QLabel::hasSelectedText()\n", true, &_init_f_hasSelectedText_c0, &_call_f_hasSelectedText_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QWidget::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QLabel::heightForWidth(int)\nThis is a reimplementation of QWidget::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod (":indent", "@brief Method int QLabel::indent()\n", true, &_init_f_indent_c0, &_call_f_indent_c0); methods += new qt_gsi::GenericMethod (":margin", "@brief Method int QLabel::margin()\n", true, &_init_f_margin_c0, &_call_f_margin_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QLabel::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":movie", "@brief Method QMovie *QLabel::movie()\n", true, &_init_f_movie_c0, &_call_f_movie_c0); methods += new qt_gsi::GenericMethod (":openExternalLinks", "@brief Method bool QLabel::openExternalLinks()\n", true, &_init_f_openExternalLinks_c0, &_call_f_openExternalLinks_c0); methods += new qt_gsi::GenericMethod ("picture", "@brief Method const QPicture *QLabel::picture()\n", true, &_init_f_picture_c0, &_call_f_picture_c0); @@ -818,7 +818,7 @@ static gsi::Methods methods_QLabel () { methods += new qt_gsi::GenericMethod ("setTextFormat|textFormat=", "@brief Method void QLabel::setTextFormat(Qt::TextFormat)\n", false, &_init_f_setTextFormat_1787, &_call_f_setTextFormat_1787); methods += new qt_gsi::GenericMethod ("setTextInteractionFlags|textInteractionFlags=", "@brief Method void QLabel::setTextInteractionFlags(QFlags flags)\n", false, &_init_f_setTextInteractionFlags_3396, &_call_f_setTextInteractionFlags_3396); methods += new qt_gsi::GenericMethod ("setWordWrap|wordWrap=", "@brief Method void QLabel::setWordWrap(bool on)\n", false, &_init_f_setWordWrap_864, &_call_f_setWordWrap_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QLabel::sizeHint()\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":text", "@brief Method QString QLabel::text()\n", true, &_init_f_text_c0, &_call_f_text_c0); methods += new qt_gsi::GenericMethod (":textFormat", "@brief Method Qt::TextFormat QLabel::textFormat()\n", true, &_init_f_textFormat_c0, &_call_f_textFormat_c0); methods += new qt_gsi::GenericMethod (":textInteractionFlags", "@brief Method QFlags QLabel::textInteractionFlags()\n", true, &_init_f_textInteractionFlags_c0, &_call_f_textInteractionFlags_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc index 7aa11a742..ca8e96e28 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc @@ -147,7 +147,7 @@ static void _call_f_contentsRect_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QFlags QLayout::controlTypes() static void _init_f_controlTypes_c0 (qt_gsi::GenericMethod *decl) @@ -177,7 +177,7 @@ static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QFlags QLayout::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -192,7 +192,7 @@ static void _call_f_expandingDirections_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// QRect QLayout::geometry() static void _init_f_geometry_c0 (qt_gsi::GenericMethod *decl) @@ -255,7 +255,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QLayout::invalidate() static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl) @@ -271,7 +271,7 @@ static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// bool QLayout::isEmpty() static void _init_f_isEmpty_c0 (qt_gsi::GenericMethod *decl) @@ -320,7 +320,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// QLayout *QLayout::layout() static void _init_f_layout_0 (qt_gsi::GenericMethod *decl) @@ -350,7 +350,7 @@ static void _call_f_margin_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QSize QLayout::maximumSize() static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl) @@ -380,7 +380,7 @@ static void _call_f_menuBar_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QLayout::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -475,7 +475,7 @@ static void _call_f_replaceWidget_5361 (const qt_gsi::GenericMethod * /*decl*/, } -// (QWidget *, QFlags) +// bool QLayout::setAlignment(QWidget *w, QFlags alignment) static void _init_f_setAlignment_3957 (qt_gsi::GenericMethod *decl) @@ -497,7 +497,7 @@ static void _call_f_setAlignment_3957 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QLayout *, QFlags) +// bool QLayout::setAlignment(QLayout *l, QFlags alignment) static void _init_f_setAlignment_3983 (qt_gsi::GenericMethod *decl) @@ -519,7 +519,7 @@ static void _call_f_setAlignment_3983 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QFlags) +// void QLayout::setAlignment(QFlags a) static void _init_f_setAlignment_2750 (qt_gsi::GenericMethod *decl) @@ -608,7 +608,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QRect &) +// void QLayout::setGeometry(const QRect &) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -965,32 +965,32 @@ static gsi::Methods methods_QLayout () { methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method void QLayout::addWidget(QWidget *w)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); methods += new qt_gsi::GenericMethod (":contentsMargins", "@brief Method QMargins QLayout::contentsMargins()\n", true, &_init_f_contentsMargins_c0, &_call_f_contentsMargins_c0); methods += new qt_gsi::GenericMethod ("contentsRect", "@brief Method QRect QLayout::contentsRect()\n", true, &_init_f_contentsRect_c0, &_call_f_contentsRect_c0); - methods += new qt_gsi::GenericMethod ("controlTypes", "@brief Method () const\nThis is a reimplementation of QLayoutItem::controlTypes", true, &_init_f_controlTypes_c0, &_call_f_controlTypes_c0); + methods += new qt_gsi::GenericMethod ("controlTypes", "@brief Method QFlags QLayout::controlTypes()\nThis is a reimplementation of QLayoutItem::controlTypes", true, &_init_f_controlTypes_c0, &_call_f_controlTypes_c0); methods += new qt_gsi::GenericMethod ("count", "@brief Method int QLayout::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); - methods += new qt_gsi::GenericMethod (":geometry", "@brief Method () const\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QLayout::expandingDirections()\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod (":geometry", "@brief Method QRect QLayout::geometry()\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method void QLayout::getContentsMargins(int *left, int *top, int *right, int *bottom)\n", true, &_init_f_getContentsMargins_c3488, &_call_f_getContentsMargins_c3488); methods += new qt_gsi::GenericMethod ("indexOf", "@brief Method int QLayout::indexOf(QWidget *)\n", true, &_init_f_indexOf_c1315, &_call_f_indexOf_c1315); - methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QLayoutItem::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); - methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method () const\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); + methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method void QLayout::invalidate()\nThis is a reimplementation of QLayoutItem::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0); + methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method bool QLayout::isEmpty()\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); methods += new qt_gsi::GenericMethod ("isEnabled?|:enabled", "@brief Method bool QLayout::isEnabled()\n", true, &_init_f_isEnabled_c0, &_call_f_isEnabled_c0); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QLayout::itemAt(int index)\n", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); - methods += new qt_gsi::GenericMethod ("layout", "@brief Method ()\nThis is a reimplementation of QLayoutItem::layout", false, &_init_f_layout_0, &_call_f_layout_0); + methods += new qt_gsi::GenericMethod ("layout", "@brief Method QLayout *QLayout::layout()\nThis is a reimplementation of QLayoutItem::layout", false, &_init_f_layout_0, &_call_f_layout_0); methods += new qt_gsi::GenericMethod (":margin", "@brief Method int QLayout::margin()\n", true, &_init_f_margin_c0, &_call_f_margin_c0); - methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); + methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method QSize QLayout::maximumSize()\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); methods += new qt_gsi::GenericMethod (":menuBar", "@brief Method QWidget *QLayout::menuBar()\n", true, &_init_f_menuBar_c0, &_call_f_menuBar_c0); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QLayout::minimumSize()\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); methods += new qt_gsi::GenericMethod ("parentWidget", "@brief Method QWidget *QLayout::parentWidget()\n", true, &_init_f_parentWidget_c0, &_call_f_parentWidget_c0); methods += new qt_gsi::GenericMethod ("removeItem", "@brief Method void QLayout::removeItem(QLayoutItem *)\n", false, &_init_f_removeItem_1740, &_call_f_removeItem_1740); methods += new qt_gsi::GenericMethod ("removeWidget", "@brief Method void QLayout::removeWidget(QWidget *w)\n", false, &_init_f_removeWidget_1315, &_call_f_removeWidget_1315); methods += new qt_gsi::GenericMethod ("replaceWidget", "@brief Method QLayoutItem *QLayout::replaceWidget(QWidget *from, QWidget *to, QFlags options)\n", false, &_init_f_replaceWidget_5361, &_call_f_replaceWidget_5361); - methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method (QWidget *, QFlags)\n", false, &_init_f_setAlignment_3957, &_call_f_setAlignment_3957); - methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method (QLayout *, QFlags)\n", false, &_init_f_setAlignment_3983, &_call_f_setAlignment_3983); - methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method (QFlags)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); + methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method bool QLayout::setAlignment(QWidget *w, QFlags alignment)\n", false, &_init_f_setAlignment_3957, &_call_f_setAlignment_3957); + methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method bool QLayout::setAlignment(QLayout *l, QFlags alignment)\n", false, &_init_f_setAlignment_3983, &_call_f_setAlignment_3983); + methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QLayout::setAlignment(QFlags a)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); methods += new qt_gsi::GenericMethod ("setContentsMargins", "@brief Method void QLayout::setContentsMargins(int left, int top, int right, int bottom)\n", false, &_init_f_setContentsMargins_2744, &_call_f_setContentsMargins_2744); methods += new qt_gsi::GenericMethod ("setContentsMargins|contentsMargins=", "@brief Method void QLayout::setContentsMargins(const QMargins &margins)\n", false, &_init_f_setContentsMargins_2115, &_call_f_setContentsMargins_2115); methods += new qt_gsi::GenericMethod ("setEnabled|enabled=", "@brief Method void QLayout::setEnabled(bool)\n", false, &_init_f_setEnabled_864, &_call_f_setEnabled_864); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QLayout::setGeometry(const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); methods += new qt_gsi::GenericMethod ("setMargin|margin=", "@brief Method void QLayout::setMargin(int)\n", false, &_init_f_setMargin_767, &_call_f_setMargin_767); methods += new qt_gsi::GenericMethod ("setMenuBar|menuBar=", "@brief Method void QLayout::setMenuBar(QWidget *w)\n", false, &_init_f_setMenuBar_1315, &_call_f_setMenuBar_1315); methods += new qt_gsi::GenericMethod ("setSizeConstraint|sizeConstraint=", "@brief Method void QLayout::setSizeConstraint(QLayout::SizeConstraint)\n", false, &_init_f_setSizeConstraint_2743, &_call_f_setSizeConstraint_2743); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc index f5a2c4b06..669166dfb 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc @@ -104,7 +104,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QAction *) +// void QLineEdit::addAction(QAction *action) static void _init_f_addAction_1309 (qt_gsi::GenericMethod *decl) @@ -124,7 +124,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QAction *, QLineEdit::ActionPosition) +// void QLineEdit::addAction(QAction *action, QLineEdit::ActionPosition position) static void _init_f_addAction_4075 (qt_gsi::GenericMethod *decl) @@ -147,7 +147,7 @@ static void _call_f_addAction_4075 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QIcon &, QLineEdit::ActionPosition) +// QAction *QLineEdit::addAction(const QIcon &icon, QLineEdit::ActionPosition position) static void _init_f_addAction_4553 (qt_gsi::GenericMethod *decl) @@ -510,7 +510,7 @@ static void _call_f_end_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QEvent *) +// bool QLineEdit::event(QEvent *) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -638,7 +638,7 @@ static void _call_f_inputMask_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (Qt::InputMethodQuery) const +// QVariant QLineEdit::inputMethodQuery(Qt::InputMethodQuery) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -767,7 +767,7 @@ static void _call_f_maxLength_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QSize QLineEdit::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1247,7 +1247,7 @@ static void _call_f_setValidator_2332 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QSize QLineEdit::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1379,9 +1379,9 @@ namespace gsi static gsi::Methods methods_QLineEdit () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (QAction *)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (QAction *, QLineEdit::ActionPosition)\n", false, &_init_f_addAction_4075, &_call_f_addAction_4075); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, QLineEdit::ActionPosition)\n", false, &_init_f_addAction_4553, &_call_f_addAction_4553); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method void QLineEdit::addAction(QAction *action)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method void QLineEdit::addAction(QAction *action, QLineEdit::ActionPosition position)\n", false, &_init_f_addAction_4075, &_call_f_addAction_4075); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QLineEdit::addAction(const QIcon &icon, QLineEdit::ActionPosition position)\n", false, &_init_f_addAction_4553, &_call_f_addAction_4553); methods += new qt_gsi::GenericMethod (":alignment", "@brief Method QFlags QLineEdit::alignment()\n", true, &_init_f_alignment_c0, &_call_f_alignment_c0); methods += new qt_gsi::GenericMethod ("backspace", "@brief Method void QLineEdit::backspace()\n", false, &_init_f_backspace_0, &_call_f_backspace_0); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QLineEdit::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); @@ -1402,14 +1402,14 @@ static gsi::Methods methods_QLineEdit () { methods += new qt_gsi::GenericMethod (":dragEnabled", "@brief Method bool QLineEdit::dragEnabled()\n", true, &_init_f_dragEnabled_c0, &_call_f_dragEnabled_c0); methods += new qt_gsi::GenericMethod (":echoMode", "@brief Method QLineEdit::EchoMode QLineEdit::echoMode()\n", true, &_init_f_echoMode_c0, &_call_f_echoMode_c0); methods += new qt_gsi::GenericMethod ("end", "@brief Method void QLineEdit::end(bool mark)\n", false, &_init_f_end_864, &_call_f_end_864); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QLineEdit::event(QEvent *)\nThis is a reimplementation of QWidget::event", false, &_init_f_event_1217, &_call_f_event_1217); methods += new qt_gsi::GenericMethod ("getTextMargins", "@brief Method void QLineEdit::getTextMargins(int *left, int *top, int *right, int *bottom)\n", true, &_init_f_getTextMargins_c3488, &_call_f_getTextMargins_c3488); methods += new qt_gsi::GenericMethod ("hasAcceptableInput|:acceptableInput", "@brief Method bool QLineEdit::hasAcceptableInput()\n", true, &_init_f_hasAcceptableInput_c0, &_call_f_hasAcceptableInput_c0); methods += new qt_gsi::GenericMethod ("hasFrame|:frame", "@brief Method bool QLineEdit::hasFrame()\n", true, &_init_f_hasFrame_c0, &_call_f_hasFrame_c0); methods += new qt_gsi::GenericMethod (":hasSelectedText", "@brief Method bool QLineEdit::hasSelectedText()\n", true, &_init_f_hasSelectedText_c0, &_call_f_hasSelectedText_c0); methods += new qt_gsi::GenericMethod ("home", "@brief Method void QLineEdit::home(bool mark)\n", false, &_init_f_home_864, &_call_f_home_864); methods += new qt_gsi::GenericMethod (":inputMask", "@brief Method QString QLineEdit::inputMask()\n", true, &_init_f_inputMask_c0, &_call_f_inputMask_c0); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QLineEdit::inputMethodQuery(Qt::InputMethodQuery)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); methods += new qt_gsi::GenericMethod ("insert", "@brief Method void QLineEdit::insert(const QString &)\n", false, &_init_f_insert_2025, &_call_f_insert_2025); methods += new qt_gsi::GenericMethod ("isClearButtonEnabled?|:clearButtonEnabled", "@brief Method bool QLineEdit::isClearButtonEnabled()\n", true, &_init_f_isClearButtonEnabled_c0, &_call_f_isClearButtonEnabled_c0); methods += new qt_gsi::GenericMethod ("isModified?|:modified", "@brief Method bool QLineEdit::isModified()\n", true, &_init_f_isModified_c0, &_call_f_isModified_c0); @@ -1417,7 +1417,7 @@ static gsi::Methods methods_QLineEdit () { methods += new qt_gsi::GenericMethod ("isRedoAvailable?|:redoAvailable", "@brief Method bool QLineEdit::isRedoAvailable()\n", true, &_init_f_isRedoAvailable_c0, &_call_f_isRedoAvailable_c0); methods += new qt_gsi::GenericMethod ("isUndoAvailable?|:undoAvailable", "@brief Method bool QLineEdit::isUndoAvailable()\n", true, &_init_f_isUndoAvailable_c0, &_call_f_isUndoAvailable_c0); methods += new qt_gsi::GenericMethod (":maxLength", "@brief Method int QLineEdit::maxLength()\n", true, &_init_f_maxLength_c0, &_call_f_maxLength_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QLineEdit::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("paste", "@brief Method void QLineEdit::paste()\n", false, &_init_f_paste_0, &_call_f_paste_0); methods += new qt_gsi::GenericMethod (":placeholderText", "@brief Method QString QLineEdit::placeholderText()\n", true, &_init_f_placeholderText_c0, &_call_f_placeholderText_c0); methods += new qt_gsi::GenericMethod ("redo", "@brief Method void QLineEdit::redo()\n", false, &_init_f_redo_0, &_call_f_redo_0); @@ -1442,7 +1442,7 @@ static gsi::Methods methods_QLineEdit () { methods += new qt_gsi::GenericMethod ("setTextMargins", "@brief Method void QLineEdit::setTextMargins(int left, int top, int right, int bottom)\n", false, &_init_f_setTextMargins_2744, &_call_f_setTextMargins_2744); methods += new qt_gsi::GenericMethod ("setTextMargins|textMargins=", "@brief Method void QLineEdit::setTextMargins(const QMargins &margins)\n", false, &_init_f_setTextMargins_2115, &_call_f_setTextMargins_2115); methods += new qt_gsi::GenericMethod ("setValidator|validator=", "@brief Method void QLineEdit::setValidator(const QValidator *)\n", false, &_init_f_setValidator_2332, &_call_f_setValidator_2332); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QLineEdit::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":text", "@brief Method QString QLineEdit::text()\n", true, &_init_f_text_c0, &_call_f_text_c0); methods += new qt_gsi::GenericMethod (":textMargins", "@brief Method QMargins QLineEdit::textMargins()\n", true, &_init_f_textMargins_c0, &_call_f_textMargins_c0); methods += new qt_gsi::GenericMethod ("undo", "@brief Method void QLineEdit::undo()\n", false, &_init_f_undo_0, &_call_f_undo_0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc index 2a82ce6d6..a8e9019a8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc @@ -139,7 +139,7 @@ static void _call_f_clearPropertyFlags_0 (const qt_gsi::GenericMethod * /*decl*/ } -// () +// void QListView::doItemsLayout() static void _init_f_doItemsLayout_0 (qt_gsi::GenericMethod *decl) @@ -185,7 +185,7 @@ static void _call_f_gridSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QPoint &) const +// QModelIndex QListView::indexAt(const QPoint &p) static void _init_f_indexAt_c1916 (qt_gsi::GenericMethod *decl) @@ -298,7 +298,7 @@ static void _call_f_movement_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// void QListView::reset() static void _init_f_reset_0 (qt_gsi::GenericMethod *decl) @@ -329,7 +329,7 @@ static void _call_f_resizeMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &, QAbstractItemView::ScrollHint) +// void QListView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) static void _init_f_scrollTo_5576 (qt_gsi::GenericMethod *decl) @@ -492,7 +492,7 @@ static void _call_f_setResizeMode_2471 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &) +// void QListView::setRootIndex(const QModelIndex &index) static void _init_f_setRootIndex_2395 (qt_gsi::GenericMethod *decl) @@ -700,7 +700,7 @@ static void _call_f_viewMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QModelIndex &) const +// QRect QListView::visualRect(const QModelIndex &index) static void _init_f_visualRect_c2395 (qt_gsi::GenericMethod *decl) @@ -792,19 +792,19 @@ static gsi::Methods methods_QListView () { methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); methods += new qt_gsi::GenericMethod (":batchSize", "@brief Method int QListView::batchSize()\n", true, &_init_f_batchSize_c0, &_call_f_batchSize_c0); methods += new qt_gsi::GenericMethod ("clearPropertyFlags", "@brief Method void QListView::clearPropertyFlags()\n", false, &_init_f_clearPropertyFlags_0, &_call_f_clearPropertyFlags_0); - methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); + methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method void QListView::doItemsLayout()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); methods += new qt_gsi::GenericMethod (":flow", "@brief Method QListView::Flow QListView::flow()\n", true, &_init_f_flow_c0, &_call_f_flow_c0); methods += new qt_gsi::GenericMethod (":gridSize", "@brief Method QSize QListView::gridSize()\n", true, &_init_f_gridSize_c0, &_call_f_gridSize_c0); - methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method (const QPoint &) const\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); + methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method QModelIndex QListView::indexAt(const QPoint &p)\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); methods += new qt_gsi::GenericMethod ("isRowHidden?", "@brief Method bool QListView::isRowHidden(int row)\n", true, &_init_f_isRowHidden_c767, &_call_f_isRowHidden_c767); methods += new qt_gsi::GenericMethod ("isSelectionRectVisible?|:selectionRectVisible", "@brief Method bool QListView::isSelectionRectVisible()\n", true, &_init_f_isSelectionRectVisible_c0, &_call_f_isSelectionRectVisible_c0); methods += new qt_gsi::GenericMethod ("isWrapping?|:isWrapping", "@brief Method bool QListView::isWrapping()\n", true, &_init_f_isWrapping_c0, &_call_f_isWrapping_c0); methods += new qt_gsi::GenericMethod (":layoutMode", "@brief Method QListView::LayoutMode QListView::layoutMode()\n", true, &_init_f_layoutMode_c0, &_call_f_layoutMode_c0); methods += new qt_gsi::GenericMethod (":modelColumn", "@brief Method int QListView::modelColumn()\n", true, &_init_f_modelColumn_c0, &_call_f_modelColumn_c0); methods += new qt_gsi::GenericMethod (":movement", "@brief Method QListView::Movement QListView::movement()\n", true, &_init_f_movement_c0, &_call_f_movement_c0); - methods += new qt_gsi::GenericMethod ("reset", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); + methods += new qt_gsi::GenericMethod ("reset", "@brief Method void QListView::reset()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); methods += new qt_gsi::GenericMethod (":resizeMode", "@brief Method QListView::ResizeMode QListView::resizeMode()\n", true, &_init_f_resizeMode_c0, &_call_f_resizeMode_c0); - methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method (const QModelIndex &, QAbstractItemView::ScrollHint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); + methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method void QListView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); methods += new qt_gsi::GenericMethod ("setBatchSize|batchSize=", "@brief Method void QListView::setBatchSize(int batchSize)\n", false, &_init_f_setBatchSize_767, &_call_f_setBatchSize_767); methods += new qt_gsi::GenericMethod ("setFlow|flow=", "@brief Method void QListView::setFlow(QListView::Flow flow)\n", false, &_init_f_setFlow_1864, &_call_f_setFlow_1864); methods += new qt_gsi::GenericMethod ("setGridSize|gridSize=", "@brief Method void QListView::setGridSize(const QSize &size)\n", false, &_init_f_setGridSize_1805, &_call_f_setGridSize_1805); @@ -812,7 +812,7 @@ static gsi::Methods methods_QListView () { methods += new qt_gsi::GenericMethod ("setModelColumn|modelColumn=", "@brief Method void QListView::setModelColumn(int column)\n", false, &_init_f_setModelColumn_767, &_call_f_setModelColumn_767); methods += new qt_gsi::GenericMethod ("setMovement|movement=", "@brief Method void QListView::setMovement(QListView::Movement movement)\n", false, &_init_f_setMovement_2299, &_call_f_setMovement_2299); methods += new qt_gsi::GenericMethod ("setResizeMode|resizeMode=", "@brief Method void QListView::setResizeMode(QListView::ResizeMode mode)\n", false, &_init_f_setResizeMode_2471, &_call_f_setResizeMode_2471); - methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); + methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method void QListView::setRootIndex(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); methods += new qt_gsi::GenericMethod ("setRowHidden", "@brief Method void QListView::setRowHidden(int row, bool hide)\n", false, &_init_f_setRowHidden_1523, &_call_f_setRowHidden_1523); methods += new qt_gsi::GenericMethod ("setSelectionRectVisible|selectionRectVisible=", "@brief Method void QListView::setSelectionRectVisible(bool show)\n", false, &_init_f_setSelectionRectVisible_864, &_call_f_setSelectionRectVisible_864); methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QListView::setSpacing(int space)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767); @@ -823,7 +823,7 @@ static gsi::Methods methods_QListView () { methods += new qt_gsi::GenericMethod (":spacing", "@brief Method int QListView::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0); methods += new qt_gsi::GenericMethod (":uniformItemSizes", "@brief Method bool QListView::uniformItemSizes()\n", true, &_init_f_uniformItemSizes_c0, &_call_f_uniformItemSizes_c0); methods += new qt_gsi::GenericMethod (":viewMode", "@brief Method QListView::ViewMode QListView::viewMode()\n", true, &_init_f_viewMode_c0, &_call_f_viewMode_c0); - methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); + methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method QRect QListView::visualRect(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); methods += new qt_gsi::GenericMethod (":wordWrap", "@brief Method bool QListView::wordWrap()\n", true, &_init_f_wordWrap_c0, &_call_f_wordWrap_c0); methods += gsi::qt_signal ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QListView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("clicked(const QModelIndex &)", "clicked", gsi::arg("index"), "@brief Signal declaration for QListView::clicked(const QModelIndex &index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc index 93ed0c6bb..c1951878e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc @@ -187,7 +187,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QListWidgetItem *) +// void QListWidget::closePersistentEditor(QListWidgetItem *item) static void _init_f_closePersistentEditor_2126 (qt_gsi::GenericMethod *decl) @@ -252,7 +252,7 @@ static void _call_f_currentRow_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QDropEvent *) +// void QListWidget::dropEvent(QDropEvent *event) static void _init_f_dropEvent_1622 (qt_gsi::GenericMethod *decl) @@ -516,7 +516,7 @@ static void _call_f_itemWidget_c2126 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (QListWidgetItem *) +// void QListWidget::openPersistentEditor(QListWidgetItem *item) static void _init_f_openPersistentEditor_2126 (qt_gsi::GenericMethod *decl) @@ -906,11 +906,11 @@ static gsi::Methods methods_QListWidget () { methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QListWidget::addItem(QListWidgetItem *item)\n", false, &_init_f_addItem_2126, &_call_f_addItem_2126); methods += new qt_gsi::GenericMethod ("addItems", "@brief Method void QListWidget::addItems(const QStringList &labels)\n", false, &_init_f_addItems_2437, &_call_f_addItems_2437); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QListWidget::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method (QListWidgetItem *)\n", false, &_init_f_closePersistentEditor_2126, &_call_f_closePersistentEditor_2126); + methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method void QListWidget::closePersistentEditor(QListWidgetItem *item)\n", false, &_init_f_closePersistentEditor_2126, &_call_f_closePersistentEditor_2126); methods += new qt_gsi::GenericMethod (":count", "@brief Method int QListWidget::count()\n", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":currentItem", "@brief Method QListWidgetItem *QListWidget::currentItem()\n", true, &_init_f_currentItem_c0, &_call_f_currentItem_c0); methods += new qt_gsi::GenericMethod (":currentRow", "@brief Method int QListWidget::currentRow()\n", true, &_init_f_currentRow_c0, &_call_f_currentRow_c0); - methods += new qt_gsi::GenericMethod ("dropEvent", "@brief Method (QDropEvent *)\nThis is a reimplementation of QListView::dropEvent", false, &_init_f_dropEvent_1622, &_call_f_dropEvent_1622); + methods += new qt_gsi::GenericMethod ("dropEvent", "@brief Method void QListWidget::dropEvent(QDropEvent *event)\nThis is a reimplementation of QListView::dropEvent", false, &_init_f_dropEvent_1622, &_call_f_dropEvent_1622); methods += new qt_gsi::GenericMethod ("editItem", "@brief Method void QListWidget::editItem(QListWidgetItem *item)\n", false, &_init_f_editItem_2126, &_call_f_editItem_2126); methods += new qt_gsi::GenericMethod ("findItems", "@brief Method QList QListWidget::findItems(const QString &text, QFlags flags)\n", true, &_init_f_findItems_c4233, &_call_f_findItems_c4233); methods += new qt_gsi::GenericMethod ("insertItem", "@brief Method void QListWidget::insertItem(int row, QListWidgetItem *item)\n", false, &_init_f_insertItem_2785, &_call_f_insertItem_2785); @@ -923,7 +923,7 @@ static gsi::Methods methods_QListWidget () { methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QListWidgetItem *QListWidget::itemAt(const QPoint &p)\n", true, &_init_f_itemAt_c1916, &_call_f_itemAt_c1916); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QListWidgetItem *QListWidget::itemAt(int x, int y)\n", true, &_init_f_itemAt_c1426, &_call_f_itemAt_c1426); methods += new qt_gsi::GenericMethod ("itemWidget", "@brief Method QWidget *QListWidget::itemWidget(QListWidgetItem *item)\n", true, &_init_f_itemWidget_c2126, &_call_f_itemWidget_c2126); - methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method (QListWidgetItem *)\n", false, &_init_f_openPersistentEditor_2126, &_call_f_openPersistentEditor_2126); + methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method void QListWidget::openPersistentEditor(QListWidgetItem *item)\n", false, &_init_f_openPersistentEditor_2126, &_call_f_openPersistentEditor_2126); methods += new qt_gsi::GenericMethod ("removeItemWidget", "@brief Method void QListWidget::removeItemWidget(QListWidgetItem *item)\n", false, &_init_f_removeItemWidget_2126, &_call_f_removeItemWidget_2126); methods += new qt_gsi::GenericMethod ("row", "@brief Method int QListWidget::row(const QListWidgetItem *item)\n", true, &_init_f_row_c2821, &_call_f_row_c2821); methods += new qt_gsi::GenericMethod ("scrollToItem", "@brief Method void QListWidget::scrollToItem(const QListWidgetItem *item, QAbstractItemView::ScrollHint hint)\n", false, &_init_f_scrollToItem_6002, &_call_f_scrollToItem_6002); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc index 77001caed..0805cd65d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc @@ -281,7 +281,7 @@ static void _call_f_documentMode_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QSize QMdiArea::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -519,7 +519,7 @@ static void _call_f_setViewMode_2092 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QMdiArea::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -730,7 +730,7 @@ static gsi::Methods methods_QMdiArea () { methods += new qt_gsi::GenericMethod ("closeAllSubWindows", "@brief Method void QMdiArea::closeAllSubWindows()\n", false, &_init_f_closeAllSubWindows_0, &_call_f_closeAllSubWindows_0); methods += new qt_gsi::GenericMethod ("currentSubWindow", "@brief Method QMdiSubWindow *QMdiArea::currentSubWindow()\n", true, &_init_f_currentSubWindow_c0, &_call_f_currentSubWindow_c0); methods += new qt_gsi::GenericMethod (":documentMode", "@brief Method bool QMdiArea::documentMode()\n", true, &_init_f_documentMode_c0, &_call_f_documentMode_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QMdiArea::minimumSizeHint()\nThis is a reimplementation of QAbstractScrollArea::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("removeSubWindow", "@brief Method void QMdiArea::removeSubWindow(QWidget *widget)\n", false, &_init_f_removeSubWindow_1315, &_call_f_removeSubWindow_1315); methods += new qt_gsi::GenericMethod ("setActivationOrder|activationOrder=", "@brief Method void QMdiArea::setActivationOrder(QMdiArea::WindowOrder order)\n", false, &_init_f_setActivationOrder_2432, &_call_f_setActivationOrder_2432); methods += new qt_gsi::GenericMethod ("setActiveSubWindow|activeSubWindow=", "@brief Method void QMdiArea::setActiveSubWindow(QMdiSubWindow *window)\n", false, &_init_f_setActiveSubWindow_1915, &_call_f_setActiveSubWindow_1915); @@ -742,7 +742,7 @@ static gsi::Methods methods_QMdiArea () { methods += new qt_gsi::GenericMethod ("setTabsClosable|tabsClosable=", "@brief Method void QMdiArea::setTabsClosable(bool closable)\n", false, &_init_f_setTabsClosable_864, &_call_f_setTabsClosable_864); methods += new qt_gsi::GenericMethod ("setTabsMovable|tabsMovable=", "@brief Method void QMdiArea::setTabsMovable(bool movable)\n", false, &_init_f_setTabsMovable_864, &_call_f_setTabsMovable_864); methods += new qt_gsi::GenericMethod ("setViewMode|viewMode=", "@brief Method void QMdiArea::setViewMode(QMdiArea::ViewMode mode)\n", false, &_init_f_setViewMode_2092, &_call_f_setViewMode_2092); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QMdiArea::sizeHint()\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("subWindowList", "@brief Method QList QMdiArea::subWindowList(QMdiArea::WindowOrder order)\n", true, &_init_f_subWindowList_c2432, &_call_f_subWindowList_c2432); methods += new qt_gsi::GenericMethod (":tabPosition", "@brief Method QTabWidget::TabPosition QMdiArea::tabPosition()\n", true, &_init_f_tabPosition_c0, &_call_f_tabPosition_c0); methods += new qt_gsi::GenericMethod (":tabShape", "@brief Method QTabWidget::TabShape QMdiArea::tabShape()\n", true, &_init_f_tabShape_c0, &_call_f_tabShape_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc index 9e0f65c25..6dafefc4c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc @@ -192,7 +192,7 @@ static void _call_f_mdiArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QMdiSubWindow::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -342,7 +342,7 @@ static void _call_f_showSystemMenu_0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QMdiSubWindow::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -468,7 +468,7 @@ static gsi::Methods methods_QMdiSubWindow () { methods += new qt_gsi::GenericMethod ("maximizedButtonsWidget", "@brief Method QWidget *QMdiSubWindow::maximizedButtonsWidget()\n", true, &_init_f_maximizedButtonsWidget_c0, &_call_f_maximizedButtonsWidget_c0); methods += new qt_gsi::GenericMethod ("maximizedSystemMenuIconWidget", "@brief Method QWidget *QMdiSubWindow::maximizedSystemMenuIconWidget()\n", true, &_init_f_maximizedSystemMenuIconWidget_c0, &_call_f_maximizedSystemMenuIconWidget_c0); methods += new qt_gsi::GenericMethod ("mdiArea", "@brief Method QMdiArea *QMdiSubWindow::mdiArea()\n", true, &_init_f_mdiArea_c0, &_call_f_mdiArea_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QMdiSubWindow::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setKeyboardPageStep|keyboardPageStep=", "@brief Method void QMdiSubWindow::setKeyboardPageStep(int step)\n", false, &_init_f_setKeyboardPageStep_767, &_call_f_setKeyboardPageStep_767); methods += new qt_gsi::GenericMethod ("setKeyboardSingleStep|keyboardSingleStep=", "@brief Method void QMdiSubWindow::setKeyboardSingleStep(int step)\n", false, &_init_f_setKeyboardSingleStep_767, &_call_f_setKeyboardSingleStep_767); methods += new qt_gsi::GenericMethod ("setOption", "@brief Method void QMdiSubWindow::setOption(QMdiSubWindow::SubWindowOption option, bool on)\n", false, &_init_f_setOption_4164, &_call_f_setOption_4164); @@ -476,7 +476,7 @@ static gsi::Methods methods_QMdiSubWindow () { methods += new qt_gsi::GenericMethod ("setWidget|widget=", "@brief Method void QMdiSubWindow::setWidget(QWidget *widget)\n", false, &_init_f_setWidget_1315, &_call_f_setWidget_1315); methods += new qt_gsi::GenericMethod ("showShaded", "@brief Method void QMdiSubWindow::showShaded()\n", false, &_init_f_showShaded_0, &_call_f_showShaded_0); methods += new qt_gsi::GenericMethod ("showSystemMenu", "@brief Method void QMdiSubWindow::showSystemMenu()\n", false, &_init_f_showSystemMenu_0, &_call_f_showSystemMenu_0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QMdiSubWindow::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":systemMenu", "@brief Method QMenu *QMdiSubWindow::systemMenu()\n", true, &_init_f_systemMenu_c0, &_call_f_systemMenu_c0); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QMdiSubWindow::testOption(QMdiSubWindow::SubWindowOption)\n", true, &_init_f_testOption_c3408, &_call_f_testOption_c3408); methods += new qt_gsi::GenericMethod (":widget", "@brief Method QWidget *QMdiSubWindow::widget()\n", true, &_init_f_widget_c0, &_call_f_widget_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc index 4ad1b7a93..e86acdefa 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc @@ -154,7 +154,7 @@ static void _call_f_activeAction_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QAction *) +// void QMenu::addAction(QAction *action) static void _init_f_addAction_1309 (qt_gsi::GenericMethod *decl) @@ -174,7 +174,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) +// QAction *QMenu::addAction(const QString &text) static void _init_f_addAction_2025 (qt_gsi::GenericMethod *decl) @@ -193,7 +193,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QIcon &, const QString &) +// QAction *QMenu::addAction(const QIcon &icon, const QString &text) static void _init_f_addAction_3704 (qt_gsi::GenericMethod *decl) @@ -215,7 +215,7 @@ static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &, const QObject *, const char *, const QKeySequence &) +// QAction *QMenu::addAction(const QString &text, const QObject *receiver, const char *member, const QKeySequence &shortcut) static void _init_f_addAction_7945 (qt_gsi::GenericMethod *decl) @@ -243,7 +243,7 @@ static void _call_f_addAction_7945 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QIcon &, const QString &, const QObject *, const char *, const QKeySequence &) +// QAction *QMenu::addAction(const QIcon &icon, const QString &text, const QObject *receiver, const char *member, const QKeySequence &shortcut) static void _init_f_addAction_9624 (qt_gsi::GenericMethod *decl) @@ -835,7 +835,7 @@ static void _call_f_setToolTipsVisible_864 (const qt_gsi::GenericMethod * /*decl } -// () const +// QSize QMenu::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -967,11 +967,11 @@ static gsi::Methods methods_QMenu () { methods += new qt_gsi::GenericMethod ("actionAt", "@brief Method QAction *QMenu::actionAt(const QPoint &)\n", true, &_init_f_actionAt_c1916, &_call_f_actionAt_c1916); methods += new qt_gsi::GenericMethod ("actionGeometry", "@brief Method QRect QMenu::actionGeometry(QAction *)\n", true, &_init_f_actionGeometry_c1309, &_call_f_actionGeometry_c1309); methods += new qt_gsi::GenericMethod (":activeAction", "@brief Method QAction *QMenu::activeAction()\n", true, &_init_f_activeAction_c0, &_call_f_activeAction_c0); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (QAction *)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, const QString &)\n", false, &_init_f_addAction_3704, &_call_f_addAction_3704); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &, const QObject *, const char *, const QKeySequence &)\n", false, &_init_f_addAction_7945, &_call_f_addAction_7945); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, const QString &, const QObject *, const char *, const QKeySequence &)\n", false, &_init_f_addAction_9624, &_call_f_addAction_9624); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method void QMenu::addAction(QAction *action)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenu::addAction(const QString &text)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenu::addAction(const QIcon &icon, const QString &text)\n", false, &_init_f_addAction_3704, &_call_f_addAction_3704); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenu::addAction(const QString &text, const QObject *receiver, const char *member, const QKeySequence &shortcut)\n", false, &_init_f_addAction_7945, &_call_f_addAction_7945); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenu::addAction(const QIcon &icon, const QString &text, const QObject *receiver, const char *member, const QKeySequence &shortcut)\n", false, &_init_f_addAction_9624, &_call_f_addAction_9624); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QAction *QMenu::addMenu(QMenu *menu)\n", false, &_init_f_addMenu_1108, &_call_f_addMenu_1108); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QMenu *QMenu::addMenu(const QString &title)\n", false, &_init_f_addMenu_2025, &_call_f_addMenu_2025); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QMenu *QMenu::addMenu(const QIcon &icon, const QString &title)\n", false, &_init_f_addMenu_3704, &_call_f_addMenu_3704); @@ -1002,7 +1002,7 @@ static gsi::Methods methods_QMenu () { methods += new qt_gsi::GenericMethod ("setTearOffEnabled|tearOffEnabled=", "@brief Method void QMenu::setTearOffEnabled(bool)\n", false, &_init_f_setTearOffEnabled_864, &_call_f_setTearOffEnabled_864); methods += new qt_gsi::GenericMethod ("setTitle|title=", "@brief Method void QMenu::setTitle(const QString &title)\n", false, &_init_f_setTitle_2025, &_call_f_setTitle_2025); methods += new qt_gsi::GenericMethod ("setToolTipsVisible|toolTipsVisible=", "@brief Method void QMenu::setToolTipsVisible(bool visible)\n", false, &_init_f_setToolTipsVisible_864, &_call_f_setToolTipsVisible_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QMenu::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":title", "@brief Method QString QMenu::title()\n", true, &_init_f_title_c0, &_call_f_title_c0); methods += new qt_gsi::GenericMethod (":toolTipsVisible", "@brief Method bool QMenu::toolTipsVisible()\n", true, &_init_f_toolTipsVisible_c0, &_call_f_toolTipsVisible_c0); methods += gsi::qt_signal ("aboutToHide()", "aboutToHide", "@brief Signal declaration for QMenu::aboutToHide()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc index 28502f601..247336c8f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc @@ -155,7 +155,7 @@ static void _call_f_activeAction_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QAction *) +// void QMenuBar::addAction(QAction *action) static void _init_f_addAction_1309 (qt_gsi::GenericMethod *decl) @@ -175,7 +175,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) +// QAction *QMenuBar::addAction(const QString &text) static void _init_f_addAction_2025 (qt_gsi::GenericMethod *decl) @@ -194,7 +194,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &, const QObject *, const char *) +// QAction *QMenuBar::addAction(const QString &text, const QObject *receiver, const char *member) static void _init_f_addAction_5537 (qt_gsi::GenericMethod *decl) @@ -329,7 +329,7 @@ static void _call_f_cornerWidget_c1366 (const qt_gsi::GenericMethod * /*decl*/, } -// (int) const +// int QMenuBar::heightForWidth(int) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -419,7 +419,7 @@ static void _call_f_isNativeMenuBar_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QMenuBar::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -517,7 +517,7 @@ static void _call_f_setNativeMenuBar_864 (const qt_gsi::GenericMethod * /*decl*/ } -// (bool) +// void QMenuBar::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -537,7 +537,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QMenuBar::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -611,27 +611,27 @@ static gsi::Methods methods_QMenuBar () { methods += new qt_gsi::GenericMethod ("actionAt", "@brief Method QAction *QMenuBar::actionAt(const QPoint &)\n", true, &_init_f_actionAt_c1916, &_call_f_actionAt_c1916); methods += new qt_gsi::GenericMethod ("actionGeometry", "@brief Method QRect QMenuBar::actionGeometry(QAction *)\n", true, &_init_f_actionGeometry_c1309, &_call_f_actionGeometry_c1309); methods += new qt_gsi::GenericMethod (":activeAction", "@brief Method QAction *QMenuBar::activeAction()\n", true, &_init_f_activeAction_c0, &_call_f_activeAction_c0); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (QAction *)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &, const QObject *, const char *)\n", false, &_init_f_addAction_5537, &_call_f_addAction_5537); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method void QMenuBar::addAction(QAction *action)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenuBar::addAction(const QString &text)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QMenuBar::addAction(const QString &text, const QObject *receiver, const char *member)\n", false, &_init_f_addAction_5537, &_call_f_addAction_5537); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QAction *QMenuBar::addMenu(QMenu *menu)\n", false, &_init_f_addMenu_1108, &_call_f_addMenu_1108); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QMenu *QMenuBar::addMenu(const QString &title)\n", false, &_init_f_addMenu_2025, &_call_f_addMenu_2025); methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QMenu *QMenuBar::addMenu(const QIcon &icon, const QString &title)\n", false, &_init_f_addMenu_3704, &_call_f_addMenu_3704); methods += new qt_gsi::GenericMethod ("addSeparator", "@brief Method QAction *QMenuBar::addSeparator()\n", false, &_init_f_addSeparator_0, &_call_f_addSeparator_0); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QMenuBar::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); methods += new qt_gsi::GenericMethod ("cornerWidget", "@brief Method QWidget *QMenuBar::cornerWidget(Qt::Corner corner)\n", true, &_init_f_cornerWidget_c1366, &_call_f_cornerWidget_c1366); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QWidget::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QMenuBar::heightForWidth(int)\nThis is a reimplementation of QWidget::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod ("insertMenu", "@brief Method QAction *QMenuBar::insertMenu(QAction *before, QMenu *menu)\n", false, &_init_f_insertMenu_2309, &_call_f_insertMenu_2309); methods += new qt_gsi::GenericMethod ("insertSeparator", "@brief Method QAction *QMenuBar::insertSeparator(QAction *before)\n", false, &_init_f_insertSeparator_1309, &_call_f_insertSeparator_1309); methods += new qt_gsi::GenericMethod ("isDefaultUp?|:defaultUp", "@brief Method bool QMenuBar::isDefaultUp()\n", true, &_init_f_isDefaultUp_c0, &_call_f_isDefaultUp_c0); methods += new qt_gsi::GenericMethod ("isNativeMenuBar?|:nativeMenuBar", "@brief Method bool QMenuBar::isNativeMenuBar()\n", true, &_init_f_isNativeMenuBar_c0, &_call_f_isNativeMenuBar_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QMenuBar::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setActiveAction|activeAction=", "@brief Method void QMenuBar::setActiveAction(QAction *action)\n", false, &_init_f_setActiveAction_1309, &_call_f_setActiveAction_1309); methods += new qt_gsi::GenericMethod ("setCornerWidget", "@brief Method void QMenuBar::setCornerWidget(QWidget *w, Qt::Corner corner)\n", false, &_init_f_setCornerWidget_2573, &_call_f_setCornerWidget_2573); methods += new qt_gsi::GenericMethod ("setDefaultUp|defaultUp=", "@brief Method void QMenuBar::setDefaultUp(bool)\n", false, &_init_f_setDefaultUp_864, &_call_f_setDefaultUp_864); methods += new qt_gsi::GenericMethod ("setNativeMenuBar|nativeMenuBar=", "@brief Method void QMenuBar::setNativeMenuBar(bool nativeMenuBar)\n", false, &_init_f_setNativeMenuBar_864, &_call_f_setNativeMenuBar_864); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QMenuBar::setVisible(bool visible)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QMenuBar::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QMenuBar::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QMenuBar::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("hovered(QAction *)", "hovered", gsi::arg("action"), "@brief Signal declaration for QMenuBar::hovered(QAction *action)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc index 3eec8c5f7..d5bd9a1b7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc @@ -359,7 +359,7 @@ static void _call_f_informativeText_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () +// void QMessageBox::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -375,7 +375,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QMessageBox::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -701,7 +701,7 @@ static void _call_f_setTextInteractionFlags_3396 (const qt_gsi::GenericMethod * } -// (Qt::WindowModality) +// void QMessageBox::setWindowModality(Qt::WindowModality windowModality) static void _init_f_setWindowModality_2216 (qt_gsi::GenericMethod *decl) @@ -721,7 +721,7 @@ static void _call_f_setWindowModality_2216 (const qt_gsi::GenericMethod * /*decl } -// (const QString &) +// void QMessageBox::setWindowTitle(const QString &title) static void _init_f_setWindowTitle_2025 (qt_gsi::GenericMethod *decl) @@ -1064,8 +1064,8 @@ static gsi::Methods methods_QMessageBox () { methods += new qt_gsi::GenericMethod (":icon", "@brief Method QMessageBox::Icon QMessageBox::icon()\n", true, &_init_f_icon_c0, &_call_f_icon_c0); methods += new qt_gsi::GenericMethod (":iconPixmap", "@brief Method QPixmap QMessageBox::iconPixmap()\n", true, &_init_f_iconPixmap_c0, &_call_f_iconPixmap_c0); methods += new qt_gsi::GenericMethod (":informativeText", "@brief Method QString QMessageBox::informativeText()\n", true, &_init_f_informativeText_c0, &_call_f_informativeText_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QMessageBox::open()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QMessageBox::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod ("removeButton", "@brief Method void QMessageBox::removeButton(QAbstractButton *button)\n", false, &_init_f_removeButton_2159, &_call_f_removeButton_2159); methods += new qt_gsi::GenericMethod ("setButtonText", "@brief Method void QMessageBox::setButtonText(int button, const QString &text)\n", false, &_init_f_setButtonText_2684, &_call_f_setButtonText_2684); methods += new qt_gsi::GenericMethod ("setCheckBox|checkBox=", "@brief Method void QMessageBox::setCheckBox(QCheckBox *cb)\n", false, &_init_f_setCheckBox_1478, &_call_f_setCheckBox_1478); @@ -1081,8 +1081,8 @@ static gsi::Methods methods_QMessageBox () { methods += new qt_gsi::GenericMethod ("setText|text=", "@brief Method void QMessageBox::setText(const QString &text)\n", false, &_init_f_setText_2025, &_call_f_setText_2025); methods += new qt_gsi::GenericMethod ("setTextFormat|textFormat=", "@brief Method void QMessageBox::setTextFormat(Qt::TextFormat format)\n", false, &_init_f_setTextFormat_1787, &_call_f_setTextFormat_1787); methods += new qt_gsi::GenericMethod ("setTextInteractionFlags|textInteractionFlags=", "@brief Method void QMessageBox::setTextInteractionFlags(QFlags flags)\n", false, &_init_f_setTextInteractionFlags_3396, &_call_f_setTextInteractionFlags_3396); - methods += new qt_gsi::GenericMethod ("setWindowModality|windowModality=", "@brief Method (Qt::WindowModality)\n", false, &_init_f_setWindowModality_2216, &_call_f_setWindowModality_2216); - methods += new qt_gsi::GenericMethod ("setWindowTitle|windowTitle=", "@brief Method (const QString &)\n", false, &_init_f_setWindowTitle_2025, &_call_f_setWindowTitle_2025); + methods += new qt_gsi::GenericMethod ("setWindowModality|windowModality=", "@brief Method void QMessageBox::setWindowModality(Qt::WindowModality windowModality)\n", false, &_init_f_setWindowModality_2216, &_call_f_setWindowModality_2216); + methods += new qt_gsi::GenericMethod ("setWindowTitle|windowTitle=", "@brief Method void QMessageBox::setWindowTitle(const QString &title)\n", false, &_init_f_setWindowTitle_2025, &_call_f_setWindowTitle_2025); methods += new qt_gsi::GenericMethod ("standardButton", "@brief Method QMessageBox::StandardButton QMessageBox::standardButton(QAbstractButton *button)\n", true, &_init_f_standardButton_c2159, &_call_f_standardButton_c2159); methods += new qt_gsi::GenericMethod (":standardButtons", "@brief Method QFlags QMessageBox::standardButtons()\n", true, &_init_f_standardButtons_c0, &_call_f_standardButtons_c0); methods += new qt_gsi::GenericMethod (":text", "@brief Method QString QMessageBox::text()\n", true, &_init_f_text_c0, &_call_f_text_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc index 32d468097..73bea1a13 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc @@ -67,7 +67,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (const QTextBlock &) const +// QRectF QPlainTextDocumentLayout::blockBoundingRect(const QTextBlock &block) static void _init_f_blockBoundingRect_c2306 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_cursorWidth_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSizeF QPlainTextDocumentLayout::documentSize() static void _init_f_documentSize_c0 (qt_gsi::GenericMethod *decl) @@ -116,7 +116,7 @@ static void _call_f_documentSize_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QPainter *, const QAbstractTextDocumentLayout::PaintContext &) +// void QPlainTextDocumentLayout::draw(QPainter *, const QAbstractTextDocumentLayout::PaintContext &) static void _init_f_draw_6787 (qt_gsi::GenericMethod *decl) @@ -159,7 +159,7 @@ static void _call_f_ensureBlockLayout_c2306 (const qt_gsi::GenericMethod * /*dec } -// (QTextFrame *) const +// QRectF QPlainTextDocumentLayout::frameBoundingRect(QTextFrame *) static void _init_f_frameBoundingRect_c1615 (qt_gsi::GenericMethod *decl) @@ -178,7 +178,7 @@ static void _call_f_frameBoundingRect_c1615 (const qt_gsi::GenericMethod * /*dec } -// (const QPointF &, Qt::HitTestAccuracy) const +// int QPlainTextDocumentLayout::hitTest(const QPointF &, Qt::HitTestAccuracy) static void _init_f_hitTest_c4147 (qt_gsi::GenericMethod *decl) @@ -200,7 +200,7 @@ static void _call_f_hitTest_c4147 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QPlainTextDocumentLayout::pageCount() static void _init_f_pageCount_c0 (qt_gsi::GenericMethod *decl) @@ -307,14 +307,14 @@ namespace gsi static gsi::Methods methods_QPlainTextDocumentLayout () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("blockBoundingRect", "@brief Method (const QTextBlock &) const\nThis is a reimplementation of QAbstractTextDocumentLayout::blockBoundingRect", true, &_init_f_blockBoundingRect_c2306, &_call_f_blockBoundingRect_c2306); + methods += new qt_gsi::GenericMethod ("blockBoundingRect", "@brief Method QRectF QPlainTextDocumentLayout::blockBoundingRect(const QTextBlock &block)\nThis is a reimplementation of QAbstractTextDocumentLayout::blockBoundingRect", true, &_init_f_blockBoundingRect_c2306, &_call_f_blockBoundingRect_c2306); methods += new qt_gsi::GenericMethod (":cursorWidth", "@brief Method int QPlainTextDocumentLayout::cursorWidth()\n", true, &_init_f_cursorWidth_c0, &_call_f_cursorWidth_c0); - methods += new qt_gsi::GenericMethod ("documentSize", "@brief Method () const\nThis is a reimplementation of QAbstractTextDocumentLayout::documentSize", true, &_init_f_documentSize_c0, &_call_f_documentSize_c0); - methods += new qt_gsi::GenericMethod ("draw", "@brief Method (QPainter *, const QAbstractTextDocumentLayout::PaintContext &)\nThis is a reimplementation of QAbstractTextDocumentLayout::draw", false, &_init_f_draw_6787, &_call_f_draw_6787); + methods += new qt_gsi::GenericMethod ("documentSize", "@brief Method QSizeF QPlainTextDocumentLayout::documentSize()\nThis is a reimplementation of QAbstractTextDocumentLayout::documentSize", true, &_init_f_documentSize_c0, &_call_f_documentSize_c0); + methods += new qt_gsi::GenericMethod ("draw", "@brief Method void QPlainTextDocumentLayout::draw(QPainter *, const QAbstractTextDocumentLayout::PaintContext &)\nThis is a reimplementation of QAbstractTextDocumentLayout::draw", false, &_init_f_draw_6787, &_call_f_draw_6787); methods += new qt_gsi::GenericMethod ("ensureBlockLayout", "@brief Method void QPlainTextDocumentLayout::ensureBlockLayout(const QTextBlock &block)\n", true, &_init_f_ensureBlockLayout_c2306, &_call_f_ensureBlockLayout_c2306); - methods += new qt_gsi::GenericMethod ("frameBoundingRect", "@brief Method (QTextFrame *) const\nThis is a reimplementation of QAbstractTextDocumentLayout::frameBoundingRect", true, &_init_f_frameBoundingRect_c1615, &_call_f_frameBoundingRect_c1615); - methods += new qt_gsi::GenericMethod ("hitTest", "@brief Method (const QPointF &, Qt::HitTestAccuracy) const\nThis is a reimplementation of QAbstractTextDocumentLayout::hitTest", true, &_init_f_hitTest_c4147, &_call_f_hitTest_c4147); - methods += new qt_gsi::GenericMethod ("pageCount", "@brief Method () const\nThis is a reimplementation of QAbstractTextDocumentLayout::pageCount", true, &_init_f_pageCount_c0, &_call_f_pageCount_c0); + methods += new qt_gsi::GenericMethod ("frameBoundingRect", "@brief Method QRectF QPlainTextDocumentLayout::frameBoundingRect(QTextFrame *)\nThis is a reimplementation of QAbstractTextDocumentLayout::frameBoundingRect", true, &_init_f_frameBoundingRect_c1615, &_call_f_frameBoundingRect_c1615); + methods += new qt_gsi::GenericMethod ("hitTest", "@brief Method int QPlainTextDocumentLayout::hitTest(const QPointF &, Qt::HitTestAccuracy)\nThis is a reimplementation of QAbstractTextDocumentLayout::hitTest", true, &_init_f_hitTest_c4147, &_call_f_hitTest_c4147); + methods += new qt_gsi::GenericMethod ("pageCount", "@brief Method int QPlainTextDocumentLayout::pageCount()\nThis is a reimplementation of QAbstractTextDocumentLayout::pageCount", true, &_init_f_pageCount_c0, &_call_f_pageCount_c0); methods += new qt_gsi::GenericMethod ("requestUpdate", "@brief Method void QPlainTextDocumentLayout::requestUpdate()\n", false, &_init_f_requestUpdate_0, &_call_f_requestUpdate_0); methods += new qt_gsi::GenericMethod ("setCursorWidth|cursorWidth=", "@brief Method void QPlainTextDocumentLayout::setCursorWidth(int width)\n", false, &_init_f_setCursorWidth_767, &_call_f_setCursorWidth_767); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QPlainTextDocumentLayout::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc index 9cf6d0e82..1f174049f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc @@ -474,7 +474,7 @@ static void _call_f_extraSelections_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QString &, QFlags) +// bool QPlainTextEdit::find(const QString &exp, QFlags options) static void _init_f_find_5261 (qt_gsi::GenericMethod *decl) @@ -496,7 +496,7 @@ static void _call_f_find_5261 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QRegExp &, QFlags) +// bool QPlainTextEdit::find(const QRegExp &exp, QFlags options) static void _init_f_find_5217 (qt_gsi::GenericMethod *decl) @@ -518,7 +518,7 @@ static void _call_f_find_5217 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (Qt::InputMethodQuery) const +// QVariant QPlainTextEdit::inputMethodQuery(Qt::InputMethodQuery property) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -537,7 +537,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl } -// (Qt::InputMethodQuery, QVariant) const +// QVariant QPlainTextEdit::inputMethodQuery(Qt::InputMethodQuery query, QVariant argument) static void _init_f_inputMethodQuery_c3554 (qt_gsi::GenericMethod *decl) @@ -1406,10 +1406,10 @@ static gsi::Methods methods_QPlainTextEdit () { methods += new qt_gsi::GenericMethod (":documentTitle", "@brief Method QString QPlainTextEdit::documentTitle()\n", true, &_init_f_documentTitle_c0, &_call_f_documentTitle_c0); methods += new qt_gsi::GenericMethod ("ensureCursorVisible", "@brief Method void QPlainTextEdit::ensureCursorVisible()\n", false, &_init_f_ensureCursorVisible_0, &_call_f_ensureCursorVisible_0); methods += new qt_gsi::GenericMethod (":extraSelections", "@brief Method QList QPlainTextEdit::extraSelections()\n", true, &_init_f_extraSelections_c0, &_call_f_extraSelections_c0); - methods += new qt_gsi::GenericMethod ("find", "@brief Method (const QString &, QFlags)\n", false, &_init_f_find_5261, &_call_f_find_5261); - methods += new qt_gsi::GenericMethod ("find", "@brief Method (const QRegExp &, QFlags)\n", false, &_init_f_find_5217, &_call_f_find_5217); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery, QVariant) const\n", true, &_init_f_inputMethodQuery_c3554, &_call_f_inputMethodQuery_c3554); + methods += new qt_gsi::GenericMethod ("find", "@brief Method bool QPlainTextEdit::find(const QString &exp, QFlags options)\n", false, &_init_f_find_5261, &_call_f_find_5261); + methods += new qt_gsi::GenericMethod ("find", "@brief Method bool QPlainTextEdit::find(const QRegExp &exp, QFlags options)\n", false, &_init_f_find_5217, &_call_f_find_5217); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QPlainTextEdit::inputMethodQuery(Qt::InputMethodQuery property)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QPlainTextEdit::inputMethodQuery(Qt::InputMethodQuery query, QVariant argument)\n", true, &_init_f_inputMethodQuery_c3554, &_call_f_inputMethodQuery_c3554); methods += new qt_gsi::GenericMethod ("insertPlainText", "@brief Method void QPlainTextEdit::insertPlainText(const QString &text)\n", false, &_init_f_insertPlainText_2025, &_call_f_insertPlainText_2025); methods += new qt_gsi::GenericMethod ("isReadOnly?|:readOnly", "@brief Method bool QPlainTextEdit::isReadOnly()\n", true, &_init_f_isReadOnly_c0, &_call_f_isReadOnly_c0); methods += new qt_gsi::GenericMethod ("isUndoRedoEnabled?|:undoRedoEnabled", "@brief Method bool QPlainTextEdit::isUndoRedoEnabled()\n", true, &_init_f_isUndoRedoEnabled_c0, &_call_f_isUndoRedoEnabled_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc index 10b0247c3..94731cc8d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc @@ -191,7 +191,7 @@ static void _call_f_minimum_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QProgressBar::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -456,7 +456,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QSize QProgressBar::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -578,7 +578,7 @@ static gsi::Methods methods_QProgressBar () { methods += new qt_gsi::GenericMethod ("isTextVisible?|:textVisible", "@brief Method bool QProgressBar::isTextVisible()\n", true, &_init_f_isTextVisible_c0, &_call_f_isTextVisible_c0); methods += new qt_gsi::GenericMethod (":maximum", "@brief Method int QProgressBar::maximum()\n", true, &_init_f_maximum_c0, &_call_f_maximum_c0); methods += new qt_gsi::GenericMethod (":minimum", "@brief Method int QProgressBar::minimum()\n", true, &_init_f_minimum_c0, &_call_f_minimum_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QProgressBar::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method Qt::Orientation QProgressBar::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); methods += new qt_gsi::GenericMethod ("reset", "@brief Method void QProgressBar::reset()\n", false, &_init_f_reset_0, &_call_f_reset_0); methods += new qt_gsi::GenericMethod ("resetFormat", "@brief Method void QProgressBar::resetFormat()\n", false, &_init_f_resetFormat_0, &_call_f_resetFormat_0); @@ -592,7 +592,7 @@ static gsi::Methods methods_QProgressBar () { methods += new qt_gsi::GenericMethod ("setTextDirection|textDirection=", "@brief Method void QProgressBar::setTextDirection(QProgressBar::Direction textDirection)\n", false, &_init_f_setTextDirection_2692, &_call_f_setTextDirection_2692); methods += new qt_gsi::GenericMethod ("setTextVisible|textVisible=", "@brief Method void QProgressBar::setTextVisible(bool visible)\n", false, &_init_f_setTextVisible_864, &_call_f_setTextVisible_864); methods += new qt_gsi::GenericMethod ("setValue|value=", "@brief Method void QProgressBar::setValue(int value)\n", false, &_init_f_setValue_767, &_call_f_setValue_767); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QProgressBar::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":text", "@brief Method QString QProgressBar::text()\n", true, &_init_f_text_c0, &_call_f_text_c0); methods += new qt_gsi::GenericMethod (":textDirection", "@brief Method QProgressBar::Direction QProgressBar::textDirection()\n", true, &_init_f_textDirection_c0, &_call_f_textDirection_c0); methods += new qt_gsi::GenericMethod (":value", "@brief Method int QProgressBar::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc index fdce6ac13..41630d4fa 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc @@ -209,7 +209,7 @@ static void _call_f_minimumDuration_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () +// void QProgressDialog::open() static void _init_f_open_0 (qt_gsi::GenericMethod *decl) @@ -225,7 +225,7 @@ static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g } -// (QObject *, const char *) +// void QProgressDialog::open(QObject *receiver, const char *member) static void _init_f_open_2925 (qt_gsi::GenericMethod *decl) @@ -507,7 +507,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// QSize QProgressDialog::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -615,8 +615,8 @@ static gsi::Methods methods_QProgressDialog () { methods += new qt_gsi::GenericMethod (":maximum", "@brief Method int QProgressDialog::maximum()\n", true, &_init_f_maximum_c0, &_call_f_maximum_c0); methods += new qt_gsi::GenericMethod (":minimum", "@brief Method int QProgressDialog::minimum()\n", true, &_init_f_minimum_c0, &_call_f_minimum_c0); methods += new qt_gsi::GenericMethod (":minimumDuration", "@brief Method int QProgressDialog::minimumDuration()\n", true, &_init_f_minimumDuration_c0, &_call_f_minimumDuration_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method ()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QObject *, const char *)\n", false, &_init_f_open_2925, &_call_f_open_2925); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QProgressDialog::open()\nThis is a reimplementation of QDialog::open", false, &_init_f_open_0, &_call_f_open_0); + methods += new qt_gsi::GenericMethod ("open", "@brief Method void QProgressDialog::open(QObject *receiver, const char *member)\n", false, &_init_f_open_2925, &_call_f_open_2925); methods += new qt_gsi::GenericMethod ("reset", "@brief Method void QProgressDialog::reset()\n", false, &_init_f_reset_0, &_call_f_reset_0); methods += new qt_gsi::GenericMethod ("setAutoClose|autoClose=", "@brief Method void QProgressDialog::setAutoClose(bool close)\n", false, &_init_f_setAutoClose_864, &_call_f_setAutoClose_864); methods += new qt_gsi::GenericMethod ("setAutoReset|autoReset=", "@brief Method void QProgressDialog::setAutoReset(bool reset)\n", false, &_init_f_setAutoReset_864, &_call_f_setAutoReset_864); @@ -630,7 +630,7 @@ static gsi::Methods methods_QProgressDialog () { methods += new qt_gsi::GenericMethod ("setMinimumDuration|minimumDuration=", "@brief Method void QProgressDialog::setMinimumDuration(int ms)\n", false, &_init_f_setMinimumDuration_767, &_call_f_setMinimumDuration_767); methods += new qt_gsi::GenericMethod ("setRange", "@brief Method void QProgressDialog::setRange(int minimum, int maximum)\n", false, &_init_f_setRange_1426, &_call_f_setRange_1426); methods += new qt_gsi::GenericMethod ("setValue|value=", "@brief Method void QProgressDialog::setValue(int progress)\n", false, &_init_f_setValue_767, &_call_f_setValue_767); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QProgressDialog::sizeHint()\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":value", "@brief Method int QProgressDialog::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); methods += new qt_gsi::GenericMethod (":wasCanceled", "@brief Method bool QProgressDialog::wasCanceled()\n", true, &_init_f_wasCanceled_c0, &_call_f_wasCanceled_c0); methods += gsi::qt_signal ("accepted()", "accepted", "@brief Signal declaration for QProgressDialog::accepted()\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc index 7d163060c..a19809eed 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc @@ -163,7 +163,7 @@ static void _call_f_menu_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QSize QPushButton::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -274,7 +274,7 @@ static void _call_f_showMenu_0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QPushButton::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -349,13 +349,13 @@ static gsi::Methods methods_QPushButton () { methods += new qt_gsi::GenericMethod ("isDefault?|:default", "@brief Method bool QPushButton::isDefault()\n", true, &_init_f_isDefault_c0, &_call_f_isDefault_c0); methods += new qt_gsi::GenericMethod ("isFlat?|:flat", "@brief Method bool QPushButton::isFlat()\n", true, &_init_f_isFlat_c0, &_call_f_isFlat_c0); methods += new qt_gsi::GenericMethod (":menu", "@brief Method QMenu *QPushButton::menu()\n", true, &_init_f_menu_c0, &_call_f_menu_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QPushButton::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setAutoDefault|autoDefault=", "@brief Method void QPushButton::setAutoDefault(bool)\n", false, &_init_f_setAutoDefault_864, &_call_f_setAutoDefault_864); methods += new qt_gsi::GenericMethod ("setDefault|default=", "@brief Method void QPushButton::setDefault(bool)\n", false, &_init_f_setDefault_864, &_call_f_setDefault_864); methods += new qt_gsi::GenericMethod ("setFlat|flat=", "@brief Method void QPushButton::setFlat(bool)\n", false, &_init_f_setFlat_864, &_call_f_setFlat_864); methods += new qt_gsi::GenericMethod ("setMenu|menu=", "@brief Method void QPushButton::setMenu(QMenu *menu)\n", false, &_init_f_setMenu_1108, &_call_f_setMenu_1108); methods += new qt_gsi::GenericMethod ("showMenu", "@brief Method void QPushButton::showMenu()\n", false, &_init_f_showMenu_0, &_call_f_showMenu_0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QPushButton::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("clicked(bool)", "clicked", gsi::arg("checked"), "@brief Signal declaration for QPushButton::clicked(bool checked)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QPushButton::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QPushButton::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc index a5b260ccf..f3c02c72f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc @@ -102,7 +102,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// () const +// QSize QRadioButton::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -117,7 +117,7 @@ static void _call_f_minimumSizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QRadioButton::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -188,8 +188,8 @@ namespace gsi static gsi::Methods methods_QRadioButton () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QRadioButton::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QRadioButton::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("clicked(bool)", "clicked", gsi::arg("checked"), "@brief Signal declaration for QRadioButton::clicked(bool checked)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QRadioButton::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QRadioButton::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc index 75096cd96..3014295d7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc @@ -101,7 +101,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (int, int) +// void QRubberBand::move(int x, int y) static void _init_f_move_1426 (qt_gsi::GenericMethod *decl) @@ -124,7 +124,7 @@ static void _call_f_move_1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QPoint &) +// void QRubberBand::move(const QPoint &p) static void _init_f_move_1916 (qt_gsi::GenericMethod *decl) @@ -144,7 +144,7 @@ static void _call_f_move_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (int, int) +// void QRubberBand::resize(int w, int h) static void _init_f_resize_1426 (qt_gsi::GenericMethod *decl) @@ -167,7 +167,7 @@ static void _call_f_resize_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QSize &) +// void QRubberBand::resize(const QSize &s) static void _init_f_resize_1805 (qt_gsi::GenericMethod *decl) @@ -187,7 +187,7 @@ static void _call_f_resize_1805 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QRect &) +// void QRubberBand::setGeometry(const QRect &r) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -207,7 +207,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (int, int, int, int) +// void QRubberBand::setGeometry(int x, int y, int w, int h) static void _init_f_setGeometry_2744 (qt_gsi::GenericMethod *decl) @@ -307,12 +307,12 @@ namespace gsi static gsi::Methods methods_QRubberBand () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("move", "@brief Method (int, int)\n", false, &_init_f_move_1426, &_call_f_move_1426); - methods += new qt_gsi::GenericMethod ("move", "@brief Method (const QPoint &)\n", false, &_init_f_move_1916, &_call_f_move_1916); - methods += new qt_gsi::GenericMethod ("resize", "@brief Method (int, int)\n", false, &_init_f_resize_1426, &_call_f_resize_1426); - methods += new qt_gsi::GenericMethod ("resize", "@brief Method (const QSize &)\n", false, &_init_f_resize_1805, &_call_f_resize_1805); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\n", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); - methods += new qt_gsi::GenericMethod ("setGeometry", "@brief Method (int, int, int, int)\n", false, &_init_f_setGeometry_2744, &_call_f_setGeometry_2744); + methods += new qt_gsi::GenericMethod ("move", "@brief Method void QRubberBand::move(int x, int y)\n", false, &_init_f_move_1426, &_call_f_move_1426); + methods += new qt_gsi::GenericMethod ("move", "@brief Method void QRubberBand::move(const QPoint &p)\n", false, &_init_f_move_1916, &_call_f_move_1916); + methods += new qt_gsi::GenericMethod ("resize", "@brief Method void QRubberBand::resize(int w, int h)\n", false, &_init_f_resize_1426, &_call_f_resize_1426); + methods += new qt_gsi::GenericMethod ("resize", "@brief Method void QRubberBand::resize(const QSize &s)\n", false, &_init_f_resize_1805, &_call_f_resize_1805); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QRubberBand::setGeometry(const QRect &r)\n", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setGeometry", "@brief Method void QRubberBand::setGeometry(int x, int y, int w, int h)\n", false, &_init_f_setGeometry_2744, &_call_f_setGeometry_2744); methods += new qt_gsi::GenericMethod ("shape", "@brief Method QRubberBand::Shape QRubberBand::shape()\n", true, &_init_f_shape_c0, &_call_f_shape_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QRubberBand::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QRubberBand::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc index 450f9dd26..4d5f86ae3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc @@ -172,7 +172,7 @@ static void _call_f_ensureWidgetVisible_2633 (const qt_gsi::GenericMethod * /*de } -// (bool) +// bool QScrollArea::focusNextPrevChild(bool next) static void _init_f_focusNextPrevChild_864 (qt_gsi::GenericMethod *decl) @@ -251,7 +251,7 @@ static void _call_f_setWidgetResizable_864 (const qt_gsi::GenericMethod * /*decl } -// () const +// QSize QScrollArea::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -370,11 +370,11 @@ static gsi::Methods methods_QScrollArea () { methods += new qt_gsi::GenericMethod (":alignment", "@brief Method QFlags QScrollArea::alignment()\n", true, &_init_f_alignment_c0, &_call_f_alignment_c0); methods += new qt_gsi::GenericMethod ("ensureVisible", "@brief Method void QScrollArea::ensureVisible(int x, int y, int xmargin, int ymargin)\n", false, &_init_f_ensureVisible_2744, &_call_f_ensureVisible_2744); methods += new qt_gsi::GenericMethod ("ensureWidgetVisible", "@brief Method void QScrollArea::ensureWidgetVisible(QWidget *childWidget, int xmargin, int ymargin)\n", false, &_init_f_ensureWidgetVisible_2633, &_call_f_ensureWidgetVisible_2633); - methods += new qt_gsi::GenericMethod ("focusNextPrevChild", "@brief Method (bool)\nThis is a reimplementation of QWidget::focusNextPrevChild", false, &_init_f_focusNextPrevChild_864, &_call_f_focusNextPrevChild_864); + methods += new qt_gsi::GenericMethod ("focusNextPrevChild", "@brief Method bool QScrollArea::focusNextPrevChild(bool next)\nThis is a reimplementation of QWidget::focusNextPrevChild", false, &_init_f_focusNextPrevChild_864, &_call_f_focusNextPrevChild_864); methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method void QScrollArea::setAlignment(QFlags)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750); methods += new qt_gsi::GenericMethod ("setWidget|widget=", "@brief Method void QScrollArea::setWidget(QWidget *widget)\n", false, &_init_f_setWidget_1315, &_call_f_setWidget_1315); methods += new qt_gsi::GenericMethod ("setWidgetResizable|widgetResizable=", "@brief Method void QScrollArea::setWidgetResizable(bool resizable)\n", false, &_init_f_setWidgetResizable_864, &_call_f_setWidgetResizable_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QScrollArea::sizeHint()\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("takeWidget", "@brief Method QWidget *QScrollArea::takeWidget()\n", false, &_init_f_takeWidget_0, &_call_f_takeWidget_0); methods += new qt_gsi::GenericMethod (":widget", "@brief Method QWidget *QScrollArea::widget()\n", true, &_init_f_widget_c0, &_call_f_widget_c0); methods += new qt_gsi::GenericMethod (":widgetResizable", "@brief Method bool QScrollArea::widgetResizable()\n", true, &_init_f_widgetResizable_c0, &_call_f_widgetResizable_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc index 33bea9150..734701ad2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc @@ -101,7 +101,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QEvent *) +// bool QScrollBar::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -120,7 +120,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QScrollBar::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -191,8 +191,8 @@ namespace gsi static gsi::Methods methods_QScrollBar () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QAbstractSlider::event", false, &_init_f_event_1217, &_call_f_event_1217); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QScrollBar::event(QEvent *event)\nThis is a reimplementation of QAbstractSlider::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QScrollBar::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("actionTriggered(int)", "actionTriggered", gsi::arg("action"), "@brief Signal declaration for QScrollBar::actionTriggered(int action)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QScrollBar::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QScrollBar::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc index 96b29fdda..1db9aa79b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc @@ -100,7 +100,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (bool) +// void QSizeGrip::setVisible(bool) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -120,7 +120,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QSizeGrip::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -191,8 +191,8 @@ namespace gsi static gsi::Methods methods_QSizeGrip () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QSizeGrip::setVisible(bool)\nThis is a reimplementation of QWidget::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QSizeGrip::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QSizeGrip::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QSizeGrip::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("windowIconChanged(const QIcon &)", "windowIconChanged", gsi::arg("icon"), "@brief Signal declaration for QSizeGrip::windowIconChanged(const QIcon &icon)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc index 61bd5f211..e3e048454 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc @@ -101,7 +101,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QEvent *) +// bool QSlider::event(QEvent *event) static void _init_f_event_1217 (qt_gsi::GenericMethod *decl) @@ -120,7 +120,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QSlider::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -175,7 +175,7 @@ static void _call_f_setTickPosition_2492 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QSize QSlider::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -276,11 +276,11 @@ namespace gsi static gsi::Methods methods_QSlider () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("event", "@brief Method (QEvent *)\nThis is a reimplementation of QAbstractSlider::event", false, &_init_f_event_1217, &_call_f_event_1217); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod ("event", "@brief Method bool QSlider::event(QEvent *event)\nThis is a reimplementation of QAbstractSlider::event", false, &_init_f_event_1217, &_call_f_event_1217); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QSlider::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("setTickInterval|tickInterval=", "@brief Method void QSlider::setTickInterval(int ti)\n", false, &_init_f_setTickInterval_767, &_call_f_setTickInterval_767); methods += new qt_gsi::GenericMethod ("setTickPosition|tickPosition=", "@brief Method void QSlider::setTickPosition(QSlider::TickPosition position)\n", false, &_init_f_setTickPosition_2492, &_call_f_setTickPosition_2492); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QSlider::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":tickInterval", "@brief Method int QSlider::tickInterval()\n", true, &_init_f_tickInterval_c0, &_call_f_tickInterval_c0); methods += new qt_gsi::GenericMethod (":tickPosition", "@brief Method QSlider::TickPosition QSlider::tickPosition()\n", true, &_init_f_tickPosition_c0, &_call_f_tickPosition_c0); methods += gsi::qt_signal ("actionTriggered(int)", "actionTriggered", gsi::arg("action"), "@brief Signal declaration for QSlider::actionTriggered(int action)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc index 9f7074762..56be6604c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc @@ -70,7 +70,7 @@ static void _call_f_changeSize_5794 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QFlags QSpacerItem::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -85,7 +85,7 @@ static void _call_f_expandingDirections_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// QRect QSpacerItem::geometry() static void _init_f_geometry_c0 (qt_gsi::GenericMethod *decl) @@ -100,7 +100,7 @@ static void _call_f_geometry_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// bool QSpacerItem::isEmpty() static void _init_f_isEmpty_c0 (qt_gsi::GenericMethod *decl) @@ -115,7 +115,7 @@ static void _call_f_isEmpty_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QSpacerItem::maximumSize() static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl) @@ -130,7 +130,7 @@ static void _call_f_maximumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QSpacerItem::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -145,7 +145,7 @@ static void _call_f_minimumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QRect &) +// void QSpacerItem::setGeometry(const QRect &) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -165,7 +165,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QSpacerItem::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -195,7 +195,7 @@ static void _call_f_sizePolicy_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// QSpacerItem *QSpacerItem::spacerItem() static void _init_f_spacerItem_0 (qt_gsi::GenericMethod *decl) @@ -216,15 +216,15 @@ namespace gsi static gsi::Methods methods_QSpacerItem () { gsi::Methods methods; methods += new qt_gsi::GenericMethod ("changeSize", "@brief Method void QSpacerItem::changeSize(int w, int h, QSizePolicy::Policy hData, QSizePolicy::Policy vData)\n", false, &_init_f_changeSize_5794, &_call_f_changeSize_5794); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); - methods += new qt_gsi::GenericMethod (":geometry", "@brief Method () const\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); - methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method () const\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); - methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QSpacerItem::expandingDirections()\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod (":geometry", "@brief Method QRect QSpacerItem::geometry()\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); + methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method bool QSpacerItem::isEmpty()\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); + methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method QSize QSpacerItem::maximumSize()\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QSpacerItem::minimumSize()\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QSpacerItem::setGeometry(const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QSpacerItem::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("sizePolicy", "@brief Method QSizePolicy QSpacerItem::sizePolicy()\n", true, &_init_f_sizePolicy_c0, &_call_f_sizePolicy_c0); - methods += new qt_gsi::GenericMethod ("spacerItem", "@brief Method ()\nThis is a reimplementation of QLayoutItem::spacerItem", false, &_init_f_spacerItem_0, &_call_f_spacerItem_0); + methods += new qt_gsi::GenericMethod ("spacerItem", "@brief Method QSpacerItem *QSpacerItem::spacerItem()\nThis is a reimplementation of QLayoutItem::spacerItem", false, &_init_f_spacerItem_0, &_call_f_spacerItem_0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc index fd1100f5b..ecfc0984d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc @@ -167,7 +167,7 @@ static void _call_f_pixmap_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () +// void QSplashScreen::repaint() static void _init_f_repaint_0 (qt_gsi::GenericMethod *decl) @@ -289,7 +289,7 @@ static gsi::Methods methods_QSplashScreen () { methods += new qt_gsi::GenericMethod ("finish", "@brief Method void QSplashScreen::finish(QWidget *w)\n", false, &_init_f_finish_1315, &_call_f_finish_1315); methods += new qt_gsi::GenericMethod ("message", "@brief Method QString QSplashScreen::message()\n", true, &_init_f_message_c0, &_call_f_message_c0); methods += new qt_gsi::GenericMethod (":pixmap", "@brief Method const QPixmap QSplashScreen::pixmap()\n", true, &_init_f_pixmap_c0, &_call_f_pixmap_c0); - methods += new qt_gsi::GenericMethod ("repaint", "@brief Method ()\n", false, &_init_f_repaint_0, &_call_f_repaint_0); + methods += new qt_gsi::GenericMethod ("repaint", "@brief Method void QSplashScreen::repaint()\n", false, &_init_f_repaint_0, &_call_f_repaint_0); methods += new qt_gsi::GenericMethod ("setPixmap|pixmap=", "@brief Method void QSplashScreen::setPixmap(const QPixmap &pixmap)\n", false, &_init_f_setPixmap_2017, &_call_f_setPixmap_2017); methods += new qt_gsi::GenericMethod ("showMessage", "@brief Method void QSplashScreen::showMessage(const QString &message, int alignment, const QColor &color)\n", false, &_init_f_showMessage_4481, &_call_f_showMessage_4481); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QSplashScreen::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc index df0f8efc7..09d71197c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc @@ -273,7 +273,7 @@ static void _call_f_isCollapsible_c767 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QSplitter::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -514,7 +514,7 @@ static void _call_f_setStretchFactor_1426 (const qt_gsi::GenericMethod * /*decl* } -// () const +// QSize QSplitter::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -628,7 +628,7 @@ static gsi::Methods methods_QSplitter () { methods += new qt_gsi::GenericMethod ("indexOf", "@brief Method int QSplitter::indexOf(QWidget *w)\n", true, &_init_f_indexOf_c1315, &_call_f_indexOf_c1315); methods += new qt_gsi::GenericMethod ("insertWidget", "@brief Method void QSplitter::insertWidget(int index, QWidget *widget)\n", false, &_init_f_insertWidget_1974, &_call_f_insertWidget_1974); methods += new qt_gsi::GenericMethod ("isCollapsible?", "@brief Method bool QSplitter::isCollapsible(int index)\n", true, &_init_f_isCollapsible_c767, &_call_f_isCollapsible_c767); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QSplitter::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":opaqueResize", "@brief Method bool QSplitter::opaqueResize()\n", true, &_init_f_opaqueResize_c0, &_call_f_opaqueResize_c0); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method Qt::Orientation QSplitter::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); methods += new qt_gsi::GenericMethod ("refresh", "@brief Method void QSplitter::refresh()\n", false, &_init_f_refresh_0, &_call_f_refresh_0); @@ -641,7 +641,7 @@ static gsi::Methods methods_QSplitter () { methods += new qt_gsi::GenericMethod ("setOrientation|orientation=", "@brief Method void QSplitter::setOrientation(Qt::Orientation)\n", false, &_init_f_setOrientation_1913, &_call_f_setOrientation_1913); methods += new qt_gsi::GenericMethod ("setSizes|sizes=", "@brief Method void QSplitter::setSizes(const QList &list)\n", false, &_init_f_setSizes_2259, &_call_f_setSizes_2259); methods += new qt_gsi::GenericMethod ("setStretchFactor", "@brief Method void QSplitter::setStretchFactor(int index, int stretch)\n", false, &_init_f_setStretchFactor_1426, &_call_f_setStretchFactor_1426); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QSplitter::sizeHint()\nThis is a reimplementation of QFrame::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":sizes", "@brief Method QList QSplitter::sizes()\n", true, &_init_f_sizes_c0, &_call_f_sizes_c0); methods += new qt_gsi::GenericMethod ("widget", "@brief Method QWidget *QSplitter::widget(int index)\n", true, &_init_f_widget_c767, &_call_f_widget_c767); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QSplitter::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc index e68c0457a..c3f382570 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc @@ -151,7 +151,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// QSize QSplitterHandle::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -240,7 +240,7 @@ static gsi::Methods methods_QSplitterHandle () { methods += new qt_gsi::GenericMethod ("opaqueResize", "@brief Method bool QSplitterHandle::opaqueResize()\n", true, &_init_f_opaqueResize_c0, &_call_f_opaqueResize_c0); methods += new qt_gsi::GenericMethod (":orientation", "@brief Method Qt::Orientation QSplitterHandle::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0); methods += new qt_gsi::GenericMethod ("setOrientation|orientation=", "@brief Method void QSplitterHandle::setOrientation(Qt::Orientation o)\n", false, &_init_f_setOrientation_1913, &_call_f_setOrientation_1913); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QSplitterHandle::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("splitter", "@brief Method QSplitter *QSplitterHandle::splitter()\n", true, &_init_f_splitter_c0, &_call_f_splitter_c0); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QSplitterHandle::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QSplitterHandle::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc index 097d5ab1e..fe074f24a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc @@ -62,7 +62,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QLayoutItem *) +// void QStackedLayout::addItem(QLayoutItem *item) static void _init_f_addItem_1740 (qt_gsi::GenericMethod *decl) @@ -82,7 +82,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (QWidget *) +// int QStackedLayout::addWidget(QWidget *w) static void _init_f_addWidget_1315 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// int QStackedLayout::count() static void _init_f_count_c0 (qt_gsi::GenericMethod *decl) @@ -146,7 +146,7 @@ static void _call_f_currentWidget_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// bool QStackedLayout::hasHeightForWidth() static void _init_f_hasHeightForWidth_c0 (qt_gsi::GenericMethod *decl) @@ -161,7 +161,7 @@ static void _call_f_hasHeightForWidth_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QStackedLayout::heightForWidth(int width) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -202,7 +202,7 @@ static void _call_f_insertWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, v } -// (int) const +// QLayoutItem *QStackedLayout::itemAt(int) static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl) @@ -221,7 +221,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// QSize QStackedLayout::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -276,7 +276,7 @@ static void _call_f_setCurrentWidget_1315 (const qt_gsi::GenericMethod * /*decl* } -// (const QRect &) +// void QStackedLayout::setGeometry(const QRect &rect) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -316,7 +316,7 @@ static void _call_f_setStackingMode_3183 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QSize QStackedLayout::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -346,7 +346,7 @@ static void _call_f_stackingMode_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (int) +// QLayoutItem *QStackedLayout::takeAt(int) static void _init_f_takeAt_767 (qt_gsi::GenericMethod *decl) @@ -365,7 +365,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () +// QWidget *QStackedLayout::widget() static void _init_f_widget_0 (qt_gsi::GenericMethod *decl) @@ -380,7 +380,7 @@ static void _call_f_widget_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (int) const +// QWidget *QStackedLayout::widget(int) static void _init_f_widget_c767 (qt_gsi::GenericMethod *decl) @@ -455,25 +455,25 @@ namespace gsi static gsi::Methods methods_QStackedLayout () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("addItem", "@brief Method (QLayoutItem *)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); - methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method (QWidget *)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); - methods += new qt_gsi::GenericMethod ("count", "@brief Method () const\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); + methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QStackedLayout::addItem(QLayoutItem *item)\nThis is a reimplementation of QLayout::addItem", false, &_init_f_addItem_1740, &_call_f_addItem_1740); + methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method int QStackedLayout::addWidget(QWidget *w)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); + methods += new qt_gsi::GenericMethod ("count", "@brief Method int QStackedLayout::count()\nThis is a reimplementation of QLayout::count", true, &_init_f_count_c0, &_call_f_count_c0); methods += new qt_gsi::GenericMethod (":currentIndex", "@brief Method int QStackedLayout::currentIndex()\n", true, &_init_f_currentIndex_c0, &_call_f_currentIndex_c0); methods += new qt_gsi::GenericMethod (":currentWidget", "@brief Method QWidget *QStackedLayout::currentWidget()\n", true, &_init_f_currentWidget_c0, &_call_f_currentWidget_c0); - methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method () const\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QStackedLayout::hasHeightForWidth()\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QStackedLayout::heightForWidth(int width)\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod ("insertWidget", "@brief Method int QStackedLayout::insertWidget(int index, QWidget *w)\n", false, &_init_f_insertWidget_1974, &_call_f_insertWidget_1974); - methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method (int) const\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QStackedLayout::itemAt(int)\nThis is a reimplementation of QLayout::itemAt", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QStackedLayout::minimumSize()\nThis is a reimplementation of QLayout::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); methods += new qt_gsi::GenericMethod ("setCurrentIndex|currentIndex=", "@brief Method void QStackedLayout::setCurrentIndex(int index)\n", false, &_init_f_setCurrentIndex_767, &_call_f_setCurrentIndex_767); methods += new qt_gsi::GenericMethod ("setCurrentWidget|currentWidget=", "@brief Method void QStackedLayout::setCurrentWidget(QWidget *w)\n", false, &_init_f_setCurrentWidget_1315, &_call_f_setCurrentWidget_1315); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QStackedLayout::setGeometry(const QRect &rect)\nThis is a reimplementation of QLayout::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); methods += new qt_gsi::GenericMethod ("setStackingMode|stackingMode=", "@brief Method void QStackedLayout::setStackingMode(QStackedLayout::StackingMode stackingMode)\n", false, &_init_f_setStackingMode_3183, &_call_f_setStackingMode_3183); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QStackedLayout::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":stackingMode", "@brief Method QStackedLayout::StackingMode QStackedLayout::stackingMode()\n", true, &_init_f_stackingMode_c0, &_call_f_stackingMode_c0); - methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method (int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); - methods += new qt_gsi::GenericMethod ("widget", "@brief Method ()\nThis is a reimplementation of QLayoutItem::widget", false, &_init_f_widget_0, &_call_f_widget_0); - methods += new qt_gsi::GenericMethod ("widget", "@brief Method (int) const\n", true, &_init_f_widget_c767, &_call_f_widget_c767); + methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method QLayoutItem *QStackedLayout::takeAt(int)\nThis is a reimplementation of QLayout::takeAt", false, &_init_f_takeAt_767, &_call_f_takeAt_767); + methods += new qt_gsi::GenericMethod ("widget", "@brief Method QWidget *QStackedLayout::widget()\nThis is a reimplementation of QLayoutItem::widget", false, &_init_f_widget_0, &_call_f_widget_0); + methods += new qt_gsi::GenericMethod ("widget", "@brief Method QWidget *QStackedLayout::widget(int)\n", true, &_init_f_widget_c767, &_call_f_widget_c767); methods += gsi::qt_signal ("currentChanged(int)", "currentChanged", gsi::arg("index"), "@brief Signal declaration for QStackedLayout::currentChanged(int index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QStackedLayout::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("widgetRemoved(int)", "widgetRemoved", gsi::arg("index"), "@brief Signal declaration for QStackedLayout::widgetRemoved(int index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc index 3d5a38bce..d3e4ce69b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc @@ -124,7 +124,7 @@ static void _call_ctor_QStylePainter_3010 (const qt_gsi::GenericStaticMethod * / } -// (QWidget *) +// bool QStylePainter::begin(QWidget *w) static void _init_f_begin_1315 (qt_gsi::GenericMethod *decl) @@ -143,7 +143,7 @@ static void _call_f_begin_1315 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (QPaintDevice *, QWidget *) +// bool QStylePainter::begin(QPaintDevice *pd, QWidget *w) static void _init_f_begin_3010 (qt_gsi::GenericMethod *decl) @@ -319,8 +319,8 @@ static gsi::Methods methods_QStylePainter () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStylePainter::QStylePainter()\nThis method creates an object of class QStylePainter.", &_init_ctor_QStylePainter_0, &_call_ctor_QStylePainter_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStylePainter::QStylePainter(QWidget *w)\nThis method creates an object of class QStylePainter.", &_init_ctor_QStylePainter_1315, &_call_ctor_QStylePainter_1315); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStylePainter::QStylePainter(QPaintDevice *pd, QWidget *w)\nThis method creates an object of class QStylePainter.", &_init_ctor_QStylePainter_3010, &_call_ctor_QStylePainter_3010); - methods += new qt_gsi::GenericMethod ("begin", "@brief Method (QWidget *)\n", false, &_init_f_begin_1315, &_call_f_begin_1315); - methods += new qt_gsi::GenericMethod ("begin", "@brief Method (QPaintDevice *, QWidget *)\n", false, &_init_f_begin_3010, &_call_f_begin_3010); + methods += new qt_gsi::GenericMethod ("begin", "@brief Method bool QStylePainter::begin(QWidget *w)\n", false, &_init_f_begin_1315, &_call_f_begin_1315); + methods += new qt_gsi::GenericMethod ("begin", "@brief Method bool QStylePainter::begin(QPaintDevice *pd, QWidget *w)\n", false, &_init_f_begin_3010, &_call_f_begin_3010); methods += new qt_gsi::GenericMethod ("drawComplexControl", "@brief Method void QStylePainter::drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex &opt)\n", false, &_init_f_drawComplexControl_5803, &_call_f_drawComplexControl_5803); methods += new qt_gsi::GenericMethod ("drawControl", "@brief Method void QStylePainter::drawControl(QStyle::ControlElement ce, const QStyleOption &opt)\n", false, &_init_f_drawControl_5061, &_call_f_drawControl_5061); methods += new qt_gsi::GenericMethod ("drawItemPixmap", "@brief Method void QStylePainter::drawItemPixmap(const QRect &r, int flags, const QPixmap &pixmap)\n", false, &_init_f_drawItemPixmap_4360, &_call_f_drawItemPixmap_4360); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc index 84c21383b..1ee2c9d8e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc @@ -66,7 +66,7 @@ static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, g } -// (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const +// QWidget *QStyledItemDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_createEditor_c6860 (qt_gsi::GenericMethod *decl) @@ -128,7 +128,7 @@ static void _call_f_itemEditorFactory_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const +// void QStyledItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_paint_c6971 (qt_gsi::GenericMethod *decl) @@ -154,7 +154,7 @@ static void _call_f_paint_c6971 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (QWidget *, const QModelIndex &) const +// void QStyledItemDelegate::setEditorData(QWidget *editor, const QModelIndex &index) static void _init_f_setEditorData_c3602 (qt_gsi::GenericMethod *decl) @@ -197,7 +197,7 @@ static void _call_f_setItemEditorFactory_2445 (const qt_gsi::GenericMethod * /*d } -// (QWidget *, QAbstractItemModel *, const QModelIndex &) const +// void QStyledItemDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) static void _init_f_setModelData_c5913 (qt_gsi::GenericMethod *decl) @@ -223,7 +223,7 @@ static void _call_f_setModelData_c5913 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QStyleOptionViewItem &, const QModelIndex &) const +// QSize QStyledItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_sizeHint_c5653 (qt_gsi::GenericMethod *decl) @@ -245,7 +245,7 @@ static void _call_f_sizeHint_c5653 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const +// void QStyledItemDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) static void _init_f_updateEditorGeometry_c6860 (qt_gsi::GenericMethod *decl) @@ -327,15 +327,15 @@ namespace gsi static gsi::Methods methods_QStyledItemDelegate () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("createEditor", "@brief Method (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::createEditor", true, &_init_f_createEditor_c6860, &_call_f_createEditor_c6860); + methods += new qt_gsi::GenericMethod ("createEditor", "@brief Method QWidget *QStyledItemDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::createEditor", true, &_init_f_createEditor_c6860, &_call_f_createEditor_c6860); methods += new qt_gsi::GenericMethod ("displayText", "@brief Method QString QStyledItemDelegate::displayText(const QVariant &value, const QLocale &locale)\n", true, &_init_f_displayText_c3997, &_call_f_displayText_c3997); methods += new qt_gsi::GenericMethod (":itemEditorFactory", "@brief Method QItemEditorFactory *QStyledItemDelegate::itemEditorFactory()\n", true, &_init_f_itemEditorFactory_c0, &_call_f_itemEditorFactory_c0); - methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::paint", true, &_init_f_paint_c6971, &_call_f_paint_c6971); - methods += new qt_gsi::GenericMethod ("setEditorData", "@brief Method (QWidget *, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::setEditorData", true, &_init_f_setEditorData_c3602, &_call_f_setEditorData_c3602); + methods += new qt_gsi::GenericMethod ("paint", "@brief Method void QStyledItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::paint", true, &_init_f_paint_c6971, &_call_f_paint_c6971); + methods += new qt_gsi::GenericMethod ("setEditorData", "@brief Method void QStyledItemDelegate::setEditorData(QWidget *editor, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::setEditorData", true, &_init_f_setEditorData_c3602, &_call_f_setEditorData_c3602); methods += new qt_gsi::GenericMethod ("setItemEditorFactory|itemEditorFactory=", "@brief Method void QStyledItemDelegate::setItemEditorFactory(QItemEditorFactory *factory)\n", false, &_init_f_setItemEditorFactory_2445, &_call_f_setItemEditorFactory_2445); - methods += new qt_gsi::GenericMethod ("setModelData", "@brief Method (QWidget *, QAbstractItemModel *, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::setModelData", true, &_init_f_setModelData_c5913, &_call_f_setModelData_c5913); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method (const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::sizeHint", true, &_init_f_sizeHint_c5653, &_call_f_sizeHint_c5653); - methods += new qt_gsi::GenericMethod ("updateEditorGeometry", "@brief Method (QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const\nThis is a reimplementation of QAbstractItemDelegate::updateEditorGeometry", true, &_init_f_updateEditorGeometry_c6860, &_call_f_updateEditorGeometry_c6860); + methods += new qt_gsi::GenericMethod ("setModelData", "@brief Method void QStyledItemDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::setModelData", true, &_init_f_setModelData_c5913, &_call_f_setModelData_c5913); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QStyledItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::sizeHint", true, &_init_f_sizeHint_c5653, &_call_f_sizeHint_c5653); + methods += new qt_gsi::GenericMethod ("updateEditorGeometry", "@brief Method void QStyledItemDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index)\nThis is a reimplementation of QAbstractItemDelegate::updateEditorGeometry", true, &_init_f_updateEditorGeometry_c6860, &_call_f_updateEditorGeometry_c6860); methods += gsi::qt_signal::target_type & > ("closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint)", "closeEditor", gsi::arg("editor"), gsi::arg("hint"), "@brief Signal declaration for QStyledItemDelegate::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("commitData(QWidget *)", "commitData", gsi::arg("editor"), "@brief Signal declaration for QStyledItemDelegate::commitData(QWidget *editor)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QStyledItemDelegate::destroyed(QObject *)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc index 19211c4cc..a4d139ca2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc @@ -359,7 +359,7 @@ static void _call_f_isTabEnabled_c767 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QSize QTabBar::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -894,7 +894,7 @@ static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QSize QTabBar::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1184,7 +1184,7 @@ static gsi::Methods methods_QTabBar () { methods += new qt_gsi::GenericMethod ("insertTab", "@brief Method int QTabBar::insertTab(int index, const QIcon &icon, const QString &text)\n", false, &_init_f_insertTab_4363, &_call_f_insertTab_4363); methods += new qt_gsi::GenericMethod ("isMovable?|:movable", "@brief Method bool QTabBar::isMovable()\n", true, &_init_f_isMovable_c0, &_call_f_isMovable_c0); methods += new qt_gsi::GenericMethod ("isTabEnabled?", "@brief Method bool QTabBar::isTabEnabled(int index)\n", true, &_init_f_isTabEnabled_c767, &_call_f_isTabEnabled_c767); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QTabBar::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("moveTab", "@brief Method void QTabBar::moveTab(int from, int to)\n", false, &_init_f_moveTab_1426, &_call_f_moveTab_1426); methods += new qt_gsi::GenericMethod ("removeTab", "@brief Method void QTabBar::removeTab(int index)\n", false, &_init_f_removeTab_767, &_call_f_removeTab_767); methods += new qt_gsi::GenericMethod (":selectionBehaviorOnRemove", "@brief Method QTabBar::SelectionBehavior QTabBar::selectionBehaviorOnRemove()\n", true, &_init_f_selectionBehaviorOnRemove_c0, &_call_f_selectionBehaviorOnRemove_c0); @@ -1210,7 +1210,7 @@ static gsi::Methods methods_QTabBar () { methods += new qt_gsi::GenericMethod ("setTabsClosable|tabsClosable=", "@brief Method void QTabBar::setTabsClosable(bool closable)\n", false, &_init_f_setTabsClosable_864, &_call_f_setTabsClosable_864); methods += new qt_gsi::GenericMethod ("setUsesScrollButtons|usesScrollButtons=", "@brief Method void QTabBar::setUsesScrollButtons(bool useButtons)\n", false, &_init_f_setUsesScrollButtons_864, &_call_f_setUsesScrollButtons_864); methods += new qt_gsi::GenericMethod (":shape", "@brief Method QTabBar::Shape QTabBar::shape()\n", true, &_init_f_shape_c0, &_call_f_shape_c0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QTabBar::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("tabAt", "@brief Method int QTabBar::tabAt(const QPoint &pos)\n", true, &_init_f_tabAt_c1916, &_call_f_tabAt_c1916); methods += new qt_gsi::GenericMethod ("tabButton", "@brief Method QWidget *QTabBar::tabButton(int index, QTabBar::ButtonPosition position)\n", true, &_init_f_tabButton_c3337, &_call_f_tabButton_c3337); methods += new qt_gsi::GenericMethod ("tabData", "@brief Method QVariant QTabBar::tabData(int index)\n", true, &_init_f_tabData_c767, &_call_f_tabData_c767); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc index 8866d58e5..a23b7b746 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc @@ -259,7 +259,7 @@ static void _call_f_elideMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// bool QTabWidget::hasHeightForWidth() static void _init_f_hasHeightForWidth_c0 (qt_gsi::GenericMethod *decl) @@ -274,7 +274,7 @@ static void _call_f_hasHeightForWidth_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QTabWidget::heightForWidth(int width) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -414,7 +414,7 @@ static void _call_f_isTabEnabled_c767 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QSize QTabWidget::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -807,7 +807,7 @@ static void _call_f_setUsesScrollButtons_864 (const qt_gsi::GenericMethod * /*de } -// () const +// QSize QTabWidget::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -1072,15 +1072,15 @@ static gsi::Methods methods_QTabWidget () { methods += new qt_gsi::GenericMethod (":currentWidget", "@brief Method QWidget *QTabWidget::currentWidget()\n", true, &_init_f_currentWidget_c0, &_call_f_currentWidget_c0); methods += new qt_gsi::GenericMethod (":documentMode", "@brief Method bool QTabWidget::documentMode()\n", true, &_init_f_documentMode_c0, &_call_f_documentMode_c0); methods += new qt_gsi::GenericMethod (":elideMode", "@brief Method Qt::TextElideMode QTabWidget::elideMode()\n", true, &_init_f_elideMode_c0, &_call_f_elideMode_c0); - methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method () const\nThis is a reimplementation of QWidget::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QWidget::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QTabWidget::hasHeightForWidth()\nThis is a reimplementation of QWidget::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QTabWidget::heightForWidth(int width)\nThis is a reimplementation of QWidget::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod (":iconSize", "@brief Method QSize QTabWidget::iconSize()\n", true, &_init_f_iconSize_c0, &_call_f_iconSize_c0); methods += new qt_gsi::GenericMethod ("indexOf", "@brief Method int QTabWidget::indexOf(QWidget *widget)\n", true, &_init_f_indexOf_c1315, &_call_f_indexOf_c1315); methods += new qt_gsi::GenericMethod ("insertTab", "@brief Method int QTabWidget::insertTab(int index, QWidget *widget, const QString &)\n", false, &_init_f_insertTab_3891, &_call_f_insertTab_3891); methods += new qt_gsi::GenericMethod ("insertTab", "@brief Method int QTabWidget::insertTab(int index, QWidget *widget, const QIcon &icon, const QString &label)\n", false, &_init_f_insertTab_5570, &_call_f_insertTab_5570); methods += new qt_gsi::GenericMethod ("isMovable?|:movable", "@brief Method bool QTabWidget::isMovable()\n", true, &_init_f_isMovable_c0, &_call_f_isMovable_c0); methods += new qt_gsi::GenericMethod ("isTabEnabled?", "@brief Method bool QTabWidget::isTabEnabled(int index)\n", true, &_init_f_isTabEnabled_c767, &_call_f_isTabEnabled_c767); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QTabWidget::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod ("removeTab", "@brief Method void QTabWidget::removeTab(int index)\n", false, &_init_f_removeTab_767, &_call_f_removeTab_767); methods += new qt_gsi::GenericMethod ("setCornerWidget", "@brief Method void QTabWidget::setCornerWidget(QWidget *w, Qt::Corner corner)\n", false, &_init_f_setCornerWidget_2573, &_call_f_setCornerWidget_2573); methods += new qt_gsi::GenericMethod ("setCurrentIndex|currentIndex=", "@brief Method void QTabWidget::setCurrentIndex(int index)\n", false, &_init_f_setCurrentIndex_767, &_call_f_setCurrentIndex_767); @@ -1099,7 +1099,7 @@ static gsi::Methods methods_QTabWidget () { methods += new qt_gsi::GenericMethod ("setTabWhatsThis", "@brief Method void QTabWidget::setTabWhatsThis(int index, const QString &text)\n", false, &_init_f_setTabWhatsThis_2684, &_call_f_setTabWhatsThis_2684); methods += new qt_gsi::GenericMethod ("setTabsClosable|tabsClosable=", "@brief Method void QTabWidget::setTabsClosable(bool closeable)\n", false, &_init_f_setTabsClosable_864, &_call_f_setTabsClosable_864); methods += new qt_gsi::GenericMethod ("setUsesScrollButtons|usesScrollButtons=", "@brief Method void QTabWidget::setUsesScrollButtons(bool useButtons)\n", false, &_init_f_setUsesScrollButtons_864, &_call_f_setUsesScrollButtons_864); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QTabWidget::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod ("tabBar", "@brief Method QTabBar *QTabWidget::tabBar()\n", true, &_init_f_tabBar_c0, &_call_f_tabBar_c0); methods += new qt_gsi::GenericMethod (":tabBarAutoHide", "@brief Method bool QTabWidget::tabBarAutoHide()\n", true, &_init_f_tabBarAutoHide_c0, &_call_f_tabBarAutoHide_c0); methods += new qt_gsi::GenericMethod ("tabIcon", "@brief Method QIcon QTabWidget::tabIcon(int index)\n", true, &_init_f_tabIcon_c767, &_call_f_tabIcon_c767); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc index 1c2945866..c9536c1f6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc @@ -204,7 +204,7 @@ static void _call_f_columnWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () +// void QTableView::doItemsLayout() static void _init_f_doItemsLayout_0 (qt_gsi::GenericMethod *decl) @@ -290,7 +290,7 @@ static void _call_f_horizontalHeader_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QPoint &) const +// QModelIndex QTableView::indexAt(const QPoint &p) static void _init_f_indexAt_c1916 (qt_gsi::GenericMethod *decl) @@ -528,7 +528,7 @@ static void _call_f_rowViewportPosition_c767 (const qt_gsi::GenericMethod * /*de } -// (const QModelIndex &, QAbstractItemView::ScrollHint) +// void QTableView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) static void _init_f_scrollTo_5576 (qt_gsi::GenericMethod *decl) @@ -697,7 +697,7 @@ static void _call_f_setHorizontalHeader_1699 (const qt_gsi::GenericMethod * /*de } -// (QAbstractItemModel *) +// void QTableView::setModel(QAbstractItemModel *model) static void _init_f_setModel_2419 (qt_gsi::GenericMethod *decl) @@ -717,7 +717,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) +// void QTableView::setRootIndex(const QModelIndex &index) static void _init_f_setRootIndex_2395 (qt_gsi::GenericMethod *decl) @@ -783,7 +783,7 @@ static void _call_f_setRowHidden_1523 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QItemSelectionModel *) +// void QTableView::setSelectionModel(QItemSelectionModel *selectionModel) static void _init_f_setSelectionModel_2533 (qt_gsi::GenericMethod *decl) @@ -1025,7 +1025,7 @@ static void _call_f_verticalHeader_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QModelIndex &) const +// QRect QTableView::visualRect(const QModelIndex &index) static void _init_f_visualRect_c2395 (qt_gsi::GenericMethod *decl) @@ -1120,12 +1120,12 @@ static gsi::Methods methods_QTableView () { methods += new qt_gsi::GenericMethod ("columnSpan", "@brief Method int QTableView::columnSpan(int row, int column)\n", true, &_init_f_columnSpan_c1426, &_call_f_columnSpan_c1426); methods += new qt_gsi::GenericMethod ("columnViewportPosition", "@brief Method int QTableView::columnViewportPosition(int column)\n", true, &_init_f_columnViewportPosition_c767, &_call_f_columnViewportPosition_c767); methods += new qt_gsi::GenericMethod ("columnWidth", "@brief Method int QTableView::columnWidth(int column)\n", true, &_init_f_columnWidth_c767, &_call_f_columnWidth_c767); - methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); + methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method void QTableView::doItemsLayout()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); methods += new qt_gsi::GenericMethod (":gridStyle", "@brief Method Qt::PenStyle QTableView::gridStyle()\n", true, &_init_f_gridStyle_c0, &_call_f_gridStyle_c0); methods += new qt_gsi::GenericMethod ("hideColumn", "@brief Method void QTableView::hideColumn(int column)\n", false, &_init_f_hideColumn_767, &_call_f_hideColumn_767); methods += new qt_gsi::GenericMethod ("hideRow", "@brief Method void QTableView::hideRow(int row)\n", false, &_init_f_hideRow_767, &_call_f_hideRow_767); methods += new qt_gsi::GenericMethod (":horizontalHeader", "@brief Method QHeaderView *QTableView::horizontalHeader()\n", true, &_init_f_horizontalHeader_c0, &_call_f_horizontalHeader_c0); - methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method (const QPoint &) const\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); + methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method QModelIndex QTableView::indexAt(const QPoint &p)\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); methods += new qt_gsi::GenericMethod ("isColumnHidden?", "@brief Method bool QTableView::isColumnHidden(int column)\n", true, &_init_f_isColumnHidden_c767, &_call_f_isColumnHidden_c767); methods += new qt_gsi::GenericMethod ("isCornerButtonEnabled?|:cornerButtonEnabled", "@brief Method bool QTableView::isCornerButtonEnabled()\n", true, &_init_f_isCornerButtonEnabled_c0, &_call_f_isCornerButtonEnabled_c0); methods += new qt_gsi::GenericMethod ("isRowHidden?", "@brief Method bool QTableView::isRowHidden(int row)\n", true, &_init_f_isRowHidden_c767, &_call_f_isRowHidden_c767); @@ -1138,7 +1138,7 @@ static gsi::Methods methods_QTableView () { methods += new qt_gsi::GenericMethod ("rowHeight", "@brief Method int QTableView::rowHeight(int row)\n", true, &_init_f_rowHeight_c767, &_call_f_rowHeight_c767); methods += new qt_gsi::GenericMethod ("rowSpan", "@brief Method int QTableView::rowSpan(int row, int column)\n", true, &_init_f_rowSpan_c1426, &_call_f_rowSpan_c1426); methods += new qt_gsi::GenericMethod ("rowViewportPosition", "@brief Method int QTableView::rowViewportPosition(int row)\n", true, &_init_f_rowViewportPosition_c767, &_call_f_rowViewportPosition_c767); - methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method (const QModelIndex &, QAbstractItemView::ScrollHint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); + methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method void QTableView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); methods += new qt_gsi::GenericMethod ("selectColumn", "@brief Method void QTableView::selectColumn(int column)\n", false, &_init_f_selectColumn_767, &_call_f_selectColumn_767); methods += new qt_gsi::GenericMethod ("selectRow", "@brief Method void QTableView::selectRow(int row)\n", false, &_init_f_selectRow_767, &_call_f_selectRow_767); methods += new qt_gsi::GenericMethod ("setColumnHidden", "@brief Method void QTableView::setColumnHidden(int column, bool hide)\n", false, &_init_f_setColumnHidden_1523, &_call_f_setColumnHidden_1523); @@ -1146,11 +1146,11 @@ static gsi::Methods methods_QTableView () { methods += new qt_gsi::GenericMethod ("setCornerButtonEnabled|cornerButtonEnabled=", "@brief Method void QTableView::setCornerButtonEnabled(bool enable)\n", false, &_init_f_setCornerButtonEnabled_864, &_call_f_setCornerButtonEnabled_864); methods += new qt_gsi::GenericMethod ("setGridStyle|gridStyle=", "@brief Method void QTableView::setGridStyle(Qt::PenStyle style)\n", false, &_init_f_setGridStyle_1569, &_call_f_setGridStyle_1569); methods += new qt_gsi::GenericMethod ("setHorizontalHeader|horizontalHeader=", "@brief Method void QTableView::setHorizontalHeader(QHeaderView *header)\n", false, &_init_f_setHorizontalHeader_1699, &_call_f_setHorizontalHeader_1699); - methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); - methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); + methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method void QTableView::setModel(QAbstractItemModel *model)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); + methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method void QTableView::setRootIndex(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); methods += new qt_gsi::GenericMethod ("setRowHeight", "@brief Method void QTableView::setRowHeight(int row, int height)\n", false, &_init_f_setRowHeight_1426, &_call_f_setRowHeight_1426); methods += new qt_gsi::GenericMethod ("setRowHidden", "@brief Method void QTableView::setRowHidden(int row, bool hide)\n", false, &_init_f_setRowHidden_1523, &_call_f_setRowHidden_1523); - methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method (QItemSelectionModel *)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); + methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method void QTableView::setSelectionModel(QItemSelectionModel *selectionModel)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); methods += new qt_gsi::GenericMethod ("setShowGrid|showGrid=", "@brief Method void QTableView::setShowGrid(bool show)\n", false, &_init_f_setShowGrid_864, &_call_f_setShowGrid_864); methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method void QTableView::setSortingEnabled(bool enable)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864); methods += new qt_gsi::GenericMethod ("setSpan", "@brief Method void QTableView::setSpan(int row, int column, int rowSpan, int columnSpan)\n", false, &_init_f_setSpan_2744, &_call_f_setSpan_2744); @@ -1162,7 +1162,7 @@ static gsi::Methods methods_QTableView () { methods += new qt_gsi::GenericMethod ("sortByColumn", "@brief Method void QTableView::sortByColumn(int column, Qt::SortOrder order)\n", false, &_init_f_sortByColumn_2340, &_call_f_sortByColumn_2340); methods += new qt_gsi::GenericMethod ("sortByColumn", "@brief Method void QTableView::sortByColumn(int column)\n", false, &_init_f_sortByColumn_767, &_call_f_sortByColumn_767); methods += new qt_gsi::GenericMethod (":verticalHeader", "@brief Method QHeaderView *QTableView::verticalHeader()\n", true, &_init_f_verticalHeader_c0, &_call_f_verticalHeader_c0); - methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); + methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method QRect QTableView::visualRect(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); methods += new qt_gsi::GenericMethod (":wordWrap", "@brief Method bool QTableView::wordWrap()\n", true, &_init_f_wordWrap_c0, &_call_f_wordWrap_c0); methods += gsi::qt_signal ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QTableView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("clicked(const QModelIndex &)", "clicked", gsi::arg("index"), "@brief Signal declaration for QTableView::clicked(const QModelIndex &index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc index 8ea926cb2..c91a828eb 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc @@ -166,7 +166,7 @@ static void _call_f_clearContents_0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QTableWidgetItem *) +// void QTableWidget::closePersistentEditor(QTableWidgetItem *item) static void _init_f_closePersistentEditor_2202 (qt_gsi::GenericMethod *decl) @@ -385,7 +385,7 @@ static void _call_f_isItemSelected_c2897 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// bool QTableWidget::isSortingEnabled() static void _init_f_isSortingEnabled_c0 (qt_gsi::GenericMethod *decl) @@ -478,7 +478,7 @@ static void _call_f_itemPrototype_c0 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (QTableWidgetItem *) +// void QTableWidget::openPersistentEditor(QTableWidgetItem *item) static void _init_f_openPersistentEditor_2202 (qt_gsi::GenericMethod *decl) @@ -942,7 +942,7 @@ static void _call_f_setRowCount_767 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (bool) +// void QTableWidget::setSortingEnabled(bool enable) static void _init_f_setSortingEnabled_864 (qt_gsi::GenericMethod *decl) @@ -1223,7 +1223,7 @@ static gsi::Methods methods_QTableWidget () { methods += new qt_gsi::GenericMethod ("cellWidget", "@brief Method QWidget *QTableWidget::cellWidget(int row, int column)\n", true, &_init_f_cellWidget_c1426, &_call_f_cellWidget_c1426); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QTableWidget::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); methods += new qt_gsi::GenericMethod ("clearContents", "@brief Method void QTableWidget::clearContents()\n", false, &_init_f_clearContents_0, &_call_f_clearContents_0); - methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method (QTableWidgetItem *)\n", false, &_init_f_closePersistentEditor_2202, &_call_f_closePersistentEditor_2202); + methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method void QTableWidget::closePersistentEditor(QTableWidgetItem *item)\n", false, &_init_f_closePersistentEditor_2202, &_call_f_closePersistentEditor_2202); methods += new qt_gsi::GenericMethod ("column", "@brief Method int QTableWidget::column(const QTableWidgetItem *item)\n", true, &_init_f_column_c2897, &_call_f_column_c2897); methods += new qt_gsi::GenericMethod (":columnCount", "@brief Method int QTableWidget::columnCount()\n", true, &_init_f_columnCount_c0, &_call_f_columnCount_c0); methods += new qt_gsi::GenericMethod ("currentColumn", "@brief Method int QTableWidget::currentColumn()\n", true, &_init_f_currentColumn_c0, &_call_f_currentColumn_c0); @@ -1235,12 +1235,12 @@ static gsi::Methods methods_QTableWidget () { methods += new qt_gsi::GenericMethod ("insertColumn", "@brief Method void QTableWidget::insertColumn(int column)\n", false, &_init_f_insertColumn_767, &_call_f_insertColumn_767); methods += new qt_gsi::GenericMethod ("insertRow", "@brief Method void QTableWidget::insertRow(int row)\n", false, &_init_f_insertRow_767, &_call_f_insertRow_767); methods += new qt_gsi::GenericMethod ("isItemSelected?", "@brief Method bool QTableWidget::isItemSelected(const QTableWidgetItem *item)\n", true, &_init_f_isItemSelected_c2897, &_call_f_isItemSelected_c2897); - methods += new qt_gsi::GenericMethod ("isSortingEnabled?|:sortingEnabled", "@brief Method () const\n", true, &_init_f_isSortingEnabled_c0, &_call_f_isSortingEnabled_c0); + methods += new qt_gsi::GenericMethod ("isSortingEnabled?|:sortingEnabled", "@brief Method bool QTableWidget::isSortingEnabled()\n", true, &_init_f_isSortingEnabled_c0, &_call_f_isSortingEnabled_c0); methods += new qt_gsi::GenericMethod ("item", "@brief Method QTableWidgetItem *QTableWidget::item(int row, int column)\n", true, &_init_f_item_c1426, &_call_f_item_c1426); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QTableWidgetItem *QTableWidget::itemAt(const QPoint &p)\n", true, &_init_f_itemAt_c1916, &_call_f_itemAt_c1916); methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QTableWidgetItem *QTableWidget::itemAt(int x, int y)\n", true, &_init_f_itemAt_c1426, &_call_f_itemAt_c1426); methods += new qt_gsi::GenericMethod (":itemPrototype", "@brief Method const QTableWidgetItem *QTableWidget::itemPrototype()\n", true, &_init_f_itemPrototype_c0, &_call_f_itemPrototype_c0); - methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method (QTableWidgetItem *)\n", false, &_init_f_openPersistentEditor_2202, &_call_f_openPersistentEditor_2202); + methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method void QTableWidget::openPersistentEditor(QTableWidgetItem *item)\n", false, &_init_f_openPersistentEditor_2202, &_call_f_openPersistentEditor_2202); methods += new qt_gsi::GenericMethod ("removeCellWidget", "@brief Method void QTableWidget::removeCellWidget(int row, int column)\n", false, &_init_f_removeCellWidget_1426, &_call_f_removeCellWidget_1426); methods += new qt_gsi::GenericMethod ("removeColumn", "@brief Method void QTableWidget::removeColumn(int column)\n", false, &_init_f_removeColumn_767, &_call_f_removeColumn_767); methods += new qt_gsi::GenericMethod ("removeRow", "@brief Method void QTableWidget::removeRow(int row)\n", false, &_init_f_removeRow_767, &_call_f_removeRow_767); @@ -1262,7 +1262,7 @@ static gsi::Methods methods_QTableWidget () { methods += new qt_gsi::GenericMethod ("setItemSelected", "@brief Method void QTableWidget::setItemSelected(const QTableWidgetItem *item, bool select)\n", false, &_init_f_setItemSelected_3653, &_call_f_setItemSelected_3653); methods += new qt_gsi::GenericMethod ("setRangeSelected", "@brief Method void QTableWidget::setRangeSelected(const QTableWidgetSelectionRange &range, bool select)\n", false, &_init_f_setRangeSelected_4677, &_call_f_setRangeSelected_4677); methods += new qt_gsi::GenericMethod ("setRowCount|rowCount=", "@brief Method void QTableWidget::setRowCount(int rows)\n", false, &_init_f_setRowCount_767, &_call_f_setRowCount_767); - methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method (bool)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864); + methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method void QTableWidget::setSortingEnabled(bool enable)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864); methods += new qt_gsi::GenericMethod ("setVerticalHeaderItem", "@brief Method void QTableWidget::setVerticalHeaderItem(int row, QTableWidgetItem *item)\n", false, &_init_f_setVerticalHeaderItem_2861, &_call_f_setVerticalHeaderItem_2861); methods += new qt_gsi::GenericMethod ("setVerticalHeaderLabels", "@brief Method void QTableWidget::setVerticalHeaderLabels(const QStringList &labels)\n", false, &_init_f_setVerticalHeaderLabels_2437, &_call_f_setVerticalHeaderLabels_2437); methods += new qt_gsi::GenericMethod ("sortItems", "@brief Method void QTableWidget::sortItems(int column, Qt::SortOrder order)\n", false, &_init_f_sortItems_2340, &_call_f_sortItems_2340); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc index e1eeeee9b..248bec52c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc @@ -273,7 +273,7 @@ static void _call_f_isForwardAvailable_c0 (const qt_gsi::GenericMethod * /*decl* } -// (int, const QUrl &) +// QVariant QTextBrowser::loadResource(int type, const QUrl &name) static void _init_f_loadResource_2360 (qt_gsi::GenericMethod *decl) @@ -517,7 +517,7 @@ static gsi::Methods methods_QTextBrowser () { methods += new qt_gsi::GenericMethod ("home", "@brief Method void QTextBrowser::home()\n", false, &_init_f_home_0, &_call_f_home_0); methods += new qt_gsi::GenericMethod ("isBackwardAvailable?", "@brief Method bool QTextBrowser::isBackwardAvailable()\n", true, &_init_f_isBackwardAvailable_c0, &_call_f_isBackwardAvailable_c0); methods += new qt_gsi::GenericMethod ("isForwardAvailable?", "@brief Method bool QTextBrowser::isForwardAvailable()\n", true, &_init_f_isForwardAvailable_c0, &_call_f_isForwardAvailable_c0); - methods += new qt_gsi::GenericMethod ("loadResource", "@brief Method (int, const QUrl &)\nThis is a reimplementation of QTextEdit::loadResource", false, &_init_f_loadResource_2360, &_call_f_loadResource_2360); + methods += new qt_gsi::GenericMethod ("loadResource", "@brief Method QVariant QTextBrowser::loadResource(int type, const QUrl &name)\nThis is a reimplementation of QTextEdit::loadResource", false, &_init_f_loadResource_2360, &_call_f_loadResource_2360); methods += new qt_gsi::GenericMethod (":openExternalLinks", "@brief Method bool QTextBrowser::openExternalLinks()\n", true, &_init_f_openExternalLinks_c0, &_call_f_openExternalLinks_c0); methods += new qt_gsi::GenericMethod (":openLinks", "@brief Method bool QTextBrowser::openLinks()\n", true, &_init_f_openLinks_c0, &_call_f_openLinks_c0); methods += new qt_gsi::GenericMethod ("reload", "@brief Method void QTextBrowser::reload()\n", false, &_init_f_reload_0, &_call_f_reload_0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc index 7881bf634..3a044cfa4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc @@ -451,7 +451,7 @@ static void _call_f_extraSelections_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QString &, QFlags) +// bool QTextEdit::find(const QString &exp, QFlags options) static void _init_f_find_5261 (qt_gsi::GenericMethod *decl) @@ -473,7 +473,7 @@ static void _call_f_find_5261 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// (const QRegExp &, QFlags) +// bool QTextEdit::find(const QRegExp &exp, QFlags options) static void _init_f_find_5217 (qt_gsi::GenericMethod *decl) @@ -570,7 +570,7 @@ static void _call_f_fontWeight_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (Qt::InputMethodQuery) const +// QVariant QTextEdit::inputMethodQuery(Qt::InputMethodQuery property) static void _init_f_inputMethodQuery_c2420 (qt_gsi::GenericMethod *decl) @@ -589,7 +589,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl } -// (Qt::InputMethodQuery, QVariant) const +// QVariant QTextEdit::inputMethodQuery(Qt::InputMethodQuery query, QVariant argument) static void _init_f_inputMethodQuery_c3554 (qt_gsi::GenericMethod *decl) @@ -1762,15 +1762,15 @@ static gsi::Methods methods_QTextEdit () { methods += new qt_gsi::GenericMethod (":documentTitle", "@brief Method QString QTextEdit::documentTitle()\n", true, &_init_f_documentTitle_c0, &_call_f_documentTitle_c0); methods += new qt_gsi::GenericMethod ("ensureCursorVisible", "@brief Method void QTextEdit::ensureCursorVisible()\n", false, &_init_f_ensureCursorVisible_0, &_call_f_ensureCursorVisible_0); methods += new qt_gsi::GenericMethod (":extraSelections", "@brief Method QList QTextEdit::extraSelections()\n", true, &_init_f_extraSelections_c0, &_call_f_extraSelections_c0); - methods += new qt_gsi::GenericMethod ("find", "@brief Method (const QString &, QFlags)\n", false, &_init_f_find_5261, &_call_f_find_5261); - methods += new qt_gsi::GenericMethod ("find", "@brief Method (const QRegExp &, QFlags)\n", false, &_init_f_find_5217, &_call_f_find_5217); + methods += new qt_gsi::GenericMethod ("find", "@brief Method bool QTextEdit::find(const QString &exp, QFlags options)\n", false, &_init_f_find_5261, &_call_f_find_5261); + methods += new qt_gsi::GenericMethod ("find", "@brief Method bool QTextEdit::find(const QRegExp &exp, QFlags options)\n", false, &_init_f_find_5217, &_call_f_find_5217); methods += new qt_gsi::GenericMethod (":fontFamily", "@brief Method QString QTextEdit::fontFamily()\n", true, &_init_f_fontFamily_c0, &_call_f_fontFamily_c0); methods += new qt_gsi::GenericMethod (":fontItalic", "@brief Method bool QTextEdit::fontItalic()\n", true, &_init_f_fontItalic_c0, &_call_f_fontItalic_c0); methods += new qt_gsi::GenericMethod (":fontPointSize", "@brief Method double QTextEdit::fontPointSize()\n", true, &_init_f_fontPointSize_c0, &_call_f_fontPointSize_c0); methods += new qt_gsi::GenericMethod (":fontUnderline", "@brief Method bool QTextEdit::fontUnderline()\n", true, &_init_f_fontUnderline_c0, &_call_f_fontUnderline_c0); methods += new qt_gsi::GenericMethod (":fontWeight", "@brief Method int QTextEdit::fontWeight()\n", true, &_init_f_fontWeight_c0, &_call_f_fontWeight_c0); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery) const\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); - methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method (Qt::InputMethodQuery, QVariant) const\n", true, &_init_f_inputMethodQuery_c3554, &_call_f_inputMethodQuery_c3554); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QTextEdit::inputMethodQuery(Qt::InputMethodQuery property)\nThis is a reimplementation of QWidget::inputMethodQuery", true, &_init_f_inputMethodQuery_c2420, &_call_f_inputMethodQuery_c2420); + methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Method QVariant QTextEdit::inputMethodQuery(Qt::InputMethodQuery query, QVariant argument)\n", true, &_init_f_inputMethodQuery_c3554, &_call_f_inputMethodQuery_c3554); methods += new qt_gsi::GenericMethod ("insertHtml", "@brief Method void QTextEdit::insertHtml(const QString &text)\n", false, &_init_f_insertHtml_2025, &_call_f_insertHtml_2025); methods += new qt_gsi::GenericMethod ("insertPlainText", "@brief Method void QTextEdit::insertPlainText(const QString &text)\n", false, &_init_f_insertPlainText_2025, &_call_f_insertPlainText_2025); methods += new qt_gsi::GenericMethod ("isReadOnly?|:readOnly", "@brief Method bool QTextEdit::isReadOnly()\n", true, &_init_f_isReadOnly_c0, &_call_f_isReadOnly_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc index e1d789bb6..0c546f163 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc @@ -161,7 +161,7 @@ static void _call_f_actionGeometry_c1309 (const qt_gsi::GenericMethod * /*decl*/ } -// (QAction *) +// void QToolBar::addAction(QAction *action) static void _init_f_addAction_1309 (qt_gsi::GenericMethod *decl) @@ -181,7 +181,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) +// QAction *QToolBar::addAction(const QString &text) static void _init_f_addAction_2025 (qt_gsi::GenericMethod *decl) @@ -200,7 +200,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QIcon &, const QString &) +// QAction *QToolBar::addAction(const QIcon &icon, const QString &text) static void _init_f_addAction_3704 (qt_gsi::GenericMethod *decl) @@ -222,7 +222,7 @@ static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &, const QObject *, const char *) +// QAction *QToolBar::addAction(const QString &text, const QObject *receiver, const char *member) static void _init_f_addAction_5537 (qt_gsi::GenericMethod *decl) @@ -247,7 +247,7 @@ static void _call_f_addAction_5537 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QIcon &, const QString &, const QObject *, const char *) +// QAction *QToolBar::addAction(const QIcon &icon, const QString &text, const QObject *receiver, const char *member) static void _init_f_addAction_7216 (qt_gsi::GenericMethod *decl) @@ -703,11 +703,11 @@ static gsi::Methods methods_QToolBar () { methods += new qt_gsi::GenericMethod ("actionAt", "@brief Method QAction *QToolBar::actionAt(const QPoint &p)\n", true, &_init_f_actionAt_c1916, &_call_f_actionAt_c1916); methods += new qt_gsi::GenericMethod ("actionAt", "@brief Method QAction *QToolBar::actionAt(int x, int y)\n", true, &_init_f_actionAt_c1426, &_call_f_actionAt_c1426); methods += new qt_gsi::GenericMethod ("actionGeometry", "@brief Method QRect QToolBar::actionGeometry(QAction *action)\n", true, &_init_f_actionGeometry_c1309, &_call_f_actionGeometry_c1309); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (QAction *)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, const QString &)\n", false, &_init_f_addAction_3704, &_call_f_addAction_3704); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &, const QObject *, const char *)\n", false, &_init_f_addAction_5537, &_call_f_addAction_5537); - methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, const QString &, const QObject *, const char *)\n", false, &_init_f_addAction_7216, &_call_f_addAction_7216); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method void QToolBar::addAction(QAction *action)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QToolBar::addAction(const QString &text)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QToolBar::addAction(const QIcon &icon, const QString &text)\n", false, &_init_f_addAction_3704, &_call_f_addAction_3704); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QToolBar::addAction(const QString &text, const QObject *receiver, const char *member)\n", false, &_init_f_addAction_5537, &_call_f_addAction_5537); + methods += new qt_gsi::GenericMethod ("addAction", "@brief Method QAction *QToolBar::addAction(const QIcon &icon, const QString &text, const QObject *receiver, const char *member)\n", false, &_init_f_addAction_7216, &_call_f_addAction_7216); methods += new qt_gsi::GenericMethod ("addSeparator", "@brief Method QAction *QToolBar::addSeparator()\n", false, &_init_f_addSeparator_0, &_call_f_addSeparator_0); methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method QAction *QToolBar::addWidget(QWidget *widget)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315); methods += new qt_gsi::GenericMethod (":allowedAreas", "@brief Method QFlags QToolBar::allowedAreas()\n", true, &_init_f_allowedAreas_c0, &_call_f_allowedAreas_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc index d5a3be423..8ba798431 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc @@ -163,7 +163,7 @@ static void _call_f_menu_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QSize QToolButton::minimumSizeHint() static void _init_f_minimumSizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -329,7 +329,7 @@ static void _call_f_showMenu_0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QToolButton::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -419,7 +419,7 @@ static gsi::Methods methods_QToolButton () { methods += new qt_gsi::GenericMethod (":autoRaise", "@brief Method bool QToolButton::autoRaise()\n", true, &_init_f_autoRaise_c0, &_call_f_autoRaise_c0); methods += new qt_gsi::GenericMethod (":defaultAction", "@brief Method QAction *QToolButton::defaultAction()\n", true, &_init_f_defaultAction_c0, &_call_f_defaultAction_c0); methods += new qt_gsi::GenericMethod (":menu", "@brief Method QMenu *QToolButton::menu()\n", true, &_init_f_menu_c0, &_call_f_menu_c0); - methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); + methods += new qt_gsi::GenericMethod (":minimumSizeHint", "@brief Method QSize QToolButton::minimumSizeHint()\nThis is a reimplementation of QWidget::minimumSizeHint", true, &_init_f_minimumSizeHint_c0, &_call_f_minimumSizeHint_c0); methods += new qt_gsi::GenericMethod (":popupMode", "@brief Method QToolButton::ToolButtonPopupMode QToolButton::popupMode()\n", true, &_init_f_popupMode_c0, &_call_f_popupMode_c0); methods += new qt_gsi::GenericMethod ("setArrowType|arrowType=", "@brief Method void QToolButton::setArrowType(Qt::ArrowType type)\n", false, &_init_f_setArrowType_1690, &_call_f_setArrowType_1690); methods += new qt_gsi::GenericMethod ("setAutoRaise|autoRaise=", "@brief Method void QToolButton::setAutoRaise(bool enable)\n", false, &_init_f_setAutoRaise_864, &_call_f_setAutoRaise_864); @@ -428,7 +428,7 @@ static gsi::Methods methods_QToolButton () { methods += new qt_gsi::GenericMethod ("setPopupMode|popupMode=", "@brief Method void QToolButton::setPopupMode(QToolButton::ToolButtonPopupMode mode)\n", false, &_init_f_setPopupMode_3654, &_call_f_setPopupMode_3654); methods += new qt_gsi::GenericMethod ("setToolButtonStyle|toolButtonStyle=", "@brief Method void QToolButton::setToolButtonStyle(Qt::ToolButtonStyle style)\n", false, &_init_f_setToolButtonStyle_2328, &_call_f_setToolButtonStyle_2328); methods += new qt_gsi::GenericMethod ("showMenu", "@brief Method void QToolButton::showMenu()\n", false, &_init_f_showMenu_0, &_call_f_showMenu_0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QToolButton::sizeHint()\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":toolButtonStyle", "@brief Method Qt::ToolButtonStyle QToolButton::toolButtonStyle()\n", true, &_init_f_toolButtonStyle_c0, &_call_f_toolButtonStyle_c0); methods += gsi::qt_signal ("clicked(bool)", "clicked", gsi::arg("checked"), "@brief Signal declaration for QToolButton::clicked(bool checked)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QToolButton::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc index 367374a56..cfb980f2b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc @@ -232,7 +232,7 @@ static void _call_f_columnWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QModelIndex &, const QModelIndex &, const QVector &) +// void QTreeView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles) static void _init_f_dataChanged_7048 (qt_gsi::GenericMethod *decl) @@ -258,7 +258,7 @@ static void _call_f_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () +// void QTreeView::doItemsLayout() static void _init_f_doItemsLayout_0 (qt_gsi::GenericMethod *decl) @@ -414,7 +414,7 @@ static void _call_f_indexAbove_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QPoint &) const +// QModelIndex QTreeView::indexAt(const QPoint &p) static void _init_f_indexAt_c1916 (qt_gsi::GenericMethod *decl) @@ -594,7 +594,7 @@ static void _call_f_itemsExpandable_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QString &) +// void QTreeView::keyboardSearch(const QString &search) static void _init_f_keyboardSearch_2025 (qt_gsi::GenericMethod *decl) @@ -614,7 +614,7 @@ static void _call_f_keyboardSearch_2025 (const qt_gsi::GenericMethod * /*decl*/, } -// () +// void QTreeView::reset() static void _init_f_reset_0 (qt_gsi::GenericMethod *decl) @@ -681,7 +681,7 @@ static void _call_f_rootIsDecorated_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QModelIndex &, QAbstractItemView::ScrollHint) +// void QTreeView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) static void _init_f_scrollTo_5576 (qt_gsi::GenericMethod *decl) @@ -704,7 +704,7 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QTreeView::selectAll() static void _init_f_selectAll_0 (qt_gsi::GenericMethod *decl) @@ -975,7 +975,7 @@ static void _call_f_setItemsExpandable_864 (const qt_gsi::GenericMethod * /*decl } -// (QAbstractItemModel *) +// void QTreeView::setModel(QAbstractItemModel *model) static void _init_f_setModel_2419 (qt_gsi::GenericMethod *decl) @@ -995,7 +995,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QModelIndex &) +// void QTreeView::setRootIndex(const QModelIndex &index) static void _init_f_setRootIndex_2395 (qt_gsi::GenericMethod *decl) @@ -1061,7 +1061,7 @@ static void _call_f_setRowHidden_3810 (const qt_gsi::GenericMethod * /*decl*/, v } -// (QItemSelectionModel *) +// void QTreeView::setSelectionModel(QItemSelectionModel *selectionModel) static void _init_f_setSelectionModel_2533 (qt_gsi::GenericMethod *decl) @@ -1254,7 +1254,7 @@ static void _call_f_uniformRowHeights_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (const QModelIndex &) const +// QRect QTreeView::visualRect(const QModelIndex &index) static void _init_f_visualRect_c2395 (qt_gsi::GenericMethod *decl) @@ -1351,8 +1351,8 @@ static gsi::Methods methods_QTreeView () { methods += new qt_gsi::GenericMethod ("columnAt", "@brief Method int QTreeView::columnAt(int x)\n", true, &_init_f_columnAt_c767, &_call_f_columnAt_c767); methods += new qt_gsi::GenericMethod ("columnViewportPosition", "@brief Method int QTreeView::columnViewportPosition(int column)\n", true, &_init_f_columnViewportPosition_c767, &_call_f_columnViewportPosition_c767); methods += new qt_gsi::GenericMethod ("columnWidth", "@brief Method int QTreeView::columnWidth(int column)\n", true, &_init_f_columnWidth_c767, &_call_f_columnWidth_c767); - methods += new qt_gsi::GenericMethod ("dataChanged", "@brief Method (const QModelIndex &, const QModelIndex &, const QVector &)\nThis is a reimplementation of QAbstractItemView::dataChanged", false, &_init_f_dataChanged_7048, &_call_f_dataChanged_7048); - methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); + methods += new qt_gsi::GenericMethod ("dataChanged", "@brief Method void QTreeView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector &roles)\nThis is a reimplementation of QAbstractItemView::dataChanged", false, &_init_f_dataChanged_7048, &_call_f_dataChanged_7048); + methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method void QTreeView::doItemsLayout()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0); methods += new qt_gsi::GenericMethod ("expand", "@brief Method void QTreeView::expand(const QModelIndex &index)\n", false, &_init_f_expand_2395, &_call_f_expand_2395); methods += new qt_gsi::GenericMethod ("expandAll", "@brief Method void QTreeView::expandAll()\n", false, &_init_f_expandAll_0, &_call_f_expandAll_0); methods += new qt_gsi::GenericMethod ("expandToDepth", "@brief Method void QTreeView::expandToDepth(int depth)\n", false, &_init_f_expandToDepth_767, &_call_f_expandToDepth_767); @@ -1361,7 +1361,7 @@ static gsi::Methods methods_QTreeView () { methods += new qt_gsi::GenericMethod ("hideColumn", "@brief Method void QTreeView::hideColumn(int column)\n", false, &_init_f_hideColumn_767, &_call_f_hideColumn_767); methods += new qt_gsi::GenericMethod (":indentation", "@brief Method int QTreeView::indentation()\n", true, &_init_f_indentation_c0, &_call_f_indentation_c0); methods += new qt_gsi::GenericMethod ("indexAbove", "@brief Method QModelIndex QTreeView::indexAbove(const QModelIndex &index)\n", true, &_init_f_indexAbove_c2395, &_call_f_indexAbove_c2395); - methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method (const QPoint &) const\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); + methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method QModelIndex QTreeView::indexAt(const QPoint &p)\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916); methods += new qt_gsi::GenericMethod ("indexBelow", "@brief Method QModelIndex QTreeView::indexBelow(const QModelIndex &index)\n", true, &_init_f_indexBelow_c2395, &_call_f_indexBelow_c2395); methods += new qt_gsi::GenericMethod ("isAnimated?|:animated", "@brief Method bool QTreeView::isAnimated()\n", true, &_init_f_isAnimated_c0, &_call_f_isAnimated_c0); methods += new qt_gsi::GenericMethod ("isColumnHidden?", "@brief Method bool QTreeView::isColumnHidden(int column)\n", true, &_init_f_isColumnHidden_c767, &_call_f_isColumnHidden_c767); @@ -1371,13 +1371,13 @@ static gsi::Methods methods_QTreeView () { methods += new qt_gsi::GenericMethod ("isRowHidden?", "@brief Method bool QTreeView::isRowHidden(int row, const QModelIndex &parent)\n", true, &_init_f_isRowHidden_c3054, &_call_f_isRowHidden_c3054); methods += new qt_gsi::GenericMethod ("isSortingEnabled?|:sortingEnabled", "@brief Method bool QTreeView::isSortingEnabled()\n", true, &_init_f_isSortingEnabled_c0, &_call_f_isSortingEnabled_c0); methods += new qt_gsi::GenericMethod (":itemsExpandable", "@brief Method bool QTreeView::itemsExpandable()\n", true, &_init_f_itemsExpandable_c0, &_call_f_itemsExpandable_c0); - methods += new qt_gsi::GenericMethod ("keyboardSearch", "@brief Method (const QString &)\nThis is a reimplementation of QAbstractItemView::keyboardSearch", false, &_init_f_keyboardSearch_2025, &_call_f_keyboardSearch_2025); - methods += new qt_gsi::GenericMethod ("reset", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); + methods += new qt_gsi::GenericMethod ("keyboardSearch", "@brief Method void QTreeView::keyboardSearch(const QString &search)\nThis is a reimplementation of QAbstractItemView::keyboardSearch", false, &_init_f_keyboardSearch_2025, &_call_f_keyboardSearch_2025); + methods += new qt_gsi::GenericMethod ("reset", "@brief Method void QTreeView::reset()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0); methods += new qt_gsi::GenericMethod ("resetIndentation", "@brief Method void QTreeView::resetIndentation()\n", false, &_init_f_resetIndentation_0, &_call_f_resetIndentation_0); methods += new qt_gsi::GenericMethod ("resizeColumnToContents", "@brief Method void QTreeView::resizeColumnToContents(int column)\n", false, &_init_f_resizeColumnToContents_767, &_call_f_resizeColumnToContents_767); methods += new qt_gsi::GenericMethod (":rootIsDecorated", "@brief Method bool QTreeView::rootIsDecorated()\n", true, &_init_f_rootIsDecorated_c0, &_call_f_rootIsDecorated_c0); - methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method (const QModelIndex &, QAbstractItemView::ScrollHint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); - methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::selectAll", false, &_init_f_selectAll_0, &_call_f_selectAll_0); + methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method void QTreeView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576); + methods += new qt_gsi::GenericMethod ("selectAll", "@brief Method void QTreeView::selectAll()\nThis is a reimplementation of QAbstractItemView::selectAll", false, &_init_f_selectAll_0, &_call_f_selectAll_0); methods += new qt_gsi::GenericMethod ("setAllColumnsShowFocus|allColumnsShowFocus=", "@brief Method void QTreeView::setAllColumnsShowFocus(bool enable)\n", false, &_init_f_setAllColumnsShowFocus_864, &_call_f_setAllColumnsShowFocus_864); methods += new qt_gsi::GenericMethod ("setAnimated|animated=", "@brief Method void QTreeView::setAnimated(bool enable)\n", false, &_init_f_setAnimated_864, &_call_f_setAnimated_864); methods += new qt_gsi::GenericMethod ("setAutoExpandDelay|autoExpandDelay=", "@brief Method void QTreeView::setAutoExpandDelay(int delay)\n", false, &_init_f_setAutoExpandDelay_767, &_call_f_setAutoExpandDelay_767); @@ -1390,11 +1390,11 @@ static gsi::Methods methods_QTreeView () { methods += new qt_gsi::GenericMethod ("setHeaderHidden|headerHidden=", "@brief Method void QTreeView::setHeaderHidden(bool hide)\n", false, &_init_f_setHeaderHidden_864, &_call_f_setHeaderHidden_864); methods += new qt_gsi::GenericMethod ("setIndentation|indentation=", "@brief Method void QTreeView::setIndentation(int i)\n", false, &_init_f_setIndentation_767, &_call_f_setIndentation_767); methods += new qt_gsi::GenericMethod ("setItemsExpandable|itemsExpandable=", "@brief Method void QTreeView::setItemsExpandable(bool enable)\n", false, &_init_f_setItemsExpandable_864, &_call_f_setItemsExpandable_864); - methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); - methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); + methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method void QTreeView::setModel(QAbstractItemModel *model)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419); + methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method void QTreeView::setRootIndex(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395); methods += new qt_gsi::GenericMethod ("setRootIsDecorated|rootIsDecorated=", "@brief Method void QTreeView::setRootIsDecorated(bool show)\n", false, &_init_f_setRootIsDecorated_864, &_call_f_setRootIsDecorated_864); methods += new qt_gsi::GenericMethod ("setRowHidden", "@brief Method void QTreeView::setRowHidden(int row, const QModelIndex &parent, bool hide)\n", false, &_init_f_setRowHidden_3810, &_call_f_setRowHidden_3810); - methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method (QItemSelectionModel *)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); + methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method void QTreeView::setSelectionModel(QItemSelectionModel *selectionModel)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method void QTreeView::setSortingEnabled(bool enable)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864); methods += new qt_gsi::GenericMethod ("setTreePosition|treePosition=", "@brief Method void QTreeView::setTreePosition(int logicalIndex)\n", false, &_init_f_setTreePosition_767, &_call_f_setTreePosition_767); methods += new qt_gsi::GenericMethod ("setUniformRowHeights|uniformRowHeights=", "@brief Method void QTreeView::setUniformRowHeights(bool uniform)\n", false, &_init_f_setUniformRowHeights_864, &_call_f_setUniformRowHeights_864); @@ -1404,7 +1404,7 @@ static gsi::Methods methods_QTreeView () { methods += new qt_gsi::GenericMethod ("sortByColumn", "@brief Method void QTreeView::sortByColumn(int column)\n", false, &_init_f_sortByColumn_767, &_call_f_sortByColumn_767); methods += new qt_gsi::GenericMethod (":treePosition", "@brief Method int QTreeView::treePosition()\n", true, &_init_f_treePosition_c0, &_call_f_treePosition_c0); methods += new qt_gsi::GenericMethod (":uniformRowHeights", "@brief Method bool QTreeView::uniformRowHeights()\n", true, &_init_f_uniformRowHeights_c0, &_call_f_uniformRowHeights_c0); - methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); + methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method QRect QTreeView::visualRect(const QModelIndex &index)\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395); methods += new qt_gsi::GenericMethod (":wordWrap", "@brief Method bool QTreeView::wordWrap()\n", true, &_init_f_wordWrap_c0, &_call_f_wordWrap_c0); methods += gsi::qt_signal ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QTreeView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("clicked(const QModelIndex &)", "clicked", gsi::arg("index"), "@brief Signal declaration for QTreeView::clicked(const QModelIndex &index)\nYou can bind a procedure to this signal."); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc index 32d57faf2..f9ad74b06 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc @@ -169,7 +169,7 @@ static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (QTreeWidgetItem *, int) +// void QTreeWidget::closePersistentEditor(QTreeWidgetItem *item, int column) static void _init_f_closePersistentEditor_2773 (qt_gsi::GenericMethod *decl) @@ -599,7 +599,7 @@ static void _call_f_itemWidget_c2773 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (QTreeWidgetItem *, int) +// void QTreeWidget::openPersistentEditor(QTreeWidgetItem *item, int column) static void _init_f_openPersistentEditor_2773 (qt_gsi::GenericMethod *decl) @@ -950,7 +950,7 @@ static void _call_f_setItemWidget_3980 (const qt_gsi::GenericMethod * /*decl*/, } -// (QItemSelectionModel *) +// void QTreeWidget::setSelectionModel(QItemSelectionModel *selectionModel) static void _init_f_setSelectionModel_2533 (qt_gsi::GenericMethod *decl) @@ -1139,7 +1139,7 @@ static gsi::Methods methods_QTreeWidget () { methods += new qt_gsi::GenericMethod ("addTopLevelItem", "@brief Method void QTreeWidget::addTopLevelItem(QTreeWidgetItem *item)\n", false, &_init_f_addTopLevelItem_2114, &_call_f_addTopLevelItem_2114); methods += new qt_gsi::GenericMethod ("addTopLevelItems", "@brief Method void QTreeWidget::addTopLevelItems(const QList &items)\n", false, &_init_f_addTopLevelItems_3462, &_call_f_addTopLevelItems_3462); methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QTreeWidget::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method (QTreeWidgetItem *, int)\n", false, &_init_f_closePersistentEditor_2773, &_call_f_closePersistentEditor_2773); + methods += new qt_gsi::GenericMethod ("closePersistentEditor", "@brief Method void QTreeWidget::closePersistentEditor(QTreeWidgetItem *item, int column)\n", false, &_init_f_closePersistentEditor_2773, &_call_f_closePersistentEditor_2773); methods += new qt_gsi::GenericMethod ("collapseItem", "@brief Method void QTreeWidget::collapseItem(const QTreeWidgetItem *item)\n", false, &_init_f_collapseItem_2809, &_call_f_collapseItem_2809); methods += new qt_gsi::GenericMethod (":columnCount", "@brief Method int QTreeWidget::columnCount()\n", true, &_init_f_columnCount_c0, &_call_f_columnCount_c0); methods += new qt_gsi::GenericMethod ("currentColumn", "@brief Method int QTreeWidget::currentColumn()\n", true, &_init_f_currentColumn_c0, &_call_f_currentColumn_c0); @@ -1161,7 +1161,7 @@ static gsi::Methods methods_QTreeWidget () { methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QTreeWidgetItem *QTreeWidget::itemAt(int x, int y)\n", true, &_init_f_itemAt_c1426, &_call_f_itemAt_c1426); methods += new qt_gsi::GenericMethod ("itemBelow", "@brief Method QTreeWidgetItem *QTreeWidget::itemBelow(const QTreeWidgetItem *item)\n", true, &_init_f_itemBelow_c2809, &_call_f_itemBelow_c2809); methods += new qt_gsi::GenericMethod ("itemWidget", "@brief Method QWidget *QTreeWidget::itemWidget(QTreeWidgetItem *item, int column)\n", true, &_init_f_itemWidget_c2773, &_call_f_itemWidget_c2773); - methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method (QTreeWidgetItem *, int)\n", false, &_init_f_openPersistentEditor_2773, &_call_f_openPersistentEditor_2773); + methods += new qt_gsi::GenericMethod ("openPersistentEditor", "@brief Method void QTreeWidget::openPersistentEditor(QTreeWidgetItem *item, int column)\n", false, &_init_f_openPersistentEditor_2773, &_call_f_openPersistentEditor_2773); methods += new qt_gsi::GenericMethod ("removeItemWidget", "@brief Method void QTreeWidget::removeItemWidget(QTreeWidgetItem *item, int column)\n", false, &_init_f_removeItemWidget_2773, &_call_f_removeItemWidget_2773); methods += new qt_gsi::GenericMethod ("scrollToItem", "@brief Method void QTreeWidget::scrollToItem(const QTreeWidgetItem *item, QAbstractItemView::ScrollHint hint)\n", false, &_init_f_scrollToItem_5990, &_call_f_scrollToItem_5990); methods += new qt_gsi::GenericMethod ("selectedItems", "@brief Method QList QTreeWidget::selectedItems()\n", true, &_init_f_selectedItems_c0, &_call_f_selectedItems_c0); @@ -1177,7 +1177,7 @@ static gsi::Methods methods_QTreeWidget () { methods += new qt_gsi::GenericMethod ("setItemHidden", "@brief Method void QTreeWidget::setItemHidden(const QTreeWidgetItem *item, bool hide)\n", false, &_init_f_setItemHidden_3565, &_call_f_setItemHidden_3565); methods += new qt_gsi::GenericMethod ("setItemSelected", "@brief Method void QTreeWidget::setItemSelected(const QTreeWidgetItem *item, bool select)\n", false, &_init_f_setItemSelected_3565, &_call_f_setItemSelected_3565); methods += new qt_gsi::GenericMethod ("setItemWidget", "@brief Method void QTreeWidget::setItemWidget(QTreeWidgetItem *item, int column, QWidget *widget)\n", false, &_init_f_setItemWidget_3980, &_call_f_setItemWidget_3980); - methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method (QItemSelectionModel *)\nThis is a reimplementation of QTreeView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); + methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method void QTreeWidget::setSelectionModel(QItemSelectionModel *selectionModel)\nThis is a reimplementation of QTreeView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533); methods += new qt_gsi::GenericMethod ("sortColumn", "@brief Method int QTreeWidget::sortColumn()\n", true, &_init_f_sortColumn_c0, &_call_f_sortColumn_c0); methods += new qt_gsi::GenericMethod ("sortItems", "@brief Method void QTreeWidget::sortItems(int column, Qt::SortOrder order)\n", false, &_init_f_sortItems_2340, &_call_f_sortItems_2340); methods += new qt_gsi::GenericMethod ("takeTopLevelItem", "@brief Method QTreeWidgetItem *QTreeWidget::takeTopLevelItem(int index)\n", false, &_init_f_takeTopLevelItem_767, &_call_f_takeTopLevelItem_767); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc index ae71d94fe..c2feee134 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc @@ -886,7 +886,7 @@ static void _call_f_hasMouseTracking_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// int QWidget::height() static void _init_f_height_c0 (qt_gsi::GenericMethod *decl) @@ -1727,7 +1727,7 @@ static void _call_f_overrideWindowState_2590 (const qt_gsi::GenericMethod * /*de } -// () const +// QPaintEngine *QWidget::paintEngine() static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl) @@ -3083,7 +3083,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QWidget *) +// void QWidget::setParent(QWidget *parent) static void _init_f_setParent_1315 (qt_gsi::GenericMethod *decl) @@ -3103,7 +3103,7 @@ static void _call_f_setParent_1315 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QWidget *, QFlags) +// void QWidget::setParent(QWidget *parent, QFlags f) static void _init_f_setParent_3702 (qt_gsi::GenericMethod *decl) @@ -4116,7 +4116,7 @@ static void _call_f_whatsThis_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () const +// int QWidget::width() static void _init_f_width_c0 (qt_gsi::GenericMethod *decl) @@ -4602,7 +4602,7 @@ static gsi::Methods methods_QWidget () { methods += new qt_gsi::GenericMethod ("hasFocus|:focus", "@brief Method bool QWidget::hasFocus()\n", true, &_init_f_hasFocus_c0, &_call_f_hasFocus_c0); methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QWidget::hasHeightForWidth()\n", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); methods += new qt_gsi::GenericMethod ("hasMouseTracking|:mouseTracking", "@brief Method bool QWidget::hasMouseTracking()\n", true, &_init_f_hasMouseTracking_c0, &_call_f_hasMouseTracking_c0); - methods += new qt_gsi::GenericMethod (":height", "@brief Method () const\n", true, &_init_f_height_c0, &_call_f_height_c0); + methods += new qt_gsi::GenericMethod (":height", "@brief Method int QWidget::height()\n", true, &_init_f_height_c0, &_call_f_height_c0); methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QWidget::heightForWidth(int)\n", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); methods += new qt_gsi::GenericMethod ("hide", "@brief Method void QWidget::hide()\n", false, &_init_f_hide_0, &_call_f_hide_0); methods += new qt_gsi::GenericMethod (":inputMethodHints", "@brief Method QFlags QWidget::inputMethodHints()\n", true, &_init_f_inputMethodHints_c0, &_call_f_inputMethodHints_c0); @@ -4652,7 +4652,7 @@ static gsi::Methods methods_QWidget () { methods += new qt_gsi::GenericMethod (":normalGeometry", "@brief Method QRect QWidget::normalGeometry()\n", true, &_init_f_normalGeometry_c0, &_call_f_normalGeometry_c0); methods += new qt_gsi::GenericMethod ("overrideWindowFlags", "@brief Method void QWidget::overrideWindowFlags(QFlags type)\n", false, &_init_f_overrideWindowFlags_2495, &_call_f_overrideWindowFlags_2495); methods += new qt_gsi::GenericMethod ("overrideWindowState", "@brief Method void QWidget::overrideWindowState(QFlags state)\n", false, &_init_f_overrideWindowState_2590, &_call_f_overrideWindowState_2590); - methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); + methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method QPaintEngine *QWidget::paintEngine()\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0); methods += new qt_gsi::GenericMethod (":palette", "@brief Method const QPalette &QWidget::palette()\n", true, &_init_f_palette_c0, &_call_f_palette_c0); methods += new qt_gsi::GenericMethod ("parentWidget", "@brief Method QWidget *QWidget::parentWidget()\n", true, &_init_f_parentWidget_c0, &_call_f_parentWidget_c0); methods += new qt_gsi::GenericMethod (":pos", "@brief Method QPoint QWidget::pos()\n", true, &_init_f_pos_c0, &_call_f_pos_c0); @@ -4719,8 +4719,8 @@ static gsi::Methods methods_QWidget () { methods += new qt_gsi::GenericMethod ("setMinimumWidth|minimumWidth=", "@brief Method void QWidget::setMinimumWidth(int minw)\n", false, &_init_f_setMinimumWidth_767, &_call_f_setMinimumWidth_767); methods += new qt_gsi::GenericMethod ("setMouseTracking|mouseTracking=", "@brief Method void QWidget::setMouseTracking(bool enable)\n", false, &_init_f_setMouseTracking_864, &_call_f_setMouseTracking_864); methods += new qt_gsi::GenericMethod ("setPalette|palette=", "@brief Method void QWidget::setPalette(const QPalette &)\n", false, &_init_f_setPalette_2113, &_call_f_setPalette_2113); - methods += new qt_gsi::GenericMethod ("setParent", "@brief Method (QWidget *)\n", false, &_init_f_setParent_1315, &_call_f_setParent_1315); - methods += new qt_gsi::GenericMethod ("setParent", "@brief Method (QWidget *, QFlags)\n", false, &_init_f_setParent_3702, &_call_f_setParent_3702); + methods += new qt_gsi::GenericMethod ("setParent", "@brief Method void QWidget::setParent(QWidget *parent)\n", false, &_init_f_setParent_1315, &_call_f_setParent_1315); + methods += new qt_gsi::GenericMethod ("setParent", "@brief Method void QWidget::setParent(QWidget *parent, QFlags f)\n", false, &_init_f_setParent_3702, &_call_f_setParent_3702); methods += new qt_gsi::GenericMethod ("setShortcutAutoRepeat", "@brief Method void QWidget::setShortcutAutoRepeat(int id, bool enable)\n", false, &_init_f_setShortcutAutoRepeat_1523, &_call_f_setShortcutAutoRepeat_1523); methods += new qt_gsi::GenericMethod ("setShortcutEnabled", "@brief Method void QWidget::setShortcutEnabled(int id, bool enable)\n", false, &_init_f_setShortcutEnabled_1523, &_call_f_setShortcutEnabled_1523); methods += new qt_gsi::GenericMethod ("setSizeIncrement|sizeIncrement=", "@brief Method void QWidget::setSizeIncrement(const QSize &)\n", false, &_init_f_setSizeIncrement_1805, &_call_f_setSizeIncrement_1805); @@ -4775,7 +4775,7 @@ static gsi::Methods methods_QWidget () { methods += new qt_gsi::GenericMethod (":updatesEnabled", "@brief Method bool QWidget::updatesEnabled()\n", true, &_init_f_updatesEnabled_c0, &_call_f_updatesEnabled_c0); methods += new qt_gsi::GenericMethod ("visibleRegion", "@brief Method QRegion QWidget::visibleRegion()\n", true, &_init_f_visibleRegion_c0, &_call_f_visibleRegion_c0); methods += new qt_gsi::GenericMethod (":whatsThis", "@brief Method QString QWidget::whatsThis()\n", true, &_init_f_whatsThis_c0, &_call_f_whatsThis_c0); - methods += new qt_gsi::GenericMethod (":width", "@brief Method () const\n", true, &_init_f_width_c0, &_call_f_width_c0); + methods += new qt_gsi::GenericMethod (":width", "@brief Method int QWidget::width()\n", true, &_init_f_width_c0, &_call_f_width_c0); methods += new qt_gsi::GenericMethod ("winId", "@brief Method WId QWidget::winId()\n", true, &_init_f_winId_c0, &_call_f_winId_c0); methods += new qt_gsi::GenericMethod ("window", "@brief Method QWidget *QWidget::window()\n", true, &_init_f_window_c0, &_call_f_window_c0); methods += new qt_gsi::GenericMethod (":windowFilePath", "@brief Method QString QWidget::windowFilePath()\n", true, &_init_f_windowFilePath_c0, &_call_f_windowFilePath_c0); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc index 4d6590dfe..073a75cb5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc @@ -41,7 +41,7 @@ // ----------------------------------------------------------------------- // class QWidgetItem -// () const +// QFlags QWidgetItem::controlTypes() static void _init_f_controlTypes_c0 (qt_gsi::GenericMethod *decl) @@ -56,7 +56,7 @@ static void _call_f_controlTypes_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QFlags QWidgetItem::expandingDirections() static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl) @@ -71,7 +71,7 @@ static void _call_f_expandingDirections_c0 (const qt_gsi::GenericMethod * /*decl } -// () const +// QRect QWidgetItem::geometry() static void _init_f_geometry_c0 (qt_gsi::GenericMethod *decl) @@ -86,7 +86,7 @@ static void _call_f_geometry_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () const +// bool QWidgetItem::hasHeightForWidth() static void _init_f_hasHeightForWidth_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_hasHeightForWidth_c0 (const qt_gsi::GenericMethod * /*decl*/ } -// (int) const +// int QWidgetItem::heightForWidth(int) static void _init_f_heightForWidth_c767 (qt_gsi::GenericMethod *decl) @@ -120,7 +120,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, } -// () const +// bool QWidgetItem::isEmpty() static void _init_f_isEmpty_c0 (qt_gsi::GenericMethod *decl) @@ -135,7 +135,7 @@ static void _call_f_isEmpty_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QSize QWidgetItem::maximumSize() static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl) @@ -150,7 +150,7 @@ static void _call_f_maximumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QWidgetItem::minimumSize() static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl) @@ -165,7 +165,7 @@ static void _call_f_minimumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QRect &) +// void QWidgetItem::setGeometry(const QRect &) static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl) @@ -185,7 +185,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo } -// () const +// QSize QWidgetItem::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -200,7 +200,7 @@ static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// () +// QWidget *QWidgetItem::widget() static void _init_f_widget_0 (qt_gsi::GenericMethod *decl) @@ -220,17 +220,17 @@ namespace gsi static gsi::Methods methods_QWidgetItem () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("controlTypes", "@brief Method () const\nThis is a reimplementation of QLayoutItem::controlTypes", true, &_init_f_controlTypes_c0, &_call_f_controlTypes_c0); - methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); - methods += new qt_gsi::GenericMethod (":geometry", "@brief Method () const\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); - methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method () const\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); - methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method (int) const\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); - methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method () const\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); - methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); - methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); - methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); - methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method () const\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); - methods += new qt_gsi::GenericMethod ("widget", "@brief Method ()\nThis is a reimplementation of QLayoutItem::widget", false, &_init_f_widget_0, &_call_f_widget_0); + methods += new qt_gsi::GenericMethod ("controlTypes", "@brief Method QFlags QWidgetItem::controlTypes()\nThis is a reimplementation of QLayoutItem::controlTypes", true, &_init_f_controlTypes_c0, &_call_f_controlTypes_c0); + methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method QFlags QWidgetItem::expandingDirections()\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0); + methods += new qt_gsi::GenericMethod (":geometry", "@brief Method QRect QWidgetItem::geometry()\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0); + methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Method bool QWidgetItem::hasHeightForWidth()\nThis is a reimplementation of QLayoutItem::hasHeightForWidth", true, &_init_f_hasHeightForWidth_c0, &_call_f_hasHeightForWidth_c0); + methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Method int QWidgetItem::heightForWidth(int)\nThis is a reimplementation of QLayoutItem::heightForWidth", true, &_init_f_heightForWidth_c767, &_call_f_heightForWidth_c767); + methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method bool QWidgetItem::isEmpty()\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0); + methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method QSize QWidgetItem::maximumSize()\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0); + methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method QSize QWidgetItem::minimumSize()\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0); + methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method void QWidgetItem::setGeometry(const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792); + methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Method QSize QWidgetItem::sizeHint()\nThis is a reimplementation of QLayoutItem::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod ("widget", "@brief Method QWidget *QWidgetItem::widget()\nThis is a reimplementation of QLayoutItem::widget", false, &_init_f_widget_0, &_call_f_widget_0); return methods; } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc index 5212da9ad..d48e1f4b5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc @@ -662,7 +662,7 @@ static void _call_f_setTitleFormat_1787 (const qt_gsi::GenericMethod * /*decl*/, } -// (bool) +// void QWizard::setVisible(bool visible) static void _init_f_setVisible_864 (qt_gsi::GenericMethod *decl) @@ -717,7 +717,7 @@ static void _call_f_sideWidget_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QSize QWizard::sizeHint() static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl) @@ -926,10 +926,10 @@ static gsi::Methods methods_QWizard () { methods += new qt_gsi::GenericMethod ("setStartId|startId=", "@brief Method void QWizard::setStartId(int id)\n", false, &_init_f_setStartId_767, &_call_f_setStartId_767); methods += new qt_gsi::GenericMethod ("setSubTitleFormat|subTitleFormat=", "@brief Method void QWizard::setSubTitleFormat(Qt::TextFormat format)\n", false, &_init_f_setSubTitleFormat_1787, &_call_f_setSubTitleFormat_1787); methods += new qt_gsi::GenericMethod ("setTitleFormat|titleFormat=", "@brief Method void QWizard::setTitleFormat(Qt::TextFormat format)\n", false, &_init_f_setTitleFormat_1787, &_call_f_setTitleFormat_1787); - methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method (bool)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); + methods += new qt_gsi::GenericMethod ("setVisible|visible=", "@brief Method void QWizard::setVisible(bool visible)\nThis is a reimplementation of QDialog::setVisible", false, &_init_f_setVisible_864, &_call_f_setVisible_864); methods += new qt_gsi::GenericMethod ("setWizardStyle|wizardStyle=", "@brief Method void QWizard::setWizardStyle(QWizard::WizardStyle style)\n", false, &_init_f_setWizardStyle_2412, &_call_f_setWizardStyle_2412); methods += new qt_gsi::GenericMethod (":sideWidget", "@brief Method QWidget *QWizard::sideWidget()\n", true, &_init_f_sideWidget_c0, &_call_f_sideWidget_c0); - methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); + methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method QSize QWizard::sizeHint()\nThis is a reimplementation of QDialog::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0); methods += new qt_gsi::GenericMethod (":startId", "@brief Method int QWizard::startId()\n", true, &_init_f_startId_c0, &_call_f_startId_c0); methods += new qt_gsi::GenericMethod (":subTitleFormat", "@brief Method Qt::TextFormat QWizard::subTitleFormat()\n", true, &_init_f_subTitleFormat_c0, &_call_f_subTitleFormat_c0); methods += new qt_gsi::GenericMethod ("testOption", "@brief Method bool QWizard::testOption(QWizard::WizardOption option)\n", true, &_init_f_testOption_c2516, &_call_f_testOption_c2516); diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc index b8a8693c7..c10e55d17 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc @@ -101,7 +101,7 @@ static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QDomNode::NodeType QDomAttr::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -116,7 +116,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomAttr &) +// QDomAttr &QDomAttr::operator=(const QDomAttr &) static void _init_f_operator_eq__2093 (qt_gsi::GenericMethod *decl) @@ -209,8 +209,8 @@ static gsi::Methods methods_QDomAttr () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomAttr::QDomAttr()\nThis method creates an object of class QDomAttr.", &_init_ctor_QDomAttr_0, &_call_ctor_QDomAttr_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomAttr::QDomAttr(const QDomAttr &x)\nThis method creates an object of class QDomAttr.", &_init_ctor_QDomAttr_2093, &_call_ctor_QDomAttr_2093); methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QDomAttr::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomAttr &)\n", false, &_init_f_operator_eq__2093, &_call_f_operator_eq__2093); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomAttr::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomAttr &QDomAttr::operator=(const QDomAttr &)\n", false, &_init_f_operator_eq__2093, &_call_f_operator_eq__2093); methods += new qt_gsi::GenericMethod ("ownerElement", "@brief Method QDomElement QDomAttr::ownerElement()\n", true, &_init_f_ownerElement_c0, &_call_f_ownerElement_c0); methods += new qt_gsi::GenericMethod ("setValue|value=", "@brief Method void QDomAttr::setValue(const QString &)\n", false, &_init_f_setValue_2025, &_call_f_setValue_2025); methods += new qt_gsi::GenericMethod ("specified", "@brief Method bool QDomAttr::specified()\n", true, &_init_f_specified_c0, &_call_f_specified_c0); diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc index f0d5de8a7..28c0ed366 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomCDATASection_2756 (const qt_gsi::GenericStaticMethod } -// () const +// QDomNode::NodeType QDomCDATASection::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomCDATASection &) +// QDomCDATASection &QDomCDATASection::operator=(const QDomCDATASection &) static void _init_f_operator_eq__2756 (qt_gsi::GenericMethod *decl) @@ -128,8 +128,8 @@ static gsi::Methods methods_QDomCDATASection () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomCDATASection::QDomCDATASection()\nThis method creates an object of class QDomCDATASection.", &_init_ctor_QDomCDATASection_0, &_call_ctor_QDomCDATASection_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomCDATASection::QDomCDATASection(const QDomCDATASection &x)\nThis method creates an object of class QDomCDATASection.", &_init_ctor_QDomCDATASection_2756, &_call_ctor_QDomCDATASection_2756); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomCDATASection &)\n", false, &_init_f_operator_eq__2756, &_call_f_operator_eq__2756); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomCDATASection::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomCDATASection &QDomCDATASection::operator=(const QDomCDATASection &)\n", false, &_init_f_operator_eq__2756, &_call_f_operator_eq__2756); return methods; } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc index 519e4df7a..2e60ec146 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc @@ -182,7 +182,7 @@ static void _call_f_length_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls } -// () const +// QDomNode::NodeType QDomCharacterData::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -197,7 +197,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomCharacterData &) +// QDomCharacterData &QDomCharacterData::operator=(const QDomCharacterData &) static void _init_f_operator_eq__2969 (qt_gsi::GenericMethod *decl) @@ -297,8 +297,8 @@ static gsi::Methods methods_QDomCharacterData () { methods += new qt_gsi::GenericMethod ("deleteData", "@brief Method void QDomCharacterData::deleteData(unsigned long int offset, unsigned long int count)\n", false, &_init_f_deleteData_4588, &_call_f_deleteData_4588); methods += new qt_gsi::GenericMethod ("insertData", "@brief Method void QDomCharacterData::insertData(unsigned long int offset, const QString &arg)\n", false, &_init_f_insertData_4265, &_call_f_insertData_4265); methods += new qt_gsi::GenericMethod ("length", "@brief Method int QDomCharacterData::length()\n", true, &_init_f_length_c0, &_call_f_length_c0); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomCharacterData &)\n", false, &_init_f_operator_eq__2969, &_call_f_operator_eq__2969); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomCharacterData::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomCharacterData &QDomCharacterData::operator=(const QDomCharacterData &)\n", false, &_init_f_operator_eq__2969, &_call_f_operator_eq__2969); methods += new qt_gsi::GenericMethod ("replaceData", "@brief Method void QDomCharacterData::replaceData(unsigned long int offset, unsigned long int count, const QString &arg)\n", false, &_init_f_replaceData_6505, &_call_f_replaceData_6505); methods += new qt_gsi::GenericMethod ("setData|data=", "@brief Method void QDomCharacterData::setData(const QString &)\n", false, &_init_f_setData_2025, &_call_f_setData_2025); methods += new qt_gsi::GenericMethod ("substringData", "@brief Method QString QDomCharacterData::substringData(unsigned long int offset, unsigned long int count)\n", false, &_init_f_substringData_4588, &_call_f_substringData_4588); diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc index 8b1ed0744..b78d94aa0 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomComment_2405 (const qt_gsi::GenericStaticMethod * /*d } -// () const +// QDomNode::NodeType QDomComment::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomComment &) +// QDomComment &QDomComment::operator=(const QDomComment &) static void _init_f_operator_eq__2405 (qt_gsi::GenericMethod *decl) @@ -128,8 +128,8 @@ static gsi::Methods methods_QDomComment () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomComment::QDomComment()\nThis method creates an object of class QDomComment.", &_init_ctor_QDomComment_0, &_call_ctor_QDomComment_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomComment::QDomComment(const QDomComment &x)\nThis method creates an object of class QDomComment.", &_init_ctor_QDomComment_2405, &_call_ctor_QDomComment_2405); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomComment &)\n", false, &_init_f_operator_eq__2405, &_call_f_operator_eq__2405); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomComment::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomComment &QDomComment::operator=(const QDomComment &)\n", false, &_init_f_operator_eq__2405, &_call_f_operator_eq__2405); return methods; } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc index 4b6890ae2..6db140935 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc @@ -450,7 +450,7 @@ static void _call_f_importNode_2828 (const qt_gsi::GenericMethod * /*decl*/, voi } -// () const +// QDomNode::NodeType QDomDocument::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -465,7 +465,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomDocument &) +// QDomDocument &QDomDocument::operator=(const QDomDocument &) static void _init_f_operator_eq__2513 (qt_gsi::GenericMethod *decl) @@ -729,8 +729,8 @@ static gsi::Methods methods_QDomDocument () { methods += new qt_gsi::GenericMethod ("elementsByTagNameNS", "@brief Method QDomNodeList QDomDocument::elementsByTagNameNS(const QString &nsURI, const QString &localName)\n", false, &_init_f_elementsByTagNameNS_3942, &_call_f_elementsByTagNameNS_3942); methods += new qt_gsi::GenericMethod ("implementation", "@brief Method QDomImplementation QDomDocument::implementation()\n", true, &_init_f_implementation_c0, &_call_f_implementation_c0); methods += new qt_gsi::GenericMethod ("importNode", "@brief Method QDomNode QDomDocument::importNode(const QDomNode &importedNode, bool deep)\n", false, &_init_f_importNode_2828, &_call_f_importNode_2828); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomDocument &)\n", false, &_init_f_operator_eq__2513, &_call_f_operator_eq__2513); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomDocument::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomDocument &QDomDocument::operator=(const QDomDocument &)\n", false, &_init_f_operator_eq__2513, &_call_f_operator_eq__2513); methods += new qt_gsi::GenericMethod ("setContent", "@brief Method bool QDomDocument::setContent(const QString &text, bool namespaceProcessing, QString *errorMsg, int *errorLine, int *errorColumn)\n", false, &_init_f_setContent_5697, &_call_f_setContent_5697); methods += new qt_gsi::GenericMethod ("setContent", "@brief Method bool QDomDocument::setContent(QIODevice *dev, bool namespaceProcessing, QString *errorMsg, int *errorLine, int *errorColumn)\n", false, &_init_f_setContent_5119, &_call_f_setContent_5119); methods += new qt_gsi::GenericMethod ("setContent", "@brief Method bool QDomDocument::setContent(QXmlInputSource *source, bool namespaceProcessing, QString *errorMsg, int *errorLine, int *errorColumn)\n", false, &_init_f_setContent_5833, &_call_f_setContent_5833); diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc index 9ec827327..09043e0a9 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomDocumentFragment_3333 (const qt_gsi::GenericStaticMet } -// () const +// QDomNode::NodeType QDomDocumentFragment::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomDocumentFragment &) +// QDomDocumentFragment &QDomDocumentFragment::operator=(const QDomDocumentFragment &) static void _init_f_operator_eq__3333 (qt_gsi::GenericMethod *decl) @@ -128,8 +128,8 @@ static gsi::Methods methods_QDomDocumentFragment () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomDocumentFragment::QDomDocumentFragment()\nThis method creates an object of class QDomDocumentFragment.", &_init_ctor_QDomDocumentFragment_0, &_call_ctor_QDomDocumentFragment_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomDocumentFragment::QDomDocumentFragment(const QDomDocumentFragment &x)\nThis method creates an object of class QDomDocumentFragment.", &_init_ctor_QDomDocumentFragment_3333, &_call_ctor_QDomDocumentFragment_3333); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomDocumentFragment &)\n", false, &_init_f_operator_eq__3333, &_call_f_operator_eq__3333); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomDocumentFragment::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomDocumentFragment &QDomDocumentFragment::operator=(const QDomDocumentFragment &)\n", false, &_init_f_operator_eq__3333, &_call_f_operator_eq__3333); return methods; } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc index 313fbc510..68d4967c4 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc @@ -131,7 +131,7 @@ static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QDomNode::NodeType QDomDocumentType::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -161,7 +161,7 @@ static void _call_f_notations_c0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QDomDocumentType &) +// QDomDocumentType &QDomDocumentType::operator=(const QDomDocumentType &) static void _init_f_operator_eq__2931 (qt_gsi::GenericMethod *decl) @@ -221,9 +221,9 @@ static gsi::Methods methods_QDomDocumentType () { methods += new qt_gsi::GenericMethod ("entities", "@brief Method QDomNamedNodeMap QDomDocumentType::entities()\n", true, &_init_f_entities_c0, &_call_f_entities_c0); methods += new qt_gsi::GenericMethod ("internalSubset", "@brief Method QString QDomDocumentType::internalSubset()\n", true, &_init_f_internalSubset_c0, &_call_f_internalSubset_c0); methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QDomDocumentType::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomDocumentType::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); methods += new qt_gsi::GenericMethod ("notations", "@brief Method QDomNamedNodeMap QDomDocumentType::notations()\n", true, &_init_f_notations_c0, &_call_f_notations_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomDocumentType &)\n", false, &_init_f_operator_eq__2931, &_call_f_operator_eq__2931); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomDocumentType &QDomDocumentType::operator=(const QDomDocumentType &)\n", false, &_init_f_operator_eq__2931, &_call_f_operator_eq__2931); methods += new qt_gsi::GenericMethod ("publicId", "@brief Method QString QDomDocumentType::publicId()\n", true, &_init_f_publicId_c0, &_call_f_publicId_c0); methods += new qt_gsi::GenericMethod ("systemId", "@brief Method QString QDomDocumentType::systemId()\n", true, &_init_f_systemId_c0, &_call_f_systemId_c0); return methods; diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc index 010063eab..825eb0c95 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc @@ -174,7 +174,7 @@ static void _call_f_attributeNodeNS_3942 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QDomNamedNodeMap QDomElement::attributes() static void _init_f_attributes_c0 (qt_gsi::GenericMethod *decl) @@ -271,7 +271,7 @@ static void _call_f_hasAttributeNS_c3942 (const qt_gsi::GenericMethod * /*decl*/ } -// () const +// QDomNode::NodeType QDomElement::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -286,7 +286,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomElement &) +// QDomElement &QDomElement::operator=(const QDomElement &) static void _init_f_operator_eq__2396 (qt_gsi::GenericMethod *decl) @@ -784,13 +784,13 @@ static gsi::Methods methods_QDomElement () { methods += new qt_gsi::GenericMethod ("attributeNS", "@brief Method QString QDomElement::attributeNS(const QString nsURI, const QString &localName, const QString &defValue)\n", true, &_init_f_attributeNS_c5677, &_call_f_attributeNS_c5677); methods += new qt_gsi::GenericMethod ("attributeNode", "@brief Method QDomAttr QDomElement::attributeNode(const QString &name)\n", false, &_init_f_attributeNode_2025, &_call_f_attributeNode_2025); methods += new qt_gsi::GenericMethod ("attributeNodeNS", "@brief Method QDomAttr QDomElement::attributeNodeNS(const QString &nsURI, const QString &localName)\n", false, &_init_f_attributeNodeNS_3942, &_call_f_attributeNodeNS_3942); - methods += new qt_gsi::GenericMethod ("attributes", "@brief Method () const\n", true, &_init_f_attributes_c0, &_call_f_attributes_c0); + methods += new qt_gsi::GenericMethod ("attributes", "@brief Method QDomNamedNodeMap QDomElement::attributes()\n", true, &_init_f_attributes_c0, &_call_f_attributes_c0); methods += new qt_gsi::GenericMethod ("elementsByTagName", "@brief Method QDomNodeList QDomElement::elementsByTagName(const QString &tagname)\n", true, &_init_f_elementsByTagName_c2025, &_call_f_elementsByTagName_c2025); methods += new qt_gsi::GenericMethod ("elementsByTagNameNS", "@brief Method QDomNodeList QDomElement::elementsByTagNameNS(const QString &nsURI, const QString &localName)\n", true, &_init_f_elementsByTagNameNS_c3942, &_call_f_elementsByTagNameNS_c3942); methods += new qt_gsi::GenericMethod ("hasAttribute", "@brief Method bool QDomElement::hasAttribute(const QString &name)\n", true, &_init_f_hasAttribute_c2025, &_call_f_hasAttribute_c2025); methods += new qt_gsi::GenericMethod ("hasAttributeNS", "@brief Method bool QDomElement::hasAttributeNS(const QString &nsURI, const QString &localName)\n", true, &_init_f_hasAttributeNS_c3942, &_call_f_hasAttributeNS_c3942); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomElement &)\n", false, &_init_f_operator_eq__2396, &_call_f_operator_eq__2396); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomElement::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomElement &QDomElement::operator=(const QDomElement &)\n", false, &_init_f_operator_eq__2396, &_call_f_operator_eq__2396); methods += new qt_gsi::GenericMethod ("removeAttribute", "@brief Method void QDomElement::removeAttribute(const QString &name)\n", false, &_init_f_removeAttribute_2025, &_call_f_removeAttribute_2025); methods += new qt_gsi::GenericMethod ("removeAttributeNS", "@brief Method void QDomElement::removeAttributeNS(const QString &nsURI, const QString &localName)\n", false, &_init_f_removeAttributeNS_3942, &_call_f_removeAttributeNS_3942); methods += new qt_gsi::GenericMethod ("removeAttributeNode", "@brief Method QDomAttr QDomElement::removeAttributeNode(const QDomAttr &oldAttr)\n", false, &_init_f_removeAttributeNode_2093, &_call_f_removeAttributeNode_2093); diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc index 2ee000d49..e1fbbb9cf 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomEntity_2319 (const qt_gsi::GenericStaticMethod * /*de } -// () const +// QDomNode::NodeType QDomEntity::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -116,7 +116,7 @@ static void _call_f_notationName_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QDomEntity &) +// QDomEntity &QDomEntity::operator=(const QDomEntity &) static void _init_f_operator_eq__2319 (qt_gsi::GenericMethod *decl) @@ -173,9 +173,9 @@ static gsi::Methods methods_QDomEntity () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomEntity::QDomEntity()\nThis method creates an object of class QDomEntity.", &_init_ctor_QDomEntity_0, &_call_ctor_QDomEntity_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomEntity::QDomEntity(const QDomEntity &x)\nThis method creates an object of class QDomEntity.", &_init_ctor_QDomEntity_2319, &_call_ctor_QDomEntity_2319); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomEntity::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); methods += new qt_gsi::GenericMethod ("notationName", "@brief Method QString QDomEntity::notationName()\n", true, &_init_f_notationName_c0, &_call_f_notationName_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomEntity &)\n", false, &_init_f_operator_eq__2319, &_call_f_operator_eq__2319); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomEntity &QDomEntity::operator=(const QDomEntity &)\n", false, &_init_f_operator_eq__2319, &_call_f_operator_eq__2319); methods += new qt_gsi::GenericMethod ("publicId", "@brief Method QString QDomEntity::publicId()\n", true, &_init_f_publicId_c0, &_call_f_publicId_c0); methods += new qt_gsi::GenericMethod ("systemId", "@brief Method QString QDomEntity::systemId()\n", true, &_init_f_systemId_c0, &_call_f_systemId_c0); return methods; diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc index a5a174943..2659cfbcf 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomEntityReference_3230 (const qt_gsi::GenericStaticMeth } -// () const +// QDomNode::NodeType QDomEntityReference::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomEntityReference &) +// QDomEntityReference &QDomEntityReference::operator=(const QDomEntityReference &) static void _init_f_operator_eq__3230 (qt_gsi::GenericMethod *decl) @@ -128,8 +128,8 @@ static gsi::Methods methods_QDomEntityReference () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomEntityReference::QDomEntityReference()\nThis method creates an object of class QDomEntityReference.", &_init_ctor_QDomEntityReference_0, &_call_ctor_QDomEntityReference_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomEntityReference::QDomEntityReference(const QDomEntityReference &x)\nThis method creates an object of class QDomEntityReference.", &_init_ctor_QDomEntityReference_3230, &_call_ctor_QDomEntityReference_3230); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomEntityReference &)\n", false, &_init_f_operator_eq__3230, &_call_f_operator_eq__3230); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomEntityReference::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomEntityReference &QDomEntityReference::operator=(const QDomEntityReference &)\n", false, &_init_f_operator_eq__3230, &_call_f_operator_eq__3230); return methods; } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc index cf9d0e01c..e5350d0f5 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomNotation_2526 (const qt_gsi::GenericStaticMethod * /* } -// () const +// QDomNode::NodeType QDomNotation::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomNotation &) +// QDomNotation &QDomNotation::operator=(const QDomNotation &) static void _init_f_operator_eq__2526 (qt_gsi::GenericMethod *decl) @@ -158,8 +158,8 @@ static gsi::Methods methods_QDomNotation () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomNotation::QDomNotation()\nThis method creates an object of class QDomNotation.", &_init_ctor_QDomNotation_0, &_call_ctor_QDomNotation_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomNotation::QDomNotation(const QDomNotation &x)\nThis method creates an object of class QDomNotation.", &_init_ctor_QDomNotation_2526, &_call_ctor_QDomNotation_2526); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomNotation &)\n", false, &_init_f_operator_eq__2526, &_call_f_operator_eq__2526); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomNotation::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomNotation &QDomNotation::operator=(const QDomNotation &)\n", false, &_init_f_operator_eq__2526, &_call_f_operator_eq__2526); methods += new qt_gsi::GenericMethod ("publicId", "@brief Method QString QDomNotation::publicId()\n", true, &_init_f_publicId_c0, &_call_f_publicId_c0); methods += new qt_gsi::GenericMethod ("systemId", "@brief Method QString QDomNotation::systemId()\n", true, &_init_f_systemId_c0, &_call_f_systemId_c0); return methods; diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc index 4dcd19ed0..342a4e7cc 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc @@ -101,7 +101,7 @@ static void _call_f_data_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () const +// QDomNode::NodeType QDomProcessingInstruction::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -116,7 +116,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomProcessingInstruction &) +// QDomProcessingInstruction &QDomProcessingInstruction::operator=(const QDomProcessingInstruction &) static void _init_f_operator_eq__3921 (qt_gsi::GenericMethod *decl) @@ -179,8 +179,8 @@ static gsi::Methods methods_QDomProcessingInstruction () { methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomProcessingInstruction::QDomProcessingInstruction()\nThis method creates an object of class QDomProcessingInstruction.", &_init_ctor_QDomProcessingInstruction_0, &_call_ctor_QDomProcessingInstruction_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomProcessingInstruction::QDomProcessingInstruction(const QDomProcessingInstruction &x)\nThis method creates an object of class QDomProcessingInstruction.", &_init_ctor_QDomProcessingInstruction_3921, &_call_ctor_QDomProcessingInstruction_3921); methods += new qt_gsi::GenericMethod (":data", "@brief Method QString QDomProcessingInstruction::data()\n", true, &_init_f_data_c0, &_call_f_data_c0); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomProcessingInstruction &)\n", false, &_init_f_operator_eq__3921, &_call_f_operator_eq__3921); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomProcessingInstruction::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomProcessingInstruction &QDomProcessingInstruction::operator=(const QDomProcessingInstruction &)\n", false, &_init_f_operator_eq__3921, &_call_f_operator_eq__3921); methods += new qt_gsi::GenericMethod ("setData|data=", "@brief Method void QDomProcessingInstruction::setData(const QString &d)\n", false, &_init_f_setData_2025, &_call_f_setData_2025); methods += new qt_gsi::GenericMethod ("target", "@brief Method QString QDomProcessingInstruction::target()\n", true, &_init_f_target_c0, &_call_f_target_c0); return methods; diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc index 328843540..0cc0bfa51 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc @@ -86,7 +86,7 @@ static void _call_ctor_QDomText_2103 (const qt_gsi::GenericStaticMethod * /*decl } -// () const +// QDomNode::NodeType QDomText::nodeType() static void _init_f_nodeType_c0 (qt_gsi::GenericMethod *decl) @@ -101,7 +101,7 @@ static void _call_f_nodeType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QDomText &) +// QDomText &QDomText::operator=(const QDomText &) static void _init_f_operator_eq__2103 (qt_gsi::GenericMethod *decl) @@ -147,8 +147,8 @@ static gsi::Methods methods_QDomText () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomText::QDomText()\nThis method creates an object of class QDomText.", &_init_ctor_QDomText_0, &_call_ctor_QDomText_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDomText::QDomText(const QDomText &x)\nThis method creates an object of class QDomText.", &_init_ctor_QDomText_2103, &_call_ctor_QDomText_2103); - methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method () const\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QDomText &)\n", false, &_init_f_operator_eq__2103, &_call_f_operator_eq__2103); + methods += new qt_gsi::GenericMethod ("nodeType", "@brief Method QDomNode::NodeType QDomText::nodeType()\n", true, &_init_f_nodeType_c0, &_call_f_nodeType_c0); + methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDomText &QDomText::operator=(const QDomText &)\n", false, &_init_f_operator_eq__2103, &_call_f_operator_eq__2103); methods += new qt_gsi::GenericMethod ("splitText", "@brief Method QDomText QDomText::splitText(int offset)\n", false, &_init_f_splitText_767, &_call_f_splitText_767); return methods; } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc index 7c21839c9..8f0f6158b 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc @@ -39,7 +39,7 @@ // ----------------------------------------------------------------------- // class QXmlDefaultHandler -// (const QString &, const QString &, const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::attributeDecl(const QString &eName, const QString &aName, const QString &type, const QString &valueDefault, const QString &value) static void _init_f_attributeDecl_9693 (qt_gsi::GenericMethod *decl) @@ -70,7 +70,7 @@ static void _call_f_attributeDecl_9693 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QString &) +// bool QXmlDefaultHandler::characters(const QString &ch) static void _init_f_characters_2025 (qt_gsi::GenericMethod *decl) @@ -89,7 +89,7 @@ static void _call_f_characters_2025 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &) +// bool QXmlDefaultHandler::comment(const QString &ch) static void _init_f_comment_2025 (qt_gsi::GenericMethod *decl) @@ -108,7 +108,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () +// bool QXmlDefaultHandler::endCDATA() static void _init_f_endCDATA_0 (qt_gsi::GenericMethod *decl) @@ -123,7 +123,7 @@ static void _call_f_endCDATA_0 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () +// bool QXmlDefaultHandler::endDTD() static void _init_f_endDTD_0 (qt_gsi::GenericMethod *decl) @@ -138,7 +138,7 @@ static void _call_f_endDTD_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// () +// bool QXmlDefaultHandler::endDocument() static void _init_f_endDocument_0 (qt_gsi::GenericMethod *decl) @@ -153,7 +153,7 @@ static void _call_f_endDocument_0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::endElement(const QString &namespaceURI, const QString &localName, const QString &qName) static void _init_f_endElement_5859 (qt_gsi::GenericMethod *decl) @@ -178,7 +178,7 @@ static void _call_f_endElement_5859 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &) +// bool QXmlDefaultHandler::endEntity(const QString &name) static void _init_f_endEntity_2025 (qt_gsi::GenericMethod *decl) @@ -197,7 +197,7 @@ static void _call_f_endEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) +// bool QXmlDefaultHandler::endPrefixMapping(const QString &prefix) static void _init_f_endPrefixMapping_2025 (qt_gsi::GenericMethod *decl) @@ -216,7 +216,7 @@ static void _call_f_endPrefixMapping_2025 (const qt_gsi::GenericMethod * /*decl* } -// (const QXmlParseException &) +// bool QXmlDefaultHandler::error(const QXmlParseException &exception) static void _init_f_error_3149 (qt_gsi::GenericMethod *decl) @@ -235,7 +235,7 @@ static void _call_f_error_3149 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// () const +// QString QXmlDefaultHandler::errorString() static void _init_f_errorString_c0 (qt_gsi::GenericMethod *decl) @@ -250,7 +250,7 @@ static void _call_f_errorString_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::externalEntityDecl(const QString &name, const QString &publicId, const QString &systemId) static void _init_f_externalEntityDecl_5859 (qt_gsi::GenericMethod *decl) @@ -275,7 +275,7 @@ static void _call_f_externalEntityDecl_5859 (const qt_gsi::GenericMethod * /*dec } -// (const QXmlParseException &) +// bool QXmlDefaultHandler::fatalError(const QXmlParseException &exception) static void _init_f_fatalError_3149 (qt_gsi::GenericMethod *decl) @@ -294,7 +294,7 @@ static void _call_f_fatalError_3149 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &) +// bool QXmlDefaultHandler::ignorableWhitespace(const QString &ch) static void _init_f_ignorableWhitespace_2025 (qt_gsi::GenericMethod *decl) @@ -313,7 +313,7 @@ static void _call_f_ignorableWhitespace_2025 (const qt_gsi::GenericMethod * /*de } -// (const QString &, const QString &) +// bool QXmlDefaultHandler::internalEntityDecl(const QString &name, const QString &value) static void _init_f_internalEntityDecl_3942 (qt_gsi::GenericMethod *decl) @@ -335,7 +335,7 @@ static void _call_f_internalEntityDecl_3942 (const qt_gsi::GenericMethod * /*dec } -// (const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::notationDecl(const QString &name, const QString &publicId, const QString &systemId) static void _init_f_notationDecl_5859 (qt_gsi::GenericMethod *decl) @@ -360,7 +360,7 @@ static void _call_f_notationDecl_5859 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QString &, const QString &) +// bool QXmlDefaultHandler::processingInstruction(const QString &target, const QString &data) static void _init_f_processingInstruction_3942 (qt_gsi::GenericMethod *decl) @@ -382,7 +382,7 @@ static void _call_f_processingInstruction_3942 (const qt_gsi::GenericMethod * /* } -// (QXmlLocator *) +// void QXmlDefaultHandler::setDocumentLocator(QXmlLocator *locator) static void _init_f_setDocumentLocator_1732 (qt_gsi::GenericMethod *decl) @@ -402,7 +402,7 @@ static void _call_f_setDocumentLocator_1732 (const qt_gsi::GenericMethod * /*dec } -// (const QString &) +// bool QXmlDefaultHandler::skippedEntity(const QString &name) static void _init_f_skippedEntity_2025 (qt_gsi::GenericMethod *decl) @@ -421,7 +421,7 @@ static void _call_f_skippedEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, } -// () +// bool QXmlDefaultHandler::startCDATA() static void _init_f_startCDATA_0 (qt_gsi::GenericMethod *decl) @@ -436,7 +436,7 @@ static void _call_f_startCDATA_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// (const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::startDTD(const QString &name, const QString &publicId, const QString &systemId) static void _init_f_startDTD_5859 (qt_gsi::GenericMethod *decl) @@ -461,7 +461,7 @@ static void _call_f_startDTD_5859 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// bool QXmlDefaultHandler::startDocument() static void _init_f_startDocument_0 (qt_gsi::GenericMethod *decl) @@ -476,7 +476,7 @@ static void _call_f_startDocument_0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &, const QString &, const QString &, const QXmlAttributes &) +// bool QXmlDefaultHandler::startElement(const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &atts) static void _init_f_startElement_8513 (qt_gsi::GenericMethod *decl) @@ -504,7 +504,7 @@ static void _call_f_startElement_8513 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QString &) +// bool QXmlDefaultHandler::startEntity(const QString &name) static void _init_f_startEntity_2025 (qt_gsi::GenericMethod *decl) @@ -523,7 +523,7 @@ static void _call_f_startEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QString &, const QString &) +// bool QXmlDefaultHandler::startPrefixMapping(const QString &prefix, const QString &uri) static void _init_f_startPrefixMapping_3942 (qt_gsi::GenericMethod *decl) @@ -545,7 +545,7 @@ static void _call_f_startPrefixMapping_3942 (const qt_gsi::GenericMethod * /*dec } -// (const QString &, const QString &, const QString &, const QString &) +// bool QXmlDefaultHandler::unparsedEntityDecl(const QString &name, const QString &publicId, const QString &systemId, const QString ¬ationName) static void _init_f_unparsedEntityDecl_7776 (qt_gsi::GenericMethod *decl) @@ -573,7 +573,7 @@ static void _call_f_unparsedEntityDecl_7776 (const qt_gsi::GenericMethod * /*dec } -// (const QXmlParseException &) +// bool QXmlDefaultHandler::warning(const QXmlParseException &exception) static void _init_f_warning_3149 (qt_gsi::GenericMethod *decl) @@ -730,33 +730,33 @@ namespace gsi static gsi::Methods methods_QXmlDefaultHandler () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("attributeDecl", "@brief Method (const QString &, const QString &, const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlDeclHandler::attributeDecl", false, &_init_f_attributeDecl_9693, &_call_f_attributeDecl_9693); - methods += new qt_gsi::GenericMethod ("characters", "@brief Method (const QString &)\nThis is a reimplementation of QXmlContentHandler::characters", false, &_init_f_characters_2025, &_call_f_characters_2025); - methods += new qt_gsi::GenericMethod ("comment", "@brief Method (const QString &)\nThis is a reimplementation of QXmlLexicalHandler::comment", false, &_init_f_comment_2025, &_call_f_comment_2025); - methods += new qt_gsi::GenericMethod ("endCDATA", "@brief Method ()\nThis is a reimplementation of QXmlLexicalHandler::endCDATA", false, &_init_f_endCDATA_0, &_call_f_endCDATA_0); - methods += new qt_gsi::GenericMethod ("endDTD", "@brief Method ()\nThis is a reimplementation of QXmlLexicalHandler::endDTD", false, &_init_f_endDTD_0, &_call_f_endDTD_0); - methods += new qt_gsi::GenericMethod ("endDocument", "@brief Method ()\nThis is a reimplementation of QXmlContentHandler::endDocument", false, &_init_f_endDocument_0, &_call_f_endDocument_0); - methods += new qt_gsi::GenericMethod ("endElement", "@brief Method (const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlContentHandler::endElement", false, &_init_f_endElement_5859, &_call_f_endElement_5859); - methods += new qt_gsi::GenericMethod ("endEntity", "@brief Method (const QString &)\nThis is a reimplementation of QXmlLexicalHandler::endEntity", false, &_init_f_endEntity_2025, &_call_f_endEntity_2025); - methods += new qt_gsi::GenericMethod ("endPrefixMapping", "@brief Method (const QString &)\nThis is a reimplementation of QXmlContentHandler::endPrefixMapping", false, &_init_f_endPrefixMapping_2025, &_call_f_endPrefixMapping_2025); - methods += new qt_gsi::GenericMethod ("error", "@brief Method (const QXmlParseException &)\nThis is a reimplementation of QXmlErrorHandler::error", false, &_init_f_error_3149, &_call_f_error_3149); - methods += new qt_gsi::GenericMethod ("errorString", "@brief Method () const\nThis is a reimplementation of QXmlContentHandler::errorString", true, &_init_f_errorString_c0, &_call_f_errorString_c0); - methods += new qt_gsi::GenericMethod ("externalEntityDecl", "@brief Method (const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlDeclHandler::externalEntityDecl", false, &_init_f_externalEntityDecl_5859, &_call_f_externalEntityDecl_5859); - methods += new qt_gsi::GenericMethod ("fatalError", "@brief Method (const QXmlParseException &)\nThis is a reimplementation of QXmlErrorHandler::fatalError", false, &_init_f_fatalError_3149, &_call_f_fatalError_3149); - methods += new qt_gsi::GenericMethod ("ignorableWhitespace", "@brief Method (const QString &)\nThis is a reimplementation of QXmlContentHandler::ignorableWhitespace", false, &_init_f_ignorableWhitespace_2025, &_call_f_ignorableWhitespace_2025); - methods += new qt_gsi::GenericMethod ("internalEntityDecl", "@brief Method (const QString &, const QString &)\nThis is a reimplementation of QXmlDeclHandler::internalEntityDecl", false, &_init_f_internalEntityDecl_3942, &_call_f_internalEntityDecl_3942); - methods += new qt_gsi::GenericMethod ("notationDecl", "@brief Method (const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlDTDHandler::notationDecl", false, &_init_f_notationDecl_5859, &_call_f_notationDecl_5859); - methods += new qt_gsi::GenericMethod ("processingInstruction", "@brief Method (const QString &, const QString &)\nThis is a reimplementation of QXmlContentHandler::processingInstruction", false, &_init_f_processingInstruction_3942, &_call_f_processingInstruction_3942); - methods += new qt_gsi::GenericMethod ("setDocumentLocator", "@brief Method (QXmlLocator *)\nThis is a reimplementation of QXmlContentHandler::setDocumentLocator", false, &_init_f_setDocumentLocator_1732, &_call_f_setDocumentLocator_1732); - methods += new qt_gsi::GenericMethod ("skippedEntity", "@brief Method (const QString &)\nThis is a reimplementation of QXmlContentHandler::skippedEntity", false, &_init_f_skippedEntity_2025, &_call_f_skippedEntity_2025); - methods += new qt_gsi::GenericMethod ("startCDATA", "@brief Method ()\nThis is a reimplementation of QXmlLexicalHandler::startCDATA", false, &_init_f_startCDATA_0, &_call_f_startCDATA_0); - methods += new qt_gsi::GenericMethod ("startDTD", "@brief Method (const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlLexicalHandler::startDTD", false, &_init_f_startDTD_5859, &_call_f_startDTD_5859); - methods += new qt_gsi::GenericMethod ("startDocument", "@brief Method ()\nThis is a reimplementation of QXmlContentHandler::startDocument", false, &_init_f_startDocument_0, &_call_f_startDocument_0); - methods += new qt_gsi::GenericMethod ("startElement", "@brief Method (const QString &, const QString &, const QString &, const QXmlAttributes &)\nThis is a reimplementation of QXmlContentHandler::startElement", false, &_init_f_startElement_8513, &_call_f_startElement_8513); - methods += new qt_gsi::GenericMethod ("startEntity", "@brief Method (const QString &)\nThis is a reimplementation of QXmlLexicalHandler::startEntity", false, &_init_f_startEntity_2025, &_call_f_startEntity_2025); - methods += new qt_gsi::GenericMethod ("startPrefixMapping", "@brief Method (const QString &, const QString &)\nThis is a reimplementation of QXmlContentHandler::startPrefixMapping", false, &_init_f_startPrefixMapping_3942, &_call_f_startPrefixMapping_3942); - methods += new qt_gsi::GenericMethod ("unparsedEntityDecl", "@brief Method (const QString &, const QString &, const QString &, const QString &)\nThis is a reimplementation of QXmlDTDHandler::unparsedEntityDecl", false, &_init_f_unparsedEntityDecl_7776, &_call_f_unparsedEntityDecl_7776); - methods += new qt_gsi::GenericMethod ("warning", "@brief Method (const QXmlParseException &)\nThis is a reimplementation of QXmlErrorHandler::warning", false, &_init_f_warning_3149, &_call_f_warning_3149); + methods += new qt_gsi::GenericMethod ("attributeDecl", "@brief Method bool QXmlDefaultHandler::attributeDecl(const QString &eName, const QString &aName, const QString &type, const QString &valueDefault, const QString &value)\nThis is a reimplementation of QXmlDeclHandler::attributeDecl", false, &_init_f_attributeDecl_9693, &_call_f_attributeDecl_9693); + methods += new qt_gsi::GenericMethod ("characters", "@brief Method bool QXmlDefaultHandler::characters(const QString &ch)\nThis is a reimplementation of QXmlContentHandler::characters", false, &_init_f_characters_2025, &_call_f_characters_2025); + methods += new qt_gsi::GenericMethod ("comment", "@brief Method bool QXmlDefaultHandler::comment(const QString &ch)\nThis is a reimplementation of QXmlLexicalHandler::comment", false, &_init_f_comment_2025, &_call_f_comment_2025); + methods += new qt_gsi::GenericMethod ("endCDATA", "@brief Method bool QXmlDefaultHandler::endCDATA()\nThis is a reimplementation of QXmlLexicalHandler::endCDATA", false, &_init_f_endCDATA_0, &_call_f_endCDATA_0); + methods += new qt_gsi::GenericMethod ("endDTD", "@brief Method bool QXmlDefaultHandler::endDTD()\nThis is a reimplementation of QXmlLexicalHandler::endDTD", false, &_init_f_endDTD_0, &_call_f_endDTD_0); + methods += new qt_gsi::GenericMethod ("endDocument", "@brief Method bool QXmlDefaultHandler::endDocument()\nThis is a reimplementation of QXmlContentHandler::endDocument", false, &_init_f_endDocument_0, &_call_f_endDocument_0); + methods += new qt_gsi::GenericMethod ("endElement", "@brief Method bool QXmlDefaultHandler::endElement(const QString &namespaceURI, const QString &localName, const QString &qName)\nThis is a reimplementation of QXmlContentHandler::endElement", false, &_init_f_endElement_5859, &_call_f_endElement_5859); + methods += new qt_gsi::GenericMethod ("endEntity", "@brief Method bool QXmlDefaultHandler::endEntity(const QString &name)\nThis is a reimplementation of QXmlLexicalHandler::endEntity", false, &_init_f_endEntity_2025, &_call_f_endEntity_2025); + methods += new qt_gsi::GenericMethod ("endPrefixMapping", "@brief Method bool QXmlDefaultHandler::endPrefixMapping(const QString &prefix)\nThis is a reimplementation of QXmlContentHandler::endPrefixMapping", false, &_init_f_endPrefixMapping_2025, &_call_f_endPrefixMapping_2025); + methods += new qt_gsi::GenericMethod ("error", "@brief Method bool QXmlDefaultHandler::error(const QXmlParseException &exception)\nThis is a reimplementation of QXmlErrorHandler::error", false, &_init_f_error_3149, &_call_f_error_3149); + methods += new qt_gsi::GenericMethod ("errorString", "@brief Method QString QXmlDefaultHandler::errorString()\nThis is a reimplementation of QXmlContentHandler::errorString", true, &_init_f_errorString_c0, &_call_f_errorString_c0); + methods += new qt_gsi::GenericMethod ("externalEntityDecl", "@brief Method bool QXmlDefaultHandler::externalEntityDecl(const QString &name, const QString &publicId, const QString &systemId)\nThis is a reimplementation of QXmlDeclHandler::externalEntityDecl", false, &_init_f_externalEntityDecl_5859, &_call_f_externalEntityDecl_5859); + methods += new qt_gsi::GenericMethod ("fatalError", "@brief Method bool QXmlDefaultHandler::fatalError(const QXmlParseException &exception)\nThis is a reimplementation of QXmlErrorHandler::fatalError", false, &_init_f_fatalError_3149, &_call_f_fatalError_3149); + methods += new qt_gsi::GenericMethod ("ignorableWhitespace", "@brief Method bool QXmlDefaultHandler::ignorableWhitespace(const QString &ch)\nThis is a reimplementation of QXmlContentHandler::ignorableWhitespace", false, &_init_f_ignorableWhitespace_2025, &_call_f_ignorableWhitespace_2025); + methods += new qt_gsi::GenericMethod ("internalEntityDecl", "@brief Method bool QXmlDefaultHandler::internalEntityDecl(const QString &name, const QString &value)\nThis is a reimplementation of QXmlDeclHandler::internalEntityDecl", false, &_init_f_internalEntityDecl_3942, &_call_f_internalEntityDecl_3942); + methods += new qt_gsi::GenericMethod ("notationDecl", "@brief Method bool QXmlDefaultHandler::notationDecl(const QString &name, const QString &publicId, const QString &systemId)\nThis is a reimplementation of QXmlDTDHandler::notationDecl", false, &_init_f_notationDecl_5859, &_call_f_notationDecl_5859); + methods += new qt_gsi::GenericMethod ("processingInstruction", "@brief Method bool QXmlDefaultHandler::processingInstruction(const QString &target, const QString &data)\nThis is a reimplementation of QXmlContentHandler::processingInstruction", false, &_init_f_processingInstruction_3942, &_call_f_processingInstruction_3942); + methods += new qt_gsi::GenericMethod ("setDocumentLocator", "@brief Method void QXmlDefaultHandler::setDocumentLocator(QXmlLocator *locator)\nThis is a reimplementation of QXmlContentHandler::setDocumentLocator", false, &_init_f_setDocumentLocator_1732, &_call_f_setDocumentLocator_1732); + methods += new qt_gsi::GenericMethod ("skippedEntity", "@brief Method bool QXmlDefaultHandler::skippedEntity(const QString &name)\nThis is a reimplementation of QXmlContentHandler::skippedEntity", false, &_init_f_skippedEntity_2025, &_call_f_skippedEntity_2025); + methods += new qt_gsi::GenericMethod ("startCDATA", "@brief Method bool QXmlDefaultHandler::startCDATA()\nThis is a reimplementation of QXmlLexicalHandler::startCDATA", false, &_init_f_startCDATA_0, &_call_f_startCDATA_0); + methods += new qt_gsi::GenericMethod ("startDTD", "@brief Method bool QXmlDefaultHandler::startDTD(const QString &name, const QString &publicId, const QString &systemId)\nThis is a reimplementation of QXmlLexicalHandler::startDTD", false, &_init_f_startDTD_5859, &_call_f_startDTD_5859); + methods += new qt_gsi::GenericMethod ("startDocument", "@brief Method bool QXmlDefaultHandler::startDocument()\nThis is a reimplementation of QXmlContentHandler::startDocument", false, &_init_f_startDocument_0, &_call_f_startDocument_0); + methods += new qt_gsi::GenericMethod ("startElement", "@brief Method bool QXmlDefaultHandler::startElement(const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &atts)\nThis is a reimplementation of QXmlContentHandler::startElement", false, &_init_f_startElement_8513, &_call_f_startElement_8513); + methods += new qt_gsi::GenericMethod ("startEntity", "@brief Method bool QXmlDefaultHandler::startEntity(const QString &name)\nThis is a reimplementation of QXmlLexicalHandler::startEntity", false, &_init_f_startEntity_2025, &_call_f_startEntity_2025); + methods += new qt_gsi::GenericMethod ("startPrefixMapping", "@brief Method bool QXmlDefaultHandler::startPrefixMapping(const QString &prefix, const QString &uri)\nThis is a reimplementation of QXmlContentHandler::startPrefixMapping", false, &_init_f_startPrefixMapping_3942, &_call_f_startPrefixMapping_3942); + methods += new qt_gsi::GenericMethod ("unparsedEntityDecl", "@brief Method bool QXmlDefaultHandler::unparsedEntityDecl(const QString &name, const QString &publicId, const QString &systemId, const QString ¬ationName)\nThis is a reimplementation of QXmlDTDHandler::unparsedEntityDecl", false, &_init_f_unparsedEntityDecl_7776, &_call_f_unparsedEntityDecl_7776); + methods += new qt_gsi::GenericMethod ("warning", "@brief Method bool QXmlDefaultHandler::warning(const QXmlParseException &exception)\nThis is a reimplementation of QXmlErrorHandler::warning", false, &_init_f_warning_3149, &_call_f_warning_3149); methods += new qt_gsi::GenericMethod ("asQXmlContentHandler", "@brief Delivers the base class interface QXmlContentHandler of QXmlDefaultHandler\nClass QXmlDefaultHandler is derived from multiple base classes. This method delivers the QXmlContentHandler base class aspect.", false, &_init_f_QXmlDefaultHandler_as_QXmlContentHandler, &_call_f_QXmlDefaultHandler_as_QXmlContentHandler); methods += new qt_gsi::GenericMethod ("asConstQXmlContentHandler", "@brief Delivers the base class interface QXmlContentHandler of QXmlDefaultHandler\nClass QXmlDefaultHandler is derived from multiple base classes. This method delivers the QXmlContentHandler base class aspect.\n\nUse this version if you have a const reference.", true, &_init_f_QXmlDefaultHandler_as_const_QXmlContentHandler, &_call_f_QXmlDefaultHandler_as_const_QXmlContentHandler); methods += new qt_gsi::GenericMethod ("asQXmlErrorHandler", "@brief Delivers the base class interface QXmlErrorHandler of QXmlDefaultHandler\nClass QXmlDefaultHandler is derived from multiple base classes. This method delivers the QXmlErrorHandler base class aspect.", false, &_init_f_QXmlDefaultHandler_as_QXmlErrorHandler, &_call_f_QXmlDefaultHandler_as_QXmlErrorHandler); diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc index 8771095eb..024d5f713 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc @@ -43,7 +43,7 @@ // ----------------------------------------------------------------------- // class QXmlSimpleReader -// () const +// QXmlDTDHandler *QXmlSimpleReader::DTDHandler() static void _init_f_DTDHandler_c0 (qt_gsi::GenericMethod *decl) @@ -58,7 +58,7 @@ static void _call_f_DTDHandler_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QXmlContentHandler *QXmlSimpleReader::contentHandler() static void _init_f_contentHandler_c0 (qt_gsi::GenericMethod *decl) @@ -73,7 +73,7 @@ static void _call_f_contentHandler_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QXmlDeclHandler *QXmlSimpleReader::declHandler() static void _init_f_declHandler_c0 (qt_gsi::GenericMethod *decl) @@ -88,7 +88,7 @@ static void _call_f_declHandler_c0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () const +// QXmlEntityResolver *QXmlSimpleReader::entityResolver() static void _init_f_entityResolver_c0 (qt_gsi::GenericMethod *decl) @@ -103,7 +103,7 @@ static void _call_f_entityResolver_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QXmlErrorHandler *QXmlSimpleReader::errorHandler() static void _init_f_errorHandler_c0 (qt_gsi::GenericMethod *decl) @@ -118,7 +118,7 @@ static void _call_f_errorHandler_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &, bool *) const +// bool QXmlSimpleReader::feature(const QString &name, bool *ok) static void _init_f_feature_c2967 (qt_gsi::GenericMethod *decl) @@ -140,7 +140,7 @@ static void _call_f_feature_c2967 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QString &) const +// bool QXmlSimpleReader::hasFeature(const QString &name) static void _init_f_hasFeature_c2025 (qt_gsi::GenericMethod *decl) @@ -159,7 +159,7 @@ static void _call_f_hasFeature_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QString &) const +// bool QXmlSimpleReader::hasProperty(const QString &name) static void _init_f_hasProperty_c2025 (qt_gsi::GenericMethod *decl) @@ -178,7 +178,7 @@ static void _call_f_hasProperty_c2025 (const qt_gsi::GenericMethod * /*decl*/, v } -// () const +// QXmlLexicalHandler *QXmlSimpleReader::lexicalHandler() static void _init_f_lexicalHandler_c0 (qt_gsi::GenericMethod *decl) @@ -193,7 +193,7 @@ static void _call_f_lexicalHandler_c0 (const qt_gsi::GenericMethod * /*decl*/, v } -// (const QXmlInputSource *) +// bool QXmlSimpleReader::parse(const QXmlInputSource *input) static void _init_f_parse_2856 (qt_gsi::GenericMethod *decl) @@ -212,7 +212,7 @@ static void _call_f_parse_2856 (const qt_gsi::GenericMethod * /*decl*/, void *cl } -// (const QXmlInputSource *, bool) +// bool QXmlSimpleReader::parse(const QXmlInputSource *input, bool incremental) static void _init_f_parse_3612 (qt_gsi::GenericMethod *decl) @@ -249,7 +249,7 @@ static void _call_f_parseContinue_0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &, bool *) const +// void *QXmlSimpleReader::property(const QString &name, bool *ok) static void _init_f_property_c2967 (qt_gsi::GenericMethod *decl) @@ -271,7 +271,7 @@ static void _call_f_property_c2967 (const qt_gsi::GenericMethod * /*decl*/, void } -// (QXmlContentHandler *) +// void QXmlSimpleReader::setContentHandler(QXmlContentHandler *handler) static void _init_f_setContentHandler_2441 (qt_gsi::GenericMethod *decl) @@ -291,7 +291,7 @@ static void _call_f_setContentHandler_2441 (const qt_gsi::GenericMethod * /*decl } -// (QXmlDTDHandler *) +// void QXmlSimpleReader::setDTDHandler(QXmlDTDHandler *handler) static void _init_f_setDTDHandler_1930 (qt_gsi::GenericMethod *decl) @@ -311,7 +311,7 @@ static void _call_f_setDTDHandler_1930 (const qt_gsi::GenericMethod * /*decl*/, } -// (QXmlDeclHandler *) +// void QXmlSimpleReader::setDeclHandler(QXmlDeclHandler *handler) static void _init_f_setDeclHandler_2086 (qt_gsi::GenericMethod *decl) @@ -331,7 +331,7 @@ static void _call_f_setDeclHandler_2086 (const qt_gsi::GenericMethod * /*decl*/, } -// (QXmlEntityResolver *) +// void QXmlSimpleReader::setEntityResolver(QXmlEntityResolver *handler) static void _init_f_setEntityResolver_2495 (qt_gsi::GenericMethod *decl) @@ -351,7 +351,7 @@ static void _call_f_setEntityResolver_2495 (const qt_gsi::GenericMethod * /*decl } -// (QXmlErrorHandler *) +// void QXmlSimpleReader::setErrorHandler(QXmlErrorHandler *handler) static void _init_f_setErrorHandler_2232 (qt_gsi::GenericMethod *decl) @@ -371,7 +371,7 @@ static void _call_f_setErrorHandler_2232 (const qt_gsi::GenericMethod * /*decl*/ } -// (const QString &, bool) +// void QXmlSimpleReader::setFeature(const QString &name, bool value) static void _init_f_setFeature_2781 (qt_gsi::GenericMethod *decl) @@ -394,7 +394,7 @@ static void _call_f_setFeature_2781 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (QXmlLexicalHandler *) +// void QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler *handler) static void _init_f_setLexicalHandler_2416 (qt_gsi::GenericMethod *decl) @@ -414,7 +414,7 @@ static void _call_f_setLexicalHandler_2416 (const qt_gsi::GenericMethod * /*decl } -// (const QString &, void *) +// void QXmlSimpleReader::setProperty(const QString &name, void *value) static void _init_f_setProperty_2973 (qt_gsi::GenericMethod *decl) @@ -442,27 +442,27 @@ namespace gsi static gsi::Methods methods_QXmlSimpleReader () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("DTDHandler", "@brief Method () const\nThis is a reimplementation of QXmlReader::DTDHandler", true, &_init_f_DTDHandler_c0, &_call_f_DTDHandler_c0); - methods += new qt_gsi::GenericMethod (":contentHandler", "@brief Method () const\nThis is a reimplementation of QXmlReader::contentHandler", true, &_init_f_contentHandler_c0, &_call_f_contentHandler_c0); - methods += new qt_gsi::GenericMethod (":declHandler", "@brief Method () const\nThis is a reimplementation of QXmlReader::declHandler", true, &_init_f_declHandler_c0, &_call_f_declHandler_c0); - methods += new qt_gsi::GenericMethod (":entityResolver", "@brief Method () const\nThis is a reimplementation of QXmlReader::entityResolver", true, &_init_f_entityResolver_c0, &_call_f_entityResolver_c0); - methods += new qt_gsi::GenericMethod (":errorHandler", "@brief Method () const\nThis is a reimplementation of QXmlReader::errorHandler", true, &_init_f_errorHandler_c0, &_call_f_errorHandler_c0); - methods += new qt_gsi::GenericMethod ("feature", "@brief Method (const QString &, bool *) const\nThis is a reimplementation of QXmlReader::feature", true, &_init_f_feature_c2967, &_call_f_feature_c2967); - methods += new qt_gsi::GenericMethod ("hasFeature", "@brief Method (const QString &) const\nThis is a reimplementation of QXmlReader::hasFeature", true, &_init_f_hasFeature_c2025, &_call_f_hasFeature_c2025); - methods += new qt_gsi::GenericMethod ("hasProperty", "@brief Method (const QString &) const\nThis is a reimplementation of QXmlReader::hasProperty", true, &_init_f_hasProperty_c2025, &_call_f_hasProperty_c2025); - methods += new qt_gsi::GenericMethod (":lexicalHandler", "@brief Method () const\nThis is a reimplementation of QXmlReader::lexicalHandler", true, &_init_f_lexicalHandler_c0, &_call_f_lexicalHandler_c0); - methods += new qt_gsi::GenericMethod ("parse", "@brief Method (const QXmlInputSource *)\nThis is a reimplementation of QXmlReader::parse", false, &_init_f_parse_2856, &_call_f_parse_2856); - methods += new qt_gsi::GenericMethod ("parse", "@brief Method (const QXmlInputSource *, bool)\n", false, &_init_f_parse_3612, &_call_f_parse_3612); + methods += new qt_gsi::GenericMethod ("DTDHandler", "@brief Method QXmlDTDHandler *QXmlSimpleReader::DTDHandler()\nThis is a reimplementation of QXmlReader::DTDHandler", true, &_init_f_DTDHandler_c0, &_call_f_DTDHandler_c0); + methods += new qt_gsi::GenericMethod (":contentHandler", "@brief Method QXmlContentHandler *QXmlSimpleReader::contentHandler()\nThis is a reimplementation of QXmlReader::contentHandler", true, &_init_f_contentHandler_c0, &_call_f_contentHandler_c0); + methods += new qt_gsi::GenericMethod (":declHandler", "@brief Method QXmlDeclHandler *QXmlSimpleReader::declHandler()\nThis is a reimplementation of QXmlReader::declHandler", true, &_init_f_declHandler_c0, &_call_f_declHandler_c0); + methods += new qt_gsi::GenericMethod (":entityResolver", "@brief Method QXmlEntityResolver *QXmlSimpleReader::entityResolver()\nThis is a reimplementation of QXmlReader::entityResolver", true, &_init_f_entityResolver_c0, &_call_f_entityResolver_c0); + methods += new qt_gsi::GenericMethod (":errorHandler", "@brief Method QXmlErrorHandler *QXmlSimpleReader::errorHandler()\nThis is a reimplementation of QXmlReader::errorHandler", true, &_init_f_errorHandler_c0, &_call_f_errorHandler_c0); + methods += new qt_gsi::GenericMethod ("feature", "@brief Method bool QXmlSimpleReader::feature(const QString &name, bool *ok)\nThis is a reimplementation of QXmlReader::feature", true, &_init_f_feature_c2967, &_call_f_feature_c2967); + methods += new qt_gsi::GenericMethod ("hasFeature", "@brief Method bool QXmlSimpleReader::hasFeature(const QString &name)\nThis is a reimplementation of QXmlReader::hasFeature", true, &_init_f_hasFeature_c2025, &_call_f_hasFeature_c2025); + methods += new qt_gsi::GenericMethod ("hasProperty", "@brief Method bool QXmlSimpleReader::hasProperty(const QString &name)\nThis is a reimplementation of QXmlReader::hasProperty", true, &_init_f_hasProperty_c2025, &_call_f_hasProperty_c2025); + methods += new qt_gsi::GenericMethod (":lexicalHandler", "@brief Method QXmlLexicalHandler *QXmlSimpleReader::lexicalHandler()\nThis is a reimplementation of QXmlReader::lexicalHandler", true, &_init_f_lexicalHandler_c0, &_call_f_lexicalHandler_c0); + methods += new qt_gsi::GenericMethod ("parse", "@brief Method bool QXmlSimpleReader::parse(const QXmlInputSource *input)\nThis is a reimplementation of QXmlReader::parse", false, &_init_f_parse_2856, &_call_f_parse_2856); + methods += new qt_gsi::GenericMethod ("parse", "@brief Method bool QXmlSimpleReader::parse(const QXmlInputSource *input, bool incremental)\n", false, &_init_f_parse_3612, &_call_f_parse_3612); methods += new qt_gsi::GenericMethod ("parseContinue", "@brief Method bool QXmlSimpleReader::parseContinue()\n", false, &_init_f_parseContinue_0, &_call_f_parseContinue_0); - methods += new qt_gsi::GenericMethod ("property", "@brief Method (const QString &, bool *) const\nThis is a reimplementation of QXmlReader::property", true, &_init_f_property_c2967, &_call_f_property_c2967); - methods += new qt_gsi::GenericMethod ("setContentHandler|contentHandler=", "@brief Method (QXmlContentHandler *)\nThis is a reimplementation of QXmlReader::setContentHandler", false, &_init_f_setContentHandler_2441, &_call_f_setContentHandler_2441); - methods += new qt_gsi::GenericMethod ("setDTDHandler", "@brief Method (QXmlDTDHandler *)\nThis is a reimplementation of QXmlReader::setDTDHandler", false, &_init_f_setDTDHandler_1930, &_call_f_setDTDHandler_1930); - methods += new qt_gsi::GenericMethod ("setDeclHandler|declHandler=", "@brief Method (QXmlDeclHandler *)\nThis is a reimplementation of QXmlReader::setDeclHandler", false, &_init_f_setDeclHandler_2086, &_call_f_setDeclHandler_2086); - methods += new qt_gsi::GenericMethod ("setEntityResolver|entityResolver=", "@brief Method (QXmlEntityResolver *)\nThis is a reimplementation of QXmlReader::setEntityResolver", false, &_init_f_setEntityResolver_2495, &_call_f_setEntityResolver_2495); - methods += new qt_gsi::GenericMethod ("setErrorHandler|errorHandler=", "@brief Method (QXmlErrorHandler *)\nThis is a reimplementation of QXmlReader::setErrorHandler", false, &_init_f_setErrorHandler_2232, &_call_f_setErrorHandler_2232); - methods += new qt_gsi::GenericMethod ("setFeature", "@brief Method (const QString &, bool)\nThis is a reimplementation of QXmlReader::setFeature", false, &_init_f_setFeature_2781, &_call_f_setFeature_2781); - methods += new qt_gsi::GenericMethod ("setLexicalHandler|lexicalHandler=", "@brief Method (QXmlLexicalHandler *)\nThis is a reimplementation of QXmlReader::setLexicalHandler", false, &_init_f_setLexicalHandler_2416, &_call_f_setLexicalHandler_2416); - methods += new qt_gsi::GenericMethod ("setProperty", "@brief Method (const QString &, void *)\nThis is a reimplementation of QXmlReader::setProperty", false, &_init_f_setProperty_2973, &_call_f_setProperty_2973); + methods += new qt_gsi::GenericMethod ("property", "@brief Method void *QXmlSimpleReader::property(const QString &name, bool *ok)\nThis is a reimplementation of QXmlReader::property", true, &_init_f_property_c2967, &_call_f_property_c2967); + methods += new qt_gsi::GenericMethod ("setContentHandler|contentHandler=", "@brief Method void QXmlSimpleReader::setContentHandler(QXmlContentHandler *handler)\nThis is a reimplementation of QXmlReader::setContentHandler", false, &_init_f_setContentHandler_2441, &_call_f_setContentHandler_2441); + methods += new qt_gsi::GenericMethod ("setDTDHandler", "@brief Method void QXmlSimpleReader::setDTDHandler(QXmlDTDHandler *handler)\nThis is a reimplementation of QXmlReader::setDTDHandler", false, &_init_f_setDTDHandler_1930, &_call_f_setDTDHandler_1930); + methods += new qt_gsi::GenericMethod ("setDeclHandler|declHandler=", "@brief Method void QXmlSimpleReader::setDeclHandler(QXmlDeclHandler *handler)\nThis is a reimplementation of QXmlReader::setDeclHandler", false, &_init_f_setDeclHandler_2086, &_call_f_setDeclHandler_2086); + methods += new qt_gsi::GenericMethod ("setEntityResolver|entityResolver=", "@brief Method void QXmlSimpleReader::setEntityResolver(QXmlEntityResolver *handler)\nThis is a reimplementation of QXmlReader::setEntityResolver", false, &_init_f_setEntityResolver_2495, &_call_f_setEntityResolver_2495); + methods += new qt_gsi::GenericMethod ("setErrorHandler|errorHandler=", "@brief Method void QXmlSimpleReader::setErrorHandler(QXmlErrorHandler *handler)\nThis is a reimplementation of QXmlReader::setErrorHandler", false, &_init_f_setErrorHandler_2232, &_call_f_setErrorHandler_2232); + methods += new qt_gsi::GenericMethod ("setFeature", "@brief Method void QXmlSimpleReader::setFeature(const QString &name, bool value)\nThis is a reimplementation of QXmlReader::setFeature", false, &_init_f_setFeature_2781, &_call_f_setFeature_2781); + methods += new qt_gsi::GenericMethod ("setLexicalHandler|lexicalHandler=", "@brief Method void QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler *handler)\nThis is a reimplementation of QXmlReader::setLexicalHandler", false, &_init_f_setLexicalHandler_2416, &_call_f_setLexicalHandler_2416); + methods += new qt_gsi::GenericMethod ("setProperty", "@brief Method void QXmlSimpleReader::setProperty(const QString &name, void *value)\nThis is a reimplementation of QXmlReader::setProperty", false, &_init_f_setProperty_2973, &_call_f_setProperty_2973); return methods; } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc index ba6a1d39f..3ee93b20a 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc @@ -42,7 +42,7 @@ // ----------------------------------------------------------------------- // class QSimpleXmlNodeModel -// (const QXmlNodeModelIndex &) const +// QUrl QSimpleXmlNodeModel::baseUri(const QXmlNodeModelIndex &node) static void _init_f_baseUri_c3090 (qt_gsi::GenericMethod *decl) @@ -61,7 +61,7 @@ static void _call_f_baseUri_c3090 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QXmlName &) const +// QXmlNodeModelIndex QSimpleXmlNodeModel::elementById(const QXmlName &id) static void _init_f_elementById_c2084 (qt_gsi::GenericMethod *decl) @@ -95,7 +95,7 @@ static void _call_f_namePool_c0 (const qt_gsi::GenericMethod * /*decl*/, void *c } -// (const QXmlNodeModelIndex &) const +// QVector QSimpleXmlNodeModel::namespaceBindings(const QXmlNodeModelIndex &) static void _init_f_namespaceBindings_c3090 (qt_gsi::GenericMethod *decl) @@ -114,7 +114,7 @@ static void _call_f_namespaceBindings_c3090 (const qt_gsi::GenericMethod * /*dec } -// (const QXmlName &) const +// QVector QSimpleXmlNodeModel::nodesByIdref(const QXmlName &idref) static void _init_f_nodesByIdref_c2084 (qt_gsi::GenericMethod *decl) @@ -133,7 +133,7 @@ static void _call_f_nodesByIdref_c2084 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QXmlNodeModelIndex &) const +// QString QSimpleXmlNodeModel::stringValue(const QXmlNodeModelIndex &node) static void _init_f_stringValue_c3090 (qt_gsi::GenericMethod *decl) @@ -158,12 +158,12 @@ namespace gsi static gsi::Methods methods_QSimpleXmlNodeModel () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("baseUri", "@brief Method (const QXmlNodeModelIndex &) const\nThis is a reimplementation of QAbstractXmlNodeModel::baseUri", true, &_init_f_baseUri_c3090, &_call_f_baseUri_c3090); - methods += new qt_gsi::GenericMethod ("elementById", "@brief Method (const QXmlName &) const\nThis is a reimplementation of QAbstractXmlNodeModel::elementById", true, &_init_f_elementById_c2084, &_call_f_elementById_c2084); + methods += new qt_gsi::GenericMethod ("baseUri", "@brief Method QUrl QSimpleXmlNodeModel::baseUri(const QXmlNodeModelIndex &node)\nThis is a reimplementation of QAbstractXmlNodeModel::baseUri", true, &_init_f_baseUri_c3090, &_call_f_baseUri_c3090); + methods += new qt_gsi::GenericMethod ("elementById", "@brief Method QXmlNodeModelIndex QSimpleXmlNodeModel::elementById(const QXmlName &id)\nThis is a reimplementation of QAbstractXmlNodeModel::elementById", true, &_init_f_elementById_c2084, &_call_f_elementById_c2084); methods += new qt_gsi::GenericMethod ("namePool", "@brief Method QXmlNamePool &QSimpleXmlNodeModel::namePool()\n", true, &_init_f_namePool_c0, &_call_f_namePool_c0); - methods += new qt_gsi::GenericMethod ("namespaceBindings", "@brief Method (const QXmlNodeModelIndex &) const\nThis is a reimplementation of QAbstractXmlNodeModel::namespaceBindings", true, &_init_f_namespaceBindings_c3090, &_call_f_namespaceBindings_c3090); - methods += new qt_gsi::GenericMethod ("nodesByIdref", "@brief Method (const QXmlName &) const\nThis is a reimplementation of QAbstractXmlNodeModel::nodesByIdref", true, &_init_f_nodesByIdref_c2084, &_call_f_nodesByIdref_c2084); - methods += new qt_gsi::GenericMethod ("stringValue", "@brief Method (const QXmlNodeModelIndex &) const\nThis is a reimplementation of QAbstractXmlNodeModel::stringValue", true, &_init_f_stringValue_c3090, &_call_f_stringValue_c3090); + methods += new qt_gsi::GenericMethod ("namespaceBindings", "@brief Method QVector QSimpleXmlNodeModel::namespaceBindings(const QXmlNodeModelIndex &)\nThis is a reimplementation of QAbstractXmlNodeModel::namespaceBindings", true, &_init_f_namespaceBindings_c3090, &_call_f_namespaceBindings_c3090); + methods += new qt_gsi::GenericMethod ("nodesByIdref", "@brief Method QVector QSimpleXmlNodeModel::nodesByIdref(const QXmlName &idref)\nThis is a reimplementation of QAbstractXmlNodeModel::nodesByIdref", true, &_init_f_nodesByIdref_c2084, &_call_f_nodesByIdref_c2084); + methods += new qt_gsi::GenericMethod ("stringValue", "@brief Method QString QSimpleXmlNodeModel::stringValue(const QXmlNodeModelIndex &node)\nThis is a reimplementation of QAbstractXmlNodeModel::stringValue", true, &_init_f_stringValue_c3090, &_call_f_stringValue_c3090); return methods; } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc index aa51385f1..ef63a9380 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc @@ -37,7 +37,7 @@ // ----------------------------------------------------------------------- // class QXmlFormatter -// (const QVariant &) +// void QXmlFormatter::atomicValue(const QVariant &value) static void _init_f_atomicValue_2119 (qt_gsi::GenericMethod *decl) @@ -57,7 +57,7 @@ static void _call_f_atomicValue_2119 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QXmlName &, const QStringRef &) +// void QXmlFormatter::attribute(const QXmlName &name, const QStringRef &value) static void _init_f_attribute_4286 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_attribute_4286 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QStringRef &) +// void QXmlFormatter::characters(const QStringRef &value) static void _init_f_characters_2310 (qt_gsi::GenericMethod *decl) @@ -100,7 +100,7 @@ static void _call_f_characters_2310 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QString &) +// void QXmlFormatter::comment(const QString &value) static void _init_f_comment_2025 (qt_gsi::GenericMethod *decl) @@ -120,7 +120,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () +// void QXmlFormatter::endDocument() static void _init_f_endDocument_0 (qt_gsi::GenericMethod *decl) @@ -136,7 +136,7 @@ static void _call_f_endDocument_0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QXmlFormatter::endElement() static void _init_f_endElement_0 (qt_gsi::GenericMethod *decl) @@ -152,7 +152,7 @@ static void _call_f_endElement_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () +// void QXmlFormatter::endOfSequence() static void _init_f_endOfSequence_0 (qt_gsi::GenericMethod *decl) @@ -183,7 +183,7 @@ static void _call_f_indentationDepth_c0 (const qt_gsi::GenericMethod * /*decl*/, } -// (const QXmlName &, const QString &) +// void QXmlFormatter::processingInstruction(const QXmlName &name, const QString &value) static void _init_f_processingInstruction_4001 (qt_gsi::GenericMethod *decl) @@ -226,7 +226,7 @@ static void _call_f_setIndentationDepth_767 (const qt_gsi::GenericMethod * /*dec } -// () +// void QXmlFormatter::startDocument() static void _init_f_startDocument_0 (qt_gsi::GenericMethod *decl) @@ -242,7 +242,7 @@ static void _call_f_startDocument_0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QXmlName &) +// void QXmlFormatter::startElement(const QXmlName &name) static void _init_f_startElement_2084 (qt_gsi::GenericMethod *decl) @@ -262,7 +262,7 @@ static void _call_f_startElement_2084 (const qt_gsi::GenericMethod * /*decl*/, v } -// () +// void QXmlFormatter::startOfSequence() static void _init_f_startOfSequence_0 (qt_gsi::GenericMethod *decl) @@ -283,19 +283,19 @@ namespace gsi static gsi::Methods methods_QXmlFormatter () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("atomicValue", "@brief Method (const QVariant &)\nThis is a reimplementation of QXmlSerializer::atomicValue", false, &_init_f_atomicValue_2119, &_call_f_atomicValue_2119); - methods += new qt_gsi::GenericMethod ("attribute", "@brief Method (const QXmlName &, const QStringRef &)\nThis is a reimplementation of QXmlSerializer::attribute", false, &_init_f_attribute_4286, &_call_f_attribute_4286); - methods += new qt_gsi::GenericMethod ("characters", "@brief Method (const QStringRef &)\nThis is a reimplementation of QXmlSerializer::characters", false, &_init_f_characters_2310, &_call_f_characters_2310); - methods += new qt_gsi::GenericMethod ("comment", "@brief Method (const QString &)\nThis is a reimplementation of QXmlSerializer::comment", false, &_init_f_comment_2025, &_call_f_comment_2025); - methods += new qt_gsi::GenericMethod ("endDocument", "@brief Method ()\nThis is a reimplementation of QXmlSerializer::endDocument", false, &_init_f_endDocument_0, &_call_f_endDocument_0); - methods += new qt_gsi::GenericMethod ("endElement", "@brief Method ()\nThis is a reimplementation of QXmlSerializer::endElement", false, &_init_f_endElement_0, &_call_f_endElement_0); - methods += new qt_gsi::GenericMethod ("endOfSequence", "@brief Method ()\nThis is a reimplementation of QXmlSerializer::endOfSequence", false, &_init_f_endOfSequence_0, &_call_f_endOfSequence_0); + methods += new qt_gsi::GenericMethod ("atomicValue", "@brief Method void QXmlFormatter::atomicValue(const QVariant &value)\nThis is a reimplementation of QXmlSerializer::atomicValue", false, &_init_f_atomicValue_2119, &_call_f_atomicValue_2119); + methods += new qt_gsi::GenericMethod ("attribute", "@brief Method void QXmlFormatter::attribute(const QXmlName &name, const QStringRef &value)\nThis is a reimplementation of QXmlSerializer::attribute", false, &_init_f_attribute_4286, &_call_f_attribute_4286); + methods += new qt_gsi::GenericMethod ("characters", "@brief Method void QXmlFormatter::characters(const QStringRef &value)\nThis is a reimplementation of QXmlSerializer::characters", false, &_init_f_characters_2310, &_call_f_characters_2310); + methods += new qt_gsi::GenericMethod ("comment", "@brief Method void QXmlFormatter::comment(const QString &value)\nThis is a reimplementation of QXmlSerializer::comment", false, &_init_f_comment_2025, &_call_f_comment_2025); + methods += new qt_gsi::GenericMethod ("endDocument", "@brief Method void QXmlFormatter::endDocument()\nThis is a reimplementation of QXmlSerializer::endDocument", false, &_init_f_endDocument_0, &_call_f_endDocument_0); + methods += new qt_gsi::GenericMethod ("endElement", "@brief Method void QXmlFormatter::endElement()\nThis is a reimplementation of QXmlSerializer::endElement", false, &_init_f_endElement_0, &_call_f_endElement_0); + methods += new qt_gsi::GenericMethod ("endOfSequence", "@brief Method void QXmlFormatter::endOfSequence()\nThis is a reimplementation of QXmlSerializer::endOfSequence", false, &_init_f_endOfSequence_0, &_call_f_endOfSequence_0); methods += new qt_gsi::GenericMethod (":indentationDepth", "@brief Method int QXmlFormatter::indentationDepth()\n", true, &_init_f_indentationDepth_c0, &_call_f_indentationDepth_c0); - methods += new qt_gsi::GenericMethod ("processingInstruction", "@brief Method (const QXmlName &, const QString &)\nThis is a reimplementation of QXmlSerializer::processingInstruction", false, &_init_f_processingInstruction_4001, &_call_f_processingInstruction_4001); + methods += new qt_gsi::GenericMethod ("processingInstruction", "@brief Method void QXmlFormatter::processingInstruction(const QXmlName &name, const QString &value)\nThis is a reimplementation of QXmlSerializer::processingInstruction", false, &_init_f_processingInstruction_4001, &_call_f_processingInstruction_4001); methods += new qt_gsi::GenericMethod ("setIndentationDepth|indentationDepth=", "@brief Method void QXmlFormatter::setIndentationDepth(int depth)\n", false, &_init_f_setIndentationDepth_767, &_call_f_setIndentationDepth_767); - methods += new qt_gsi::GenericMethod ("startDocument", "@brief Method ()\nThis is a reimplementation of QXmlSerializer::startDocument", false, &_init_f_startDocument_0, &_call_f_startDocument_0); - methods += new qt_gsi::GenericMethod ("startElement", "@brief Method (const QXmlName &)\nThis is a reimplementation of QXmlSerializer::startElement", false, &_init_f_startElement_2084, &_call_f_startElement_2084); - methods += new qt_gsi::GenericMethod ("startOfSequence", "@brief Method ()\nThis is a reimplementation of QXmlSerializer::startOfSequence", false, &_init_f_startOfSequence_0, &_call_f_startOfSequence_0); + methods += new qt_gsi::GenericMethod ("startDocument", "@brief Method void QXmlFormatter::startDocument()\nThis is a reimplementation of QXmlSerializer::startDocument", false, &_init_f_startDocument_0, &_call_f_startDocument_0); + methods += new qt_gsi::GenericMethod ("startElement", "@brief Method void QXmlFormatter::startElement(const QXmlName &name)\nThis is a reimplementation of QXmlSerializer::startElement", false, &_init_f_startElement_2084, &_call_f_startElement_2084); + methods += new qt_gsi::GenericMethod ("startOfSequence", "@brief Method void QXmlFormatter::startOfSequence()\nThis is a reimplementation of QXmlSerializer::startOfSequence", false, &_init_f_startOfSequence_0, &_call_f_startOfSequence_0); return methods; } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc index af3bd2d71..8f57a462c 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc @@ -37,7 +37,7 @@ // ----------------------------------------------------------------------- // class QXmlSerializer -// (const QVariant &) +// void QXmlSerializer::atomicValue(const QVariant &value) static void _init_f_atomicValue_2119 (qt_gsi::GenericMethod *decl) @@ -57,7 +57,7 @@ static void _call_f_atomicValue_2119 (const qt_gsi::GenericMethod * /*decl*/, vo } -// (const QXmlName &, const QStringRef &) +// void QXmlSerializer::attribute(const QXmlName &name, const QStringRef &value) static void _init_f_attribute_4286 (qt_gsi::GenericMethod *decl) @@ -80,7 +80,7 @@ static void _call_f_attribute_4286 (const qt_gsi::GenericMethod * /*decl*/, void } -// (const QStringRef &) +// void QXmlSerializer::characters(const QStringRef &value) static void _init_f_characters_2310 (qt_gsi::GenericMethod *decl) @@ -115,7 +115,7 @@ static void _call_f_codec_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, } -// (const QString &) +// void QXmlSerializer::comment(const QString &value) static void _init_f_comment_2025 (qt_gsi::GenericMethod *decl) @@ -135,7 +135,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () +// void QXmlSerializer::endDocument() static void _init_f_endDocument_0 (qt_gsi::GenericMethod *decl) @@ -151,7 +151,7 @@ static void _call_f_endDocument_0 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QXmlSerializer::endElement() static void _init_f_endElement_0 (qt_gsi::GenericMethod *decl) @@ -167,7 +167,7 @@ static void _call_f_endElement_0 (const qt_gsi::GenericMethod * /*decl*/, void * } -// () +// void QXmlSerializer::endOfSequence() static void _init_f_endOfSequence_0 (qt_gsi::GenericMethod *decl) @@ -183,7 +183,7 @@ static void _call_f_endOfSequence_0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QXmlName &) +// void QXmlSerializer::namespaceBinding(const QXmlName &nb) static void _init_f_namespaceBinding_2084 (qt_gsi::GenericMethod *decl) @@ -218,7 +218,7 @@ static void _call_f_outputDevice_c0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QXmlName &, const QString &) +// void QXmlSerializer::processingInstruction(const QXmlName &name, const QString &value) static void _init_f_processingInstruction_4001 (qt_gsi::GenericMethod *decl) @@ -261,7 +261,7 @@ static void _call_f_setCodec_2297 (const qt_gsi::GenericMethod * /*decl*/, void } -// () +// void QXmlSerializer::startDocument() static void _init_f_startDocument_0 (qt_gsi::GenericMethod *decl) @@ -277,7 +277,7 @@ static void _call_f_startDocument_0 (const qt_gsi::GenericMethod * /*decl*/, voi } -// (const QXmlName &) +// void QXmlSerializer::startElement(const QXmlName &name) static void _init_f_startElement_2084 (qt_gsi::GenericMethod *decl) @@ -297,7 +297,7 @@ static void _call_f_startElement_2084 (const qt_gsi::GenericMethod * /*decl*/, v } -// () +// void QXmlSerializer::startOfSequence() static void _init_f_startOfSequence_0 (qt_gsi::GenericMethod *decl) @@ -318,21 +318,21 @@ namespace gsi static gsi::Methods methods_QXmlSerializer () { gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("atomicValue", "@brief Method (const QVariant &)\nThis is a reimplementation of QAbstractXmlReceiver::atomicValue", false, &_init_f_atomicValue_2119, &_call_f_atomicValue_2119); - methods += new qt_gsi::GenericMethod ("attribute", "@brief Method (const QXmlName &, const QStringRef &)\nThis is a reimplementation of QAbstractXmlReceiver::attribute", false, &_init_f_attribute_4286, &_call_f_attribute_4286); - methods += new qt_gsi::GenericMethod ("characters", "@brief Method (const QStringRef &)\nThis is a reimplementation of QAbstractXmlReceiver::characters", false, &_init_f_characters_2310, &_call_f_characters_2310); + methods += new qt_gsi::GenericMethod ("atomicValue", "@brief Method void QXmlSerializer::atomicValue(const QVariant &value)\nThis is a reimplementation of QAbstractXmlReceiver::atomicValue", false, &_init_f_atomicValue_2119, &_call_f_atomicValue_2119); + methods += new qt_gsi::GenericMethod ("attribute", "@brief Method void QXmlSerializer::attribute(const QXmlName &name, const QStringRef &value)\nThis is a reimplementation of QAbstractXmlReceiver::attribute", false, &_init_f_attribute_4286, &_call_f_attribute_4286); + methods += new qt_gsi::GenericMethod ("characters", "@brief Method void QXmlSerializer::characters(const QStringRef &value)\nThis is a reimplementation of QAbstractXmlReceiver::characters", false, &_init_f_characters_2310, &_call_f_characters_2310); methods += new qt_gsi::GenericMethod (":codec", "@brief Method const QTextCodec *QXmlSerializer::codec()\n", true, &_init_f_codec_c0, &_call_f_codec_c0); - methods += new qt_gsi::GenericMethod ("comment", "@brief Method (const QString &)\nThis is a reimplementation of QAbstractXmlReceiver::comment", false, &_init_f_comment_2025, &_call_f_comment_2025); - methods += new qt_gsi::GenericMethod ("endDocument", "@brief Method ()\nThis is a reimplementation of QAbstractXmlReceiver::endDocument", false, &_init_f_endDocument_0, &_call_f_endDocument_0); - methods += new qt_gsi::GenericMethod ("endElement", "@brief Method ()\nThis is a reimplementation of QAbstractXmlReceiver::endElement", false, &_init_f_endElement_0, &_call_f_endElement_0); - methods += new qt_gsi::GenericMethod ("endOfSequence", "@brief Method ()\nThis is a reimplementation of QAbstractXmlReceiver::endOfSequence", false, &_init_f_endOfSequence_0, &_call_f_endOfSequence_0); - methods += new qt_gsi::GenericMethod ("namespaceBinding", "@brief Method (const QXmlName &)\nThis is a reimplementation of QAbstractXmlReceiver::namespaceBinding", false, &_init_f_namespaceBinding_2084, &_call_f_namespaceBinding_2084); + methods += new qt_gsi::GenericMethod ("comment", "@brief Method void QXmlSerializer::comment(const QString &value)\nThis is a reimplementation of QAbstractXmlReceiver::comment", false, &_init_f_comment_2025, &_call_f_comment_2025); + methods += new qt_gsi::GenericMethod ("endDocument", "@brief Method void QXmlSerializer::endDocument()\nThis is a reimplementation of QAbstractXmlReceiver::endDocument", false, &_init_f_endDocument_0, &_call_f_endDocument_0); + methods += new qt_gsi::GenericMethod ("endElement", "@brief Method void QXmlSerializer::endElement()\nThis is a reimplementation of QAbstractXmlReceiver::endElement", false, &_init_f_endElement_0, &_call_f_endElement_0); + methods += new qt_gsi::GenericMethod ("endOfSequence", "@brief Method void QXmlSerializer::endOfSequence()\nThis is a reimplementation of QAbstractXmlReceiver::endOfSequence", false, &_init_f_endOfSequence_0, &_call_f_endOfSequence_0); + methods += new qt_gsi::GenericMethod ("namespaceBinding", "@brief Method void QXmlSerializer::namespaceBinding(const QXmlName &nb)\nThis is a reimplementation of QAbstractXmlReceiver::namespaceBinding", false, &_init_f_namespaceBinding_2084, &_call_f_namespaceBinding_2084); methods += new qt_gsi::GenericMethod ("outputDevice", "@brief Method QIODevice *QXmlSerializer::outputDevice()\n", true, &_init_f_outputDevice_c0, &_call_f_outputDevice_c0); - methods += new qt_gsi::GenericMethod ("processingInstruction", "@brief Method (const QXmlName &, const QString &)\nThis is a reimplementation of QAbstractXmlReceiver::processingInstruction", false, &_init_f_processingInstruction_4001, &_call_f_processingInstruction_4001); + methods += new qt_gsi::GenericMethod ("processingInstruction", "@brief Method void QXmlSerializer::processingInstruction(const QXmlName &name, const QString &value)\nThis is a reimplementation of QAbstractXmlReceiver::processingInstruction", false, &_init_f_processingInstruction_4001, &_call_f_processingInstruction_4001); methods += new qt_gsi::GenericMethod ("setCodec|codec=", "@brief Method void QXmlSerializer::setCodec(const QTextCodec *codec)\n", false, &_init_f_setCodec_2297, &_call_f_setCodec_2297); - methods += new qt_gsi::GenericMethod ("startDocument", "@brief Method ()\nThis is a reimplementation of QAbstractXmlReceiver::startDocument", false, &_init_f_startDocument_0, &_call_f_startDocument_0); - methods += new qt_gsi::GenericMethod ("startElement", "@brief Method (const QXmlName &)\nThis is a reimplementation of QAbstractXmlReceiver::startElement", false, &_init_f_startElement_2084, &_call_f_startElement_2084); - methods += new qt_gsi::GenericMethod ("startOfSequence", "@brief Method ()\nThis is a reimplementation of QAbstractXmlReceiver::startOfSequence", false, &_init_f_startOfSequence_0, &_call_f_startOfSequence_0); + methods += new qt_gsi::GenericMethod ("startDocument", "@brief Method void QXmlSerializer::startDocument()\nThis is a reimplementation of QAbstractXmlReceiver::startDocument", false, &_init_f_startDocument_0, &_call_f_startDocument_0); + methods += new qt_gsi::GenericMethod ("startElement", "@brief Method void QXmlSerializer::startElement(const QXmlName &name)\nThis is a reimplementation of QAbstractXmlReceiver::startElement", false, &_init_f_startElement_2084, &_call_f_startElement_2084); + methods += new qt_gsi::GenericMethod ("startOfSequence", "@brief Method void QXmlSerializer::startOfSequence()\nThis is a reimplementation of QAbstractXmlReceiver::startOfSequence", false, &_init_f_startOfSequence_0, &_call_f_startOfSequence_0); return methods; }