author | Anton Malmygin <antonc27@mail.ru> |
Wed, 15 May 2019 00:24:53 +0200 | |
changeset 14959 | 5cd4edd71d22 |
parent 14901 | 089f0c10ca95 |
child 15249 | 441bdf1e6026 |
permissions | -rw-r--r-- |
8346 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
8346 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
8346 | 17 |
*/ |
18 |
||
19 |
#include "keybinder.h" |
|
20 |
#include "HWApplication.h" |
|
21 |
#include "DataManager.h" |
|
22 |
#include <QHBoxLayout> |
|
23 |
#include <QScrollArea> |
|
24 |
#include <QTableWidget> |
|
25 |
#include <QTableWidgetItem> |
|
26 |
#include <QStandardItemModel> |
|
27 |
#include <QAbstractItemModel> |
|
28 |
#include <QListWidget> |
|
29 |
#include <QListWidgetItem> |
|
30 |
#include <QPushButton> |
|
31 |
#include <QHeaderView> |
|
32 |
#include <QComboBox> |
|
33 |
#include <QLabel> |
|
34 |
#include <QFrame> |
|
35 |
#include <QDebug> |
|
36 |
||
37 |
KeyBinder::KeyBinder(QWidget * parent, const QString & helpText, const QString & defaultText, const QString & resetButtonText) : QWidget(parent) |
|
38 |
{ |
|
39 |
this->defaultText = defaultText; |
|
40 |
enableSignal = false; |
|
14899
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
41 |
p_hasConflicts = false; |
8434 | 42 |
|
8346 | 43 |
// Two-column tab layout |
44 |
QHBoxLayout * pageKeysLayout = new QHBoxLayout(this); |
|
45 |
pageKeysLayout->setSpacing(0); |
|
46 |
pageKeysLayout->setContentsMargins(0, 0, 0, 0); |
|
8434 | 47 |
|
8346 | 48 |
// Table for category list |
49 |
QVBoxLayout * catListContainer = new QVBoxLayout(); |
|
50 |
catListContainer->setContentsMargins(10, 10, 10, 10); |
|
51 |
catList = new QListWidget(); |
|
52 |
catList->setFixedWidth(180); |
|
53 |
catList->setStyleSheet("QListWidget::item { font-size: 14px; } QListWidget:hover { border-color: #F6CB1C; } QListWidget::item:selected { background: #150A61; color: yellow; }"); |
|
54 |
catList->setFocusPolicy(Qt::NoFocus); |
|
55 |
connect(catList, SIGNAL(currentRowChanged(int)), this, SLOT(changeBindingsPage(int))); |
|
56 |
catListContainer->addWidget(catList); |
|
57 |
pageKeysLayout->addLayout(catListContainer); |
|
58 |
||
59 |
// Reset all binds button |
|
60 |
if (!resetButtonText.isEmpty()) |
|
61 |
{ |
|
62 |
QPushButton * btnResetAll = new QPushButton(resetButtonText); |
|
63 |
catListContainer->addWidget(btnResetAll); |
|
12236
a0ed4caa6d35
Apply minimal padding to all text buttons in frontend
Wuzzy <almikes@aol.com>
parents:
11674
diff
changeset
|
64 |
btnResetAll->setStyleSheet("padding: 5px 10px"); |
8346 | 65 |
btnResetAll->setFixedHeight(40); |
66 |
catListContainer->setStretch(1, 0); |
|
67 |
catListContainer->setSpacing(10); |
|
68 |
connect(btnResetAll, SIGNAL(clicked()), this, SIGNAL(resetAllBinds())); |
|
69 |
} |
|
70 |
||
71 |
// Container for pages of key bindings |
|
72 |
QWidget * bindingsPagesContainer = new QWidget(); |
|
73 |
QVBoxLayout * rightLayout = new QVBoxLayout(bindingsPagesContainer); |
|
74 |
||
75 |
// Scroll area for key bindings |
|
76 |
QScrollArea * scrollArea = new QScrollArea(); |
|
77 |
scrollArea->setContentsMargins(0, 0, 0, 0); |
|
78 |
scrollArea->setWidget(bindingsPagesContainer); |
|
79 |
scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded); |
|
80 |
scrollArea->setWidgetResizable(true); |
|
81 |
scrollArea->setFrameShape(QFrame::NoFrame); |
|
82 |
scrollArea->setStyleSheet("background: #130F2A;"); |
|
83 |
||
84 |
// Add key binding pages to bindings tab |
|
85 |
pageKeysLayout->addWidget(scrollArea); |
|
86 |
pageKeysLayout->setStretch(1, 1); |
|
87 |
||
88 |
// Custom help text |
|
89 |
QLabel * helpLabel = new QLabel(); |
|
90 |
helpLabel->setText(helpText); |
|
91 |
helpLabel->setStyleSheet("color: #130F2A; background: #F6CB1C; border: solid 4px #F6CB1C; border-radius: 10px; padding: auto 20px;"); |
|
92 |
helpLabel->setFixedHeight(24); |
|
93 |
rightLayout->addWidget(helpLabel, 0, Qt::AlignCenter); |
|
14899
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
94 |
conflictLabel = new QLabel(); |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
95 |
conflictLabel->setText(tr("Warning: The same key is assigned multiple times!")); |
14900 | 96 |
conflictLabel->setStyleSheet("color: white; background: #E31A1A; border: solid 4px #E31A1A; border-radius: 10px; padding: auto 20px;"); |
14899
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
97 |
conflictLabel->setFixedHeight(24); |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
98 |
conflictLabel->setHidden(true); |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
99 |
rightLayout->addWidget(conflictLabel, 0, Qt::AlignCenter); |
8346 | 100 |
|
101 |
// Category list and bind table row heights |
|
102 |
const int rowHeight = 20; |
|
103 |
QSize catSize, headerSize; |
|
104 |
catSize.setHeight(36); |
|
105 |
headerSize.setHeight(24); |
|
106 |
||
107 |
// Category list header |
|
108 |
QListWidgetItem * catListHeader = new QListWidgetItem(tr("Category")); |
|
109 |
catListHeader->setSizeHint(headerSize); |
|
110 |
catListHeader->setFlags(Qt::NoItemFlags); |
|
111 |
catListHeader->setForeground(QBrush(QColor("#130F2A"))); |
|
112 |
catListHeader->setBackground(QBrush(QColor("#F6CB1C"))); |
|
113 |
catListHeader->setTextAlignment(Qt::AlignCenter); |
|
114 |
catList->addItem(catListHeader); |
|
115 |
||
116 |
// Populate |
|
117 |
bindingsPages = new QHBoxLayout(); |
|
118 |
bindingsPages->setContentsMargins(0, 0, 0, 0); |
|
119 |
rightLayout->addLayout(bindingsPages); |
|
120 |
QWidget * curPage = NULL; |
|
121 |
QVBoxLayout * curLayout = NULL; |
|
122 |
QTableWidget * curTable = NULL; |
|
123 |
bool bFirstPage = true; |
|
124 |
selectedBindTable = NULL; |
|
125 |
bindComboBoxCellMappings = new QHash<QObject *, QTableWidgetItem *>(); |
|
126 |
bindCellComboBoxMappings = new QHash<QTableWidgetItem *, QComboBox *>(); |
|
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
127 |
|
14900 | 128 |
dropDownIcon = new QIcon(); |
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
129 |
QPixmap dd1 = QPixmap(":/res/dropdown.png"); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
130 |
QPixmap dd2 = QPixmap(":/res/dropdown_selected.png"); |
14900 | 131 |
dropDownIcon->addPixmap(dd1, QIcon::Normal); |
132 |
dropDownIcon->addPixmap(dd2, QIcon::Selected); |
|
133 |
conflictIcon = new QIcon(); |
|
134 |
QPixmap kc1 = QPixmap(":/res/keyconflict.png"); |
|
135 |
QPixmap kc2 = QPixmap(":/res/keyconflict_selected.png"); |
|
136 |
conflictIcon->addPixmap(kc1, QIcon::Normal); |
|
137 |
conflictIcon->addPixmap(kc2, QIcon::Selected); |
|
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
138 |
QPixmap emptySpace = QPixmap(16, 16); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
139 |
emptySpace.fill(QColor(0, 0, 0, 0)); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
140 |
QIcon emptyIcon = QIcon(emptySpace); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
141 |
|
8346 | 142 |
for (int i = 0; i < BINDS_NUMBER; i++) |
143 |
{ |
|
144 |
if (cbinds[i].category != NULL) |
|
145 |
{ |
|
146 |
// Add stretch at end of previous layout |
|
147 |
if (curLayout != NULL) curLayout->insertStretch(-1, 1); |
|
8434 | 148 |
|
8346 | 149 |
// Category list item |
150 |
QListWidgetItem * catItem = new QListWidgetItem(HWApplication::translate("binds (categories)", cbinds[i].category)); |
|
151 |
catItem->setSizeHint(catSize); |
|
152 |
catList->addItem(catItem); |
|
8434 | 153 |
|
8346 | 154 |
// Create new page |
155 |
curPage = new QWidget(); |
|
156 |
curLayout = new QVBoxLayout(curPage); |
|
157 |
curLayout->setSpacing(2); |
|
158 |
bindingsPages->addWidget(curPage); |
|
159 |
if (!bFirstPage) curPage->setVisible(false); |
|
160 |
} |
|
161 |
||
162 |
// Description |
|
163 |
if (cbinds[i].description != NULL) |
|
164 |
{ |
|
165 |
QLabel * desc = new QLabel(HWApplication::translate("binds (descriptions)", cbinds[i].description)); |
|
166 |
curLayout->addWidget(desc, 0); |
|
167 |
QFrame * divider = new QFrame(); |
|
168 |
divider->setFrameShape(QFrame::HLine); |
|
169 |
divider->setFrameShadow(QFrame::Plain); |
|
170 |
curLayout->addWidget(divider, 0); |
|
171 |
} |
|
172 |
||
173 |
// New table |
|
174 |
if (cbinds[i].category != NULL || cbinds[i].description != NULL) |
|
175 |
{ |
|
176 |
curTable = new QTableWidget(0, 2); |
|
177 |
curTable->verticalHeader()->setVisible(false); |
|
178 |
curTable->horizontalHeader()->setVisible(false); |
|
12897
fc47fc4af6bd
Finish porting. Seems to work, but no thorough testing has been performed
unc0rr
parents:
12698
diff
changeset
|
179 |
curTable->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch); |
8346 | 180 |
curTable->verticalHeader()->setDefaultSectionSize(rowHeight); |
181 |
curTable->setShowGrid(false); |
|
182 |
curTable->setStyleSheet("QTableWidget { border: none; } "); |
|
183 |
curTable->setSelectionBehavior(QAbstractItemView::SelectRows); |
|
184 |
curTable->setSelectionMode(QAbstractItemView::SingleSelection); |
|
185 |
curTable->setFocusPolicy(Qt::NoFocus); |
|
186 |
connect(curTable, SIGNAL(itemSelectionChanged()), this, SLOT(bindSelectionChanged())); |
|
187 |
connect(curTable, SIGNAL(itemClicked(QTableWidgetItem *)), this, SLOT(bindCellClicked(QTableWidgetItem *))); |
|
188 |
curLayout->addWidget(curTable, 0); |
|
189 |
} |
|
190 |
||
191 |
// Hidden combo box |
|
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
192 |
QComboBox * comboBox; |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
193 |
if (cbinds[i].action != "!MULTI") |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
194 |
{ |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
195 |
comboBox = CBBind[i] = new QComboBox(curTable); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
196 |
comboBox->setModel((QAbstractItemModel*)DataManager::instance().bindsModel()); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
197 |
comboBox->setVisible(false); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
198 |
comboBox->setMinimumWidth(400); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
199 |
comboBox->setMaxVisibleItems(50); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
200 |
} |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
201 |
else |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
202 |
{ |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
203 |
comboBox = CBBind[i] = NULL; |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
204 |
} |
8434 | 205 |
|
8346 | 206 |
// Table row |
207 |
int row = curTable->rowCount(); |
|
208 |
QTableWidgetItem * nameCell = new QTableWidgetItem(HWApplication::translate("binds", cbinds[i].name)); |
|
209 |
curTable->insertRow(row); |
|
210 |
curTable->setItem(row, 0, nameCell); |
|
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
211 |
QTableWidgetItem * bindCell; |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
212 |
if (cbinds[i].action != "!MULTI") |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
213 |
{ |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
214 |
bindCell = new QTableWidgetItem(comboBox->currentText()); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
215 |
nameCell->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); |
14900 | 216 |
bindCell->setIcon(*dropDownIcon); |
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
217 |
bindCell->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
218 |
} |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
219 |
else |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
220 |
{ |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
221 |
bindCell = new QTableWidgetItem(HWApplication::translate("binds (combination)", cbinds[i].strbind.toUtf8().constData())); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
222 |
nameCell->setFlags(Qt::NoItemFlags); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
223 |
bindCell->setFlags(Qt::NoItemFlags); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
224 |
bindCell->setIcon(emptyIcon); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
225 |
} |
8346 | 226 |
curTable->setItem(row, 1, bindCell); |
227 |
curTable->resizeColumnsToContents(); |
|
228 |
curTable->setFixedHeight(curTable->verticalHeader()->length() + 10); |
|
229 |
||
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
230 |
if (cbinds[i].action != "!MULTI") |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
231 |
{ |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
232 |
// Updates the text in the table cell |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
233 |
connect(comboBox, SIGNAL(currentIndexChanged(const QString &)), this, SLOT(bindChanged(const QString &))); |
8346 | 234 |
|
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
235 |
// Map combo box and that row's cells to each other |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
236 |
bindComboBoxCellMappings->insert(comboBox, bindCell); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
237 |
bindCellComboBoxMappings->insert(nameCell, comboBox); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
238 |
bindCellComboBoxMappings->insert(bindCell, comboBox); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
239 |
} |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
240 |
|
8346 | 241 |
} |
242 |
||
243 |
// Add stretch at end of last layout |
|
244 |
if (curLayout != NULL) curLayout->insertStretch(-1, 1); |
|
245 |
||
246 |
// Go to first page |
|
247 |
catList->setCurrentItem(catList->item(1)); |
|
248 |
||
249 |
enableSignal = true; |
|
250 |
} |
|
251 |
||
252 |
KeyBinder::~KeyBinder() |
|
253 |
{ |
|
254 |
delete bindComboBoxCellMappings; |
|
255 |
delete bindCellComboBoxMappings; |
|
256 |
} |
|
257 |
||
258 |
// Switches between different pages of key binds |
|
259 |
void KeyBinder::changeBindingsPage(int page) |
|
260 |
{ |
|
261 |
page--; // Disregard first item (the list header) |
|
262 |
int pages = bindingsPages->count(); |
|
263 |
for (int i = 0; i < pages; i++) |
|
264 |
bindingsPages->itemAt(i)->widget()->setVisible(false); |
|
265 |
bindingsPages->itemAt(page)->widget()->setVisible(true); |
|
266 |
} |
|
267 |
||
268 |
// When a key bind combobox value is changed, updates the table cell text |
|
269 |
void KeyBinder::bindChanged(const QString & text) |
|
270 |
{ |
|
271 |
bindComboBoxCellMappings->value(sender())->setText(text); |
|
272 |
||
273 |
if (enableSignal) |
|
274 |
{ |
|
275 |
for (int i = 0; i < BINDS_NUMBER; i++) |
|
276 |
{ |
|
277 |
if (CBBind[i] == sender()) |
|
278 |
{ |
|
279 |
emit bindUpdate(i); |
|
14899
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
280 |
checkConflicts(); |
8346 | 281 |
break; |
282 |
} |
|
283 |
} |
|
284 |
} |
|
285 |
} |
|
286 |
||
287 |
// When a row in a key bind table is clicked, this shows the popup |
|
288 |
void KeyBinder::bindCellClicked(QTableWidgetItem * item) |
|
289 |
{ |
|
290 |
QComboBox * box = bindCellComboBoxMappings->value(item); |
|
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
291 |
if(box == NULL) |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
292 |
return; |
8346 | 293 |
QTableWidget * table = item->tableWidget(); |
8434 | 294 |
|
12698
f2690a0ccf19
QTfrontend: Fix flickering and bad offset of control config popup
Wuzzy <almikes@aol.com>
parents:
12236
diff
changeset
|
295 |
box->move( |
f2690a0ccf19
QTfrontend: Fix flickering and bad offset of control config popup
Wuzzy <almikes@aol.com>
parents:
12236
diff
changeset
|
296 |
table->horizontalHeader()->sectionSize(0), |
f2690a0ccf19
QTfrontend: Fix flickering and bad offset of control config popup
Wuzzy <almikes@aol.com>
parents:
12236
diff
changeset
|
297 |
(table->verticalHeader()->defaultSectionSize() * (item->row() + 1)) - (box->height()) + 1 |
f2690a0ccf19
QTfrontend: Fix flickering and bad offset of control config popup
Wuzzy <almikes@aol.com>
parents:
12236
diff
changeset
|
298 |
); |
8346 | 299 |
box->showPopup(); |
300 |
} |
|
301 |
||
302 |
// When a new row in a bind table is *selected*, this clears selection in any other table |
|
303 |
void KeyBinder::bindSelectionChanged() |
|
304 |
{ |
|
305 |
QTableWidget * theSender = (QTableWidget*)sender(); |
|
306 |
if (theSender != selectedBindTable) |
|
307 |
{ |
|
308 |
if (selectedBindTable != NULL) |
|
309 |
selectedBindTable->clearSelection(); |
|
310 |
selectedBindTable = theSender; |
|
311 |
} |
|
312 |
} |
|
313 |
||
14899
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
314 |
// check if the given key is bound multiple times |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
315 |
bool KeyBinder::checkConflictsWith(int compareTo, bool updateState) |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
316 |
{ |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
317 |
for(int i=0; i<BINDS_NUMBER; i++) |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
318 |
{ |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
319 |
if(i == compareTo) |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
320 |
continue; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
321 |
if(CBBind[i] == NULL || CBBind[compareTo] == NULL) |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
322 |
continue; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
323 |
QString bind1 = CBBind[i]->currentData(Qt::UserRole + 1).toString(); |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
324 |
QString bind2 = CBBind[compareTo]->currentData(Qt::UserRole + 1).toString(); |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
325 |
// TODO: For team key binds, also check collisions with global key binds |
14900 | 326 |
if((!(bind1 == "none" || bind2 == "none" || bind1 == "default" || bind2 == "default")) && (bind1 == bind2)) |
14899
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
327 |
{ |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
328 |
if(updateState) |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
329 |
{ |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
330 |
p_hasConflicts = true; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
331 |
conflictLabel->setHidden(false); |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
332 |
} |
14901
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
333 |
QTableWidgetItem* conflictItem = bindComboBoxCellMappings->value(CBBind[i]); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
334 |
conflictItem->setIcon(*conflictIcon); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
335 |
conflictItem->setBackground(QBrush(QColor(0xE3, 0x1A, 0x1A))); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
336 |
conflictItem->setForeground(QBrush(Qt::white)); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
337 |
conflictItems.append(conflictItem); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
338 |
conflictItem = bindComboBoxCellMappings->value(CBBind[compareTo]); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
339 |
conflictItem->setIcon(*conflictIcon); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
340 |
conflictItem->setBackground(QBrush(QColor(0xE3, 0x1A, 0x1A))); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
341 |
conflictItem->setForeground(QBrush(Qt::white)); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
342 |
conflictItems.append(conflictItem); |
14899
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
343 |
return true; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
344 |
} |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
345 |
} |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
346 |
if(updateState) |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
347 |
{ |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
348 |
p_hasConflicts = false; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
349 |
conflictLabel->setHidden(true); |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
350 |
} |
14901
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
351 |
for (int c=0; c < conflictItems.size(); c++) |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
352 |
{ |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
353 |
QTableWidgetItem* conflictItem = conflictItems[c]; |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
354 |
conflictItem->setIcon(*dropDownIcon); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
355 |
conflictItem->setBackground(QBrush(Qt::transparent)); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
356 |
conflictItem->setForeground(QBrush(QColor("#F6CB1C"))); |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
357 |
conflictItem = NULL; |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
358 |
} |
089f0c10ca95
Frontend: Optimize control conflict handling a bit
Wuzzy <Wuzzy2@mail.ru>
parents:
14900
diff
changeset
|
359 |
conflictItems.clear(); |
14899
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
360 |
return false; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
361 |
} |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
362 |
|
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
363 |
// check if any key is bound multiple times and causing a conflict |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
364 |
bool KeyBinder::checkConflicts() |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
365 |
{ |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
366 |
bool conflict = false; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
367 |
for(int i=0; i<BINDS_NUMBER; i++) |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
368 |
{ |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
369 |
conflict = checkConflictsWith(i, false); |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
370 |
if(conflict) |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
371 |
{ |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
372 |
p_hasConflicts = true; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
373 |
conflictLabel->setHidden(false); |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
374 |
return true; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
375 |
} |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
376 |
} |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
377 |
p_hasConflicts = false; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
378 |
conflictLabel->setHidden(true); |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
379 |
return false; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
380 |
} |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
381 |
|
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
382 |
bool KeyBinder::hasConflicts() |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
383 |
{ |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
384 |
return p_hasConflicts; |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
385 |
} |
4d5df8d35a95
Display a warning when the same key is used multiple times
Wuzzy <Wuzzy2@mail.ru>
parents:
14846
diff
changeset
|
386 |
|
8346 | 387 |
// Set a combobox's index |
388 |
void KeyBinder::setBindIndex(int keyIndex, int bindIndex) |
|
389 |
{ |
|
390 |
enableSignal = false; |
|
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
391 |
if(CBBind[keyIndex] != NULL) |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
392 |
CBBind[keyIndex]->setCurrentIndex(bindIndex); |
8346 | 393 |
enableSignal = true; |
394 |
} |
|
395 |
||
396 |
// Return a combobox's selected index |
|
397 |
int KeyBinder::bindIndex(int keyIndex) |
|
398 |
{ |
|
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
399 |
if(CBBind[keyIndex] != NULL) |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
400 |
return CBBind[keyIndex]->currentIndex(); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
401 |
else |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
402 |
return 0; |
8346 | 403 |
} |
404 |
||
405 |
// Clears selection and goes to first category |
|
406 |
void KeyBinder::resetInterface() |
|
407 |
{ |
|
408 |
enableSignal = false; |
|
8434 | 409 |
|
8346 | 410 |
catList->setCurrentItem(catList->item(1)); |
411 |
changeBindingsPage(1); |
|
412 |
if (selectedBindTable != NULL) |
|
413 |
{ |
|
414 |
selectedBindTable->clearSelection(); |
|
415 |
selectedBindTable = NULL; |
|
416 |
} |
|
8434 | 417 |
|
8346 | 418 |
// Default bind text |
419 |
DataManager::instance().bindsModel()->item(0)->setData(defaultText, Qt::DisplayRole); |
|
420 |
for (int i = 0; i < BINDS_NUMBER; i++) |
|
421 |
{ |
|
14846
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
422 |
if (CBBind[i] != NULL) |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
423 |
{ |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
424 |
CBBind[i]->setModel(DataManager::instance().bindsModel()); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
425 |
CBBind[i]->setCurrentIndex(0); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
426 |
bindComboBoxCellMappings->value(CBBind[i])->setText(defaultText); |
75b515a64202
Show key combinations in controls config menu (read-only)
Wuzzy <Wuzzy2@mail.ru>
parents:
14218
diff
changeset
|
427 |
} |
8346 | 428 |
} |
429 |
||
430 |
enableSignal = true; |
|
431 |
} |