📄 qlayoutiterator.3qt
字号:
.TH QLayoutIterator 3qt "10 November 2000" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2000 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.br.PP\fC#include <qabstractlayout.h>\fR.PP.SS "Public Members".in +1c.ti -1c.BI "\fBQLayoutIterator\fR ( QGLayoutIterator * i ) ".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 explicit 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() ) ) {.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 }.fi.PPAll the functionality of QLayoutIterator is implemented by subclasses of QGLayoutIterator. Note that there is not much point in subclassing QLayoutIterator, since none of the functions are virtual..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 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 deleting itand moves the iterator to the next item. Returns the removed item, or0 if there was no item to be removed. This iterator will still bevalid, but any other iterator over the same layout may becomeinvalid..SH "SEE ALSO".BR http://doc.trolltech.com/qlayoutiterator.html.SH COPYRIGHTCopyright 1992-2000 Trolltech AS, http://www.trolltech.com/. See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -