MCPcopy Create free account
hub / github.com/KDAB/hotspot / BrushConfig

Class BrushConfig

src/flamegraph.cpp:387–402  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

385}
386
387struct BrushConfig
388{
389 bool isSystemPath(const QString& path) const
390 {
391 return isInPathList(systemPaths, path);
392 }
393
394 bool isUserPath(const QString& path) const
395 {
396 return isInPathList(userPaths, path);
397 }
398
399 Settings::ColorScheme scheme;
400 QStringList systemPaths;
401 QStringList userPaths;
402};
403
404// construct brush config in main thread and query settings that then can be used in the background
405// without introducing data races

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected