diff --git a/appserial.cpp b/appserial.cpp index f79b337..9947200 100644 --- a/appserial.cpp +++ b/appserial.cpp @@ -49,7 +49,7 @@ void AppSerial::setHWND(HWND hwnd) this->m_hwnd = hwnd; } -bool AppSerial::nativeEventFilter(const QByteArray &eventType, void *message, long *result) +bool AppSerial::nativeEventFilter(const QByteArray &eventType, void *message, qintptr *result) { Q_UNUSED(eventType); Q_UNUSED(result); diff --git a/appserial.h b/appserial.h index 335b879..554d1b8 100644 --- a/appserial.h +++ b/appserial.h @@ -33,7 +33,7 @@ public: void setHWND(HWND hwnd); protected: - bool nativeEventFilter(const QByteArray &eventType, void *message, long *result); + bool nativeEventFilter(const QByteArray &eventType, void *message, qintptr *result); signals: /** diff --git a/mainwindow.cpp b/mainwindow.cpp index c31f477..5864684 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -40,6 +40,7 @@ MainWindow::MainWindow(QWidget *parent) m_AppProto = new AppProto; m_AppProto_English = new Appproto_English; connect(ui->tabWidget_paraset, SIGNAL(currentChanged(int)), this, SLOT(on_tabChanged(int))); + connect(ui->comboBoxBCUSelect, &QComboBox::currentIndexChanged, this, &MainWindow::on_comBoxBCUSelect); } MainWindow::~MainWindow() @@ -111,12 +112,19 @@ void MainWindow::init() statusBarConnectedIcon = new QLabel(); statusBarConnectedType = new QLabel(); statusBarCompany = new QLabel(); + statusBarBcu = new QLabel(); + statusBarVersion = new QLabel(); statusBarConnectedIcon->setPixmap(QPixmap(QIcon(":/Image/connected1.png").pixmap(QSize(24, 24)))); statusBarConnectedType->setText("RS485"); statusBarCompany->setText("BLUESUN"); + statusBarBcu->setText("Current BCU: BCU01"); + statusBarVersion->setText("UpperComputer Version : 1.0.0 "); + ui->statusbar->addWidget(statusBarConnectedIcon); ui->statusbar->addWidget(statusBarConnectedType); + ui->statusbar->addWidget(statusBarVersion); + ui->statusbar->addWidget(statusBarBcu); ui->statusbar->addPermanentWidget(statusBarCompany); /* 菜单栏设置 */ @@ -202,6 +210,12 @@ void MainWindow::init() ui->groupBox_trouble_control->setStyleSheet("background-color: #FFFFFF;"); // ui->groupBox_chart->setStyleSheet("background-color: #FFFFFF;"); ui->groupBox_class_color->setStyleSheet("QGroupBox { border: none; }"); + ui->widget_historyAlarm->setStyleSheet("background-color: #FFFFFF;"); + // ui->widget_BCUSelect->setStyleSheet("background-color: #FFFFFF;"); + ui->pageHome->setStyleSheet("background-color: #FFFFFF;"); + ui->comboBoxBCUSelect->setStyleSheet("background-color: #F8F8FF;"); + // ui->comboBoxBCUSelect->setStyleSheet("QComboBox QAbstractItemView { background-color: #f0f0f0;}"); + ui->BCU_DIDO->setStyleSheet("background-color: #FFFFFF;"); ui->BCU_alarm->setStyleSheet("background-color: #FFFFFF;"); @@ -210,6 +224,7 @@ void MainWindow::init() + //设置按钮的提示文本 ui->btnHome->setToolTip("概述信息(Overview Information)"); ui->btnBattery->setToolTip("详细信息(Detailed Information)"); @@ -3126,43 +3141,41 @@ void MainWindow::pageParaSetInit_other_setting() void MainWindow::slot_getBcuNumberFromDialoglogin(int number) { - + Q_UNUSED(number); // QTreeView treeView; // 创建模型 - QStandardItemModel *model = new QStandardItemModel(ui->treeViewBCUbmu); + modelBCU = new QStandardItemModel(ui->treeViewBCUbmu); // QMap indexTopPageMap; //创建一级目录项数为可变的 - QStringList bcuNames; + // QStringList bcuNames; - qDebug() << "number: " << number; - for (int i = 1; i <= number; ++i) { - QString bcuName = QString("BCU%1").arg(i); - bcuNames.append(bcuName); - } + // qDebug() << "number: " << number; + // for (int i = 1; i <= number; ++i) { + // QString bcuName = QString("BCU%1").arg(i); + // bcuNames.append(bcuName); + // } + + // qDebug() << "BCUNames" << bcuNames; - qDebug() << "BCUNames" << bcuNames; // 创建一级目录项 - int count = 0; - for (const QString &name : bcuNames) - { - QStandardItem *rootItem = new QStandardItem(name); - // 设置一级目录项的字体为加粗 - QFont boldFont = rootItem->font(); - boldFont.setBold(true); - rootItem->setFont(boldFont); - count++; - model->appendRow(rootItem); - for (int i = 1; i <= 26; ++i) - { - QString bmuName = QString("BMU%1").arg(i); - QStandardItem *bmuItem = new QStandardItem(bmuName); - rootItem->appendRow(bmuItem); - } + rootItem = new QStandardItem("BCU01"); + // 设置一级目录项的字体为加粗 + QFont boldFont = rootItem->font(); + boldFont.setBold(true); + rootItem->setFont(boldFont); + modelBCU->appendRow(rootItem); + + for (int i = 1; i <= 26; ++i) + { + QString bmuName = QString("BMU%1").arg(i); + QStandardItem *bmuItem = new QStandardItem(bmuName); + rootItem->appendRow(bmuItem); } + ui->tabWidgetBCU->setCurrentIndex(0); ui->tabWidgetBMU->setCurrentIndex(0); @@ -3183,7 +3196,7 @@ void MainWindow::slot_getBcuNumberFromDialoglogin(int number) } }); - ui->treeViewBCUbmu->setModel(model); + ui->treeViewBCUbmu->setModel(modelBCU); ui->treeViewBCUbmu->setHeaderHidden(true); ui->treeViewBCUbmu->setAnimated(true); ui->treeViewBCUbmu->expandAll(); @@ -4001,3 +4014,16 @@ void MainWindow::on_tabChanged(int index) tabWidget_paraset_index = index; ui->pageParaSetCheck->setCheckState(Qt::Unchecked); } + +void MainWindow::on_comBoxBCUSelect() +{ + QString BCUText = ui->comboBoxBCUSelect->currentText(); + QString statusBarBCULabel = "Current BCU: "; + + statusBarBcu->setText(statusBarBCULabel + BCUText); + rootItem->setText(BCUText); + + //当改变BCU选择时,改变当前BCU读取的地址 + + +} diff --git a/mainwindow.h b/mainwindow.h index bade2b4..a9d2e77 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -43,7 +43,13 @@ public: QLabel *statusBarConnectedIcon; QLabel *statusBarConnectedType; QLabel *statusBarCompany; + QLabel *statusBarBcu; + QLabel *statusBarVersion; ChartPaint *chartPat; + + QStandardItemModel *modelBCU; //设置BCU目录 + QStandardItem *rootItem; + int BCUNumbers; // QGridLayout *gridLayout; // QHBoxLayout *hBoxLayout; @@ -144,6 +150,7 @@ private slots: void on_pageParaSetRead_clicked(); void on_pageParaSetWrite_clicked(); void on_tabChanged(int index); + void on_comBoxBCUSelect(); // void on_horizontalSlider_valueChanged(int value); public: diff --git a/mainwindow.ui b/mainwindow.ui index c30d678..a284227 100644 --- a/mainwindow.ui +++ b/mainwindow.ui @@ -223,7 +223,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Vertical + Qt::Vertical @@ -281,7 +281,7 @@ background-color: rgba(255, 255, 255, 0); - 3 + 0 @@ -290,9 +290,9 @@ background-color: rgba(255, 255, 255, 0); } - + - + @@ -309,7 +309,7 @@ background-color: rgba(255, 255, 255, 0); - + @@ -395,7 +395,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Vertical + Qt::Vertical @@ -476,7 +476,7 @@ background-color: rgba(255, 255, 255, 0); - + @@ -494,7 +494,7 @@ background-color: rgba(255, 255, 255, 0); 总正继电器 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -510,7 +510,7 @@ background-color: rgba(255, 255, 255, 0); 预充继电器 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -526,7 +526,7 @@ background-color: rgba(255, 255, 255, 0); 总负继电器 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -542,7 +542,7 @@ background-color: rgba(255, 255, 255, 0); 隔离开关 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -574,7 +574,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -629,7 +629,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -684,7 +684,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -763,8 +763,8 @@ background-color: rgba(255, 255, 255, 0); 0 0 - 717 - 473 + 1041 + 448 @@ -786,7 +786,7 @@ background-color: rgba(255, 255, 255, 0); 总压过压 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -802,7 +802,7 @@ background-color: rgba(255, 255, 255, 0); 总压欠压 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -818,7 +818,7 @@ background-color: rgba(255, 255, 255, 0); 单体过压 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -834,7 +834,7 @@ background-color: rgba(255, 255, 255, 0); 单体欠压 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -850,7 +850,7 @@ background-color: rgba(255, 255, 255, 0); 单体过温 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -866,7 +866,7 @@ background-color: rgba(255, 255, 255, 0); 单体低温 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -882,7 +882,7 @@ background-color: rgba(255, 255, 255, 0); 压差过大 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -898,7 +898,7 @@ background-color: rgba(255, 255, 255, 0); 温差过大 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -918,7 +918,7 @@ background-color: rgba(255, 255, 255, 0); 电流过大 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -934,7 +934,7 @@ background-color: rgba(255, 255, 255, 0); 高压异常 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -950,7 +950,7 @@ background-color: rgba(255, 255, 255, 0); 主从通讯 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -966,7 +966,7 @@ background-color: rgba(255, 255, 255, 0); 单体电压排线 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -982,7 +982,7 @@ background-color: rgba(255, 255, 255, 0); 单体温感排线 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -998,7 +998,7 @@ background-color: rgba(255, 255, 255, 0); SOC过高 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1014,7 +1014,7 @@ background-color: rgba(255, 255, 255, 0); SOC过低 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1030,7 +1030,7 @@ background-color: rgba(255, 255, 255, 0); 绝缘漏电 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1050,7 +1050,7 @@ background-color: rgba(255, 255, 255, 0); 粘连 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1066,7 +1066,7 @@ background-color: rgba(255, 255, 255, 0); 预充状态 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1082,7 +1082,7 @@ background-color: rgba(255, 255, 255, 0); 供电过高 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1098,7 +1098,7 @@ background-color: rgba(255, 255, 255, 0); 供电过低 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1114,7 +1114,7 @@ background-color: rgba(255, 255, 255, 0); T1高温 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1130,7 +1130,7 @@ background-color: rgba(255, 255, 255, 0); T1低温 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1146,7 +1146,7 @@ background-color: rgba(255, 255, 255, 0); T2高温 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1162,7 +1162,7 @@ background-color: rgba(255, 255, 255, 0); T2低温 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1182,7 +1182,7 @@ background-color: rgba(255, 255, 255, 0); 均衡过温 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1198,7 +1198,7 @@ background-color: rgba(255, 255, 255, 0); 预留 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1214,7 +1214,7 @@ background-color: rgba(255, 255, 255, 0); 高压互锁 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1230,7 +1230,7 @@ background-color: rgba(255, 255, 255, 0); 电流异常 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1246,7 +1246,7 @@ background-color: rgba(255, 255, 255, 0); 极柱高温 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1262,7 +1262,7 @@ background-color: rgba(255, 255, 255, 0); 预留 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1278,7 +1278,7 @@ background-color: rgba(255, 255, 255, 0); 预留 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1294,7 +1294,7 @@ background-color: rgba(255, 255, 255, 0); PCS状态 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1314,7 +1314,7 @@ background-color: rgba(255, 255, 255, 0); EMS状态 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1330,7 +1330,7 @@ background-color: rgba(255, 255, 255, 0); 保险丝状态 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1346,7 +1346,7 @@ background-color: rgba(255, 255, 255, 0); 模拟前端状态 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1362,7 +1362,7 @@ background-color: rgba(255, 255, 255, 0); EEPROM状态 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1378,7 +1378,7 @@ background-color: rgba(255, 255, 255, 0); RTC状态 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1394,7 +1394,7 @@ background-color: rgba(255, 255, 255, 0); ADC状态 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1410,7 +1410,7 @@ background-color: rgba(255, 255, 255, 0); SD卡状态 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1426,7 +1426,7 @@ background-color: rgba(255, 255, 255, 0); 反馈异常 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1446,7 +1446,7 @@ background-color: rgba(255, 255, 255, 0); 温升过快 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1462,7 +1462,7 @@ background-color: rgba(255, 255, 255, 0); 极限故障 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1478,7 +1478,7 @@ background-color: rgba(255, 255, 255, 0); 开路故障 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1494,7 +1494,7 @@ background-color: rgba(255, 255, 255, 0); 急停故障 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1510,7 +1510,7 @@ background-color: rgba(255, 255, 255, 0); 消防故障 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1526,7 +1526,7 @@ background-color: rgba(255, 255, 255, 0); 控制指令超时 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1542,7 +1542,7 @@ background-color: rgba(255, 255, 255, 0); 预留 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1558,7 +1558,7 @@ background-color: rgba(255, 255, 255, 0); 热失控 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1578,7 +1578,7 @@ background-color: rgba(255, 255, 255, 0); 电池箱过压 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1594,7 +1594,7 @@ background-color: rgba(255, 255, 255, 0); 电池箱欠压 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1610,7 +1610,7 @@ background-color: rgba(255, 255, 255, 0); 防雷器故障 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1626,7 +1626,7 @@ background-color: rgba(255, 255, 255, 0); 空调故障 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1642,7 +1642,7 @@ background-color: rgba(255, 255, 255, 0); UPS故障 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1658,7 +1658,7 @@ background-color: rgba(255, 255, 255, 0); 水浸故障 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1674,7 +1674,7 @@ background-color: rgba(255, 255, 255, 0); 门禁故障 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1690,7 +1690,7 @@ background-color: rgba(255, 255, 255, 0); 气体检测故障 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1701,7 +1701,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Vertical + Qt::Vertical @@ -1722,7 +1722,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -1748,14 +1748,14 @@ background-color: rgba(255, 255, 255, 0); 正常 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -1777,7 +1777,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1786,7 +1786,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -1810,14 +1810,14 @@ background-color: rgba(255, 255, 255, 0); 一级 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -1839,7 +1839,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1848,7 +1848,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -1872,14 +1872,14 @@ background-color: rgba(255, 255, 255, 0); 二级 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -1901,7 +1901,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1910,7 +1910,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -1934,14 +1934,14 @@ background-color: rgba(255, 255, 255, 0); 三级 - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -1963,7 +1963,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -1991,28 +1991,146 @@ background-color: rgba(255, 255, 255, 0); - + - - - PushButton - - + - - - - + + + + + + + 0 + 0 + + + + + BCU01 + + + + + BCU02 + + + + + BCU03 + + + + + BCU04 + + + + + BCU05 + + + + + BCU06 + + + + + BCU07 + + + + + BCU08 + + + + + BCU09 + + + + + BCU10 + + + + + BCU11 + + + + + BCU12 + + + + + BCU13 + + + + + BCU14 + + + + + BCU15 + + + + + BCU16 + + + + + + + + + 0 + 0 + + - PushButton + BCU选择: + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + @@ -2097,7 +2215,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2119,14 +2237,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2148,7 +2266,7 @@ background-color: rgba(255, 255, 255, 0); V - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2172,7 +2290,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2194,14 +2312,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2223,7 +2341,7 @@ background-color: rgba(255, 255, 255, 0); % - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2247,7 +2365,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2269,14 +2387,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2298,7 +2416,7 @@ background-color: rgba(255, 255, 255, 0); V - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2322,7 +2440,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2344,14 +2462,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2373,7 +2491,7 @@ background-color: rgba(255, 255, 255, 0); kWh - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2397,7 +2515,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2419,14 +2537,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2448,7 +2566,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2472,7 +2590,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2494,14 +2612,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2523,7 +2641,7 @@ background-color: rgba(255, 255, 255, 0); A - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2547,7 +2665,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2569,14 +2687,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2598,7 +2716,7 @@ background-color: rgba(255, 255, 255, 0); A - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2609,7 +2727,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2639,7 +2757,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2661,14 +2779,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2690,7 +2808,7 @@ background-color: rgba(255, 255, 255, 0); A - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2714,7 +2832,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2736,14 +2854,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2765,7 +2883,7 @@ background-color: rgba(255, 255, 255, 0); % - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2789,7 +2907,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2811,14 +2929,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2840,7 +2958,7 @@ background-color: rgba(255, 255, 255, 0); V - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2864,7 +2982,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2886,14 +3004,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2915,7 +3033,7 @@ background-color: rgba(255, 255, 255, 0); kWh - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -2939,7 +3057,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2961,14 +3079,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -2990,7 +3108,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3014,7 +3132,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3036,14 +3154,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3065,7 +3183,7 @@ background-color: rgba(255, 255, 255, 0); kW - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3089,7 +3207,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3111,14 +3229,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3140,7 +3258,7 @@ background-color: rgba(255, 255, 255, 0); kW - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3187,7 +3305,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3209,14 +3327,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3238,7 +3356,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3247,7 +3365,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3275,7 +3393,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3297,14 +3415,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3326,7 +3444,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3354,7 +3472,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3376,14 +3494,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3405,7 +3523,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3414,7 +3532,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3442,7 +3560,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3464,14 +3582,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3493,7 +3611,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3521,7 +3639,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3543,14 +3661,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3572,7 +3690,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3581,7 +3699,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3609,7 +3727,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3631,14 +3749,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3660,7 +3778,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3688,7 +3806,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3710,14 +3828,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3739,7 +3857,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3748,7 +3866,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3776,7 +3894,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3798,14 +3916,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3827,7 +3945,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3855,7 +3973,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3877,14 +3995,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3906,7 +4024,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -3915,7 +4033,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3943,7 +4061,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3965,14 +4083,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -3994,7 +4112,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4022,7 +4140,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4044,14 +4162,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4073,7 +4191,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4082,7 +4200,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4110,7 +4228,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4132,14 +4250,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4161,7 +4279,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4189,7 +4307,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4211,14 +4329,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4240,7 +4358,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4249,7 +4367,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4277,7 +4395,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4299,14 +4417,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4328,7 +4446,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4356,7 +4474,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4378,14 +4496,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4407,7 +4525,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4416,7 +4534,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4444,7 +4562,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4466,14 +4584,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4495,7 +4613,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4523,7 +4641,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4545,14 +4663,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4574,7 +4692,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4583,7 +4701,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4611,7 +4729,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4633,14 +4751,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4662,7 +4780,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4690,7 +4808,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4712,14 +4830,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4741,7 +4859,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4750,7 +4868,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4778,7 +4896,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4800,14 +4918,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4829,7 +4947,7 @@ background-color: rgba(255, 255, 255, 0); % - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4891,7 +5009,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4913,14 +5031,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4942,7 +5060,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -4951,7 +5069,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -4979,7 +5097,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5001,14 +5119,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5030,7 +5148,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5058,7 +5176,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5080,14 +5198,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5109,7 +5227,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5118,7 +5236,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5146,7 +5264,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5168,14 +5286,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5197,7 +5315,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5225,7 +5343,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5247,14 +5365,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5276,7 +5394,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5285,7 +5403,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5313,7 +5431,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5335,14 +5453,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5364,7 +5482,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5392,7 +5510,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5414,14 +5532,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5443,7 +5561,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5452,7 +5570,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5480,7 +5598,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5502,14 +5620,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5531,7 +5649,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5584,7 +5702,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5606,14 +5724,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5635,7 +5753,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5644,7 +5762,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5672,7 +5790,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5694,14 +5812,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5723,7 +5841,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5751,7 +5869,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5773,14 +5891,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5802,7 +5920,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5811,7 +5929,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5839,7 +5957,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5861,14 +5979,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5890,7 +6008,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5918,7 +6036,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5940,14 +6058,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -5969,7 +6087,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -5978,7 +6096,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6006,7 +6124,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6028,14 +6146,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6057,7 +6175,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6085,7 +6203,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6107,14 +6225,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6136,7 +6254,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6145,7 +6263,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6173,7 +6291,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6195,14 +6313,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6224,7 +6342,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6252,7 +6370,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6274,14 +6392,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6303,7 +6421,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6312,7 +6430,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6340,7 +6458,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6362,14 +6480,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6391,7 +6509,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6444,7 +6562,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6466,14 +6584,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6495,7 +6613,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6504,7 +6622,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6532,7 +6650,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6554,14 +6672,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6583,7 +6701,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6611,7 +6729,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6633,14 +6751,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6662,7 +6780,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6671,7 +6789,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6699,7 +6817,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6721,14 +6839,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6750,7 +6868,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6778,7 +6896,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6800,14 +6918,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6829,7 +6947,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6838,7 +6956,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6866,7 +6984,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6888,14 +7006,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6917,7 +7035,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -6945,7 +7063,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6967,14 +7085,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -6996,7 +7114,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7005,7 +7123,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7033,7 +7151,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7055,14 +7173,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7084,7 +7202,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7112,7 +7230,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7134,14 +7252,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7163,7 +7281,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7172,7 +7290,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7200,7 +7318,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7222,14 +7340,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7251,7 +7369,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7279,7 +7397,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7301,14 +7419,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7330,7 +7448,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7339,7 +7457,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7367,7 +7485,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7389,14 +7507,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7418,7 +7536,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7472,7 +7590,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7494,14 +7612,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7523,7 +7641,7 @@ background-color: rgba(255, 255, 255, 0); h - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7532,7 +7650,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7560,7 +7678,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7582,14 +7700,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7611,7 +7729,7 @@ background-color: rgba(255, 255, 255, 0); h - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7639,7 +7757,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7661,14 +7779,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7690,7 +7808,7 @@ background-color: rgba(255, 255, 255, 0); Ah - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7699,7 +7817,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7727,7 +7845,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7749,14 +7867,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7778,7 +7896,7 @@ background-color: rgba(255, 255, 255, 0); Ah - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7806,7 +7924,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7828,14 +7946,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7857,7 +7975,7 @@ background-color: rgba(255, 255, 255, 0); kWh - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7866,7 +7984,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7894,7 +8012,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7916,14 +8034,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7945,7 +8063,7 @@ background-color: rgba(255, 255, 255, 0); kWh - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -7973,7 +8091,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -7995,14 +8113,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8024,7 +8142,7 @@ background-color: rgba(255, 255, 255, 0); h - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8033,7 +8151,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8061,7 +8179,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8083,14 +8201,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8112,7 +8230,7 @@ background-color: rgba(255, 255, 255, 0); h - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8140,7 +8258,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8162,14 +8280,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8191,7 +8309,7 @@ background-color: rgba(255, 255, 255, 0); Ah - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8200,7 +8318,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8228,7 +8346,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8250,14 +8368,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8279,7 +8397,7 @@ background-color: rgba(255, 255, 255, 0); Ah - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8307,7 +8425,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8329,14 +8447,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8358,7 +8476,7 @@ background-color: rgba(255, 255, 255, 0); kWh - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8367,7 +8485,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8395,7 +8513,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8417,14 +8535,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8446,7 +8564,7 @@ background-color: rgba(255, 255, 255, 0); kWh - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8493,7 +8611,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8515,14 +8633,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8544,7 +8662,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8553,7 +8671,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8581,7 +8699,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8603,14 +8721,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8632,7 +8750,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8660,7 +8778,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8682,14 +8800,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8711,7 +8829,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8720,7 +8838,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8748,7 +8866,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8770,14 +8888,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8799,7 +8917,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8827,7 +8945,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8849,14 +8967,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8878,7 +8996,7 @@ background-color: rgba(255, 255, 255, 0); Ω - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8887,7 +9005,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8915,7 +9033,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8937,14 +9055,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -8966,7 +9084,7 @@ background-color: rgba(255, 255, 255, 0); Ω - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -8994,7 +9112,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9016,14 +9134,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9045,7 +9163,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9054,7 +9172,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9082,7 +9200,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9104,14 +9222,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9133,7 +9251,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9161,7 +9279,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9183,14 +9301,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9212,7 +9330,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9221,7 +9339,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9249,7 +9367,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9271,14 +9389,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9300,7 +9418,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9328,7 +9446,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9350,14 +9468,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9379,7 +9497,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9388,7 +9506,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9416,7 +9534,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9438,14 +9556,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9467,7 +9585,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9495,7 +9613,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9517,14 +9635,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9546,7 +9664,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9555,7 +9673,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9583,7 +9701,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9605,14 +9723,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9634,7 +9752,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9662,7 +9780,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9684,14 +9802,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9713,7 +9831,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9722,7 +9840,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9750,7 +9868,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9772,14 +9890,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9801,7 +9919,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9829,7 +9947,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9851,14 +9969,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9880,7 +9998,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -9889,7 +10007,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9917,7 +10035,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9939,14 +10057,14 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter - Qt::Orientation::Horizontal + Qt::Horizontal @@ -9968,7 +10086,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -10030,7 +10148,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10058,7 +10176,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10086,7 +10204,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10133,7 +10251,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10161,7 +10279,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10189,7 +10307,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10236,7 +10354,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10264,7 +10382,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10292,7 +10410,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10339,7 +10457,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10367,7 +10485,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10395,7 +10513,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10442,7 +10560,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10470,7 +10588,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10498,7 +10616,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10545,7 +10663,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10573,7 +10691,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10601,7 +10719,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10648,7 +10766,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10676,7 +10794,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10704,7 +10822,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10751,7 +10869,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10779,7 +10897,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10807,7 +10925,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10854,7 +10972,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10882,7 +11000,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10910,7 +11028,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10957,7 +11075,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -10985,7 +11103,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11013,7 +11131,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11085,7 +11203,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11128,7 +11246,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11171,7 +11289,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11214,7 +11332,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11257,7 +11375,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11300,7 +11418,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11343,7 +11461,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11373,7 +11491,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11403,7 +11521,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11446,7 +11564,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11489,7 +11607,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11532,7 +11650,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11575,7 +11693,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11618,7 +11736,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11661,7 +11779,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11749,7 +11867,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11775,7 +11893,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11797,7 +11915,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -11806,7 +11924,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11834,7 +11952,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11860,7 +11978,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11882,7 +12000,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -11910,7 +12028,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11936,7 +12054,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11958,7 +12076,7 @@ background-color: rgba(255, 255, 255, 0); V - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -11967,7 +12085,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -11995,7 +12113,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12021,7 +12139,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12043,7 +12161,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12071,7 +12189,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12097,7 +12215,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12119,7 +12237,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12128,7 +12246,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12156,7 +12274,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12182,7 +12300,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12204,7 +12322,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12232,7 +12350,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12258,7 +12376,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12280,7 +12398,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12289,7 +12407,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12317,7 +12435,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12343,7 +12461,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12365,7 +12483,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12393,7 +12511,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12419,7 +12537,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12441,7 +12559,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12450,7 +12568,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12478,7 +12596,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12504,7 +12622,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12526,7 +12644,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12554,7 +12672,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12580,7 +12698,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12602,7 +12720,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12611,7 +12729,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12639,7 +12757,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12665,7 +12783,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12687,7 +12805,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12715,7 +12833,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12741,7 +12859,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12763,7 +12881,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12772,7 +12890,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12800,7 +12918,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12826,7 +12944,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12848,7 +12966,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12876,7 +12994,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12902,7 +13020,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12924,7 +13042,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -12933,7 +13051,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12961,7 +13079,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -12987,7 +13105,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13009,7 +13127,7 @@ background-color: rgba(255, 255, 255, 0); # - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13062,7 +13180,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13088,7 +13206,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13110,7 +13228,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13119,7 +13237,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13147,7 +13265,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13173,7 +13291,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13195,7 +13313,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13223,7 +13341,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13249,7 +13367,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13271,7 +13389,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13280,7 +13398,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13308,7 +13426,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13334,7 +13452,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13356,7 +13474,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13384,7 +13502,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13410,7 +13528,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13432,7 +13550,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13441,7 +13559,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13469,7 +13587,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13495,7 +13613,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13517,7 +13635,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13545,7 +13663,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13571,7 +13689,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13593,7 +13711,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13602,7 +13720,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13630,7 +13748,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13656,7 +13774,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13678,7 +13796,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13706,7 +13824,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13732,7 +13850,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13754,7 +13872,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13763,7 +13881,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13791,7 +13909,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13817,7 +13935,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13839,7 +13957,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13867,7 +13985,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13893,7 +14011,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13915,7 +14033,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -13924,7 +14042,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13952,7 +14070,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -13978,7 +14096,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14000,7 +14118,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14065,7 +14183,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14091,7 +14209,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14113,7 +14231,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14122,7 +14240,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14150,7 +14268,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14176,7 +14294,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14198,7 +14316,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14209,7 +14327,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14239,7 +14357,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14265,7 +14383,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14287,7 +14405,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14296,7 +14414,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14324,7 +14442,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14350,7 +14468,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14372,7 +14490,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14412,7 +14530,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14438,7 +14556,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14460,7 +14578,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14469,7 +14587,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14497,7 +14615,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14523,7 +14641,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14545,7 +14663,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14556,7 +14674,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14586,7 +14704,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14612,7 +14730,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14634,7 +14752,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14643,7 +14761,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14671,7 +14789,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14697,7 +14815,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14719,7 +14837,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14759,7 +14877,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14785,7 +14903,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14807,7 +14925,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14816,7 +14934,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14844,7 +14962,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14870,7 +14988,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14892,7 +15010,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14903,7 +15021,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14933,7 +15051,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14959,7 +15077,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -14981,7 +15099,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -14990,7 +15108,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15018,7 +15136,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15044,7 +15162,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15066,7 +15184,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15106,7 +15224,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15132,7 +15250,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15154,7 +15272,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15163,7 +15281,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15191,7 +15309,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15217,7 +15335,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15239,7 +15357,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15250,7 +15368,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15280,7 +15398,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15306,7 +15424,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15328,7 +15446,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15337,7 +15455,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15365,7 +15483,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15391,7 +15509,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15413,7 +15531,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15453,7 +15571,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15479,7 +15597,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15501,7 +15619,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15510,7 +15628,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15538,7 +15656,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15564,7 +15682,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15586,7 +15704,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15597,7 +15715,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15627,7 +15745,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15653,7 +15771,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15675,7 +15793,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15684,7 +15802,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15712,7 +15830,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15738,7 +15856,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15760,7 +15878,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15800,7 +15918,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15826,7 +15944,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15848,7 +15966,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15857,7 +15975,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15885,7 +16003,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15911,7 +16029,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15933,7 +16051,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -15944,7 +16062,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -15974,7 +16092,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16000,7 +16118,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16022,7 +16140,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16031,7 +16149,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16059,7 +16177,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16085,7 +16203,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16107,7 +16225,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16147,7 +16265,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16173,7 +16291,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16195,7 +16313,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16204,7 +16322,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16232,7 +16350,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16258,7 +16376,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16280,7 +16398,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16291,7 +16409,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16321,7 +16439,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16347,7 +16465,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16369,7 +16487,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16378,7 +16496,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16406,7 +16524,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16432,7 +16550,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16454,7 +16572,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16494,7 +16612,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16520,7 +16638,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16542,7 +16660,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16551,7 +16669,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16579,7 +16697,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16605,7 +16723,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16627,7 +16745,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16638,7 +16756,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16668,7 +16786,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16694,7 +16812,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16716,7 +16834,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16725,7 +16843,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16753,7 +16871,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16779,7 +16897,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16801,7 +16919,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16841,7 +16959,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16867,7 +16985,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16889,7 +17007,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16898,7 +17016,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16926,7 +17044,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16952,7 +17070,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -16974,7 +17092,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -16985,7 +17103,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17015,7 +17133,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17041,7 +17159,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17063,7 +17181,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17072,7 +17190,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17100,7 +17218,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17126,7 +17244,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17148,7 +17266,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17188,7 +17306,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17214,7 +17332,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17236,7 +17354,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17245,7 +17363,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17273,7 +17391,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17299,7 +17417,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17321,7 +17439,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17332,7 +17450,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17362,7 +17480,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17388,7 +17506,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17410,7 +17528,7 @@ background-color: rgba(255, 255, 255, 0); mV - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17419,7 +17537,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17447,7 +17565,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17473,7 +17591,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17495,7 +17613,7 @@ background-color: rgba(255, 255, 255, 0); - - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17552,7 +17670,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17578,7 +17696,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17600,7 +17718,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17609,7 +17727,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17637,7 +17755,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17663,7 +17781,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17685,7 +17803,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17713,7 +17831,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17739,7 +17857,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17761,7 +17879,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17770,7 +17888,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17798,7 +17916,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17824,7 +17942,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17846,7 +17964,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17874,7 +17992,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17900,7 +18018,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17922,7 +18040,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -17931,7 +18049,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17959,7 +18077,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -17985,7 +18103,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18007,7 +18125,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18035,7 +18153,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18061,7 +18179,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18083,7 +18201,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18092,7 +18210,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18120,7 +18238,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18146,7 +18264,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18168,7 +18286,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18196,7 +18314,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18222,7 +18340,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18244,7 +18362,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18253,7 +18371,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18281,7 +18399,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18307,7 +18425,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18329,7 +18447,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18357,7 +18475,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18383,7 +18501,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18405,7 +18523,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18414,7 +18532,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18442,7 +18560,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18468,7 +18586,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18490,7 +18608,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18518,7 +18636,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18544,7 +18662,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18566,7 +18684,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18575,7 +18693,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18603,7 +18721,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18629,7 +18747,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18651,7 +18769,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18679,7 +18797,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18705,7 +18823,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18727,7 +18845,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18736,7 +18854,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18764,7 +18882,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18790,7 +18908,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18812,7 +18930,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::AlignmentFlag::AlignCenter + Qt::AlignCenter @@ -18840,7 +18958,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -18860,7 +18978,7 @@ background-color: rgba(255, 255, 255, 0); - Qt::Orientation::Horizontal + Qt::Horizontal @@ -19061,7 +19179,7 @@ li.checked::marker { content: "\2612"; } - Qt::Orientation::Horizontal + Qt::Horizontal