aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEventState.cs
blob: 188747646206099ccacf836c8625c61032bead55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
using Tango.PMR.Diagnostics;

namespace Tango.Emulations.Emulators
{
    public class MachineEventState : ExtendedObject
    {
        private EventType _eventType;

        public EventType EventType
        {
            get { return _eventType; }
            set { _eventType = value; RaisePropertyChangedAuto(); }
        }

        public String Description
        {
            get { return _eventType.ToDescription(); }
        }

        private bool _isActive;

        public bool IsActive
        {
            get { return _isActive; }
            set { _isActive = value; RaisePropertyChangedAuto(); }
        }

        public static List<MachineEventState> GetAllEventsStates()
        {
            List<MachineEventState> states = new List<MachineEventState>();

            foreach (var value in Enum.GetValues(typeof(EventType)).OfType<EventType>())
            {
                states.Add(new MachineEventState() { EventType = value });
            }

            return states;
        }
    }
}