Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

qt.cfg: Added support for QRectF members #6073

Merged
merged 1 commit into from
Mar 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions cfg/qt.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2765,6 +2765,47 @@
<use-retval/>
<const/>
</function>
<!--qreal QRectF::bottom () const -->
<!--qreal QRectF::height () const -->
<!--qreal QRectF::width () const -->
<!--qreal QRectF::left () const -->
<!--qreal QRectF::right () const -->
<!--qreal QRectF::top () const -->
<!--qreal QRectF::x () const -->
<!--qreal QRectF::y () const -->
<function name="QRectF::bottom,QRectF::height,QRectF::left,QRectF::right,QRectF::top,QRectF::width,QRectF::x,QRectF::y">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="qreal"/>
<use-retval/>
</function>
<!--QSizeF QRectF::size () const -->
<function name="QRectF::size">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="QSizeF"/>
<use-retval/>
</function>
<!--bool QRectF::isEmpty () const -->
<!--bool QRectF::isNull () const -->
<!--bool QRectF::isValid () const -->
<function name="QRectF::isEmpty,QRectF::isNull,QRectF::isValid">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="bool"/>
<use-retval/>
</function>
<!--QPointF QRectF::topLeft () const -->
<!--QPointF QRectF::topRight () const -->
<!--QPointF QRectF::bottomLeft () const -->
<!--QPointF QRectF::bottomRight () const -->
<!--QPointF QRectF::center () const -->
<function name="QRectF::topLeft,QRectF::topRight,QRectF::bottomLeft,QRectF::bottomRight,QRectF::center">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="QPointF"/>
<use-retval/>
</function>
<!--int QRect::bottom () const -->
<!--int QRect::height () const -->
<!--int QRect::width () const -->
Expand Down
Loading