46
46
#include < QSaveFile>
47
47
#include < QStringList>
48
48
#include < QTextDocument>
49
+ #include < QTimer>
49
50
#include < QTranslator>
50
51
51
52
#include " core/georeferencing.h"
@@ -221,8 +222,12 @@ MapColorMap Map::MapColorSet::importSet(const Map::MapColorSet& other, std::vect
221
222
{
222
223
colors.reserve (colors.size () + import_count);
223
224
224
- MapColorSetMergeList merge_list;
225
- merge_list.resize (other.colors .size ());
225
+ // The conflict resolution algorithm below is simplified by setting
226
+ // iterator `selected_item` to a real list element which is not related
227
+ // to the actual color sets we are merging. This is the extra element
228
+ // identified as `end_of_merge_list`.
229
+ MapColorSetMergeList merge_list{other.colors .size () + 1 };
230
+ const auto end_of_merge_list = end (merge_list) - 1 ;
226
231
227
232
bool priorities_changed = false ;
228
233
@@ -249,15 +254,15 @@ MapColorMap Map::MapColorSet::importSet(const Map::MapColorSet& other, std::vect
249
254
}
250
255
++merge_list_item;
251
256
}
252
- Q_ASSERT (merge_list_item == merge_list. end () );
257
+ Q_ASSERT (merge_list_item == end_of_merge_list );
253
258
254
259
size_t iteration_number = 1 ;
255
260
while (true )
256
261
{
257
262
// Evaluate bounds and conflicting order of colors
258
263
int max_conflict_reduction = 0 ;
259
- auto selected_item = merge_list. end ();
260
- for (merge_list_item = merge_list. begin (); merge_list_item != merge_list. end () ; ++merge_list_item)
264
+ auto selected_item = end_of_merge_list; // Note: non-const copy of an iterator
265
+ for (merge_list_item = begin (merge_list ); merge_list_item != end_of_merge_list ; ++merge_list_item)
261
266
{
262
267
// Check all lower colors for a higher dest_index
263
268
std::size_t & lower_bound (merge_list_item->lower_bound );
@@ -281,7 +286,7 @@ MapColorMap Map::MapColorSet::importSet(const Map::MapColorSet& other, std::vect
281
286
// Check all higher colors for a lower dest_index
282
287
std::size_t & upper_bound (merge_list_item->upper_bound );
283
288
upper_bound = merge_list_item->dest_color ? merge_list_item->dest_index : colors.size ();
284
- for (++it; it != merge_list. end () ; ++it)
289
+ for (++it; it != end_of_merge_list ; ++it)
285
290
{
286
291
if (it->dest_color )
287
292
{
@@ -319,7 +324,7 @@ MapColorMap Map::MapColorSet::importSet(const Map::MapColorSet& other, std::vect
319
324
int conflict_reduction = merge_list_item->lower_errors ;
320
325
// Check new conflicts with insertion index: (selected_item->lower_bound+1)
321
326
it = merge_list_item;
322
- for (++it; it != merge_list. end () ; ++it)
327
+ for (++it; it != end_of_merge_list ; ++it)
323
328
{
324
329
if (it->dest_color && (selected_item->lower_bound +1 ) > it->dest_index )
325
330
--conflict_reduction;
@@ -337,8 +342,8 @@ MapColorMap Map::MapColorSet::importSet(const Map::MapColorSet& other, std::vect
337
342
// Abort if no conflicts or maximum iteration count reached.
338
343
// The latter condition is just to prevent endless loops in
339
344
// case of bugs and should not occur theoretically.
340
- if (selected_item == merge_list. end () ||
341
- iteration_number > merge_list.size ())
345
+ if (selected_item == end_of_merge_list
346
+ || iteration_number > merge_list.size ())
342
347
break ;
343
348
344
349
// Solve selected conflict item
@@ -365,6 +370,8 @@ MapColorMap Map::MapColorSet::importSet(const Map::MapColorSet& other, std::vect
365
370
++iteration_number;
366
371
}
367
372
373
+ merge_list.erase (end_of_merge_list); // no longer needed
374
+
368
375
// Some missing colors may be spot color compositions which can be
369
376
// resolved to new colors only after all colors have been created.
370
377
// That is why we create all missing colors first.
@@ -448,9 +455,6 @@ Map::Map()
448
455
georeferencing.reset (new Georeferencing ());
449
456
init ();
450
457
451
- connect (this , &Map::symbolAdded, this , &Map::updateSymbolIconZoom, Qt::QueuedConnection);
452
- connect (this , &Map::symbolChanged, this , &Map::updateSymbolIconZoom, Qt::QueuedConnection);
453
- connect (this , &Map::symbolDeleted, this , &Map::updateSymbolIconZoom, Qt::QueuedConnection);
454
458
connect (this , &Map::colorAdded, this , &Map::checkSpotColorPresence);
455
459
connect (this , &Map::colorChanged, this , &Map::checkSpotColorPresence);
456
460
connect (this , &Map::colorDeleted, this , &Map::checkSpotColorPresence);
@@ -1884,6 +1888,11 @@ int Map::findSymbolIndex(const Symbol* symbol) const
1884
1888
1885
1889
void Map::setSymbolsDirty ()
1886
1890
{
1891
+ if (symbol_icon_scale > 0 )
1892
+ {
1893
+ symbol_icon_scale = 0 ;
1894
+ QTimer::singleShot (0 , this , SLOT (updateSymbolIconZoom ()));
1895
+ }
1887
1896
symbols_dirty = true ;
1888
1897
setHasUnsavedChanges (true );
1889
1898
}
@@ -1980,6 +1989,8 @@ void Map::updateSymbolIconZoom()
1980
1989
values.reserve (symbols.size ());
1981
1990
for (const auto symbol : symbols)
1982
1991
{
1992
+ if (symbol->isHelperSymbol ())
1993
+ continue ;
1983
1994
auto size = symbol->dimensionForIcon ();
1984
1995
if (size > 0 )
1985
1996
values.push_back (size);
0 commit comments