-
Methods in io.qt.core with parameters of type Qt.FindChildOptions
Modifier and Type |
Method |
Description |
int |
Qt.FindChildOptions.compareTo(Qt.FindChildOptions other) |
<T extends QObject> T |
QObject.findChild(Class<T> cl,
String name,
Qt.FindChildOptions options) |
Returns the child of this object that instane of cl and
that is called name, or null if there is no such object.
|
<T extends QObject> QList<T> |
QObject.findChildren(Class<T> cl,
QRegExp regExp,
Qt.FindChildOptions options) |
Deprecated.
|
<T extends QObject> QList<T> |
QObject.findChildren(Class<T> cl,
QRegularExpression re,
Qt.FindChildOptions options) |
|
<T extends QObject> QList<T> |
QObject.findChildren(Class<T> cl,
String name,
Qt.FindChildOptions options) |
Returns all children of this object with the given name that are
instance of cl, or an empty list if there are no such objects.
|
-