60 lines
2.1 KiB
C#
60 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel;
|
|
using CaeGlobals;
|
|
using DynamicTypeDescriptor;
|
|
using System.Drawing.Design;
|
|
|
|
namespace CPSO.Settings
|
|
{
|
|
[Serializable]
|
|
public class ViewUnitSystemlSettings : IViewSettings, IReset
|
|
{
|
|
// Variables
|
|
private UnitSystemSettings _unitSystemSettings;
|
|
private DynamicCustomTypeDescriptor _dctd = null;
|
|
|
|
|
|
// Properties
|
|
[Category("Unit system")]
|
|
[OrderedDisplayName(0, 10, "Model unit system type")]
|
|
[Description("Select the unit system type for the geometry and FE model.")]
|
|
public UnitSystemType ModelUnitSystemType
|
|
{
|
|
get { return _unitSystemSettings.ModelUnitSystemType; }
|
|
set { _unitSystemSettings.ModelUnitSystemType = value; }
|
|
}
|
|
//
|
|
[Category("Unit system")]
|
|
[OrderedDisplayName(1, 10, "Results unit system type")]
|
|
[Description("Select the unit system type for the results")]
|
|
public UnitSystemType ResultsUnitSystemType
|
|
{
|
|
get { return _unitSystemSettings.ModelUnitSystemType; }
|
|
set { _unitSystemSettings.ModelUnitSystemType = value; }
|
|
}
|
|
|
|
|
|
// Constructors
|
|
public ViewUnitSystemlSettings(UnitSystemSettings unitSystemSettings)
|
|
{
|
|
_unitSystemSettings = unitSystemSettings;
|
|
_dctd = ProviderInstaller.Install(this);
|
|
}
|
|
|
|
// Methods
|
|
public ISettings GetBase()
|
|
{
|
|
return _unitSystemSettings;
|
|
}
|
|
public void Reset()
|
|
{
|
|
_unitSystemSettings.Reset();
|
|
}
|
|
}
|
|
|
|
}
|