| 107 | } |
| 108 | |
| 109 | void Element::recursiveDoElements(const std::function<void(std::shared_ptr<Element>)> &doFunc) { |
| 110 | if (doFunc != nullptr) { |
| 111 | for (const auto &child: this->_children) { |
| 112 | doFunc(child); |
| 113 | child->recursiveDoElements(doFunc); |
| 114 | } |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | bool Element::_allClickableFalse = false; |
| 119 |