<?xml version="1.0"?> <def format="2"> <markup ext=".qml" reporterrors="false" aftercode="true"> <!-- keywords in QML code to ignore --> <keywords> <keyword name="if"/> <keyword name="while"/> <keyword name="typeof"/> <keyword name="for"/> </keywords> <!-- code blocks are meta-code/pseudo code placed in the library that is used/called by the native c/c++ code --> <codeblocks> <!-- need to add all the QML function names below --> <block name="onClicked"/> <block name="onFinished"/> <block name="onTriggered"/> <block name="onRetrieveTriggered"/> <block name="onPressed"/> <block name="onTouch"/> <block name="onFocusedChanged"/> <block name="onSubmittedNewStatusChanged"/> <block name="onCreationCompleted"/> <block name="onFileSelected"/> <!-- code block structure in QML is: onClicked: { call(var) } --> <structure offset="3" start="{" end="}"/> <!-- the start block is '3' tokens after the name token so we skip them --> </codeblocks> <codeblocks> <block name="function"/> <!-- code block structure in QML is: funnction x(args): { call(var) } --> <structure offset="2" start="{" end="}"/> </codeblocks> <!-- Qt Properties have the format : Q_PROPERTY(<type> <name> READ <func> WRITE <func> NOTIFY <func>) the READ/WRITE/NOTIFY parts are optional --> <exported> <exporter prefix="Q_PROPERTY"> <suffix>READ</suffix> <!-- catch the element before READ if present --> <prefix>READ</prefix> <prefix>WRITE</prefix> <prefix>NOTIFY</prefix> </exporter> </exported> <!-- qml files can call connect on the c++ code --> <imported> <importer>connect</importer> </imported> </markup> <!-- qt can call methods as strings using invokeMethod --> <reflection> <call arg="2">invokeMethod</call> </reflection> <define name="SIGNAL(X)" value="#X"/> <define name="SLOT(X)" value="#X"/> <function name="connect"> <noreturn>false</noreturn> <arg nr="1"> <not-null/> <not-uninit/> </arg> <arg nr="2"> <not-uninit/> </arg> <arg nr="3"> <not-null/> <not-uninit/> </arg> <arg nr="4"> <not-uninit/> </arg> </function> <function name="disconnect"> <noreturn>false</noreturn> <arg nr="1"> <not-null/> <not-uninit/> </arg> <arg nr="2"> <not-uninit/> </arg> <arg nr="3"> <not-null/> <not-uninit/> </arg> <arg nr="4"> <not-uninit/> </arg> </function> <function name="tr"> <noreturn>false</noreturn> <use-retval/> <arg nr="1"> <strz/> </arg> </function> <!-- QString & QString::sprintf(const char * cformat, ...); --> <function name="QString::sprintf"> <noreturn>false</noreturn> <leak-ignore/> <formatstr/> <arg nr="1"> <formatstr/> <not-uninit/> </arg> </function> <!-- QString & QString::asprintf(const char * cformat, ...); --> <function name="QString::asprintf"> <noreturn>false</noreturn> <leak-ignore/> <formatstr/> <arg nr="1"> <formatstr/> <not-uninit/> </arg> </function> <!-- const QChar QString::at(int position) const --> <function name="QList::at,QString::at,QStringList::at"> <noreturn>false</noreturn> <use-retval/> <arg nr="1"> <not-uninit/> </arg> </function> <!-- int QString::capacity() const --> <function name="QString::capacity"> <noreturn>false</noreturn> <use-retval/> </function> <!-- iterator QList::..() --> <function name="QList::begin,QList::end,QList::cbegin,QList::cend,QList::constBegin,QList::constEnd,QList::rbegin,QList::rend,QList::crbegin,QList::crend"> <noreturn>false</noreturn> <use-retval/> </function> <!-- iterator QString::..() --> <function name="QString::begin,QString::end,QString::cbegin,QString::cend,QString::constBegin,QString::constEnd,QString::rbegin,QString::rend,QString::crbegin,QString::crend"> <noreturn>false</noreturn> <use-retval/> </function> <!-- iterator QStringList::..() --> <function name="QStringList::begin,QStringList::end,QStringList::cbegin,QStringList::cend,QStringList::constBegin,QStringList::constEnd,QStringList::rbegin,QStringList::rend,QStringList::crbegin,QStringList::crend"> <noreturn>false</noreturn> <use-retval/> </function> <!-- void QString::chop() --> <function name="QString::chop"> <noreturn>false</noreturn> <arg nr="1"> <not-uninit/> </arg> </function> <!-- void QString::clear() --> <function name="QList::clear,QString::clear"> <noreturn>false</noreturn> </function> <!-- int QString::compare() const --> <function name="QString::compare"> <noreturn>false</noreturn> <use-retval/> <arg nr="1"> <not-uninit/> </arg> <arg nr="2" default="Qt::CaseSensitive"> <not-uninit/> </arg> </function> <!-- bool QList::contains(const T &value) const --> <!-- bool QList::startsWith(const T &value) const --> <!-- bool QList::endsWith(const T &value) const --> <function name="QList::contains,QList::startsWith,QList::endsWith"> <noreturn>false</noreturn> <use-retval/> <returnValue type="bool"/> <arg nr="1"> <not-uninit/> </arg> </function> <!-- bool QString::contains(const QString &str, Qt::CaseSensitivity cs = Qt::CaseSensitive) const --> <!-- bool QString::startsWith(const QString &str, Qt::CaseSensitivity cs = Qt::CaseSensitive) const --> <!-- bool QString::endsWith(const QString &str, Qt::CaseSensitivity cs = Qt::CaseSensitive) const --> <function name="QString::contains,QString::startsWith,QString::endsWith"> <noreturn>false</noreturn> <use-retval/> <returnValue type="bool"/> <arg nr="1"> <not-uninit/> </arg> <arg nr="2" default="Qt::CaseSensitive"> <not-uninit/> </arg> </function> <!-- bool QStringList::contains(const T &value) const --> <!-- bool QStringList::startsWith(const T &value) const --> <!-- bool QStringList::endsWith(const T &value) const --> <function name="QStringList::contains,QStringList::startsWith,QStringList::endsWith"> <noreturn>false</noreturn> <use-retval/> <returnValue type="bool"/> <arg nr="1"> <not-uninit/> </arg> </function> <!-- int QList::count() const --> <!-- int QList::length() const --> <!-- int QList::size() const --> <!-- int QString::count() const --> <!-- int QString::length() const --> <!-- int QString::size() const --> <!-- int QStringList::count() const --> <!-- int QStringList::length() const --> <!-- int QStringList::size() const --> <function name="QList::count,QList::length,QList::size,QString::count,QString::length,QString::size,QStringList::count,QStringList::length,QStringList::size"> <noreturn>false</noreturn> <use-retval/> <returnValue type="signed int"/> </function> <!-- bool QList::empty() const --> <!-- bool QList::isEmpty() const --> <!-- bool QString::isEmpty() const --> <!-- bool QString::isNull() const --> <!-- bool QStringList::empty() const --> <!-- bool QStringList::isEmpty() const --> <function name="QList::empty,QList::isEmpty::QString::isEmpty,QString::isNull,QStringList::empty,QStringList::isEmpty::"> <noreturn>false</noreturn> <use-retval/> <returnValue type="bool"/> </function> <!-- int QList::indexOf(const T &) const --> <!-- int QStringList::indexOf(const QString &) const --> <function name="QList::indexOf,QStringList::indexOf"> <noreturn>false</noreturn> <use-retval/> <returnValue type="signed int"/> <arg nr="1"> <not-uninit/> </arg> </function> <!-- int QString::indexOf(const QString &str, Qt::CaseSensitivity cs = Qt::CaseSensitive) const --> <function name="QString::indexOf"> <noreturn>false</noreturn> <use-retval/> <returnValue type="signed int"/> <arg nr="1"> <not-uninit/> </arg> <arg nr="2" default="Qt::CaseSensitive"> <not-uninit/> </arg> </function> <!-- bool QString::isRightToLeft() const --> <function name="QString::isRightToLeft"> <noreturn>false</noreturn> <use-retval/> </function> <!-- int QList::lastIndexOf(const T &value, int from = -1) const --> <!-- int QStringList::lastIndexOf(const QString &value, int from = -1) const --> <function name="QList::lastIndexOf,QStringList::lastIndexOf"> <noreturn>false</noreturn> <use-retval/> <returnValue type="signed int"/> <arg nr="1"> <not-uninit/> </arg> <arg nr="2" default="-1"> <not-uninit/> </arg> </function> <!-- int QString::lastIndexOf(const QString &str, int from = -1, Qt::CaseSensitivity cs = Qt::CaseSensitive) const --> <function name="QString::lastIndexOf"> <noreturn>false</noreturn> <use-retval/> <returnValue type="signed int"/> <arg nr="1"> <not-uninit/> </arg> <arg nr="2" default="-1"> <not-uninit/> </arg> <arg nr="3" default="Qt::CaseSensitive"> <not-uninit/> </arg> </function> <!-- QString QString::left(int n) const --> <function name="QString::left"> <noreturn>false</noreturn> <use-retval/> <arg nr="1"> <not-uninit/> </arg> </function> <!-- QList<T> QList::mid(int pos, int length = -1) const --> <!-- QString QString::mid(int position, int n = -1) const --> <!-- QStringList QStringList::mid(int pos, int length = -1) const --> <function name="QList::mid,QString::mid,QStringList::mid"> <noreturn>false</noreturn> <use-retval/> <arg nr="1"> <not-uninit/> </arg> <arg nr="2" default="-1"> <not-uninit/> </arg> </function> <function name="QString::right"> <noreturn>false</noreturn> <use-retval/> <arg nr="1"> <not-uninit/> <not-bool/> <valid>0:</valid> </arg> </function> <function name="QString::split"> <noreturn>false</noreturn> <use-retval/> <arg nr="1"> <not-uninit/> </arg> </function> <function name="QString::toInt"> <noreturn>false</noreturn> <use-retval/> <arg nr="1" default="0"> <not-uninit/> </arg> <arg nr="2" default="10"> <not-uninit/> <valid>0,2:32</valid> </arg> </function> <function name="QString::toLower"> <noreturn>false</noreturn> <use-retval/> </function> <function name="QString::toStdString"> <noreturn>false</noreturn> <use-retval/> </function> <function name="QString::toUpper"> <noreturn>false</noreturn> <use-retval/> </function> <container id="qtContainer" opLessAllowed="false"> <type templateParameter="0"/> <size> <function name="append" action="push"/> <function name="clear" action="clear"/> <function name="count" yields="size"/> <function name="erase" action="erase"/> <function name="insert" action="insert"/> <function name="isEmpty" yields="empty"/> <function name="length" yields="size"/> <function name="size" yields="size"/> <function name="swap" action="change"/> </size> <access> <function name="begin" yields="start-iterator"/> <function name="cbegin" yields="start-iterator"/> <function name="constBegin" yields="start-iterator"/> <function name="end" yields="end-iterator"/> <function name="cend" yields="end-iterator"/> <function name="constEnd" yields="end-iterator"/> </access> </container> <container id="qtList" startPattern="QList <" inherits="qtContainer" opLessAllowed="true"> <type string="std-like"/> <size> <function name="resize" action="resize"/> </size> <access indexOperator="array-like"> <function name="at" yields="at_index"/> <function name="front" yields="item"/> <function name="back" yields="item"/> </access> </container> <container id="qtString" startPattern="QString" endPattern="" inherits="qtContainer" opLessAllowed="true"> <type string="std-like"/> <size> <function name="isNull" yields="empty"/> <function name="resize" action="resize"/> </size> <access indexOperator="array-like"> <function name="at" yields="at_index"/> <function name="front" yields="item"/> <function name="back" yields="item"/> </access> </container> <container id="qtStringList" startPattern="QStringList" inherits="qtContainer" opLessAllowed="true"> <type string="std-like"/> <size> <function name="resize" action="resize"/> </size> <access indexOperator="array-like"> <function name="at" yields="at_index"/> <function name="front" yields="item"/> <function name="back" yields="item"/> </access> </container> <define name="Q_DECL_EXPORT" value=""/> <define name="Q_DECL_IMPORT" value=""/> <define name="Q_DECLARE_FLAGS(x,y)" value=""/> <define name="Q_DISABLE_COPY(C)" value="C(C&);C& operator=(const C&);"/> <define name="Q_ENUM(X)" value=""/> <define name="Q_ENUMS(X)" value=""/> <define name="Q_FLAGS(X)" value=""/> <define name="Q_INTERFACES(X)" value=""/> <define name="Q_OBJECT" value=""/> <define name="Q_PROPERTY(X)" value=""/> <define name="foreach(A,B)" value="for(A:B)"/> <podtype name="qint8" sign="s" size="1"/> <podtype name="qint16" sign="s" size="2"/> <podtype name="qint32" sign="s" size="4"/> <podtype name="qint64" sign="s" size="8"/> <podtype name="quint8" sign="u" size="1"/> <podtype name="quint16" sign="u" size="2"/> <podtype name="quint32" sign="u" size="4"/> <podtype name="quint64" sign="u" size="8"/> <podtype name="qlonglong" sign="s"/> <podtype name="qulonglong" sign="u"/> <podtype name="uchar" sign="u"/> <podtype name="uint" sign="u"/> <podtype name="ulong" sign="u"/> <podtype name="ushort" sign="u"/> <podtype name="qptrdiff" sign="s"/> <podtype name="quinitptr" sign="u"/> </def>