All: Reformat according to new standard

This commit is contained in:
pre-commit-ci[bot]
2025-11-11 13:49:01 +01:00
committed by Kacper Donat
parent eafd18dac0
commit 25c3ba7338
2390 changed files with 154630 additions and 115818 deletions

View File

@@ -83,8 +83,9 @@ void ToolHandler::deactivate()
unsigned long ToolHandler::getCrosshairColor()
{
unsigned long color = 0xFFFFFFFF; // white
ParameterGrp::handle hGrp =
App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/View");
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath(
"User parameter:BaseApp/Preferences/View"
);
color = hGrp->GetUnsigned("CursorCrosshairColor", color);
// from rgba to rgb
color = (color >> 8) & 0xFFFFFF;
@@ -109,10 +110,12 @@ void ToolHandler::setCrosshairCursor(const char* svgName)
setCrosshairCursor(cursorName);
}
void ToolHandler::setSvgCursor(const QString& cursorName,
int x,
int y,
const std::map<unsigned long, unsigned long>& colorMapping)
void ToolHandler::setSvgCursor(
const QString& cursorName,
int x,
int y,
const std::map<unsigned long, unsigned long>& colorMapping
)
{
// The TechDraw_Pointer_*.svg icons have a default size of 64x64. When directly creating
// them with a size of 32x32 they look very bad.
@@ -131,9 +134,11 @@ void ToolHandler::setSvgCursor(const QString& cursorName,
}
#endif
QPixmap pointer = Gui::BitmapFactory().pixmapFromSvg(cursorName.toStdString().c_str(),
QSizeF{cursorSize, cursorSize},
colorMapping);
QPixmap pointer = Gui::BitmapFactory().pixmapFromSvg(
cursorName.toStdString().c_str(),
QSizeF {cursorSize, cursorSize},
colorMapping
);
if (isRatioOne) {
pointer = pointer.scaled(32, 32);
}