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

Method DebuggerStatusBarContainer

ui/statusbar.cpp:138–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

136
137
138DebuggerStatusBarContainer::DebuggerStatusBarContainer() : m_currentFrame(nullptr), m_consoleStack(new QStackedWidget)
139{
140 auto* layout = new QVBoxLayout(this);
141 layout->setContentsMargins(0, 0, 0, 0);
142 layout->addWidget(m_consoleStack);
143
144 auto* noViewLabel = new QLabel("");
145 noViewLabel->setAlignment(Qt::AlignLeft);
146
147 m_consoleStack->addWidget(noViewLabel);
148 setFixedWidth(noViewLabel->sizeHint().width());
149}
150
151
152DebuggerStatusBarWidget* DebuggerStatusBarContainer::currentConsole() const

Callers

nothing calls this directly

Calls 1

sizeHintMethod · 0.45

Tested by

no test coverage detected