Generation

generate functionSat, 12 Nov 2022

Return whether an AXTree has a focused node or not

++ bool AXPlatformNodeAuraLinux::HasFocusableChild() { for (int i = 0; i < GetChildCount(); ++i) { if (GetChild(i)->IsIgnored() || GetChild(i)->IsChildOfLeaf()) continue; if (GetChild(i)->IsDescendantOfLeaf()) return true; } return false; }

Want to kickstart your project?Use the new AI Studio to create your code