Frontend: Highlight key conflicts
authorWuzzy <Wuzzy2@mail.ru>
Tue, 07 May 2019 19:39:08 +0200
changeset 14900 505c8d101be3
parent 14899 4d5df8d35a95
child 14901 089f0c10ca95
Frontend: Highlight key conflicts
QTfrontend/hedgewars.qrc
QTfrontend/res/keyconflict.png
QTfrontend/res/keyconflict_selected.png
QTfrontend/ui/widget/keybinder.cpp
QTfrontend/ui/widget/keybinder.h
--- a/QTfrontend/hedgewars.qrc	Tue May 07 18:45:14 2019 +0200
+++ b/QTfrontend/hedgewars.qrc	Tue May 07 19:39:08 2019 +0200
@@ -65,6 +65,8 @@
         <file>res/dropdown.png</file>
         <file>res/dropdown_disabled.png</file>
         <file>res/dropdown_selected.png</file>
+        <file>res/keyconflict.png</file>
+        <file>res/keyconflict_selected.png</file>
         <file>res/new.png</file>
         <file>res/edit.png</file>
         <file>res/delete.png</file>
Binary file QTfrontend/res/keyconflict.png has changed
Binary file QTfrontend/res/keyconflict_selected.png has changed
--- a/QTfrontend/ui/widget/keybinder.cpp	Tue May 07 18:45:14 2019 +0200
+++ b/QTfrontend/ui/widget/keybinder.cpp	Tue May 07 19:39:08 2019 +0200
@@ -93,7 +93,7 @@
     rightLayout->addWidget(helpLabel, 0, Qt::AlignCenter);
     conflictLabel = new QLabel();
     conflictLabel->setText(tr("Warning: The same key is assigned multiple times!"));
-    conflictLabel->setStyleSheet("color: #FFFFFF; background: #E31A1A; border: solid 4px #E31A1A; border-radius: 10px; padding: auto 20px;");
+    conflictLabel->setStyleSheet("color: white; background: #E31A1A; border: solid 4px #E31A1A; border-radius: 10px; padding: auto 20px;");
     conflictLabel->setFixedHeight(24);
     conflictLabel->setHidden(true);
     rightLayout->addWidget(conflictLabel, 0, Qt::AlignCenter);
@@ -125,11 +125,16 @@
     bindComboBoxCellMappings = new QHash<QObject *, QTableWidgetItem *>();
     bindCellComboBoxMappings = new QHash<QTableWidgetItem *, QComboBox *>();
 
-    QIcon dropDownIcon = QIcon();
+    dropDownIcon = new QIcon();
     QPixmap dd1 = QPixmap(":/res/dropdown.png");
     QPixmap dd2 = QPixmap(":/res/dropdown_selected.png");
-    dropDownIcon.addPixmap(dd1, QIcon::Normal);
-    dropDownIcon.addPixmap(dd2, QIcon::Selected);
+    dropDownIcon->addPixmap(dd1, QIcon::Normal);
+    dropDownIcon->addPixmap(dd2, QIcon::Selected);
+    conflictIcon = new QIcon();
+    QPixmap kc1 = QPixmap(":/res/keyconflict.png");
+    QPixmap kc2 = QPixmap(":/res/keyconflict_selected.png");
+    conflictIcon->addPixmap(kc1, QIcon::Normal);
+    conflictIcon->addPixmap(kc2, QIcon::Selected);
     QPixmap emptySpace = QPixmap(16, 16);
     emptySpace.fill(QColor(0, 0, 0, 0));
     QIcon emptyIcon = QIcon(emptySpace);
@@ -208,7 +213,7 @@
         {
             bindCell = new QTableWidgetItem(comboBox->currentText());
             nameCell->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
-            bindCell->setIcon(dropDownIcon);
+            bindCell->setIcon(*dropDownIcon);
             bindCell->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
         }
         else
@@ -318,18 +323,35 @@
             continue;
         QString bind1 = CBBind[i]->currentData(Qt::UserRole + 1).toString();
         QString bind2 = CBBind[compareTo]->currentData(Qt::UserRole + 1).toString();
-        if(bind1 == "none" || bind2 == "none" || bind1 == "default" || bind2 == "default")
-            continue;
         // TODO: For team key binds, also check collisions with global key binds
-        if(bind1 == bind2)
+        if((!(bind1 == "none" || bind2 == "none" || bind1 == "default" || bind2 == "default")) && (bind1 == bind2))
         {
             if(updateState)
             {
                 p_hasConflicts = true;
                 conflictLabel->setHidden(false);
             }
+            QTableWidgetItem* item = bindComboBoxCellMappings->value(CBBind[i]);
+            item->setIcon(*conflictIcon);
+            item->setBackground(QBrush(QColor(0xE3, 0x1A, 0x1A)));
+            item->setForeground(QBrush(Qt::white));
+            item = bindComboBoxCellMappings->value(CBBind[compareTo]);
+            item->setIcon(*conflictIcon);
+            item->setBackground(QBrush(QColor(0xE3, 0x1A, 0x1A)));
+            item->setForeground(QBrush(Qt::white));
             return true;
         }
+        else
+        {
+            QTableWidgetItem* item = bindComboBoxCellMappings->value(CBBind[i]);
+            item->setIcon(*dropDownIcon);
+            item->setBackground(QBrush(Qt::transparent));
+            item->setForeground(QBrush(QColor("#F6CB1C")));
+            item = bindComboBoxCellMappings->value(CBBind[compareTo]);
+            item->setIcon(*dropDownIcon);
+            item->setBackground(QBrush(Qt::transparent));
+            item->setForeground(QBrush(QColor("#F6CB1C")));
+        }
     }
     if(updateState)
     {
--- a/QTfrontend/ui/widget/keybinder.h	Tue May 07 18:45:14 2019 +0200
+++ b/QTfrontend/ui/widget/keybinder.h	Tue May 07 19:39:08 2019 +0200
@@ -56,6 +56,8 @@
         QBoxLayout *bindingsPages;
         QComboBox * CBBind[BINDS_NUMBER];
         QLabel * conflictLabel;
+        QIcon * dropDownIcon;
+        QIcon * conflictIcon;
         QString defaultText;
         bool enableSignal;
         bool p_hasConflicts;