| 136 | |
| 137 | |
| 138 | DebuggerStatusBarContainer::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 | |
| 152 | DebuggerStatusBarWidget* DebuggerStatusBarContainer::currentConsole() const |