// Copyright (C) Stichting Deltares 2017. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System.Collections.Generic; using System.Linq; using Core.Common.Controls.DataGrid; using Ringtoets.MacroStabilityInwards.Data; using Ringtoets.MacroStabilityInwards.Forms.Properties; namespace Ringtoets.MacroStabilityInwards.Forms.Views { /// /// This class defines a table in which properties of instances /// are shown as rows. /// public class MacroStabilityInwardsSlicesTable : DataGridViewControl { /// /// Creates a new instance of . /// public MacroStabilityInwardsSlicesTable() { AddColumns(); } /// /// Sets the given for which the properties /// are shown in the table. /// /// The collection of slices to show. public void SetData(IEnumerable slices) { SetDataSource(slices?.Select((slice, index) => new MacroStabilityInwardsSliceRow(slice, index + 1)).ToArray()); } private void AddColumns() { AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.Name), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_Name, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.XCenter), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_XCenter, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.ZCenterBottom), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_ZCenterBottom, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.Width), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_Width, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.ArcLength), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_ArcLength, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.TopAngle), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_TopAngle, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.BottomAngle), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_BottomAngle, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.FrictionAngle), Resources.MacroStabilityInwardsTable_ColumnHeader_FrictionAngle, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.Cohesion), Resources.MacroStabilityInwardsTable_ColumnHeader_Cohesion, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.EffectiveStress), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_EffectiveStress, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.EffectiveStressDaily), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_EffectiveStressDaily, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.TotalPorePressure), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_TotalPorePressure, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.Weight), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_Weight, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.PiezometricPorePressure), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_PiezometricPorePressure, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.DegreeOfConsolidationPorePressureSoil), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_DegreeOfConsolidationPorePressureSoil, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.DegreeOfConsolidationPorePressureLoad), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_DegreeOfConsolidationPorePressureLoad, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.PorePressure), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_PorePressure, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.VerticalPorePressure), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_VerticalPorePressure, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.HorizontalPorePressure), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_HorizontalPorePressure, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.ExternalLoad), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_ExternalLoad, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.OverConsolidationRatio), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_OverConsolidationRatio, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.Pop), Resources.MacroStabilityInwardsTable_ColumnHeader_Pop, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.NormalStress), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_NormalStress, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.ShearStress), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_ShearStress, true); AddTextBoxColumn(nameof(MacroStabilityInwardsSliceRow.LoadStress), Resources.MacroStabilityInwardsSlicesTable_ColumnHeader_LoadStress, true); } } }