|
FocusScope * | kanzi::findAncestorScopeForNode (const Node &node) |
| Returns the ancestor focus scope of the node that you pass as an argument. More...
|
|
template<typename Predicate > |
FocusScope * | kanzi::findAncestorScopeIf (Node &first, Node &last, Predicate predicate) |
| Find the first ancestor scope in the [first node, last node) range, for which the predicate returns true. More...
|
|
template<typename Predicate > |
FocusScope * | kanzi::findAncestorScopeIfNot (Node &first, Node &last, Predicate predicate) |
| Find the first ancestor scope in the [first node, last node) range, for which the predicate returns false. More...
|
|
FocusFence * | kanzi::findFenceForNode (const Node &node) |
| Returns the focus fence of the given node that you pass as an argument. More...
|
|
template<typename Function > |
OverlayScope * | kanzi::findInputPropagationOverlayIf (OverlayScope *overlayScope, Function predicate) |
| Finds the overlay focus scope that is the overlayScope, or one of its preceding overlay focus scopes to which Kanzi lets the input propagate, for which the predicate function returns true. More...
|
|
OverlayScope * | kanzi::findOverlayScopeForNode (const Node &node) |
| Returns the overlay focus scope to which the node that you pass in this function belongs. More...
|
|
FocusScope * | kanzi::findScopeForNode (const Node &node) |
| Returns the focus scope of the node that you pass as an argument. More...
|
|
template<typename Function > |
void | kanzi::forEachAncestorNodeInScope (const Node &node, const FocusScope *scope, Function function) |
| Execute a function for every ancestor node of the node, until and including the focus scope node that is an ancestor of the node. More...
|
|
template<typename Function > |
void | kanzi::forEachAncestorScope (Node &first, Node &last, Function function) |
| Execute a function for every focus scope in the [first node, last node) range. More...
|
|
template<typename Function > |
void | kanzi::forEachAncestorScopeOf (Node &node, Function function) |
| Executes a function for every ancestor focus scope of the node, until and including the overlay focus scope node that owns the node. More...
|
|
Node * | kanzi::getScopeFocusedNode (Node &node) |
| Returns the last-focused node of the scope node. More...
|
|
bool | kanzi::isNodeInFocusableOverlay (const Node &node) |
| Returns whether the given node is in one of the overlay scopes that are on top of the foremost modal scope, or in that modal scope itself. More...
|
|
bool | kanzi::isOverlayFocusable (const OverlayScope &overlay) |
| Returns whether the given overlay is focusable. More...
|
|
bool | kanzi::isOverlayScope (const FocusScope *scope) |
| Returns whether the focus scope passed as argument is an overlay focus scope. More...
|
|
| kanzi::KZ_ENABLE_BITMASK_OPERATORS (FocusScope::ScopeFlag) |
|
bool | kanzi::operator!= (const FocusChainIndex &lhs, const FocusChainIndex &rhs) |
| Inequality operator overload for focus chain index. More...
|
|
bool | kanzi::operator< (const FocusChainIndex &lhs, const FocusChainIndex &rhs) |
| Less operator overload for focus chain index. More...
|
|
bool | kanzi::operator<= (const FocusChainIndex &lhs, const FocusChainIndex &rhs) |
| Less or equal operator overload for focus chain index. More...
|
|
bool | kanzi::operator== (const FocusChainIndex &lhs, const FocusChainIndex &rhs) |
| Equality operator overload for focus chain index. More...
|
|
bool | kanzi::operator> (const FocusChainIndex &lhs, const FocusChainIndex &rhs) |
| Greater operator overload for focus chain index. More...
|
|
bool | kanzi::operator>= (const FocusChainIndex &lhs, const FocusChainIndex &rhs) |
| Greater or equal operator overload for focus chain index. More...
|
|
void | kanzi::setScopeFocusedNode (Node &scope, Node &node) |
| Sets the focus node for the given scope node. More...
|
|
FocusChainNode | kanzi::unwrapFocusChainNode (FocusScope::FocusChain::FocusedTuple wrapped) |
| Unwraps the focus chain node representation of the focused node of a focus scope from a wrapped node. More...
|
|