|
@@ -69,9 +69,9 @@ void Group::initForm()
|
|
|
|
|
|
// MainWnd *mainWindow = new MainWnd();
|
|
|
// connect(mainWindow,&MainWnd::styleChanged,this,&Group::Changedstyle);
|
|
|
- QTimer *timer = new QTimer(this);
|
|
|
- connect(timer, &QTimer::timeout, this, &Group::Changedstyle);
|
|
|
- timer->start(100);
|
|
|
+ // QTimer *timer = new QTimer(this);
|
|
|
+ // connect(timer, &QTimer::timeout, this, &Group::Changedstyle);
|
|
|
+ // timer->start(100);
|
|
|
}
|
|
|
|
|
|
void Group::Changedstyle()
|
|
@@ -111,6 +111,7 @@ bool Group::eventFilter(QObject *obj, QEvent *event)
|
|
|
}
|
|
|
emit SetCurrentSelectSig(groupId, index);
|
|
|
emit SendGroupSelectedSignals(this, index);
|
|
|
+ emit sendUpdateGroupState();
|
|
|
return true;
|
|
|
}
|
|
|
}
|
|
@@ -196,73 +197,7 @@ void Group::on_DatacomboBox_currentIndexChanged(int index){
|
|
|
send_ComboBox_singal(m_nCurrentGroupId,index);
|
|
|
}
|
|
|
|
|
|
-void Group::GetGroupSelectedSlots(Group* group, int index)
|
|
|
-{
|
|
|
- QSettings settings("OrganizationName__", "ApplicationName__");
|
|
|
- int currentLastSavedIndex = settings.value("lastIndex", 1).toInt();
|
|
|
-
|
|
|
- // 清除当前红色边框
|
|
|
- if (m_pCurrentlySelectedGroup != nullptr)
|
|
|
- {
|
|
|
- m_pCurrentlySelectedGroup->ui->leftBackground->setStyleSheet("");
|
|
|
- m_pCurrentlySelectedGroup->ui->rightBackground->setStyleSheet("");
|
|
|
- }
|
|
|
-
|
|
|
- // 清除当前蓝色边框
|
|
|
- if (m_pPreviouslySelectedBlueGroup != nullptr)
|
|
|
- {
|
|
|
- m_pPreviouslySelectedBlueGroup->ui->leftBackground->setStyleSheet("");
|
|
|
- m_pPreviouslySelectedBlueGroup->ui->rightBackground->setStyleSheet("");
|
|
|
- }
|
|
|
-
|
|
|
- if (currentLastSavedIndex == 1 || currentLastSavedIndex == 3)
|
|
|
- {
|
|
|
- // 仅当前选中设为红色,蓝色边框清空
|
|
|
- m_pPreviouslySelectedBlueGroup = nullptr;
|
|
|
- }
|
|
|
- else if (currentLastSavedIndex == 2)
|
|
|
- {
|
|
|
- // 当前选中设为红色,上一个选中设为蓝色
|
|
|
- if (m_pLastClickedGroup != nullptr)
|
|
|
- {
|
|
|
- QString blueBorderStyle = "border: 2px solid blue;";
|
|
|
- // 即使是同一个实例,只要索引不同就设置蓝色边框
|
|
|
- if (m_pLastClickedGroup == group && m_stnLastClickedIndex != index)
|
|
|
- {
|
|
|
- if (m_stnLastClickedIndex == 1)
|
|
|
- {
|
|
|
- m_pLastClickedGroup->ui->leftBackground->setStyleSheet(blueBorderStyle);
|
|
|
- }
|
|
|
- else if (m_stnLastClickedIndex == 2)
|
|
|
- {
|
|
|
- m_pLastClickedGroup->ui->rightBackground->setStyleSheet(blueBorderStyle);
|
|
|
- }
|
|
|
- m_pPreviouslySelectedBlueGroup = m_pLastClickedGroup;
|
|
|
- }
|
|
|
- else if (m_pLastClickedGroup != group)
|
|
|
- {
|
|
|
- if (m_stnLastClickedIndex == 1)
|
|
|
- {
|
|
|
- m_pLastClickedGroup->ui->leftBackground->setStyleSheet(blueBorderStyle);
|
|
|
- }
|
|
|
- else if (m_stnLastClickedIndex == 2)
|
|
|
- {
|
|
|
- m_pLastClickedGroup->ui->rightBackground->setStyleSheet(blueBorderStyle);
|
|
|
- }
|
|
|
- m_pPreviouslySelectedBlueGroup = m_pLastClickedGroup;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 更新当前选中的 Group 实例
|
|
|
- m_pCurrentlySelectedGroup = group;
|
|
|
- // 将当前选中的边框设为红色
|
|
|
- group->check_selected(index);
|
|
|
|
|
|
- // 更新上一次点击的记录
|
|
|
- m_pLastClickedGroup = group;
|
|
|
- m_stnLastClickedIndex = index;
|
|
|
-}
|
|
|
|
|
|
void Group::UpDataImageShowSlots(const QPixmap& imageData)
|
|
|
{
|
|
@@ -291,19 +226,22 @@ void Group::saveBorderSettings()
|
|
|
settings.beginGroup(QString::number(m_nGroupId));
|
|
|
|
|
|
QString leftStyle = ui->leftBackground->styleSheet();
|
|
|
+ QString rightStyle = ui->rightBackground->styleSheet();
|
|
|
+
|
|
|
if (leftStyle.contains("blue", Qt::CaseInsensitive)) {
|
|
|
leftStyle = ""; // 清除样式
|
|
|
// 记录该边框信息
|
|
|
recordBorderInfo(m_nGroupId, "Left");
|
|
|
}
|
|
|
- settings.setValue("LeftBorderStyle", leftStyle);
|
|
|
|
|
|
- QString rightStyle = ui->rightBackground->styleSheet();
|
|
|
if (rightStyle.contains("blue", Qt::CaseInsensitive)) {
|
|
|
rightStyle = ""; // 清除样式
|
|
|
// 记录该边框信息
|
|
|
recordBorderInfo(m_nGroupId, "Right");
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ settings.setValue("LeftBorderStyle", leftStyle);
|
|
|
settings.setValue("RightBorderStyle", rightStyle);
|
|
|
|
|
|
settings.setValue("LastClickedIndex", m_stnLastClickedIndex);
|
|
@@ -311,7 +249,8 @@ void Group::saveBorderSettings()
|
|
|
|
|
|
if (m_pCurrentlySelectedGroup == this) {
|
|
|
settings.setValue("IsCurrentlySelected", true);
|
|
|
- } else {
|
|
|
+ }
|
|
|
+ else {
|
|
|
settings.setValue("IsCurrentlySelected", false);
|
|
|
}
|
|
|
|
|
@@ -329,6 +268,7 @@ void Group::recordBorderInfo(int groupId, const QString& side)
|
|
|
|
|
|
void Group::loadBorderSettings()
|
|
|
{
|
|
|
+
|
|
|
QSettings settings("YourOrganization", "YourApplication");
|
|
|
settings.beginGroup(QString::number(m_nGroupId));
|
|
|
|
|
@@ -338,7 +278,6 @@ void Group::loadBorderSettings()
|
|
|
m_stnLastSavedIndex = settings.value("LastSavedIndex", 1).toInt();
|
|
|
bool isCurrentlySelected = settings.value("IsCurrentlySelected", false).toBool();
|
|
|
|
|
|
-
|
|
|
QSettings settings2("OrganizationName__", "ApplicationName__");
|
|
|
int Index = settings2.value("lastIndex", 1).toInt();
|
|
|
|
|
@@ -352,11 +291,17 @@ void Group::loadBorderSettings()
|
|
|
if (borderInfoSettings.contains(leftKey)) {
|
|
|
leftStyle = getBlueBorderStyle();
|
|
|
borderInfoSettings.remove(leftKey); // 移除记录,避免下次重复处理
|
|
|
+ qDebug() << "Left border of group" << m_nGroupId << "restored to blue.";
|
|
|
+ m_pPreviouslySelectedBlueGroup = this;
|
|
|
+ // lastClickedGroup =this;
|
|
|
}
|
|
|
// 检查右边框是否需要还原
|
|
|
if (borderInfoSettings.contains(rightKey)) {
|
|
|
rightStyle = getBlueBorderStyle();
|
|
|
borderInfoSettings.remove(rightKey);
|
|
|
+ qDebug() << "Right border of group" << m_nGroupId << "restored to blue.";
|
|
|
+ m_pPreviouslySelectedBlueGroup = this;
|
|
|
+ // lastClickedGroup =this;
|
|
|
}
|
|
|
borderInfoSettings.endGroup();
|
|
|
}
|
|
@@ -366,10 +311,14 @@ void Group::loadBorderSettings()
|
|
|
|
|
|
if (isCurrentlySelected) {
|
|
|
m_pCurrentlySelectedGroup = this;
|
|
|
+ m_pLastClickedGroup = this;
|
|
|
if (leftStyle.contains("red")) {
|
|
|
m_stnLastClickedIndex = 1;
|
|
|
- } else if (rightStyle.contains("red")) {
|
|
|
+ qDebug() << "Left border of group" << m_nGroupId << "is red.";
|
|
|
+ }
|
|
|
+ else if (rightStyle.contains("red")) {
|
|
|
m_stnLastClickedIndex = 2;
|
|
|
+ qDebug() << "Right border of group" << m_nGroupId << "is red.";
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -381,3 +330,72 @@ QString Group::getBlueBorderStyle()
|
|
|
static const QString blueBorderStyle = "border: 2px solid blue;";
|
|
|
return blueBorderStyle;
|
|
|
}
|
|
|
+
|
|
|
+QString Group::getRedBorderStyle()
|
|
|
+{
|
|
|
+ static const QString blueBorderStyle = "";
|
|
|
+ return blueBorderStyle;
|
|
|
+}
|
|
|
+
|
|
|
+void Group::GetGroupSelectedSlots(Group* group, int index) {
|
|
|
+ QSettings settings("OrganizationName__", "ApplicationName__");
|
|
|
+ int currentLastSavedIndex = settings.value("lastIndex", 1).toInt();
|
|
|
+
|
|
|
+ // 检查是否是同一个组的同一个索引被点击
|
|
|
+ if (m_pLastClickedGroup == group && m_stnLastClickedIndex == index) {
|
|
|
+ // 如果是同一个组的同一个索引被点击,则不更新边框
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 清除当前红色边框
|
|
|
+ if (m_pCurrentlySelectedGroup != nullptr) {
|
|
|
+ m_pCurrentlySelectedGroup->ui->leftBackground->setStyleSheet("");
|
|
|
+ m_pCurrentlySelectedGroup->ui->rightBackground->setStyleSheet("");
|
|
|
+ }
|
|
|
+
|
|
|
+ // 清除当前蓝色边框
|
|
|
+ if (m_pPreviouslySelectedBlueGroup != nullptr) {
|
|
|
+ m_pPreviouslySelectedBlueGroup->ui->leftBackground->setStyleSheet("");
|
|
|
+ m_pPreviouslySelectedBlueGroup->ui->rightBackground->setStyleSheet("");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (currentLastSavedIndex == 1 || currentLastSavedIndex == 3) {
|
|
|
+ // 仅当前选中设为红色,蓝色边框清空
|
|
|
+
|
|
|
+ m_pPreviouslySelectedBlueGroup = nullptr;
|
|
|
+ }
|
|
|
+ else if (currentLastSavedIndex == 2) {
|
|
|
+ // 当前选中设为红色,上一个选中设为蓝色
|
|
|
+ if (m_pLastClickedGroup != nullptr) {
|
|
|
+ QString blueBorderStyle = "border: 2px solid blue;";
|
|
|
+ // 即使是同一个实例,只要索引不同就设置蓝色边框
|
|
|
+ if (m_pLastClickedGroup == group && m_stnLastClickedIndex != index) {
|
|
|
+ if (m_stnLastClickedIndex == 1) {
|
|
|
+ m_pLastClickedGroup->ui->leftBackground->setStyleSheet(blueBorderStyle);
|
|
|
+ }
|
|
|
+ else if (m_stnLastClickedIndex == 2) {
|
|
|
+ m_pLastClickedGroup->ui->rightBackground->setStyleSheet(blueBorderStyle);
|
|
|
+ }
|
|
|
+ m_pPreviouslySelectedBlueGroup = m_pLastClickedGroup;
|
|
|
+ }
|
|
|
+ else if (m_pLastClickedGroup != group) {
|
|
|
+ if (m_stnLastClickedIndex == 1) {
|
|
|
+ m_pLastClickedGroup->ui->leftBackground->setStyleSheet(blueBorderStyle);
|
|
|
+ }
|
|
|
+ else if (m_stnLastClickedIndex == 2) {
|
|
|
+ m_pLastClickedGroup->ui->rightBackground->setStyleSheet(blueBorderStyle);
|
|
|
+ }
|
|
|
+ m_pPreviouslySelectedBlueGroup = m_pLastClickedGroup;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 更新当前选中的 Group 实例
|
|
|
+ m_pCurrentlySelectedGroup = group;
|
|
|
+ // 将当前选中的边框设为红色
|
|
|
+ group->check_selected(index);
|
|
|
+
|
|
|
+ // 更新上一次点击的记录
|
|
|
+ m_pLastClickedGroup = group;
|
|
|
+ m_stnLastClickedIndex = index;
|
|
|
+}
|