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 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
|
#include "macro-tree.hpp"
#include "macro.hpp"
#include "macro-search.hpp"
#include "macro-signals.hpp"
#include "path-helpers.hpp"
#include "sync-helpers.hpp"
#include "ui-helpers.hpp"
#include <obs.h>
#include <string>
#include <QLabel>
#include <QLineEdit>
#include <QSpacerItem>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QMouseEvent>
#include <QStylePainter>
#include <QToolTip>
Q_DECLARE_METATYPE(std::shared_ptr<advss::Macro>);
namespace advss {
MacroTreeItem::MacroTreeItem(MacroTree *tree, std::shared_ptr<Macro> macroItem,
bool highlight)
: _tree(tree),
_highlight(highlight),
_macro(macroItem)
{
setAttribute(Qt::WA_TranslucentBackground);
// This is necessary for some theses to display active selections properly
setStyleSheet("background: none");
auto name = _macro->Name();
bool macroPaused = _macro->Paused();
bool isGroup = _macro->IsGroup();
if (isGroup) {
const auto path = QString::fromStdString(GetDataFilePath(
"res/images/" + GetThemeTypeName() + "Group.svg"));
QIcon icon(path);
QPixmap pixmap = icon.pixmap(QSize(16, 16));
_iconLabel = new QLabel();
_iconLabel->setPixmap(pixmap);
_iconLabel->setStyleSheet("background: none");
}
_running = new QCheckBox();
_running->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
_running->setChecked(!macroPaused);
_running->setStyleSheet("background: none");
_label = new QLabel(QString::fromStdString(name));
_label->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
_label->setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
_label->setAttribute(Qt::WA_TranslucentBackground);
#ifdef __APPLE__
_running->setAttribute(Qt::WA_LayoutUsesWidgetRect);
#endif
_boxLayout = new QHBoxLayout();
_boxLayout->setContentsMargins(0, 0, 0, 0);
if (isGroup) {
_boxLayout->addWidget(_iconLabel);
_boxLayout->addSpacing(2);
}
_boxLayout->addWidget(_running);
_boxLayout->addWidget(_label);
#ifdef __APPLE__
/* Hack: Fixes a bug where scrollbars would be above the lock icon */
_boxLayout->addSpacing(16);
#endif
Update(true);
setLayout(_boxLayout);
connect(_running, SIGNAL(clicked(bool)), this,
SLOT(RunningClicked(bool)));
connect(MacroSignalManager::Instance(), SIGNAL(HighlightChanged(bool)),
this, SLOT(EnableHighlight(bool)));
connect(MacroSignalManager::Instance(),
SIGNAL(Rename(const QString &, const QString &)), this,
SLOT(MacroRenamed(const QString &, const QString &)));
connect(&_timer, SIGNAL(timeout()), this, SLOT(HighlightIfExecuted()));
connect(&_timer, SIGNAL(timeout()), this, SLOT(UpdateRunning()));
UpdateRunning();
_timer.start(1500);
}
bool MacroTreeItem::event(QEvent *event)
{
if (event->type() != QEvent::ToolTip) {
return QFrame::event(event);
}
if (_macro->IsGroup()) {
return true;
}
QString text;
if (!_macro->WasExecutedSince({})) {
text = obs_module_text(
"AdvSceneSwitcher.macroTab.macroNotYetExecutedTooltip");
} else {
const QString formatStr = obs_module_text(
"AdvSceneSwitcher.macroTab.macroLastExecutedTooltip");
const auto secondsSinceLastRun =
std::chrono::duration_cast<std::chrono::seconds>(
std::chrono::high_resolution_clock::now() -
_macro->GetLastExecutionTime());
text = formatStr.arg(secondsSinceLastRun.count());
}
auto helpEvent = static_cast<QHelpEvent *>(event);
QToolTip::showText(helpEvent->globalPos(), text, this);
return true;
}
void MacroTreeItem::EnableHighlight(bool enable)
{
_highlight = enable;
}
void MacroTreeItem::RunningClicked(bool running)
{
const auto updateWidget = [this](Macro *macro) {
if (!macro) {
return;
}
const auto ¯os = GetTopLevelMacros();
bool found = false;
int idx = 0;
for (const auto &m : macros) {
if (m.get() == macro) {
found = true;
break;
}
idx++;
}
if (!found) {
return;
}
const auto widget = _tree->GetItemWidget(idx);
if (widget) {
widget->UpdateRunning();
}
};
if (!_macro->IsGroup()) {
_macro->SetPaused(!running);
if (!_macro->IsSubitem()) {
return;
}
const auto group = _macro->Parent();
updateWidget(group.get());
return;
}
const auto macros = GetGroupMacroEntries(_macro.get());
for (const auto ¯o : macros) {
macro->SetPaused(!running);
}
// Update backend values before updating UI to prevent flickering in
// running state of the group
for (const auto ¯o : macros) {
updateWidget(macro.get());
}
UpdateRunning();
}
void MacroTreeItem::UpdateRunning()
{
const QSignalBlocker blocker(_running);
if (!_macro->IsGroup()) {
_running->setChecked(!_macro->Paused());
return;
}
const auto macros = GetGroupMacroEntries(_macro.get());
bool allRunning = true;
bool allPaused = true;
for (const auto ¯o : macros) {
if (macro->Paused()) {
allRunning = false;
} else {
allPaused = false;
}
}
if (allRunning) {
_running->setCheckState(Qt::Checked);
return;
}
if (allPaused) {
_running->setCheckState(Qt::Unchecked);
return;
}
_running->setCheckState(Qt::PartiallyChecked);
}
void MacroTreeItem::HighlightIfExecuted()
{
if (!_highlight || !_macro) {
return;
}
bool wasHighlighted = false;
if (_lastHighlightCheckTime.time_since_epoch().count() != 0 &&
_macro->WasExecutedSince(_lastHighlightCheckTime)) {
HighlightWidget(this, Qt::green, QColor(0, 0, 0, 0), true);
wasHighlighted = true;
}
if (!wasHighlighted &&
_lastHighlightCheckTime.time_since_epoch().count() != 0 &&
_macro->OnChangePreventedActionsSince(_lastHighlightCheckTime)) {
HighlightWidget(this, Qt::yellow, QColor(0, 0, 0, 0), true);
}
_lastHighlightCheckTime = std::chrono::high_resolution_clock::now();
}
void MacroTreeItem::MacroRenamed(const QString &oldName, const QString &newName)
{
if (_label->text() == oldName) {
_label->setText(newName);
}
}
void MacroTreeItem::paintEvent(QPaintEvent *event)
{
QStyleOption opt;
opt.initFrom(this);
QPainter p(this);
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
QWidget::paintEvent(event);
}
void MacroTreeItem::mouseDoubleClickEvent(QMouseEvent *event)
{
QWidget::mouseDoubleClickEvent(event);
if (_expand) {
_expand->setChecked(!_expand->isChecked());
}
}
void MacroTreeItem::Update(bool force)
{
Type newType;
if (_macro->IsGroup()) {
newType = Type::Group;
} else if (_macro->IsSubitem()) {
newType = Type::SubItem;
} else {
newType = Type::Item;
}
if (!force && newType == _type) {
return;
}
if (_spacer) {
_boxLayout->removeItem(_spacer);
delete _spacer;
_spacer = nullptr;
}
if (_type == Type::Group && _expand) {
_boxLayout->removeWidget(_expand);
_expand->deleteLater();
_expand = nullptr;
}
_type = newType;
if (_type == Type::SubItem) {
_spacer = new QSpacerItem(16, 1);
_boxLayout->insertItem(0, _spacer);
} else if (_type == Type::Group) {
_expand = new SourceTreeSubItemCheckBox();
_expand->setProperty("sourceTreeSubItem", true);
_expand->setSizePolicy(QSizePolicy::Maximum,
QSizePolicy::Maximum);
_expand->setMaximumSize(10, 16);
_expand->setMinimumSize(10, 0);
_expand->setProperty("class", "checkbox-icon indicator-expand");
#ifdef __APPLE__
_expand->setAttribute(Qt::WA_LayoutUsesWidgetRect);
#endif
_boxLayout->insertWidget(0, _expand);
_expand->blockSignals(true);
_expand->setChecked(_macro->IsCollapsed());
_expand->blockSignals(false);
connect(_expand, &QCheckBox::toggled, this,
&MacroTreeItem::ExpandClicked);
} else {
_spacer = new QSpacerItem(3, 1);
_boxLayout->insertItem(0, _spacer);
}
_label->setText(QString::fromStdString(_macro->Name()));
}
void MacroTreeItem::ExpandClicked(bool checked)
{
if (!checked) {
_tree->GetModel()->ExpandGroup(_macro);
} else {
_tree->GetModel()->CollapseGroup(_macro);
}
}
/* ========================================================================= */
void MacroTreeModel::Reset(std::deque<std::shared_ptr<Macro>> &newItems)
{
beginResetModel();
_macros = newItems;
endResetModel();
_mt->ResetWidgets();
}
static inline int
ModelIndexToMacroIndex(int modelIdx,
const std::deque<std::shared_ptr<Macro>> ¯os)
{
assert((int)macros.size() >= modelIdx);
int realIdx = 0;
const auto &m = macros[0];
bool inCollapsedGroup = m->IsGroup() && m->IsCollapsed();
uint32_t groupSize = m->GroupSize();
for (int i = 0; i < modelIdx; i++) {
if (inCollapsedGroup) {
realIdx += groupSize;
groupSize = 0;
inCollapsedGroup = false;
}
realIdx++;
const auto &m = macros.at(realIdx);
inCollapsedGroup = m->IsGroup() && m->IsCollapsed();
groupSize = m->GroupSize();
}
return realIdx;
}
static inline int
MacroIndexToModelIndex(int realIdx,
const std::deque<std::shared_ptr<Macro>> ¯os)
{
if (realIdx == -1) {
return -1;
}
int modelIdx = 0;
bool inCollapsedGroup = false;
uint32_t groupSize = 0;
for (int i = 0; i < realIdx; i++) {
if (inCollapsedGroup) {
i += groupSize - 1;
groupSize = 0;
inCollapsedGroup = false;
continue;
}
const auto &m = macros.at(i);
inCollapsedGroup = m->IsGroup() && m->IsCollapsed();
groupSize = m->GroupSize();
modelIdx++;
}
return modelIdx;
}
void MacroTreeModel::MoveItemBefore(const std::shared_ptr<Macro> &item,
const std::shared_ptr<Macro> &before)
{
if (!item || !before || item == before ||
Neighbor(item, false) == before) {
return;
}
int modelFromIdx = 0, modelFromEndIdx = 0, modelTo = 0, macroFrom = 0,
macroTo = 0;
try {
modelFromEndIdx = GetItemModelIndex(item);
modelFromIdx = modelFromEndIdx;
modelTo = GetItemModelIndex(before);
macroFrom = GetItemMacroIndex(item);
macroTo = GetItemMacroIndex(before);
} catch (const std::out_of_range &) {
blog(LOG_WARNING,
"error while trying to move item \"%s\" before \"%s\"",
item->Name().c_str(), before->Name().c_str());
assert(IsInValidState());
return;
}
if (before->IsSubitem()) {
modelTo -= before->IsCollapsed() ? 0 : before->GroupSize();
macroTo -= before->GroupSize();
}
if (!item->IsGroup()) {
beginMoveRows(QModelIndex(), modelFromIdx, modelFromIdx,
QModelIndex(), modelTo);
auto it = std::next(_macros.begin(), macroFrom);
std::shared_ptr<Macro> tmp = *it;
_macros.erase(it);
_macros.insert(std::next(_macros.begin(), macroTo), tmp);
endMoveRows();
assert(IsInValidState());
return;
}
if (!item->IsCollapsed()) {
modelFromEndIdx += item->GroupSize();
}
beginMoveRows(QModelIndex(), modelFromIdx, modelFromEndIdx,
QModelIndex(), modelTo);
for (uint32_t i = 0; i <= item->GroupSize(); i++) {
auto it = std::next(_macros.begin(), macroFrom + i);
auto tmp = *it;
_macros.erase(it);
_macros.insert(std::next(_macros.begin(), macroTo + i), tmp);
}
endMoveRows();
assert(IsInValidState());
}
void MacroTreeModel::MoveItemAfter(const std::shared_ptr<Macro> &item,
const std::shared_ptr<Macro> &after)
{
if (!item || !after || item == after || Neighbor(item, true) == after) {
return;
}
auto moveAfter = after;
int modelFromIdx = 0, modelFromEndIdx = 0, modelTo = 0;
try {
modelFromIdx = GetItemModelIndex(item);
modelFromEndIdx = modelFromIdx;
modelTo = GetItemModelIndex(after);
} catch (const std::out_of_range &) {
blog(LOG_WARNING,
"error while trying to move item \"%s\" after \"%s\"",
item->Name().c_str(), after->Name().c_str());
assert(IsInValidState());
return;
}
if (after->IsGroup()) {
modelTo += after->IsCollapsed() ? 0 : after->GroupSize();
moveAfter = FindEndOfGroup(after, false);
}
if (!item->IsGroup()) {
beginMoveRows(QModelIndex(), modelFromIdx, modelFromEndIdx,
QModelIndex(), modelTo + 1);
auto it = std::find(_macros.begin(), _macros.end(), item);
std::shared_ptr<Macro> tmp = *it;
_macros.erase(it);
it = std::find(_macros.begin(), _macros.end(), moveAfter);
if (it == _macros.end()) {
_macros.insert(it, tmp);
} else {
_macros.insert(std::next(it), tmp);
}
endMoveRows();
assert(IsInValidState());
return;
}
if (!item->IsCollapsed()) {
modelFromEndIdx += item->GroupSize();
}
beginMoveRows(QModelIndex(), modelFromIdx, modelFromEndIdx,
QModelIndex(), modelTo + 1);
auto groupStart = std::find(_macros.begin(), _macros.end(), item);
auto groupEnd = std::next(groupStart, item->GroupSize() + 1);
std::deque<std::shared_ptr<Macro>> elementsToMove(groupStart, groupEnd);
for (const auto &element : elementsToMove) {
auto it = std::find(_macros.begin(), _macros.end(), element);
_macros.erase(it);
it = std::find(_macros.begin(), _macros.end(), moveAfter);
if (it == _macros.end()) {
_macros.insert(it, element);
} else {
_macros.insert(std::next(it), element);
}
moveAfter = element;
}
endMoveRows();
assert(IsInValidState());
}
static inline int
CountItemsVisibleInModel(const std::deque<std::shared_ptr<Macro>> ¯os)
{
int count = macros.size();
for (const auto &m : macros) {
if (m->IsGroup() && m->IsCollapsed()) {
count -= m->GroupSize();
}
}
return count;
}
void MacroTreeModel::Add(std::shared_ptr<Macro> item)
{
auto lock = LockContext();
auto idx = CountItemsVisibleInModel(_macros);
beginInsertRows(QModelIndex(), idx, idx);
_macros.emplace_back(item);
endInsertRows();
_mt->UpdateWidget(createIndex(idx, 0, nullptr), item);
_mt->selectionModel()->clear();
_mt->selectionModel()->select(createIndex(idx, 0, nullptr),
QItemSelectionModel::Select);
}
void MacroTreeModel::MoveToBeginningOfGroup(std::shared_ptr<Macro> item,
std::shared_ptr<Macro> group)
{
auto it = std::find(_macros.begin(), _macros.end(), item);
assert(it != _macros.end());
std::shared_ptr<Macro> tmp = *it;
_macros.erase(it);
it = std::find(_macros.begin(), _macros.end(), group);
assert(it != _macros.end());
_macros.insert(std::next(it), tmp);
Reset(_macros);
}
void MacroTreeModel::Remove(std::shared_ptr<Macro> item)
{
auto lock = LockContext();
auto uiStartIdx = GetItemModelIndex(item);
if (uiStartIdx == -1) {
return;
}
auto macroStartIdx = ModelIndexToMacroIndex(uiStartIdx, _macros);
auto uiEndIdx = uiStartIdx;
auto macroEndIdx = macroStartIdx;
bool isGroup = item->IsGroup();
if (isGroup) {
macroEndIdx += item->GroupSize();
if (!item->IsCollapsed()) {
uiEndIdx += item->GroupSize();
}
} else if (item->IsSubitem()) {
Macro::PrepareMoveToGroup(nullptr, item);
}
beginRemoveRows(QModelIndex(), uiStartIdx, uiEndIdx);
_macros.erase(std::next(_macros.begin(), macroStartIdx),
std::next(_macros.begin(), macroEndIdx + 1));
endRemoveRows();
_mt->selectionModel()->clear();
assert(IsInValidState());
}
std::shared_ptr<Macro> MacroTreeModel::Neighbor(const std::shared_ptr<Macro> &m,
bool above) const
{
if (!m) {
return std::shared_ptr<Macro>();
}
auto it = std::find(_macros.begin(), _macros.end(), m);
if (it == _macros.end()) {
return std::shared_ptr<Macro>();
}
if (above) {
if (it == _macros.begin()) {
return std::shared_ptr<Macro>();
}
return *std::prev(it, 1);
}
auto result = std::next(it, 1);
if (result == _macros.end()) {
return std::shared_ptr<Macro>();
}
return *result;
}
std::shared_ptr<Macro>
MacroTreeModel::FindEndOfGroup(const std::shared_ptr<Macro> &m,
bool above) const
{
auto endOfGroup = Neighbor(m, above);
if (!endOfGroup) {
return m;
}
if (above) {
while (!endOfGroup->IsGroup()) {
endOfGroup = Neighbor(endOfGroup, above);
}
} else {
while (endOfGroup->IsSubitem() &&
GetItemMacroIndex(endOfGroup) + 1 !=
(int)_macros.size()) {
endOfGroup = Neighbor(endOfGroup, above);
}
if (!endOfGroup->IsSubitem()) {
endOfGroup = Neighbor(endOfGroup, !above);
}
}
return endOfGroup;
}
std::shared_ptr<Macro> MacroTreeModel::GetCurrentMacro() const
{
auto sel = _mt->selectionModel()->selection();
if (sel.empty()) {
return std::shared_ptr<Macro>();
}
auto idx = sel.indexes().back().row();
if (idx >= (int)_macros.size()) {
return std::shared_ptr<Macro>();
}
return _macros[ModelIndexToMacroIndex(idx, _macros)];
}
std::vector<std::shared_ptr<Macro>>
MacroTreeModel::GetCurrentMacros(const QModelIndexList &selection) const
{
std::vector<std::shared_ptr<Macro>> result;
result.reserve(selection.size());
for (const auto &sel : selection) {
try {
result.emplace_back(_macros.at(
ModelIndexToMacroIndex(sel.row(), _macros)));
} catch (const std::out_of_range &) {
}
}
return result;
}
MacroTreeModel::MacroTreeModel(MacroTree *st_,
std::deque<std::shared_ptr<Macro>> ¯os)
: QAbstractListModel(st_),
_mt(st_),
_macros(macros)
{
}
int MacroTreeModel::rowCount(const QModelIndex &parent) const
{
return parent.isValid() ? 0 : CountItemsVisibleInModel(_macros);
}
QVariant MacroTreeModel::data(const QModelIndex &index, int role) const
{
if (role == Qt::AccessibleTextRole) {
std::shared_ptr<Macro> item =
_macros[ModelIndexToMacroIndex(index.row(), _macros)];
if (!item) {
return QVariant();
}
return QVariant(QString::fromStdString(item->Name()));
}
return QVariant();
}
Qt::ItemFlags MacroTreeModel::flags(const QModelIndex &index) const
{
if (!index.isValid()) {
return QAbstractListModel::flags(index) | Qt::ItemIsDropEnabled;
}
std::shared_ptr<Macro> item;
try {
item = _macros.at(ModelIndexToMacroIndex(index.row(), _macros));
} catch (const std::out_of_range &) {
return QAbstractListModel::flags(index) | Qt::ItemIsDropEnabled;
}
bool isGroup = item->IsGroup();
return QAbstractListModel::flags(index) | Qt::ItemIsEditable |
Qt::ItemIsDragEnabled |
(isGroup ? Qt::ItemIsDropEnabled : Qt::NoItemFlags);
}
Qt::DropActions MacroTreeModel::supportedDropActions() const
{
return QAbstractItemModel::supportedDropActions() | Qt::MoveAction;
}
QString MacroTreeModel::GetNewGroupName()
{
QString fmt =
obs_module_text("AdvSceneSwitcher.macroTab.defaultGroupName");
QString name = fmt.arg("1");
int i = 2;
for (;;) {
if (!GetMacroByQString(name)) {
break;
}
name = fmt.arg(QString::number(i++));
}
return name;
}
int MacroTreeModel::GetItemMacroIndex(const std::shared_ptr<Macro> &item) const
{
auto it = std::find(_macros.begin(), _macros.end(), item);
if (it == _macros.end()) {
return -1;
}
return it - _macros.begin();
}
int MacroTreeModel::GetItemModelIndex(const std::shared_ptr<Macro> &item) const
{
return MacroIndexToModelIndex(GetItemMacroIndex(item), _macros);
}
bool MacroTreeModel::IsLastItem(std::shared_ptr<Macro> item) const
{
return GetItemModelIndex(item) + 1 == (int)_macros.size();
}
bool MacroTreeModel::IsInValidState()
{
// Check for reordering erros
for (size_t i = 0, j = 0; i < _macros.size(); i++) {
const auto &m = _macros[i];
if (QString::fromStdString(m->Name()) !=
data(index(j, 0), Qt::AccessibleTextRole)) {
return false;
}
if (m->IsGroup() && m->IsCollapsed()) {
i += m->GroupSize();
}
j++;
}
// Check for group errors
for (size_t i = 0; i < _macros.size(); i++) {
const auto &m = _macros[i];
if (!m->IsGroup()) {
continue;
}
const auto groupSize = m->GroupSize();
assert(i + groupSize < _macros.size());
for (uint32_t j = 1; j <= groupSize; j++) {
assert(_macros[i + j]->IsSubitem());
}
}
return true;
}
void MacroTreeModel::GroupSelectedItems(QModelIndexList &indices)
{
if (indices.count() == 0) {
return;
}
auto lock = LockContext();
QString name = GetNewGroupName();
std::vector<std::shared_ptr<Macro>> itemsToGroup;
itemsToGroup.reserve(indices.size());
int insertGroupAt = indices[0].row();
for (int i = 0; i < indices.count(); i++) {
int selectedIdx = indices[i].row();
if (selectedIdx < insertGroupAt) {
insertGroupAt = selectedIdx;
}
std::shared_ptr<Macro> item =
_macros[ModelIndexToMacroIndex(selectedIdx, _macros)];
itemsToGroup.emplace_back(item);
}
std::shared_ptr<Macro> group =
Macro::CreateGroup(name.toStdString(), itemsToGroup);
if (!group) {
return;
}
// Add new list entry for group
insertGroupAt = ModelIndexToMacroIndex(insertGroupAt, _macros);
_macros.insert(_macros.begin() + insertGroupAt, group);
// Move all selected items after new group entry
int offset = 1;
for (const auto &item : itemsToGroup) {
auto it = _macros.begin() + GetItemMacroIndex(item);
_macros.erase(it);
_macros.insert(_macros.begin() + insertGroupAt + offset, item);
offset++;
}
_mt->selectionModel()->clear();
Reset(_macros);
assert(IsInValidState());
}
void MacroTreeModel::UngroupSelectedGroups(QModelIndexList &indices)
{
if (indices.count() == 0) {
return;
}
auto lock = LockContext();
for (int i = indices.count() - 1; i >= 0; i--) {
std::shared_ptr<Macro> item = _macros[ModelIndexToMacroIndex(
indices[i].row(), _macros)];
if (item->IsGroup()) {
Macro::RemoveGroup(item);
}
}
_mt->selectionModel()->clear();
Reset(_macros);
assert(IsInValidState());
}
void MacroTreeModel::ExpandGroup(std::shared_ptr<Macro> item)
{
auto idx = GetItemModelIndex(item);
if (idx == -1 || !item->IsGroup() || !item->GroupSize() ||
!item->IsCollapsed()) {
return;
}
item->SetCollapsed(false);
Reset(_macros);
_mt->selectionModel()->clear();
assert(IsInValidState());
}
void MacroTreeModel::CollapseGroup(std::shared_ptr<Macro> item)
{
auto idx = GetItemModelIndex(item);
if (idx == -1 || !item->IsGroup() || !item->GroupSize() ||
item->IsCollapsed()) {
return;
}
item->SetCollapsed(true);
Reset(_macros);
_mt->selectionModel()->clear();
assert(IsInValidState());
}
void MacroTree::Reset(std::deque<std::shared_ptr<Macro>> ¯os,
bool highlight)
{
_highlight = highlight;
auto mtm = new MacroTreeModel(this, macros);
setModel(mtm);
GetModel()->Reset(macros);
connect(selectionModel(),
SIGNAL(selectionChanged(const QItemSelection &,
const QItemSelection &)),
this,
SLOT(SelectionChangedHelper(const QItemSelection &,
const QItemSelection &)));
}
void MacroTree::Add(std::shared_ptr<Macro> item,
std::shared_ptr<Macro> after) const
{
GetModel()->Add(item);
if (after) {
MoveItemAfter(item, after);
}
assert(GetModel()->IsInValidState());
}
void MacroTree::AddToGroup(std::shared_ptr<Macro> item,
std::shared_ptr<Macro> group) const
{
GetModel()->Add(item);
GetModel()->MoveToBeginningOfGroup(item, group);
}
std::shared_ptr<Macro> MacroTree::GetCurrentMacro() const
{
return GetModel()->GetCurrentMacro();
}
std::vector<std::shared_ptr<Macro>> MacroTree::GetCurrentMacros() const
{
QModelIndexList indices = selectedIndexes();
return GetModel()->GetCurrentMacros(indices);
}
MacroTree::MacroTree(QWidget *parent_) : QListView(parent_)
{
setStyleSheet(QString(
"*[bgColor=\"1\"]{background-color:rgba(255,68,68,33%);}"
"*[bgColor=\"2\"]{background-color:rgba(255,255,68,33%);}"
"*[bgColor=\"3\"]{background-color:rgba(68,255,68,33%);}"
"*[bgColor=\"4\"]{background-color:rgba(68,255,255,33%);}"
"*[bgColor=\"5\"]{background-color:rgba(68,68,255,33%);}"
"*[bgColor=\"6\"]{background-color:rgba(255,68,255,33%);}"
"*[bgColor=\"7\"]{background-color:rgba(68,68,68,33%);}"
"*[bgColor=\"8\"]{background-color:rgba(255,255,255,33%);}"));
setItemDelegate(new MacroTreeDelegate(this));
}
void MacroTree::ResetWidgets()
{
MacroTreeModel *mtm = GetModel();
int modelIdx = 0;
for (int i = 0; i < (int)mtm->_macros.size(); i++) {
QModelIndex index = mtm->createIndex(modelIdx, 0, nullptr);
const auto ¯o = mtm->_macros[i];
setIndexWidget(index,
new MacroTreeItem(this, macro, _highlight));
// Skip items of collapsed groups
if (macro->IsGroup() && macro->IsCollapsed()) {
i += macro->GroupSize();
}
modelIdx++;
}
assert(GetModel()->IsInValidState());
}
void MacroTree::UpdateWidget(const QModelIndex &idx,
std::shared_ptr<Macro> item)
{
setIndexWidget(idx, new MacroTreeItem(this, item, _highlight));
}
void MacroTree::UpdateWidgets(bool force)
{
MacroTreeModel *mtm = GetModel();
for (int i = 0; i < (int)mtm->_macros.size(); i++) {
std::shared_ptr<Macro> item = mtm->_macros[i];
auto widget = GetItemWidget(i);
if (!widget) {
UpdateWidget(mtm->createIndex(i, 0, nullptr), item);
} else {
widget->Update(force);
}
// Skip items of collapsed groups
if (item->IsGroup() && item->IsCollapsed()) {
i += item->GroupSize();
}
}
}
static inline void MoveItem(std::deque<std::shared_ptr<Macro>> &items,
std::shared_ptr<Macro> &item, int to)
{
auto it = std::find(items.begin(), items.end(), item);
if (it == items.end()) {
blog(LOG_ERROR,
"something went wrong during drag & drop reordering");
return;
}
items.erase(it);
items.insert(std::next(items.begin(), to), item);
}
// Logic mostly based on OBS's source-tree dropEvent() with a few modifications
// regarding group handling
void MacroTree::dropEvent(QDropEvent *event)
{
if (event->source() != this) {
QListView::dropEvent(event);
return;
}
MacroTreeModel *mtm = GetModel();
auto &items = mtm->_macros;
QModelIndexList indices = selectedIndexes();
DropIndicatorPosition indicator = dropIndicatorPosition();
int row = indexAt(event->position().toPoint()).row();
bool emptyDrop = row == -1;
if (emptyDrop) {
if (items.empty()) {
QListView::dropEvent(event);
return;
}
row = mtm->rowCount(QModelIndex()) - 1;
indicator = QAbstractItemView::BelowItem;
}
// Store destination group if moving to a group
Macro *dropItem = items[ModelIndexToMacroIndex(row, items)]
.get(); // Item being dropped on
bool itemIsGroup = dropItem->IsGroup();
Macro *dropGroup = itemIsGroup ? dropItem : dropItem->Parent().get();
// Not a group if moving above the group
if (indicator == QAbstractItemView::AboveItem && itemIsGroup) {
dropGroup = nullptr;
}
if (emptyDrop) {
dropGroup = nullptr;
}
// Remember to remove list items if dropping on collapsed group
bool dropOnCollapsed = false;
if (dropGroup) {
dropOnCollapsed = dropGroup->IsCollapsed();
}
if (indicator == QAbstractItemView::BelowItem ||
indicator == QAbstractItemView::OnItem ||
indicator == QAbstractItemView::OnViewport)
row++;
if (row < 0 || row > (int)items.size()) {
QListView::dropEvent(event);
return;
}
// Determine if any base group is selected
bool hasGroups = false;
for (int i = 0; i < indices.size(); i++) {
std::shared_ptr<Macro> item =
items[ModelIndexToMacroIndex(indices[i].row(), items)];
if (item->IsGroup()) {
hasGroups = true;
break;
}
}
// If dropping a group, detect if it's below another group
std::shared_ptr<Macro> itemBelow;
if (row == (int)items.size()) {
itemBelow = nullptr;
} else {
itemBelow = items[MacroIndexToModelIndex(row, items)];
}
if (hasGroups) {
if (!itemBelow || itemBelow->Parent().get() != dropGroup) {
dropGroup = nullptr;
dropOnCollapsed = false;
}
}
// If dropping groups on other groups, disregard as invalid drag/drop
if (dropGroup && hasGroups) {
QListView::dropEvent(event);
return;
}
// If selection includes base group items, include all group sub-items and
// treat them all as one
//
// Also gather list of (sub)items to move in backend
std::vector<std::shared_ptr<Macro>> subItemsToMove;
QModelIndexList indicesWithoutSubitems = indices;
if (hasGroups) {
// Remove sub-items if selected
for (int i = indices.size() - 1; i >= 0; i--) {
std::shared_ptr<Macro> item =
items[ModelIndexToMacroIndex(indices[i].row(),
items)];
auto parent = item->Parent();
if (parent != nullptr) {
indices.removeAt(i);
}
}
indicesWithoutSubitems = indices;
// Add all sub-items of selected groups
for (int i = indices.size() - 1; i >= 0; i--) {
std::shared_ptr<Macro> item =
items[ModelIndexToMacroIndex(indices[i].row(),
items)];
if (!item->IsGroup()) {
continue;
}
bool collapsed = item->IsCollapsed();
for (int j = items.size() - 1; j >= 0; j--) {
std::shared_ptr<Macro> subitem = items[j];
auto subitemGroup = subitem->Parent().get();
if (subitemGroup == item.get()) {
if (!collapsed) {
QModelIndex idx = mtm->createIndex(
MacroIndexToModelIndex(
j, items),
0, nullptr);
indices.insert(i + 1, idx);
}
subItemsToMove.emplace_back(subitem);
}
}
}
}
// Build persistent indices
QList<QPersistentModelIndex> persistentIndices;
persistentIndices.reserve(indices.count());
for (QModelIndex &index : indices) {
persistentIndices.append(index);
}
std::sort(persistentIndices.begin(), persistentIndices.end());
// Prepare items to move in backend
std::sort(indicesWithoutSubitems.begin(), indicesWithoutSubitems.end());
std::vector<std::shared_ptr<Macro>> itemsToMove;
for (const auto &subitemsIdx : indicesWithoutSubitems) {
auto idx = ModelIndexToMacroIndex(subitemsIdx.row(), items);
itemsToMove.emplace_back(items[idx]);
}
// Move all items to destination index
int r = row;
for (auto &persistentIdx : persistentIndices) {
int from = persistentIdx.row();
int to = r;
int itemTo = to;
if (itemTo > from) {
itemTo--;
}
if (itemTo != from) {
mtm->beginMoveRows(QModelIndex(), from, from,
QModelIndex(), to);
mtm->endMoveRows();
}
r = persistentIdx.row() + 1;
}
std::sort(persistentIndices.begin(), persistentIndices.end());
int firstIdx = persistentIndices.front().row();
int lastIdx = persistentIndices.back().row();
// Remove items if dropped in to collapsed group
if (dropOnCollapsed) {
mtm->beginRemoveRows(QModelIndex(), firstIdx, lastIdx);
mtm->endRemoveRows();
}
// Move items in backend
auto lock = LockContext();
int to = row;
try {
to = ModelIndexToMacroIndex(row, items);
} catch (std::out_of_range const &) {
to = items.size();
}
auto prev = *itemsToMove.rbegin();
auto curIdx = mtm->GetItemMacroIndex(prev);
int toIdx = to;
if (toIdx > curIdx) {
toIdx--;
}
Macro::PrepareMoveToGroup(dropGroup, prev);
MoveItem(items, prev, toIdx);
for (auto it = std::next(itemsToMove.rbegin(), 1);
it != itemsToMove.rend(); ++it) {
auto &item = *it;
auto curIdx = mtm->GetItemMacroIndex(item);
int toIdx = mtm->GetItemMacroIndex(prev);
if (toIdx > curIdx) {
toIdx--;
}
Macro::PrepareMoveToGroup(dropGroup, item);
MoveItem(items, item, toIdx);
prev = item;
}
// Move subitems of groups
for (const auto &i : subItemsToMove) {
auto removeIt = std::find(items.begin(), items.end(), i);
if (removeIt == items.end()) {
blog(LOG_ERROR, "Cannot move subitem '%s'",
i->Name().c_str());
continue;
}
items.erase(removeIt);
auto targetName = i->Parent()->Name();
auto GroupNameMatches = [targetName](std::shared_ptr<Macro> m) {
return m->Name() == targetName;
};
auto it = std::find_if(items.begin(), items.end(),
GroupNameMatches);
items.insert(std::next(it, 1), i);
}
// Update widgets and accept event
UpdateWidgets(true);
event->accept();
event->setDropAction(Qt::CopyAction);
QListView::dropEvent(event);
assert(GetModel()->IsInValidState());
}
bool MacroTree::GroupsSelected() const
{
if (SelectionEmpty()) {
return false;
}
MacroTreeModel *mtm = GetModel();
for (auto &idx : selectedIndexes()) {
std::shared_ptr<Macro> item =
mtm->_macros[ModelIndexToMacroIndex(idx.row(),
mtm->_macros)];
if (item->IsGroup()) {
return true;
}
}
return false;
}
bool MacroTree::GroupedItemsSelected() const
{
if (SelectionEmpty()) {
return false;
}
auto *mtm = GetModel();
for (auto &idx : selectedIndexes()) {
std::shared_ptr<Macro> item =
mtm->_macros[ModelIndexToMacroIndex(idx.row(),
mtm->_macros)];
auto parent = item->Parent();
if (parent) {
return true;
}
}
return false;
}
bool MacroTree::SingleItemSelected() const
{
return selectedIndexes().size() == 1;
}
bool MacroTree::SelectionEmpty() const
{
return selectedIndexes().empty();
}
bool MacroTree::GroupsExist() const
{
for (const auto ¯o : GetTopLevelMacros()) {
if (macro->IsGroup()) {
return true;
}
}
return false;
}
void MacroTree::ExpandGroup(std::shared_ptr<Macro> item) const
{
auto *mtm = GetModel();
mtm->ExpandGroup(item);
}
void MacroTree::CollapseGroup(std::shared_ptr<Macro> item) const
{
auto *mtm = GetModel();
mtm->CollapseGroup(item);
}
void MacroTree::RefreshFilter()
{
UpdateWidgets();
doItemsLayout();
}
void MacroTree::MoveItemBefore(const std::shared_ptr<Macro> &item,
const std::shared_ptr<Macro> &after) const
{
GetModel()->MoveItemBefore(item, after);
}
void MacroTree::MoveItemAfter(const std::shared_ptr<Macro> &item,
const std::shared_ptr<Macro> &after) const
{
GetModel()->MoveItemAfter(item, after);
}
MacroTreeModel *MacroTree::GetModel() const
{
return qobject_cast<MacroTreeModel *>(model());
}
void MacroTree::Remove(std::shared_ptr<Macro> item) const
{
GetModel()->Remove(item);
}
void MacroTree::Up(std::shared_ptr<Macro> item) const
{
auto lock = LockContext();
auto above = GetModel()->Neighbor(item, true);
if (!above) {
return;
}
if (item->IsSubitem()) {
// Nowhere to move to, when the item above is a group or
// regular entry
if (!above->IsSubitem()) {
return;
}
MoveItemBefore(item, above);
return;
}
if (above->IsSubitem()) {
above = GetModel()->FindEndOfGroup(above, true);
}
MoveItemBefore(item, above);
}
void MacroTree::Down(std::shared_ptr<Macro> item) const
{
auto lock = LockContext();
auto below = GetModel()->Neighbor(item, false);
if (!below) {
return;
}
if (item->IsSubitem()) {
// Nowhere to move to, when the item below is a group or
// regular entry
if (!below->IsSubitem()) {
return;
}
MoveItemAfter(item, below);
return;
}
if (item->IsGroup()) {
if (below->IsSubitem()) {
below = GetModel()->FindEndOfGroup(below, false);
// Nowhere to move group to
if (GetModel()->IsLastItem(below)) {
return;
}
below = GetModel()->Neighbor(below, false);
}
MoveItemAfter(item, below);
return;
}
MoveItemAfter(item, below);
}
void MacroTree::GroupSelectedItems()
{
QModelIndexList indices = selectedIndexes();
std::sort(indices.begin(), indices.end());
GetModel()->GroupSelectedItems(indices);
assert(GetModel()->IsInValidState());
}
void MacroTree::UngroupSelectedGroups()
{
QModelIndexList indices = selectedIndexes();
GetModel()->UngroupSelectedGroups(indices);
assert(GetModel()->IsInValidState());
}
void MacroTree::ExpandAll()
{
for (const auto ¯o : GetTopLevelMacros()) {
if (!macro->IsGroup()) {
continue;
}
ExpandGroup(macro);
}
}
void MacroTree::CollapseAll()
{
for (const auto ¯o : GetTopLevelMacros()) {
if (!macro->IsGroup()) {
continue;
}
CollapseGroup(macro);
}
}
void MacroTree::SelectionChangedHelper(const QItemSelection &,
const QItemSelection &)
{
emit MacroSelectionAboutToChange();
emit MacroSelectionChanged();
}
inline MacroTreeItem *MacroTree::GetItemWidget(int idx) const
{
auto widget = indexWidget(GetModel()->createIndex(idx, 0, nullptr));
return qobject_cast<MacroTreeItem *>(widget);
}
void MacroTree::paintEvent(QPaintEvent *event)
{
MacroTreeModel *mtm = GetModel();
if (mtm && mtm->_macros.empty()) {
QPainter painter(viewport());
const QRect rectangle =
QRect(0, 0, size().width(), size().height());
QRect boundingRect;
QString text(obs_module_text("AdvSceneSwitcher.macroTab.help"));
painter.drawText(rectangle, Qt::AlignCenter | Qt::TextWordWrap,
text, &boundingRect);
} else {
QListView::paintEvent(event);
}
}
MacroTreeDelegate::MacroTreeDelegate(QObject *parent)
: QStyledItemDelegate(parent)
{
}
QSize MacroTreeDelegate::sizeHint(const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
auto tree = qobject_cast<MacroTree *>(parent());
auto widget = tree->indexWidget(index);
if (!widget) {
return QStyledItemDelegate::sizeHint(option, index);
}
auto name = index.data(Qt::AccessibleTextRole).toString();
auto macro = GetMacroByQString(name);
if (!macro) {
return QStyledItemDelegate::sizeHint(option, index);
}
if (MacroMatchesSearchFilter(macro)) {
return QSize(widget->sizeHint());
}
return QSize(0, 0);
}
} // namespace advss
|