mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
15 lines
363 B
C++
15 lines
363 B
C++
#include "modetabwidget.h"
|
|
|
|
#include <QBoxLayout>
|
|
#include <QPushButton>
|
|
|
|
ModeTabWidget::ModeTabWidget(QWidget* parent):
|
|
QTabWidget(parent)
|
|
{
|
|
tabBar = new QTabBar;
|
|
tabBar->setStyleSheet("QTabBar::tab { height: " + QString::number(parent->height()) + "px;}");
|
|
this->setTabBar(tabBar);
|
|
this->setTabsClosable(true);
|
|
this->setMovable(true);
|
|
}
|