! Returns a list of all child elements in this layout element. If \a recursive is true, all sub-child elements are included in the list, too. \warning There may be entries with value 0 in the returned list. (For example, QCPLayoutGrid may have empty cells which yield 0 at the respective index.) */
| 3475 | empty cells which yield 0 at the respective index.) |
| 3476 | */ |
| 3477 | QList<QCPLayoutElement*> QCPLayoutElement::elements(bool recursive) const |
| 3478 | { |
| 3479 | Q_UNUSED(recursive) |
| 3480 | return QList<QCPLayoutElement*>(); |
| 3481 | } |
| 3482 | |
| 3483 | /*! |
| 3484 | Layout elements are sensitive to events inside their outer rect. If \a pos is within the outer |
no test coverage detected