aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/EntityViewModel.cs
blob: 946a73088441f609af3f0606e38f6cfae71ad52d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.Commands;
using Tango.SharedUI;

namespace Tango.MachineStudio.DB.ViewModels
{
    public class EntityViewModel<T> : ViewModel
    {
        private T _entity;

        public T Entity
        {
            get { return _entity; }
            set { _entity = value; RaisePropertyChanged(nameof(Entity)); }
        }

        public EntityViewModel() : base()
        {

        }

        public EntityViewModel(T entity) : this()
        {
            Entity = entity;
        }
    }
}
#003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
using Tango.Core.Commands;

namespace Tango.MachineStudio.MachineDesigner.Models
{
    /// <summary>
    /// The HardwareParameter class.
    /// Contains default/editable/actual value and data type of each hardware parameter reflected in .
    /// </summary>
    public class HardwareParameter : ExtendedObject, IHasDifference
    {
        #region Properties

        public HardwareComponent Component { get; set; }

        public String PropertyName { get; set; }


        private Object _defaultValue;
        /// <summary>
        /// The default value contains data from database
        /// </summary>
        public Object DefaultValue
        {
            get { return _defaultValue; }
            set
            {
                _defaultValue = value;
            }
        }

        /// <summary>
        /// The type of hardware parameter is used for display correct ui element.
        /// Can be boolean, int32, or Double
        /// </summary>
        public Type Type
        {
            get { return DefaultValue.GetType(); }
        }

        
        private Object _actualValue = null;
        /// <summary>
        /// The value contains modified data, saved in database or immediately after editing in this session.
        /// </summary>
        public Object ActualValue
        {
            get { return _actualValue; }
            set
            {
                _actualValue = value;
                RaisePropertyChangedAuto();
                RaisePropertyChanged(nameof(HasDifferences));
                RaisePropertyChanged(nameof(IsValuesMatched));
            }
        }

        
        private Object _editableValue = null;
        /// <summary>
        /// The editable value contains value displayed in edit box in UI.
        /// Initialization the value occurs by clicking in UI and the value will be equal actual value if it exists or default value. 
        /// </summary>
        public Object EditableValue
        {
            get { return _editableValue; }
            set
            {
                _editableValue = value;
                RaisePropertyChangedAuto();
            }
        }

        private bool _isSelected;
        public bool IsSelected
        {
            get { return _isSelected; }
            set
            {
                _isSelected = value;

                OnIsSelectedChanged();

                RaisePropertyChangedAuto();
                if (_isSelected)
                {
                    Selected?.Invoke(this, new EventArgs());
                }
            }
        }

        /// <summary>
        /// Used in UI to display modified value 
        /// </summary>
        public bool HasDifferences
        {
            get
            {
                return (ActualValue != null);
            }
        }

        /// <summary>
        /// Used to display warning explanation icon in case actual value equals default value
       /// </summary>
        public bool IsValuesMatched
        {
            get
            {
                return ActualValue != null && ActualValue.ToString() == DefaultValue.ToString();
            }
        }

        #endregion

        #region events        

        /// <summary>
        /// Occurs when start select mode.
        /// Used to set in all others Parameter IsSelected to false except this.
        /// </summary>
        public event EventHandler Selected;

        private void OnIsSelectedChanged()
        {
            if (IsSelected)
            {
                EditableValue = ActualValue != null ? ActualValue : DefaultValue;
            }
            else
            {
                if (EditableValue != null)
                {
                    ActualValue = EditableValue;
                }
            }
        }

        #endregion

        #region Constructors

        public HardwareParameter()
        {
            DeleteCommand = new RelayCommand(DeleteValue);
        }

        #endregion

        #region Commands

        public RelayCommand DeleteCommand { get; set; }

        public void DeleteValue()
        {
            ActualValue = null;
            EditableValue = null;
        }

        #endregion
    }
}