Definition at line 170 of file qwebelement.h.
#include <qwebelement.h>
Classes |
|
| class | const_iterator |
| class | iterator |
Public Member Functions |
|
| QWebElementCollection () | |
| QWebElementCollection (const QWebElement &contextElement, const QString &query) | |
| QWebElementCollection (const QWebElementCollection &) | |
| QWebElementCollection & | operator= (const QWebElementCollection &) |
| ~QWebElementCollection () | |
| QWebElementCollection | operator+ (const QWebElementCollection &other) const |
| QWebElementCollection & | operator+= (const QWebElementCollection &other) |
| void | append (const QWebElementCollection &collection) |
| int | count () const |
| QWebElement | at (int i) const |
| QWebElement | operator[] (int i) const |
| QWebElement | first () const |
| QWebElement | last () const |
| QList< QWebElement > | toList () const |
| const_iterator | begin () const |
| const_iterator | end () const |
| const_iterator | constBegin () const |
| const_iterator | constEnd () const |
| iterator | begin () |
| iterator | end () |
Friends |
|
| class | const_iterator |
| class | iterator |
| QWebElementCollection | ( | const QWebElement & | contextElement, |
| const QString & | query | ||
| ) |
| QWebElementCollection | ( | const QWebElementCollection & | ) |
| QWebElementCollection& operator= | ( | const QWebElementCollection & | ) |
| QWebElementCollection operator+ | ( | const QWebElementCollection & | other | ) | const |
| QWebElementCollection& operator+= | ( | const QWebElementCollection & | other | ) | [inline] |
Definition at line 180 of file qwebelement.h.
{
append(other); return *this;
}
| void append | ( | const QWebElementCollection & | collection | ) |
| int count | ( | ) | const |
| QWebElement at | ( | int | i | ) | const |
| QWebElement operator[] | ( | int | i | ) | const [inline] |
Definition at line 189 of file qwebelement.h.
{ return at(i); }
| QWebElement first | ( | ) | const [inline] |
| QWebElement last | ( | ) | const [inline] |
Definition at line 192 of file qwebelement.h.
| QList<QWebElement> toList | ( | ) | const |
| const_iterator begin | ( | ) | const [inline] |
| const_iterator end | ( | ) | const [inline] |
| const_iterator constBegin | ( | ) | const [inline] |
Definition at line 227 of file qwebelement.h.
{ return const_iterator(this, 0); }
| const_iterator constEnd | ( | ) | const [inline] |
Definition at line 228 of file qwebelement.h.
{ return const_iterator(this, count()); };
| iterator begin | ( | ) | [inline] |
Definition at line 259 of file qwebelement.h.
{ return iterator(this, 0); }
| iterator end | ( | ) | [inline] |
Definition at line 260 of file qwebelement.h.
friend class const_iterator
[friend] |
Definition at line 223 of file qwebelement.h.
friend class iterator
[friend] |
Definition at line 257 of file qwebelement.h.