MCPcopy Create free account
hub / github.com/Vector35/debugger / GlobalDebuggerUI

Method GlobalDebuggerUI

ui/ui.cpp:50–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48std::map<UIContext*, std::unique_ptr<GlobalDebuggerUI>> g_contextMap;
49
50GlobalDebuggerUI::GlobalDebuggerUI(UIContext* context) : m_context(context)
51{
52 m_window = context->mainWindow();
53 if (m_window && m_window->statusBar())
54 {
55 m_status = new DebuggerStatusBarContainer;
56 auto statusBar = m_window->statusBar();
57 if (statusBar)
58 {
59 statusBar->addWidget(m_status);
60 }
61 }
62
63 m_displayingGlobalAreaWidgets = false;
64
65 SetupMenu(context);
66}
67
68
69GlobalDebuggerUI::~GlobalDebuggerUI() {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected