| 203 | } |
| 204 | |
| 205 | void ConditionalBoxPlotCanvas::SetCheckMarks(wxMenu* menu) |
| 206 | { |
| 207 | // Update the checkmarks and enable/disable state for the |
| 208 | // following menu items if they were specified for this particular |
| 209 | // view in the xrc file. Items that cannot be enable/disabled, |
| 210 | // or are not checkable do not appear. |
| 211 | ConditionalNewCanvas::SetCheckMarks(menu); |
| 212 | |
| 213 | GeneralWxUtils::CheckMenuItem(menu, XRCID("ID_SHOW_AXES"), show_axes); |
| 214 | GeneralWxUtils::CheckMenuItem(menu, XRCID("ID_BOXPLOT_HINGE15"), hinge_15); |
| 215 | GeneralWxUtils::CheckMenuItem(menu, XRCID("ID_BOXPLOT_HINGE30"), !hinge_15); |
| 216 | } |
| 217 | |
| 218 | void ConditionalBoxPlotCanvas::OnShowAxes(wxCommandEvent& evt) |
| 219 | { |
no outgoing calls
no test coverage detected