modify color change to pannel

This commit is contained in:
brige 2025-11-09 22:08:13 +08:00
parent 6389e530b4
commit c8b53ec674
3 changed files with 128 additions and 77 deletions

View File

@ -2,6 +2,9 @@
#include "ui/DockWidget.h" #include "ui/DockWidget.h"
#include "ui/DockTitleBar.h" #include "ui/DockTitleBar.h"
#include "common/SpdLogger.h" #include "common/SpdLogger.h"
#include "workspace/WorkSpaceManager.h"
#include "workspace/WorkSpace.h"
#include "workspace/Timestep.h"
#include <QHBoxLayout> #include <QHBoxLayout>
#include <QFileInfo> #include <QFileInfo>
#include <QMessageBox> #include <QMessageBox>
@ -33,14 +36,14 @@ LightPanel::~LightPanel()
void LightPanel::RefreshPanel() void LightPanel::RefreshPanel()
{ {
// Implement curve-specific refresh logic here // Implement curve-specific refresh logic here
DataPanel::RefreshPanel(); DataPanel::RefreshPanel();
if (auto fileEntry = fileEntry_->AsLight()) { if (auto fileEntry = fileEntry_->AsLight()) {
OnDataPanelUpdated(fileEntry); OnDataPanelUpdated(fileEntry);
} }
LOG_INFO("Refreshed TablePanel {}", GetIndex()); LOG_INFO("Refreshed LightPanel {}", GetIndex());
} }
void LightPanel::InitUI() void LightPanel::InitUI()
@ -57,8 +60,8 @@ QString LightPanel::GetTypeDisplayName() const
void LightPanel::OnDataPanelUpdated(FileEntryLight* fileEntry) void LightPanel::OnDataPanelUpdated(FileEntryLight* fileEntry)
{ {
QString strName = fileEntry->GetName(); QString strName = fileEntry->GetName();
updateTitle(strName); updateTitle(strName);
FileEntryLight::ColorProperties propChart = fileEntry->GetColorProperties(); FileEntryLight::ColorProperties propChart = fileEntry->GetColorProperties();
@ -66,35 +69,23 @@ void LightPanel::OnDataPanelUpdated(FileEntryLight* fileEntry)
QString closeColor = QColorToString(propChart.closeColor); QString closeColor = QColorToString(propChart.closeColor);
updateLampColor(openColor, closeColor); updateLampColor(openColor, closeColor);
QString strFile = fileEntry->GetPath() + "/" + fileEntry->GetFileName(); QString strFile = fileEntry->GetPath() + "/" + fileEntry->GetFileName();
FileEntryLight::LightRowProperties listCurve = fileEntry->GetLightProperties(); FileEntryLight::LightRowProperties listCurve = fileEntry->GetLightProperties();
updateParseFile(strFile, propChart.timeParam, listCurve); updateParseFile(strFile, propChart.timeParam, listCurve);
// 颜色或数据更新后,按当前时间重新应用灯样式,确保即时可见
WorkSpace* ws = WorkSpaceManager::Get().GetCurrent();
if (ws) {
Timestep* ts = ws->GetTimestep();
if (ts) {
applyLampStylesForTime(ts->GetCurrent());
}
}
} }
void LightPanel::OnTimeChanged(double time) void LightPanel::OnTimeChanged(double time)
{ {
if (m_dataLamp.size() > 0) applyLampStylesForTime(time);
{
QMap< double, QVariantMap >::const_iterator ite = m_dataLamp.lowerBound(time);
if (ite == m_dataLamp.end())
{
ite--;
}
QVariantMap mapData = ite.value();
for (QVariantMap::Iterator it = mapData.begin(); it != mapData.end(); it++)
{
QString strKey = it.key();
int nState = it.value().toFloat();
SignalLabel* pLampLab = m_mapLamp.value(strKey);
if (pLampLab)
{
QString strStyle = m_lampColor.value(nState);
pLampLab->setStyleSheet(strStyle);
}
}
}
} }
void LightPanel::updateTitle(const QString & title) void LightPanel::updateTitle(const QString & title)
@ -109,7 +100,7 @@ void LightPanel::updateParseFile(const QString & strFile, int nT, FileEntryLight
{ {
if (strFile.isEmpty()) if (strFile.isEmpty())
{ {
QMessageBox::information(nullptr, QString::fromLocal8Bit("提示"), QString::fromLocal8Bit("请检查数据文件路径!")); QMessageBox::information(nullptr, QString::fromLocal8Bit("<EFBFBD><EFBFBD>ʾ"), QString::fromLocal8Bit("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>·<EFBFBD><EFBFBD><EFBFBD><EFBFBD>"));
return; return;
} }
@ -183,16 +174,42 @@ void LightPanel::updateParseFile(const QString & strFile, int nT, FileEntryLight
void LightPanel::updateLampColor(const QString & strOpenColor, const QString & strCloseColor) void LightPanel::updateLampColor(const QString & strOpenColor, const QString & strCloseColor)
{ {
m_lampColor.clear(); m_lampColor.clear();
{ {
QString strStyle = "QLabel{background-color: rgb(" + strCloseColor + ");border-radius: 10px;}; "; QString strStyle = "QLabel{background-color: rgb(" + strCloseColor + ");border-radius: 10px;}; ";
m_lampColor.insert(0, strStyle); m_lampColor.insert(0, strStyle);
} }
{ {
QString strStyle = "QLabel{background-color: rgb(" + strOpenColor + ");border-radius: 10px;}; "; QString strStyle = "QLabel{background-color: rgb(" + strOpenColor + ");border-radius: 10px;}; ";
m_lampColor.insert(1, strStyle); m_lampColor.insert(1, strStyle);
} }
}
void LightPanel::applyLampStylesForTime(double time)
{
if (m_dataLamp.isEmpty()) {
return;
}
auto ite = m_dataLamp.lowerBound(time);
if (ite == m_dataLamp.end()) {
ite--;
}
const QVariantMap mapData = ite.value();
for (auto it = mapData.constBegin(); it != mapData.constEnd(); ++it)
{
const QString strKey = it.key();
const int nState = it.value().toFloat();
SignalLabel* pLampLab = m_mapLamp.value(strKey);
if (pLampLab)
{
const QString strStyle = m_lampColor.value(nState);
pLampLab->setStyleSheet(strStyle);
}
}
} }
void LightPanel::clearLightPanel() void LightPanel::clearLightPanel()

View File

@ -60,15 +60,16 @@ protected:
virtual void OnTimeChanged(double time); virtual void OnTimeChanged(double time);
private: private:
void updateTitle(const QString& title); void updateTitle(const QString& title);
void updateParseFile(const QString& strFile, int nT, FileEntryLight::LightRowProperties listCurve); void updateParseFile(const QString& strFile, int nT, FileEntryLight::LightRowProperties listCurve);
void updateLampColor(const QString& strOpenColor, const QString& strCloseColor); void updateLampColor(const QString& strOpenColor, const QString& strCloseColor);
void applyLampStylesForTime(double time);
void clearLightPanel(); void clearLightPanel();
private: private:
QMap<int, QString> m_lampColor; QMap<int, QString> m_lampColor;
QMap<QString, SignalLabel*> m_mapLamp; QMap<QString, SignalLabel*> m_mapLamp;
QMap< double, QVariantMap > m_dataLamp; QMap< double, QVariantMap > m_dataLamp;
}; };

View File

@ -1,6 +1,9 @@
#include "ui/Panel/TablePanel.h" #include "ui/Panel/TablePanel.h"
#include "ui/DockWidget.h" #include "ui/DockWidget.h"
#include "ui/DockTitleBar.h" #include "ui/DockTitleBar.h"
#include "workspace/WorkSpaceManager.h"
#include "workspace/WorkSpace.h"
#include "workspace/Timestep.h"
#include "common/SpdLogger.h" #include "common/SpdLogger.h"
#include <QHBoxLayout> #include <QHBoxLayout>
#include <QFileInfo> #include <QFileInfo>
@ -80,17 +83,34 @@ QString TablePanel::GetTypeDisplayName() const
void TablePanel::OnDataPanelUpdated(FileEntryTable* fileEntry) void TablePanel::OnDataPanelUpdated(FileEntryTable* fileEntry)
{ {
QString strName = fileEntry->GetName(); QString strName = fileEntry->GetName();
updateTitle(strName); updateTitle(strName);
FileEntryTable::ChartProperties propChart = fileEntry->GetChartProperties(); FileEntryTable::ChartProperties propChart = fileEntry->GetChartProperties();
QStringList tableHeader = propChart.headerString.split(',', Qt::SkipEmptyParts); QStringList tableHeader = propChart.headerString.split(',', Qt::SkipEmptyParts);
SetHeader(tableHeader); SetHeader(tableHeader);
QString strFile = fileEntry->GetPath() + "/" + fileEntry->GetFileName(); QString strFile = fileEntry->GetPath() + "/" + fileEntry->GetFileName();
FileEntryTable::TableProperties listCurve = fileEntry->GetTableProperties(); FileEntryTable::TableProperties listCurve = fileEntry->GetTableProperties();
updateParseFile(strFile, propChart.timeParam, listCurve); updateParseFile(strFile, propChart.timeParam, listCurve);
// After parsing new data and settings, immediately refresh the table to current time
// so color changes from PropertyBrowser reflect in the UI right away
WorkSpace* ws = WorkSpaceManager::Get().GetCurrent();
if (ws) {
Timestep* ts = ws->GetTimestep();
if (ts) {
updateTable(ts->GetCurrent());
return;
}
}
// Fallback: render the latest snapshot if no workspace/timestep
if (!m_dataTable.isEmpty()) {
auto it = m_dataTable.end();
--it;
updateTable(it.key());
}
} }
void TablePanel::OnTimeChanged(double time) void TablePanel::OnTimeChanged(double time)
@ -118,7 +138,7 @@ void TablePanel::updateParseFile(const QString & strFile, int nT, FileEntryTable
{ {
if (strFile.isEmpty()) if (strFile.isEmpty())
{ {
QMessageBox::information(nullptr, QString::fromLocal8Bit("提示"), QString::fromLocal8Bit("请检查数据文件路径!")); QMessageBox::information(nullptr, QString::fromLocal8Bit("<EFBFBD><EFBFBD>ʾ"), QString::fromLocal8Bit("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>·<EFBFBD><EFBFBD><EFBFBD><EFBFBD>"));
return; return;
} }
@ -187,9 +207,9 @@ void TablePanel::updateParseFile(const QString & strFile, int nT, FileEntryTable
void TablePanel::updateTable(double t) void TablePanel::updateTable(double t)
{ {
if (m_dataTable.size() > 0) if (m_dataTable.size() > 0)
{ {
clearTable(); clearTable();
QMap< double, QMap<int, QVariantList> >::const_iterator ite = m_dataTable.lowerBound(t); QMap< double, QMap<int, QVariantList> >::const_iterator ite = m_dataTable.lowerBound(t);
if (ite == m_dataTable.end()) if (ite == m_dataTable.end())
@ -197,24 +217,37 @@ void TablePanel::updateTable(double t)
ite--; ite--;
} }
QMap<int, QVariantList> mapData = ite.value(); QMap<int, QVariantList> mapData = ite.value();
for (QMap<int, QVariantList>::Iterator it = mapData.begin(); it != mapData.end(); it++) for (QMap<int, QVariantList>::Iterator it = mapData.begin(); it != mapData.end(); it++)
{ {
int nRow = it.key(); int nRow = it.key();
QVariantList dataList = it.value(); QVariantList dataList = it.value();
m_pTableWidget->insertRow(nRow); m_pTableWidget->insertRow(nRow);
for (int nI = 0; nI < dataList.size(); nI++) for (int nI = 0; nI < dataList.size(); nI++)
{ {
QString strVal; QString strVal;
strVal.sprintf("%.6f", dataList.at(nI).toFloat()); strVal.sprintf("%.6f", dataList.at(nI).toFloat());
QTableWidgetItem *item = new QTableWidgetItem(strVal); QTableWidgetItem *item = new QTableWidgetItem(strVal);
item->setTextAlignment(Qt::AlignCenter); item->setTextAlignment(Qt::AlignCenter);
m_pTableWidget->setItem(nRow, nI, item); m_pTableWidget->setItem(nRow, nI, item);
}
} // Apply color linkage: use FileEntryTable::TableProperty color for this row
} if (m_tableSetting.contains(nRow)) {
const QColor rowColor = m_tableSetting.value(nRow).second;
if (rowColor.isValid()) {
// Prefer foreground text color to mirror curve color, keep readability
item->setForeground(QBrush(rowColor));
// Optionally add a subtle background tint to improve visibility
QColor bg = rowColor;
bg.setAlpha(40);
item->setBackground(QBrush(bg));
}
}
}
}
}
} }
void TablePanel::clearTable() void TablePanel::clearTable()