1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
|
#include "importmidi_delegate.h"
namespace Ms {
TimeSigEditor::TimeSigEditor(const QStringList &values, QWidget *parent)
: QWidget(parent)
{
Q_ASSERT_X(values.size() >= 7,
"Midi delegate - TimeSigEditor class", "Too small value count");
Q_ASSERT_X(values[0] == "__TimeSig__",
"Midi delegate - TimeSigEditor class", "Invalid input values");
QVBoxLayout *contentLayout = new QVBoxLayout();
contentLayout->setSpacing(0);
contentLayout->setContentsMargins(0, 0, 0, 0);
QHBoxLayout *comboBoxLayout = new QHBoxLayout();
comboBoxLayout->setSpacing(0);
comboBoxLayout->setContentsMargins(0, 0, 0, 0);
_comboBoxNumerator = new QComboBox();
QLabel *fractionLabel = new QLabel("/");
_comboBoxDenominator = new QComboBox();
comboBoxLayout->addWidget(_comboBoxNumerator);
comboBoxLayout->addWidget(fractionLabel);
comboBoxLayout->addWidget(_comboBoxDenominator);
contentLayout->addLayout(comboBoxLayout);
Q_ASSERT_X(values[1] == "__Numerator__",
"Midi delegate - TimeSigEditor class", "Invalid numerator");
bool ok = false;
const int currentNumeratorIndex = values[2].toInt(&ok);
Q_ASSERT_X(ok, "Midi delegate - TimeSigEditor class", "Invalid numerator current index");
int i = 3;
while (values[i] != "__Denominator__") {
_comboBoxNumerator->addItem(values[i]);
++i;
}
_comboBoxNumerator->setCurrentIndex(currentNumeratorIndex);
Q_ASSERT_X(i < values.size() && values[i] == "__Denominator__",
"Midi delegate - TimeSigEditor class", "Invalid denominator");
++i;
ok = false;
const int currentDenominatorIndex = values[i].toInt(&ok);
Q_ASSERT_X(ok, "Midi delegate - TimeSigEditor class", "Invalid denominator current index");
++i;
while (i < values.size()) {
_comboBoxDenominator->addItem(values[i]);
++i;
}
_comboBoxDenominator->setCurrentIndex(currentDenominatorIndex);
QHBoxLayout *buttonLayout = new QHBoxLayout();
buttonLayout->addStretch();
QPushButton *okButton = new QPushButton(QCoreApplication::translate(
"Time signature editor", "OK"));
okButton->setMinimumWidth(50);
okButton->setMinimumHeight(30);
connect(okButton, SIGNAL(clicked()), SIGNAL(okClicked()));
buttonLayout->addWidget(okButton);
buttonLayout->addStretch();
contentLayout->addLayout(buttonLayout);
setLayout(contentLayout);
setAutoFillBackground(true);
}
QStringList TimeSigEditor::data() const
{
QStringList values;
values.append(QString::number(_comboBoxNumerator->currentIndex()));
values.append(QString::number(_comboBoxDenominator->currentIndex()));
return values;
}
//----------------------------------------------------------------------------------
SizedListWidget::SizedListWidget(QWidget *parent)
: QListWidget(parent)
{
}
QSize SizedListWidget::sizeHint() const
{
const int extraHeight = 8;
return QSize(width(), count() * visualItemRect(item(0)).height() + extraHeight);
}
//----------------------------------------------------------------------------------
// values:
// [0] == "__MultiValue__"
// the rule for next values:
// odd index - value to show
// even index - "true" or "false" to define is the previous value checked or not
MultiValueEditor::MultiValueEditor(const QStringList &values, QWidget *parent)
: QWidget(parent)
{
Q_ASSERT_X(values.size() >= 3,
"Midi delegate - MultiValueEditor class", "Too small value count");
Q_ASSERT_X(values.size() % 2 == 1,
"Midi delegate - MultiValueEditor class", "Value count should be odd");
Q_ASSERT_X(values[0] == "__MultiValue__",
"Midi delegate - MultiValueEditor class", "Invalid input values");
QVBoxLayout *contentLayout = new QVBoxLayout();
contentLayout->setSpacing(0);
contentLayout->setContentsMargins(0, 0, 0, 0);
_listWidget = new SizedListWidget();
QListWidgetItem *allCheckBoxItem = new QListWidgetItem(QCoreApplication::translate(
"Multi value editor", "All"), _listWidget);
allCheckBoxItem->setCheckState(Qt::Unchecked);
_listWidget->addItem(allCheckBoxItem);
contentLayout->addWidget(_listWidget);
for (int i = 1; i < values.size() - 1; i += 2) {
QListWidgetItem *item = new QListWidgetItem(values[i]);
if (values[i + 1] == "true")
item->setCheckState(Qt::Checked);
else if (values[i + 1] == "false")
item->setCheckState(Qt::Unchecked);
else if (values[i + 1] == "undefined")
item->setCheckState(Qt::PartiallyChecked);
else
{Q_ASSERT_X(false, "Midi delegate - MultiValue class", "Unknown value");}
_listWidget->addItem(item);
}
setAllCheckBox();
_states.resize(_listWidget->count());
updateStates();
connect(_listWidget, SIGNAL(itemClicked(QListWidgetItem *)),
this, SLOT(itemClicked(QListWidgetItem *)));
connectCheckBoxes();
QHBoxLayout *buttonLayout = new QHBoxLayout();
buttonLayout->addStretch();
QPushButton *okButton = new QPushButton(QCoreApplication::translate(
"Multi value editor", "OK"));
okButton->setMinimumWidth(50);
okButton->setMinimumHeight(30);
connect(okButton, SIGNAL(clicked()), SIGNAL(okClicked()));
buttonLayout->addWidget(okButton);
buttonLayout->addStretch();
contentLayout->addLayout(buttonLayout);
setLayout(contentLayout);
setAutoFillBackground(true);
}
QStringList MultiValueEditor::data() const
{
QStringList values;
for (int i = 1; i < _listWidget->count(); ++i) {
switch (_listWidget->item(i)->checkState()) {
case Qt::Checked:
values.append("true");
break;
case Qt::Unchecked:
values.append("false");
break;
case Qt::PartiallyChecked:
values.append("undefined");
break;
}
}
return values;
}
// The problem: we need to toggle the item state by clicking not only on the checkbox
// but on every point of the item for convenience;
// so if we clicked on the checkbox - we do not change the item state
// (because it is managed by the framework for us),
// if we clicked outside the checkbox - we change the state manually;
// after clicking on the checkbox the state is changed immediately, and after that
// the itemClicked signal is emitted; to detect this case we use the helper array
// of old checkbox states - if the item didn't change since the last time then the click
// was outside the checkbox and we set the state manually
void MultiValueEditor::itemClicked(QListWidgetItem *item)
{
if (item->checkState() == _states[_listWidget->row(item)]) { // clicked outside the checkbox
disconnectCheckBoxes();
switch (item->checkState()) {
case Qt::Checked:
item->setCheckState(Qt::Unchecked);
break;
case Qt::Unchecked:
item->setCheckState(Qt::Checked);
break;
case Qt::PartiallyChecked:
item->setCheckState(Qt::Checked);
break;
}
connectCheckBoxes();
checkBoxClicked(item);
}
updateStates();
}
void MultiValueEditor::checkBoxClicked(QListWidgetItem *item)
{
disconnectCheckBoxes();
if (_listWidget->row(item) == 0) { // "All" checkbox
for (int i = 1; i < _listWidget->count(); ++i)
_listWidget->item(i)->setCheckState(_listWidget->item(0)->checkState());
}
else {
setAllCheckBox();
}
connectCheckBoxes();
}
void MultiValueEditor::setAllCheckBox()
{
disconnectCheckBoxes();
const auto firstValue = _listWidget->item(1)->checkState();
bool wasSet = false;
for (int i = 2; i < _listWidget->count(); ++i) {
if (_listWidget->item(i)->checkState() != firstValue) {
_listWidget->item(0)->setCheckState(Qt::PartiallyChecked);
wasSet = true;
break;
}
}
if (!wasSet)
_listWidget->item(0)->setCheckState(firstValue);
connectCheckBoxes();
}
void MultiValueEditor::updateStates()
{
for (int i = 0; i < _listWidget->count(); ++i)
_states[i] = _listWidget->item(i)->checkState();
}
void MultiValueEditor::connectCheckBoxes()
{
connect(_listWidget, SIGNAL(itemChanged(QListWidgetItem *)),
this, SLOT(checkBoxClicked(QListWidgetItem *)));
}
void MultiValueEditor::disconnectCheckBoxes()
{
disconnect(_listWidget, SIGNAL(itemChanged(QListWidgetItem *)),
this, SLOT(checkBoxClicked(QListWidgetItem *)));
}
//----------------------------------------------------------------------------------
OperationsDelegate::OperationsDelegate(QWidget *appWindow, bool rightArrowAlign)
: appWindow(appWindow)
, rightArrowAlign(rightArrowAlign)
{}
void OperationsDelegate::paint(QPainter *painter,
const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
SeparatorDelegate::paint(painter, option, index);
// draw small arrow that symbolizes list
QVariant value = index.data(Qt::EditRole);
if (value.type() == QVariant::StringList)
{
QStringList list = qvariant_cast<QStringList>(value);
if (list.size() > 1)
drawArrow(painter, option, index);
}
}
void OperationsDelegate::drawArrow(
QPainter *painter,
const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
painter->save();
QFontMetrics fm(painter->font());
const int gap = 9;
const int height = 4;
const int width = 8;
const int textWidth = fm.width(index.data(Qt::DisplayRole).toString());
const int x = rightArrowAlign
? option.rect.right() - width - gap
: option.rect.left() + textWidth + gap;
const int y = option.rect.top() + option.rect.height() / 2 + 1;
QPoint p1(x, y - height / 2);
QPoint p2(x + width, y - height / 2);
QPoint p3(x + width / 2, y + height / 2);
QPen pen = painter->pen();
painter->setPen(pen);
pen.setWidth(1);
painter->drawLine(p1, p2);
pen.setWidth(2);
painter->setPen(pen);
painter->drawLine(QPoint(p2.x() - 1, p2.y() + 1), QPoint(p3.x() + 1, p3.y() - 1));
pen.setWidth(1);
painter->setPen(pen);
painter->drawLine(p3, p1);
painter->restore();
}
QWidget* OperationsDelegate::createEditor(QWidget *parent,
const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
const QVariant value = index.data(Qt::EditRole);
if (value.type() == QVariant::StringList) { // list of possible values
const QStringList list = qvariant_cast<QStringList>(value);
if (!list.isEmpty()) {
QWidget *editor = nullptr;
if (list[0] == "__MultiValue__") {
MultiValueEditor *mv = new MultiValueEditor(list, parent);
connect(mv, SIGNAL(okClicked()),
this, SLOT(commitAndCloseEditor()));
editor = mv;
}
else if (list[0] == "__TimeSig__") {
TimeSigEditor *ts = new TimeSigEditor(list, parent);
connect(ts, SIGNAL(okClicked()),
this, SLOT(commitAndCloseEditor()));
editor = ts;
}
else {
QListWidget *lw = new QListWidget(parent);
for (const auto &item: list)
lw->addItem(item);
connect(lw, SIGNAL(itemClicked(QListWidgetItem*)),
this, SLOT(commitAndCloseEditor()));
editor = lw;
}
return editor;
}
}
// single value
return SeparatorDelegate::createEditor(parent, option, index);
}
void OperationsDelegate::setEditorData(QWidget *editor,
const QModelIndex &index) const
{
const QVariant value = index.data(Qt::EditRole);
if (value.type() == QVariant::StringList) {
QListWidget *lw = qobject_cast<QListWidget *>(editor);
MultiValueEditor *mv = qobject_cast<MultiValueEditor *>(editor);
TimeSigEditor *ts = qobject_cast<TimeSigEditor *>(editor);
if (lw) {
const auto items = lw->findItems(index.data(Qt::DisplayRole).toString(), Qt::MatchExactly);
lw->setCurrentItem(items.empty() ? lw->item(0) : items.first());
const int extraWidth = 25;
const int extraHeight = 6;
lw->setMinimumWidth(lw->sizeHintForColumn(0) + extraWidth);
// to prevent possible hiding bottom part of the list
int h = lw->count() * lw->visualItemRect(lw->currentItem()).height() + extraHeight;
const int y = (lw->parentWidget() && (lw->parentWidget()->rect().bottom() < lw->y() + h))
? lw->parentWidget()->rect().bottom() - h - extraHeight : lw->y();
lw->setGeometry(lw->x(), y, lw->width(), h);
// now lw can be partially hidden behind the view
// if the view has small rect, so set parent of lw
// to app window and map coordinates accordingly to leave lw in place
const auto globalCoord = lw->parentWidget()->mapToGlobal(lw->geometry().topLeft());
lw->setParent(appWindow);
auto newLocalCoord = appWindow->mapFromGlobal(globalCoord);
// prevent possible hiding top part of the list (show scroll bar instead)
if (newLocalCoord.y() < 0) {
h += newLocalCoord.y();
newLocalCoord.setY(0);
}
lw->setGeometry(newLocalCoord.x(), newLocalCoord.y(), lw->width(), h);
}
else if (mv) {
// to prevent possible hiding bottom part of the checkbox list
const int h = mv->sizeHint().height();
const int y = (mv->parentWidget() && (mv->parentWidget()->rect().bottom() < mv->y() + h))
? mv->parentWidget()->rect().bottom() - h : mv->y();
mv->setGeometry(mv->x(), y, mv->width(), h);
// now mv can be partially hidden behind the view
// if the view has small rect, so set parent of mv
// to app window and map coordinates accordingly to leave mv in place
const auto globalCoord = mv->parentWidget()->mapToGlobal(mv->geometry().topLeft());
mv->setParent(appWindow);
const auto newLocalCoord = appWindow->mapFromGlobal(globalCoord);
mv->setGeometry(newLocalCoord.x(), newLocalCoord.y(), mv->width(), h);
}
else if (ts) {
// to prevent possible hiding bottom part of the editor
const int h = ts->sizeHint().height();
const int y = (ts->parentWidget() && (ts->parentWidget()->rect().bottom() < ts->y() + h))
? ts->parentWidget()->rect().bottom() - h : ts->y();
ts->setGeometry(ts->x(), y, ts->width(), h);
// now mv can be partially hidden behind the view
// if the view has small rect, so set parent of mv
// to app window and map coordinates accordingly to leave mv in place
const auto globalCoord = ts->parentWidget()->mapToGlobal(ts->geometry().topLeft());
ts->setParent(appWindow);
const auto newLocalCoord = appWindow->mapFromGlobal(globalCoord);
ts->setGeometry(newLocalCoord.x(), newLocalCoord.y(), ts->width(), h);
}
else {
Q_ASSERT_X(false, "Midi delegate - setEditorData", "Unknown editor type");
}
}
else { // single value
SeparatorDelegate::setEditorData(editor, index);
}
}
void OperationsDelegate::setModelData(QWidget *editor,
QAbstractItemModel *model,
const QModelIndex &index) const
{
const QVariant value = index.data(Qt::EditRole);
if (value.type() == QVariant::StringList) {
QListWidget *lw = qobject_cast<QListWidget *>(editor);
MultiValueEditor *mv = qobject_cast<MultiValueEditor *>(editor);
TimeSigEditor *ts = qobject_cast<TimeSigEditor *>(editor);
if (lw)
model->setData(index, lw->currentRow());
else if (mv)
model->setData(index, mv->data());
else if (ts)
model->setData(index, ts->data());
else
{Q_ASSERT_X(false, "Midi delegate - setModelData", "Unknown editor type");}
}
else {
SeparatorDelegate::setModelData(editor, model, index);
}
}
void OperationsDelegate::commitAndCloseEditor()
{
QWidget *editor = qobject_cast<QWidget *>(sender());
emit commitData(editor);
emit closeEditor(editor);
editor->parentWidget()->setFocus();
}
} // namespace Ms
|