⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qlayoutiterator.3qt

📁 Linux下的基于X11的图形开发环境。
💻 3QT
字号:
'\" t.TH QLayoutIterator 3qt "9 December 2002" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS.  All rights reserved.  See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQLayoutIterator \- Iterators over QLayoutItem.SH SYNOPSIS\fC#include <qlayout.h>\fR.PP.SS "Public Members".in +1c.ti -1c.BI "\fBQLayoutIterator\fR ( QGLayoutIterator * gi )".br.ti -1c.BI "\fBQLayoutIterator\fR ( const QLayoutIterator & i )".br.ti -1c.BI "\fB~QLayoutIterator\fR ()".br.ti -1c.BI "QLayoutIterator & \fBoperator=\fR ( const QLayoutIterator & i )".br.ti -1c.BI "QLayoutItem * \fBoperator++\fR ()".br.ti -1c.BI "QLayoutItem * \fBcurrent\fR ()".br.ti -1c.BI "QLayoutItem * \fBtakeCurrent\fR ()".br.ti -1c.BI "void \fBdeleteCurrent\fR ()".br.in -1c.SH DESCRIPTIONThe QLayoutIterator class provides iterators over QLayoutItem..PPUse QLayoutItem::iterator() to create an iterator over a layout..PPQLayoutIterator uses \fIexplicit\fR sharing with a reference count. If an iterator is copied and one of the copies is modified, both iterators will be modified..PPA QLayoutIterator is not protected against changes in its layout. If the layout is modified or deleted the iterator will become invalid. It is not possible to test for validity. It is safe to delete an invalid layout; any other access may lead to an illegal memory reference and the abnormal termination of the program..PPCalling takeCurrent() or deleteCurrent() leaves the iterator in a valid state, but may invalidate any other iterators that access the same layout..PPThe following code will draw a rectangle for each layout item in the layout structure of the widget..PP.nf.br    static void paintLayout( QPainter *p, QLayoutItem *lay ).br    {.br        QLayoutIterator it = lay->iterator();.br        QLayoutItem *child;.br        while ( (child = it.current()) != 0 ) {.br            paintLayout( p, child );.br            it.next();.br        }.br        p->drawRect( lay->geometry() );.br    }.br    void ExampleWidget::paintEvent( QPaintEvent * ).br    {.br        QPainter p( this );.br        if ( layout() ).br            paintLayout( &p, layout() );.br    }.br.fi.PPAll the functionality of QLayoutIterator is implemented by subclasses of QGLayoutIterator. QLayoutIterator itself is not designed to be subclassed..PPSee also Widget Appearance and Style and Layout Management..SH MEMBER FUNCTION DOCUMENTATION.SH "QLayoutIterator::QLayoutIterator ( QGLayoutIterator * gi )"Constructs an iterator based on \fIgi\fR. The constructed iterator takes ownership of \fIgi\fR and will delete it..PPThis constructor is provided for layout implementors. Application programmers should use QLayoutItem::iterator() to create an iterator over a layout..SH "QLayoutIterator::QLayoutIterator ( const QLayoutIterator & i )"Creates a shallow copy of \fIi\fR, i.e. if the copy is modified, then the original will also be modified..SH "QLayoutIterator::~QLayoutIterator ()"Destroys the iterator..SH "QLayoutItem * QLayoutIterator::current ()"Returns the current item, or 0 if there is no current item..SH "void QLayoutIterator::deleteCurrent ()"Removes and deletes the current child item from the layout and moves the iterator to the next item. This iterator will still be valid, but any other iterator over the same layout may become invalid..SH "QLayoutItem * QLayoutIterator::operator++ ()"Moves the iterator to the next child item and returns that item, or 0 if there is no such item..SH "QLayoutIterator & QLayoutIterator::operator= ( const QLayoutIterator & i )"Assigns \fIi\fR to this iterator and returns a reference to this iterator..SH "QLayoutItem * QLayoutIterator::takeCurrent ()"Removes the current child item from the layout without deletingit, and moves the iterator to the next item. Returns the removeditem, or 0 if there was no item to be removed. This iterator willstill be valid, but any other iterator over the same layout maybecome invalid..SH "SEE ALSO".BR http://doc.trolltech.com/qlayoutiterator.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qlayoutiterator.3qt) and the Qtversion (3.1.1).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -