// 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;
using System.Drawing;
using System.Windows.Forms;
using Ringtoets.Common.Forms.Properties;
namespace Ringtoets.Common.Forms.Controls
{
///
/// Base control to display an assembly result.
///
public abstract partial class AssemblyResultControl : UserControl
{
///
/// Creates a new instance of .
///
protected AssemblyResultControl()
{
InitializeComponent();
}
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
Dock = DockStyle.Left;
}
///
/// Sets the error message of the control.
///
/// The error message to set.
/// Thrown when
/// is null.
public void SetError(string errorMessage)
{
if (errorMessage == null)
{
throw new ArgumentNullException(nameof(errorMessage));
}
errorProvider.SetError(this, errorMessage);
}
///
/// Sets a manual assembly warning message on the control.
///
public void SetManualAssemblyWarning()
{
manualAssemblyWarningProvider.SetIconPadding(this, string.IsNullOrEmpty(errorProvider.GetError(this)) ? 4 : 24);
manualAssemblyWarningProvider.SetError(this, Resources.ManualAssemblyWarning_FailureMechanismAssemblyResult_is_based_on_manual_assemblies);
}
///
/// Clears the messages of the control.
///
public void ClearMessages()
{
errorProvider.SetError(this, string.Empty);
manualAssemblyWarningProvider.SetError(this, string.Empty);
}
///
/// Clears the assembly result of the control.
///
public virtual void ClearAssemblyResult()
{
GroupLabel.Text = string.Empty;
GroupLabel.BackColor = Color.White;
}
}
}