| 56 | /// Action that can be performed by a mouse click or double-click. |
| 57 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 58 | pub enum ClickAction { |
| 59 | /// Pick the currently highlighted point. |
| 60 | Pick, |
| 61 | |
| 62 | /// Reset/autoscale the plot. |
| 63 | Autoscale, |
| 64 | |
| 65 | /// Clear picked points. |
| 66 | ClearPick, |
| 67 | } |
| 68 | |
| 69 | /// Action that can be performed by a key press. |
| 70 | #[derive(Debug, Clone, Copy, PartialEq)] |
nothing calls this directly
no outgoing calls
no test coverage detected