* Alternatively, you can use a clientDC to paint on the panel * at any time. Using this generally does not free you from * catching paint events, since it is possible that e.g. the window * manager throws away your drawing when the window comes to the * background, and expects you will redraw it when the window comes * back (by sending a paint event). */
| 94 | * back (by sending a paint event). |
| 95 | */ |
| 96 | void wxRtplotPanel::paintNow() |
| 97 | { |
| 98 | // depending on your system you may need to look at double-buffered dcs |
| 99 | wxClientDC dc(this); |
| 100 | render(dc); |
| 101 | } |
| 102 | |
| 103 | /* |
| 104 | * Here we do the actual rendering. I put it in a separate |
no outgoing calls
no test coverage detected