//////////////////////////////////////////////////////////////// TEditorClient ------------- Draw the selection box using R2_XORPEN.
| 2318 | // ------------- |
| 2319 | // Draw the selection box using R2_XORPEN. |
| 2320 | void TEditorClient::DrawStretchSelBox(TMapDC &dc) |
| 2321 | { |
| 2322 | int oldROP2 = dc.SetROP2 (R2_XORPEN); |
| 2323 | dc.SetPenColor16 (CYAN); |
| 2324 | dc.DrawMapRect (SelBoxX, SelBoxY, OldSelBoxX, OldSelBoxY); |
| 2325 | dc.SetROP2 (oldROP2); |
| 2326 | } |
| 2327 | |
| 2328 | |
| 2329 | ///////////////////////////////////////////////////////////////////// |
no test coverage detected