1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

Coding - Apply .clang-format formatting #286

Update empty method guards to new style with regex (see PR).
Used clang-format 18.1.8.
New actions to validate code formatting is added.
Update .clang-format with disabling of include sorting.
  It is temporary changes, then include will be sorted.
Apply formatting for /src and /tools folder.
The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
This commit is contained in:
dpasukhi
2025-01-25 20:15:22 +00:00
parent dbba6f1289
commit a5a7b3185b
14005 changed files with 1273539 additions and 1195567 deletions

View File

@@ -11,7 +11,7 @@
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
// commercial license or contractual agreement.
#include <inspector/ShapeView_ItemShape.hxx>
@@ -36,7 +36,7 @@
// function : Shape
// purpose :
// =======================================================================
TopoDS_Shape ShapeView_ItemShape::Shape (const int theRowId) const
TopoDS_Shape ShapeView_ItemShape::Shape(const int theRowId) const
{
if (myChildShapes.IsEmpty())
{
@@ -48,10 +48,10 @@ TopoDS_Shape ShapeView_ItemShape::Shape (const int theRowId) const
}
else
{
TopoDS_Iterator aSubShapeIt (myShape);
TopoDS_Iterator aSubShapeIt(myShape);
for (int aCurrentIndex = 0; aSubShapeIt.More(); aSubShapeIt.Next(), aCurrentIndex++)
{
aThis->myChildShapes.Add (aSubShapeIt.Value());
aThis->myChildShapes.Add(aSubShapeIt.Value());
}
}
}
@@ -67,7 +67,7 @@ TopoDS_Shape ShapeView_ItemShape::Shape (const int theRowId) const
// =======================================================================
QVariant ShapeView_ItemShape::initValue(const int theRole) const
{
QVariant aParentValue = TreeModel_ItemBase::initValue (theRole);
QVariant aParentValue = TreeModel_ItemBase::initValue(theRole);
if (aParentValue.isValid())
return aParentValue;
@@ -80,8 +80,10 @@ QVariant ShapeView_ItemShape::initValue(const int theRole) const
switch (Column())
{
case 0: return TopAbs::ShapeTypeToString (aShape.ShapeType());
default: break;
case 0:
return TopAbs::ShapeTypeToString(aShape.ShapeType());
default:
break;
}
return QVariant();
}
@@ -115,22 +117,22 @@ int ShapeView_ItemShape::initRowCount() const
// function : initStream
// purpose :
// =======================================================================
void ShapeView_ItemShape::initStream (Standard_OStream& theOStream) const
void ShapeView_ItemShape::initStream(Standard_OStream& theOStream) const
{
TopoDS_Shape aShape = getShape();
if (aShape.IsNull())
return;
aShape.DumpJson (theOStream);
aShape.DumpJson(theOStream);
}
// =======================================================================
// function : createChild
// purpose :
// =======================================================================
TreeModel_ItemBasePtr ShapeView_ItemShape::createChild (int theRow, int theColumn)
TreeModel_ItemBasePtr ShapeView_ItemShape::createChild(int theRow, int theColumn)
{
return ShapeView_ItemShape::CreateItem (currentItem(), theRow, theColumn);
return ShapeView_ItemShape::CreateItem(currentItem(), theRow, theColumn);
}
// =======================================================================
@@ -139,9 +141,9 @@ TreeModel_ItemBasePtr ShapeView_ItemShape::createChild (int theRow, int theColum
// =======================================================================
void ShapeView_ItemShape::Init()
{
ShapeView_ItemRootPtr aRootItem = itemDynamicCast<ShapeView_ItemRoot> (Parent());
ShapeView_ItemShapePtr aShapeItem = itemDynamicCast<ShapeView_ItemShape> (Parent());
myShape = aRootItem ? aRootItem->Shape (Row()) : aShapeItem->Shape (Row());
ShapeView_ItemRootPtr aRootItem = itemDynamicCast<ShapeView_ItemRoot>(Parent());
ShapeView_ItemShapePtr aShapeItem = itemDynamicCast<ShapeView_ItemShape>(Parent());
myShape = aRootItem ? aRootItem->Shape(Row()) : aShapeItem->Shape(Row());
TreeModel_ItemBase::Init();
}