MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / EditorStatus

Function EditorStatus

editor/MainFrm.cpp:1583–1594  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1581void CMainFrame::SetStatusMessage(char *str) { m_wndStatusBar.SetPaneText(0, str); }
1582
1583void EditorStatus(const char *format, ...) {
1584 if (MFC_Main_frame) {
1585 char status_line[256];
1586 std::va_list ap;
1587
1588 va_start(ap, format);
1589 std::vsnprintf(status_line, 256, format, ap);
1590 va_end(ap);
1591
1592 MFC_Main_frame->SetStatusMessage(status_line);
1593 }
1594}
1595
1596void SplashMessage(const char *format, ...) {
1597 if (D3_splash_screen) {

Callers 15

OnLButtonDownMethod · 0.85
OnRoompadNextEdgeMethod · 0.85
OnRoompadNextVertexMethod · 0.85
OnRoompadNextPortalMethod · 0.85
OnNextFaceMethod · 0.85
OnButtonLightingMethod · 0.85
OnRoomNextFaceMethod · 0.85
OnRoomPreviousFaceMethod · 0.85
OnRoomSelectByNumberMethod · 0.85

Calls 1

SetStatusMessageMethod · 0.80

Tested by

no test coverage detected