* Hides all the Surface child elements on display. */
| 174 | * Hides all the Surface child elements on display. |
| 175 | */ |
| 176 | void State::hideAll() |
| 177 | { |
| 178 | for (std::vector<Surface*>::iterator i = _surfaces.begin(); i != _surfaces.end(); ++i) |
| 179 | (*i)->setHidden(true); |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * Shows all the hidden Surface child elements. |