| 113 | } |
| 114 | |
| 115 | void PlotCanvas::dimensionsChanged_() |
| 116 | { |
| 117 | zoom_stack_.clear(); // any zoom history is bogus |
| 118 | |
| 119 | // swap axes if necessary |
| 120 | if (spectrum_widget_) |
| 121 | { |
| 122 | spectrum_widget_->updateAxes(); |
| 123 | } |
| 124 | |
| 125 | updateScrollbars_(); |
| 126 | update_buffer_ = true; |
| 127 | update_(OPENMS_PRETTY_FUNCTION); |
| 128 | } |
| 129 | |
| 130 | void PlotCanvas::changeVisibleArea_(VisibleArea new_area, bool repaint, bool add_to_stack) |
| 131 | { |
nothing calls this directly
no test coverage detected