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
|
/*
SPDX-FileCopyrightText: David Nolden <david.nolden.kdevelop@art-master.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "workingset.h"
#include "debug_workingset.h"
#include <sublime/area.h>
#include <sublime/document.h>
#include <sublime/mainwindow.h>
#include <sublime/view.h>
#include <KProtocolInfo>
#include <KTextEditor/View>
#include <textdocument.h>
#include <core.h>
#include <interfaces/isession.h>
#include <uicontroller.h>
#include <util/pushvalue.h>
#include <documentcontroller.h>
#include <QFileInfo>
#include <QPainter>
#include <QSplitter>
#define SYNC_OFTEN
using namespace KDevelop;
bool WorkingSet::m_loading = false;
namespace {
QIcon generateIcon(const WorkingSetIconParameters& params)
{
QImage pixmap(16, 16, QImage::Format_ARGB32);
// fill the background with a transparent color
pixmap.fill(QColor::fromRgba(qRgba(0, 0, 0, 0)));
const uint coloredCount = params.coloredCount;
// coordinates of the rectangles to draw, for 16x16 icons specifically
QList<QRect> rects{
{1, 1, 5, 5},
{1, 9, 5, 5},
{9, 1, 5, 5},
{9, 9, 5, 5},
};
if (params.swapDiagonal) {
rects.swapItemsAt(1, 2);
}
QPainter painter(&pixmap);
// color for non-colored squares, paint them brighter if the working set is the active one
const int inact = 40;
QColor darkColor = QColor::fromRgb(inact, inact, inact);
// color for colored squares
// this code is not fragile, you can just tune the magic formulas at random and see what looks good.
// just make sure to keep it within the 0-360 / 0-255 / 0-255 space of the HSV model
QColor brightColor = QColor::fromHsv(params.hue, qMin<uint>(255, 215 + (params.setId*5) % 150),
205 + (params.setId*11) % 50);
// Y'UV "Y" value, the approximate "lightness" of the color
// If it is above 0.6, then making the color darker a bit is okay,
// if it is below 0.35, then the color should be a bit brighter.
float brightY = 0.299 * brightColor.redF() + 0.587 * brightColor.greenF() + 0.114 * brightColor.blueF();
if ( brightY > 0.6 ) {
if ( params.setId % 7 < 2 ) {
// 2/7 chance to make the color significantly darker
brightColor = brightColor.darker(120 + (params.setId*7) % 35);
}
else if ( params.setId % 5 == 0 ) {
// 1/5 chance to make it a bit darker
brightColor = brightColor.darker(110 + (params.setId*3) % 10);
}
}
if ( brightY < 0.35 ) {
// always make the color brighter to avoid very dark colors (like rgb(0, 0, 255))
brightColor = brightColor.lighter(120 + (params.setId*13) % 55);
}
int at = 0;
for (const QRect& rect : qAsConst(rects)) {
QColor currentColor;
// pick the colored squares; you can get different patterns by re-ordering the "rects" list
if ( (at + params.setId*7) % 4 < coloredCount ) {
currentColor = brightColor;
}
else {
currentColor = darkColor;
}
// draw the filling of the square
painter.setPen(QColor(currentColor));
painter.setBrush(QBrush(currentColor));
painter.drawRect(rect);
// draw a slight set-in shadow for the square -- it's barely recognizeable,
// but it looks way better than without
painter.setBrush(Qt::NoBrush);
painter.setPen(QColor(0, 0, 0, 50));
painter.drawRect(rect);
painter.setPen(QColor(0, 0, 0, 25));
painter.drawRect(rect.x() + 1, rect.y() + 1, rect.width() - 2, rect.height() - 2);
at += 1;
}
return QIcon(QPixmap::fromImage(pixmap));
}
QSplitter* loadToAreaPrivate(Sublime::Area *area, Sublime::AreaIndex *areaIndex, const KConfigGroup &setGroup, QMultiMap<QString, Sublime::View*> &recycle)
{
Q_ASSERT(!areaIndex->isSplit());
QSplitter *parentSplitter = nullptr;
if (setGroup.hasKey("Orientation")) {
QStringList subgroups = setGroup.groupList();
if (!subgroups.contains(QStringLiteral("0"))) {
if (subgroups.contains(QStringLiteral("1"))) {
parentSplitter = loadToAreaPrivate(area, areaIndex, KConfigGroup(&setGroup, "1"), recycle);
}
} else if (!subgroups.contains(QStringLiteral("1"))) {
parentSplitter = loadToAreaPrivate(area, areaIndex, KConfigGroup(&setGroup, "0"), recycle);
} else {
areaIndex->split(setGroup.readEntry("Orientation", "Horizontal") == QLatin1String("Vertical") ? Qt::Vertical : Qt::Horizontal);
parentSplitter = loadToAreaPrivate(area, areaIndex->first(), KConfigGroup(&setGroup, "0"), recycle);
if (!parentSplitter) {
areaIndex->unsplit(areaIndex->first());
parentSplitter = loadToAreaPrivate(area, areaIndex, KConfigGroup(&setGroup, "1"), recycle);
} else if (auto *splitter = loadToAreaPrivate(area, areaIndex->second(), KConfigGroup(&setGroup, "1"), recycle)) {
splitter->setSizes(setGroup.readEntry("Sizes", QList<int>({1, 1})));
parentSplitter = qobject_cast<QSplitter*>(splitter->parent());
} else {
areaIndex->unsplit(areaIndex->second());
emit area->viewAdded(areaIndex, nullptr);
}
}
} else {
//Load all documents from the workingset into this areaIndex
int viewCount = setGroup.readEntry("View Count", 0);
QVector<Sublime::View*> createdViews(viewCount, nullptr);
for (int i = 0; i < viewCount; ++i) {
QString specifier = setGroup.readEntry(QStringLiteral("View %1").arg(i), QString());
if (specifier.isEmpty()) {
continue;
}
Sublime::View* previousView = areaIndex->views().empty() ? nullptr : areaIndex->views().back();
QMultiMap<QString, Sublime::View*>::iterator it = recycle.find(specifier);
if (it != recycle.end()) {
area->addView(*it, areaIndex, previousView);
createdViews[i] = *it;
recycle.erase(it);
continue;
}
auto url = QUrl::fromUserInput(specifier);
if (url.isLocalFile() && !QFileInfo::exists(url.path())) {
qCWarning(WORKINGSET) << "Unable to find file" << specifier;
continue;
}
IDocument* doc = Core::self()->documentControllerInternal()->openDocument(url,
KTextEditor::Cursor::invalid(), IDocumentController::DoNotActivate | IDocumentController::DoNotCreateView);
if (auto document = dynamic_cast<Sublime::Document*>(doc)) {
Sublime::View *view = document->createView();
area->addView(view, areaIndex, previousView);
createdViews[i] = view;
} else {
qCWarning(WORKINGSET) << "Unable to create view" << specifier;
}
}
//Load state
int activeIndex = setGroup.readEntry(QStringLiteral("Active View"), -1);
for (int i = 0; i < viewCount; ++i) {
if (!createdViews[i]) {
continue;
}
KConfigGroup viewGroup(&setGroup, QStringLiteral("View %1 Config").arg(i));
if (viewGroup.exists()) {
createdViews[i]->readSessionConfig(viewGroup);
if (auto textView = qobject_cast<TextView*>(createdViews[i])) {
if (auto kateView = textView->textView()) {
auto cursors = viewGroup.readEntry("Selection", QList<int>());
if (cursors.size() == 4) {
kateView->setSelection(KTextEditor::Range(cursors.at(0), cursors.at(1), cursors.at(2), cursors.at(3)));
}
}
}
}
if (i == activeIndex) {
area->setActiveView(createdViews[i]);
}
if (!parentSplitter) {
auto p = createdViews[i]->widget()->parentWidget();
while (p && !(parentSplitter = qobject_cast<QSplitter*>(p))) {
p = p->parentWidget();
}
if (parentSplitter) {
parentSplitter = qobject_cast<QSplitter*>(parentSplitter->parent());
}
}
}
}
return parentSplitter;
}
QSplitter* saveFromAreaPrivate(Sublime::AreaIndex *area, KConfigGroup setGroup, const Sublime::View *activeView)
{
QSplitter *parentSplitter = nullptr;
if (area->isSplit()) {
if (!area->first()) {
parentSplitter = saveFromAreaPrivate(area->second(), setGroup, activeView);
} else if (!area->second()) {
parentSplitter = saveFromAreaPrivate(area->first(), setGroup, activeView);
} else {
parentSplitter = saveFromAreaPrivate(area->first(), KConfigGroup(&setGroup, "0"), activeView);
if (!parentSplitter) {
parentSplitter = saveFromAreaPrivate(area->second(), setGroup, activeView);
} else if (saveFromAreaPrivate(area->second(), KConfigGroup(&setGroup, "1"), activeView)) {
setGroup.writeEntry("Orientation", area->orientation() == Qt::Horizontal ? "Horizontal" : "Vertical");
setGroup.writeEntry("Sizes", parentSplitter->sizes());
} else {
// move up settings of group "0"
KConfigGroup(&setGroup, "0").copyTo(&setGroup);
setGroup.deleteGroup("0");
}
}
} else {
int index = 0;
int activeIndex = -1;
const auto views = area->views();
for (Sublime::View *view : views) {
//The working set config gets an updated list of files
QString docSpec = view->document()->documentSpecifier();
if (view == activeView) {
activeIndex = index;
}
//only save the documents from protocols KIO understands
//otherwise we try to load kdev:// too early
if (!KProtocolInfo::isKnownProtocol(QUrl(docSpec))) {
continue;
}
setGroup.writeEntry(QStringLiteral("View %1").arg(index), docSpec);
KConfigGroup viewGroup(&setGroup, QStringLiteral("View %1 Config").arg(index));
view->writeSessionConfig(viewGroup);
if (auto textView = qobject_cast<TextView*>(view)) {
if (auto kateView = textView->textView()) {
auto range = kateView->selectionRange();
if (range.isValid()) {
viewGroup.writeEntry("Selection", QList<int>({range.start().line(), range.start().column(),
range.end().line(), range.end().column()}));
}
}
}
++index;
if (!parentSplitter && view->hasWidget()) {
auto p = view->widget()->parentWidget();
while (p && !(parentSplitter = qobject_cast<QSplitter*>(p))) {
p = p->parentWidget();
}
}
}
if (index > 0) {
setGroup.writeEntry("View Count", index);
if (activeIndex >= 0) {
setGroup.writeEntry(QStringLiteral("Active View"), std::min(activeIndex, index - 1));
}
}
}
return parentSplitter ? qobject_cast<QSplitter*>(parentSplitter->parent()) : nullptr;
}
}
WorkingSet::WorkingSet(const QString& id)
: QObject()
, m_id(id)
, m_icon(generateIcon(WorkingSetIconParameters(id)))
{
}
bool WorkingSet::isEmpty() const
{
KConfigGroup setConfig(Core::self()->activeSession()->config(), "Working File Sets");
KConfigGroup group = setConfig.group(m_id);
return !group.hasKey("Orientation") && group.readEntry("View Count", 0) == 0;
}
struct DisableMainWindowUpdatesFromArea
{
explicit DisableMainWindowUpdatesFromArea(Sublime::Area* area) : m_area(area) {
if(area) {
const auto windows = Core::self()->uiControllerInternal()->mainWindows();
for (Sublime::MainWindow* window : windows) {
if(window->area() == area) {
if(window->updatesEnabled()) {
wasUpdatesEnabled.insert(window);
window->setUpdatesEnabled(false);
}
}
}
}
}
~DisableMainWindowUpdatesFromArea() {
if(m_area) {
for (Sublime::MainWindow* window : qAsConst(wasUpdatesEnabled)) {
window->setUpdatesEnabled(wasUpdatesEnabled.contains(window));
}
}
}
private:
Q_DISABLE_COPY(DisableMainWindowUpdatesFromArea)
Sublime::Area* m_area;
QSet<Sublime::MainWindow*> wasUpdatesEnabled;
};
void loadFileList(QStringList& ret, const KConfigGroup& group)
{
if (group.hasKey("Orientation")) {
QStringList subgroups = group.groupList();
if (subgroups.contains(QStringLiteral("0"))) {
{
KConfigGroup subgroup(&group, "0");
loadFileList(ret, subgroup);
}
if (subgroups.contains(QStringLiteral("1"))) {
KConfigGroup subgroup(&group, "1");
loadFileList(ret, subgroup);
}
}
} else {
int viewCount = group.readEntry("View Count", 0);
ret.reserve(ret.size() + viewCount);
for (int i = 0; i < viewCount; ++i) {
QString specifier = group.readEntry(QStringLiteral("View %1").arg(i), QString());
auto url = QUrl::fromUserInput(specifier);
if (url.isLocalFile() && !QFileInfo::exists(url.path())) {
continue;
}
ret << specifier;
}
}
}
QStringList WorkingSet::fileList() const
{
QStringList ret;
KConfigGroup setConfig(Core::self()->activeSession()->config(), "Working File Sets");
KConfigGroup group = setConfig.group(m_id);
loadFileList(ret, group);
return ret;
}
QSet<QString> WorkingSet::fileSet() const
{
const QStringList fileList = this->fileList();
return QSet<QString>(fileList.begin(), fileList.end());
}
void WorkingSet::loadToArea(Sublime::Area* area) {
PushValue<bool> enableLoading(m_loading, true);
/// We cannot disable the updates here, because (probably) due to a bug in Qt,
/// which causes the updates to stay disabled forever after some complex operations
/// on the sub-views. This could be reproduced by creating two working-sets with complex
/// split-view configurations and switching between them. Re-enabling the updates doesn't help.
// DisableMainWindowUpdatesFromArea updatesDisabler(area);
qCDebug(WORKINGSET) << "loading working-set" << m_id << "into area" << area;
QMultiMap<QString, Sublime::View*> recycle;
const auto viewsBefore = area->views();
for (Sublime::View* view : viewsBefore) {
recycle.insert( view->document()->documentSpecifier(), area->removeView(view) );
}
qCDebug(WORKINGSET) << "recycling up to" << recycle.size() << "old views";
Q_ASSERT( area->views().empty() );
KConfigGroup setConfig(Core::self()->activeSession()->config(), "Working File Sets");
KConfigGroup setGroup = setConfig.group(m_id);
// Migrate from former by-area configs to a shared config
KConfigGroup areaGroup = setConfig.group(m_id + QLatin1Char('|') + area->title());
if (areaGroup.exists()) {
if (setGroup.readEntry("Active View", QString()).isEmpty()) {
setGroup.writeEntry("Active View", areaGroup.readEntry("Active View", QString()));
}
int viewCount = setGroup.readEntry("View Count", 0);
QMultiMap<QString, KConfigGroup> oldViewConfigs;
for (int i = 0; i < viewCount; ++i) {
KConfigGroup viewGroup(&setGroup, QStringLiteral("View %1 Config").arg(i));
auto specifier = setGroup.readEntry(QStringLiteral("View %1").arg(i), QString());
if (viewGroup.exists() || specifier.isEmpty()) {
continue;
}
if (oldViewConfigs.empty()) { // cache all view configs from the old area config
int oldViewCount = areaGroup.readEntry("View Count", 0);
for (int j = 0; j < oldViewCount; ++j) {
auto oldSpecifier = areaGroup.readEntry(QStringLiteral("View %1").arg(j), QString());
if (!oldSpecifier.isEmpty()) {
oldViewConfigs.insert(oldSpecifier, KConfigGroup(&areaGroup, QStringLiteral("View %1 Config").arg(j)));
}
}
}
auto it = oldViewConfigs.find(specifier);
if (it != oldViewConfigs.end()) {
viewGroup.copyTo(&(*it));
oldViewConfigs.erase(it);
}
if (oldViewConfigs.empty()) {
break;
}
}
setConfig.deleteGroup(areaGroup.name());
}
loadToAreaPrivate(area, area->rootIndex(), setGroup, recycle);
// Delete views which were not recycled
qCDebug(WORKINGSET) << "deleting" << recycle.size() << "old views";
qDeleteAll(recycle);
if (area->views().isEmpty()) {
return;
}
if (!area->activeView()) {
area->setActiveView(area->views().at(0));
}
const auto windows = Core::self()->uiControllerInternal()->mainWindows();
for (Sublime::MainWindow* window : windows) {
if (window->area() == area) {
window->activateView(area->activeView());
}
}
}
void deleteGroupRecursive(KConfigGroup group) {
// qCDebug(WORKINGSET) << "deleting" << group.name();
const auto entryMap = group.entryMap();
for (auto it = entryMap.begin(), end = entryMap.end(); it != end; ++it) {
group.deleteEntry(it.key());
}
Q_ASSERT(group.entryMap().isEmpty());
const auto groupList = group.groupList();
for (const QString& subGroup : groupList) {
deleteGroupRecursive(group.group(subGroup));
group.deleteGroup(subGroup);
}
//Why doesn't this work?
// Q_ASSERT(group.groupList().isEmpty());
group.deleteGroup();
}
void WorkingSet::deleteSet(bool force, bool silent)
{
if(m_areas.isEmpty() || force) {
emit aboutToRemove(this);
KConfigGroup setConfig(Core::self()->activeSession()->config(), "Working File Sets");
KConfigGroup group = setConfig.group(m_id);
deleteGroupRecursive(group);
#ifdef SYNC_OFTEN
setConfig.sync();
#endif
if(!silent)
emit setChangedSignificantly();
}
}
void WorkingSet::saveFromArea(Sublime::Area* area)
{
qCDebug(WORKINGSET) << "saving" << m_id << "from area";
bool wasPersistent = isPersistent();
KConfigGroup setConfig(Core::self()->activeSession()->config(), "Working File Sets");
KConfigGroup setGroup = setConfig.group(m_id);
deleteGroupRecursive(setGroup);
saveFromAreaPrivate(area->rootIndex(), setGroup, area->activeView());
if (isEmpty()) {
deleteGroupRecursive(setGroup);
} else {
setPersistent(wasPersistent);
}
#ifdef SYNC_OFTEN
setConfig.sync();
#endif
emit setChangedSignificantly();
}
void WorkingSet::areaViewAdded(Sublime::AreaIndex*, Sublime::View*) {
auto* area = qobject_cast<Sublime::Area*>(sender());
Q_ASSERT(area);
Q_ASSERT(area->workingSet() == m_id);
qCDebug(WORKINGSET) << "added view in" << area << ", id" << m_id;
if (m_loading) {
qCDebug(WORKINGSET) << "doing nothing because loading";
return;
}
changed(area);
}
void WorkingSet::areaViewRemoved(Sublime::AreaIndex*, Sublime::View* view) {
auto* area = qobject_cast<Sublime::Area*>(sender());
Q_ASSERT(area);
Q_ASSERT(area->workingSet() == m_id);
qCDebug(WORKINGSET) << "removed view in" << area << ", id" << m_id;
if (m_loading) {
qCDebug(WORKINGSET) << "doing nothing because loading";
return;
}
const auto areasBefore = m_areas; // TODO: check if areas could be changed, otherwise use m_areas directly
for (Sublime::Area* otherArea : areasBefore) {
if(otherArea == area)
continue;
const auto otherAreaViews = otherArea->views();
bool hadDocument = std::any_of(otherAreaViews.begin(), otherAreaViews.end(), [&](Sublime::View* otherView) {
return (view->document() == otherView->document());
});
if(!hadDocument)
{
// We do this to prevent UI flicker. The view has already been removed from
// one of the connected areas, so the working-set has already recorded the change.
return;
}
}
changed(area);
}
void WorkingSet::setPersistent(bool persistent) {
KConfigGroup setConfig(Core::self()->activeSession()->config(), "Working File Sets");
KConfigGroup group = setConfig.group(m_id);
group.writeEntry("persistent", persistent);
#ifdef SYNC_OFTEN
group.sync();
#endif
qCDebug(WORKINGSET) << "setting" << m_id << "persistent:" << persistent;
}
bool WorkingSet::isPersistent() const {
KConfigGroup setConfig(Core::self()->activeSession()->config(), "Working File Sets");
KConfigGroup group = setConfig.group(m_id);
return group.readEntry("persistent", false);
}
QIcon WorkingSet::icon() const
{
return m_icon;
}
bool WorkingSet::isConnected( Sublime::Area* area )
{
return m_areas.contains( area );
}
QString WorkingSet::id() const
{
return m_id;
}
bool WorkingSet::hasConnectedAreas() const
{
return !m_areas.isEmpty();
}
bool WorkingSet::hasConnectedArea(Sublime::Area *area) const
{
return m_areas.contains(area);
}
void WorkingSet::connectArea( Sublime::Area* area )
{
if ( m_areas.contains( area ) ) {
qCDebug(WORKINGSET) << "tried to double-connect area";
return;
}
qCDebug(WORKINGSET) << "connecting" << m_id << "to area" << area;
// Q_ASSERT(area->workingSet() == m_id);
m_areas.push_back( area );
connect( area, &Sublime::Area::viewAdded, this, &WorkingSet::areaViewAdded );
connect( area, &Sublime::Area::viewRemoved, this, &WorkingSet::areaViewRemoved );
}
void WorkingSet::disconnectArea( Sublime::Area* area )
{
if ( !m_areas.contains( area ) ) {
qCDebug(WORKINGSET) << "tried to disconnect not connected area";
return;
}
qCDebug(WORKINGSET) << "disconnecting" << m_id << "from area" << area;
// Q_ASSERT(area->workingSet() == m_id);
disconnect( area, &Sublime::Area::viewAdded, this, &WorkingSet::areaViewAdded );
disconnect( area, &Sublime::Area::viewRemoved, this, &WorkingSet::areaViewRemoved );
m_areas.removeAll( area );
}
void WorkingSet::changed( Sublime::Area* area )
{
if ( m_loading ) {
return;
}
{
//Do not capture changes done while loading
PushValue<bool> enableLoading( m_loading, true );
qCDebug(WORKINGSET) << "recording change done to" << m_id;
saveFromArea(area);
}
emit setChangedSignificantly();
}
|