qt.cfg: Add qSort() and some functions of class QAction
This commit is contained in:
parent
ee72bb7107
commit
cdb0e8322c
139
cfg/qt.cfg
139
cfg/qt.cfg
|
@ -162,6 +162,18 @@
|
|||
<not-bool/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void qSort(RandomAccessIterator begin, RandomAccessIterator end) -->
|
||||
<!-- void qSort(RandomAccessIterator begin, RandomAccessIterator end, LessThan lessThan) -->
|
||||
<!-- void qSort(Container &container) -->
|
||||
<function name="qSort">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<leak-ignore/>
|
||||
<warn severity="style" alternatives="std::sort" reason="Obsolete"/>
|
||||
<arg nr="1"/>
|
||||
<arg nr="2" default=""/>
|
||||
<arg nr="3" default=""/>
|
||||
</function>
|
||||
<!-- QMetaObject::Connection QObject::connect(const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type = Qt::AutoConnection) const -->
|
||||
<!-- QMetaObject::Connection QObject::connect(const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type = Qt::AutoConnection) // static -->
|
||||
<!-- QMetaObject::Connection QObject::connect(const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type = Qt::AutoConnection) // static -->
|
||||
|
@ -2813,6 +2825,133 @@
|
|||
<leak-ignore/>
|
||||
<arg nr="1"/>
|
||||
</function>
|
||||
<!-- QAction https://doc.qt.io/qt-5/qaction.html -->
|
||||
<!-- QVariant QAction::property(const char *name) const -->
|
||||
<function name="QAction::property">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="QVariant"/>
|
||||
<use-retval/>
|
||||
<const/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setCheckable(bool) -->
|
||||
<function name="QAction::setCheckable">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setChecked(bool) -->
|
||||
<function name="QAction::setChecked">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setData(const QVariant &userData) -->
|
||||
<function name="QAction::setData">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setDisabled(bool b) -->
|
||||
<function name="QAction::setDisabled">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setEnabled(bool) -->
|
||||
<function name="QAction::setEnabled">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setIcon(const QIcon &icon) -->
|
||||
<function name="QAction::setIcon">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- bool QAction::setProperty(const char *name, const QVariant &value) -->
|
||||
<function name="QAction::setProperty">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="bool"/>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2" direction="in">
|
||||
<not-uninit/>
|
||||
<not-bool/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setShortcut(const QKeySequence &shortcut) -->
|
||||
<function name="QAction::setShortcut">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setStatusTip(const QString &statusTip) -->
|
||||
<function name="QAction::setStatusTip">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setText(const QString &text) -->
|
||||
<function name="QAction::setText">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setToolTip(const QString &tip) -->
|
||||
<function name="QAction::setToolTip">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setVisible(bool) -->
|
||||
<function name="QAction::setVisible">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void QAction::setWhatsThis(const QString &what) -->
|
||||
<function name="QAction::setWhatsThis">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- QString QAction::text() const -->
|
||||
<function name="QAction::text">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="QString"/>
|
||||
<use-retval/>
|
||||
<const/>
|
||||
</function>
|
||||
<!-- ##### Container ##### -->
|
||||
<container id="qtContainer" opLessAllowed="false">
|
||||
<type templateParameter="0"/>
|
||||
|
|
Loading…
Reference in New Issue