Represents the various options that are settable.
예제 #1
0
 /// <summary>
 /// Constructs a new instance.
 /// </summary>
 public Plugin()
     : base("MIDIMapperX", new VstProductInfo("MIDIMapperX", "Leif Bloomquist (2014)   Jacobi Software (2012)", Constants.VERSION),
         VstPluginCategory.Generator, VstPluginCapabilities.NoSoundInStop, 0, 0x323)
 {
     ResetMaps();
     Options = new OptionSet();   
 }
예제 #2
0
        /// <summary>
        /// Constructs a new instance.
        /// </summary>
        public OptionsUI(OptionSet opt)
        {
            InitializeComponent();

            ThruCheckbox.Checked = opt.MidiThru;
            AllThruCheckbox.Checked = opt.MidiThruAll;
            SysExCheckbox.Checked = opt.AlwaysSysEx;

            TempOptionSet = new OptionSet();
        }