| 382 | void CWireframeGrWnd::OnNcPaint() { CGrWnd::OnNcPaint(); } |
| 383 | |
| 384 | void CWireframeGrWnd::draw_tile_caption(CDC *dc) { |
| 385 | if (!m_Movable) { |
| 386 | dc->SetBkMode(TRANSPARENT); |
| 387 | dc->SetTextColor(RGB(192, 192, 192)); |
| 388 | if (Editor_view_mode == VM_TERRAIN) |
| 389 | dc->TextOut(10, 10, "Topographical", lstrlen("Topographical")); |
| 390 | else |
| 391 | dc->TextOut(10, 10, m_Name, lstrlen(m_Name)); |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | // These functions handle special mouse operations within the wireframe window |
| 396 | void EndWireframeSel(editorSelectorManager *esm); |
nothing calls this directly
no test coverage detected