[App] sort properties

- to quickly get an overview
This commit is contained in:
Uwe
2022-07-30 17:34:36 +02:00
parent 8abd40a788
commit 35e50597f4
3 changed files with 291 additions and 277 deletions

View File

@@ -203,42 +203,6 @@ void PropertyQuantityConstraint::setPyObject(PyObject *value)
PropertyFloat::setValue(quant.getValue()); // clazy:exclude=skipped-base-method
}
//**************************************************************************
//**************************************************************************
// PropertyDistance
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyDistance, App::PropertyQuantity)
PropertyDistance::PropertyDistance()
{
setUnit(Base::Unit::Length);
}
//**************************************************************************
//**************************************************************************
// PropertyFrequency
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyFrequency, App::PropertyQuantity)
PropertyFrequency::PropertyFrequency()
{
setUnit(Base::Unit::Frequency);
}
//**************************************************************************
//**************************************************************************
// PropertySpeed
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertySpeed, App::PropertyQuantity)
PropertySpeed::PropertySpeed()
{
setUnit(Base::Unit::Velocity);
}
//**************************************************************************
//**************************************************************************
// PropertyAcceleration
@@ -251,45 +215,6 @@ PropertyAcceleration::PropertyAcceleration()
setUnit(Base::Unit::Acceleration);
}
//**************************************************************************
//**************************************************************************
// PropertyLength
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyLength, App::PropertyQuantityConstraint)
PropertyLength::PropertyLength()
{
setUnit(Base::Unit::Length);
setConstraints(&LengthStandard);
}
//**************************************************************************
//**************************************************************************
// PropertyArea
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyArea, App::PropertyQuantityConstraint)
PropertyArea::PropertyArea()
{
setUnit(Base::Unit::Area);
setConstraints(&LengthStandard);
}
//**************************************************************************
//**************************************************************************
// PropertyVolume
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyVolume, App::PropertyQuantityConstraint)
PropertyVolume::PropertyVolume()
{
setUnit(Base::Unit::Volume);
setConstraints(&LengthStandard);
}
//**************************************************************************
//**************************************************************************
// PropertyAngle
@@ -305,38 +230,27 @@ PropertyAngle::PropertyAngle()
//**************************************************************************
//**************************************************************************
// PropertyPressure
// PropertyArea
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyPressure, App::PropertyQuantity)
TYPESYSTEM_SOURCE(App::PropertyArea, App::PropertyQuantityConstraint)
PropertyPressure::PropertyPressure()
PropertyArea::PropertyArea()
{
setUnit(Base::Unit::Pressure);
setUnit(Base::Unit::Area);
setConstraints(&LengthStandard);
}
//**************************************************************************
//**************************************************************************
// PropertyStiffness
// PropertyDistance
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyStiffness, App::PropertyQuantity)
TYPESYSTEM_SOURCE(App::PropertyDistance, App::PropertyQuantity)
PropertyStiffness::PropertyStiffness()
PropertyDistance::PropertyDistance()
{
setUnit(Base::Unit::Stiffness);
}
//**************************************************************************
//**************************************************************************
// PropertyForce
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyForce, App::PropertyQuantity)
PropertyForce::PropertyForce()
{
setUnit(Base::Unit::Force);
setUnit(Base::Unit::Length);
}
//**************************************************************************
@@ -351,6 +265,80 @@ PropertyElectricPotential::PropertyElectricPotential()
setUnit(Base::Unit::ElectricPotential);
}
//**************************************************************************
//**************************************************************************
// PropertyFrequency
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyFrequency, App::PropertyQuantity)
PropertyFrequency::PropertyFrequency()
{
setUnit(Base::Unit::Frequency);
}
//**************************************************************************
//**************************************************************************
// PropertyForce
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyForce, App::PropertyQuantity)
PropertyForce::PropertyForce()
{
setUnit(Base::Unit::Force);
}
//**************************************************************************
//**************************************************************************
// PropertyLength
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyLength, App::PropertyQuantityConstraint)
PropertyLength::PropertyLength()
{
setUnit(Base::Unit::Length);
setConstraints(&LengthStandard);
}
//**************************************************************************
//**************************************************************************
// PropertyPressure
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyPressure, App::PropertyQuantity)
PropertyPressure::PropertyPressure()
{
setUnit(Base::Unit::Pressure);
}
//**************************************************************************
//**************************************************************************
// PropertySpeed
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertySpeed, App::PropertyQuantity)
PropertySpeed::PropertySpeed()
{
setUnit(Base::Unit::Velocity);
}
//**************************************************************************
//**************************************************************************
// PropertyStiffness
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyStiffness, App::PropertyQuantity)
PropertyStiffness::PropertyStiffness()
{
setUnit(Base::Unit::Stiffness);
}
//**************************************************************************
//**************************************************************************
// PropertyVacuumPermittivity
@@ -362,3 +350,16 @@ PropertyVacuumPermittivity::PropertyVacuumPermittivity()
{
setUnit(Base::Unit::VacuumPermittivity);
}
//**************************************************************************
//**************************************************************************
// PropertyVolume
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyVolume, App::PropertyQuantityConstraint)
PropertyVolume::PropertyVolume()
{
setUnit(Base::Unit::Volume);
setConstraints(&LengthStandard);
}