| 980 | } |
| 981 | |
| 982 | void OutputWidget::on_toggleAll_pushButton_clicked() |
| 983 | { |
| 984 | for (auto it = _sections.begin(); it != _sections.end(); it++) { |
| 985 | if (!it.value()) { |
| 986 | // Some invisible, so show all |
| 987 | setAllSectionsVisibility(true); |
| 988 | return; |
| 989 | } |
| 990 | } |
| 991 | // Hide all sections since they were all previously visible |
| 992 | setAllSectionsVisibility(false); |
| 993 | } |
| 994 | |
| 995 | void OutputWidget::resizeEvent(QResizeEvent *e) |
| 996 | { |