| 256 | void ListBox::unloadResources() {} |
| 257 | |
| 258 | void ListBox::clear() |
| 259 | { |
| 260 | for (auto &c : Controls) |
| 261 | { |
| 262 | c->setParent(nullptr); |
| 263 | } |
| 264 | Controls.clear(); |
| 265 | this->selected = nullptr; |
| 266 | this->hovered = nullptr; |
| 267 | if (scroller_is_internal) |
| 268 | { |
| 269 | configureInternalScrollBar(); |
| 270 | } |
| 271 | resolveLocation(); |
| 272 | this->setDirty(); |
| 273 | } |
| 274 | |
| 275 | void ListBox::addItem(sp<Control> Item) |
| 276 | { |