Example #1
0
 /// <summary>
 /// Check Combobox count
 /// </summary>
 public override void CheckBoxValid(MPComboBox ComboBox)
 {
     if (ComboBox.Items.Count == 1)
     {
         ComboBox.Enabled = false;
     }
 }
Example #2
0
        /// <summary>
        /// CTOR
        /// </summary>
        /// <param name="TuningType">Tuning type (subfolder name)</param>
        /// <param name="cbxCountries">reference to country cbx</param>
        /// <param name="cbxRegions">reference to region cbx</param>
        public FileFilters(String TuningType, ref MPComboBox cbxCountries, ref MPComboBox cbxRegions)
        {
            m_cbxCountries = cbxCountries;
            m_cbxRegions   = cbxRegions;

            files = System.IO.Directory.GetFiles(String.Format(@"{0}\TuningParameters\{1}", PathManager.GetDataPath, TuningType),
                                                 "*.xml");
            List <String> countries = CountryList(files);

            for (int i = 0; i < countries.Count; ++i)
            {
                cbxCountries.Items.Add(countries[i]);
            }
            cbxCountries.SelectedIndexChanged += new System.EventHandler(this.SelectedIndexChanged);
            cbxCountries.SelectedIndex         = 0;
            cbxRegions.DisplayMember           = "DisplayName";
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.radioButton1           = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.mpGroupBox2            = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.mpTextBoxHostname      = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.mpButtonTestConnection = new MediaPortal.UserInterface.Controls.MPButton();
     this.mpLabel3                          = new MediaPortal.UserInterface.Controls.MPLabel();
     this.mpComboBoxHostname                = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpGroupBox900                     = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.mpNumericTextBoxWOLTimeOut        = new MediaPortal.UserInterface.Controls.MPNumericTextBox();
     this.mpLabelWOLTimeOut                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.mpTextBoxMacAddress               = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.mpLabel400                        = new MediaPortal.UserInterface.Controls.MPLabel();
     this.mpCheckBoxIsAutoMacAddressEnabled = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.mpCheckBoxIsWakeOnLanEnabled      = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.mpGroupBox2.SuspendLayout();
     this.mpGroupBox900.SuspendLayout();
     this.SuspendLayout();
     //
     // radioButton1
     //
     this.radioButton1.AutoSize  = true;
     this.radioButton1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButton1.Location  = new System.Drawing.Point(0, 0);
     this.radioButton1.Name      = "radioButton1";
     this.radioButton1.Size      = new System.Drawing.Size(104, 24);
     this.radioButton1.TabIndex  = 0;
     this.radioButton1.UseVisualStyleBackColor = true;
     //
     // mpGroupBox2
     //
     this.mpGroupBox2.Controls.Add(this.mpTextBoxHostname);
     this.mpGroupBox2.Controls.Add(this.mpButtonTestConnection);
     this.mpGroupBox2.Controls.Add(this.mpLabel3);
     this.mpGroupBox2.Controls.Add(this.mpComboBoxHostname);
     this.mpGroupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox2.Location  = new System.Drawing.Point(6, 0);
     this.mpGroupBox2.Name      = "mpGroupBox2";
     this.mpGroupBox2.Size      = new System.Drawing.Size(462, 53);
     this.mpGroupBox2.TabIndex  = 17;
     this.mpGroupBox2.TabStop   = false;
     this.mpGroupBox2.Text      = "TV-Server";
     //
     // mpTextBoxHostname
     //
     this.mpTextBoxHostname.BorderColor  = System.Drawing.Color.Empty;
     this.mpTextBoxHostname.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this.mpTextBoxHostname.Location     = new System.Drawing.Point(129, 25);
     this.mpTextBoxHostname.Multiline    = true;
     this.mpTextBoxHostname.Name         = "mpTextBoxHostname";
     this.mpTextBoxHostname.Size         = new System.Drawing.Size(141, 15);
     this.mpTextBoxHostname.TabIndex     = 1;
     this.mpTextBoxHostname.TextChanged += new System.EventHandler(this.mpTextBoxHostname_TextChanged);
     //
     // mpButtonTestConnection
     //
     this.mpButtonTestConnection.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.mpButtonTestConnection.Location = new System.Drawing.Point(325, 21);
     this.mpButtonTestConnection.Name     = "mpButtonTestConnection";
     this.mpButtonTestConnection.Size     = new System.Drawing.Size(131, 23);
     this.mpButtonTestConnection.TabIndex = 3;
     this.mpButtonTestConnection.Text     = "Test connection";
     this.mpButtonTestConnection.UseVisualStyleBackColor = true;
     this.mpButtonTestConnection.Click += new System.EventHandler(this.mpButtonTestConnection_Click);
     //
     // mpLabel3
     //
     this.mpLabel3.AutoSize = true;
     this.mpLabel3.Location = new System.Drawing.Point(19, 25);
     this.mpLabel3.Name     = "mpLabel3";
     this.mpLabel3.Size     = new System.Drawing.Size(58, 13);
     this.mpLabel3.TabIndex = 5;
     this.mpLabel3.Text     = "Hostname:";
     //
     // mpComboBoxHostname
     //
     this.mpComboBoxHostname.BorderColor       = System.Drawing.Color.Empty;
     this.mpComboBoxHostname.FormattingEnabled = true;
     this.mpComboBoxHostname.Location          = new System.Drawing.Point(126, 22);
     this.mpComboBoxHostname.Name      = "mpComboBoxHostname";
     this.mpComboBoxHostname.Size      = new System.Drawing.Size(164, 21);
     this.mpComboBoxHostname.TabIndex  = 2;
     this.mpComboBoxHostname.DropDown += new System.EventHandler(this.mpComboBoxHostname_DropDown);
     this.mpComboBoxHostname.SelectionChangeCommitted += new System.EventHandler(this.mpComboBoxHostname_SelectionChangeCommitted);
     //
     // mpGroupBox900
     //
     this.mpGroupBox900.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.mpGroupBox900.Controls.Add(this.mpNumericTextBoxWOLTimeOut);
     this.mpGroupBox900.Controls.Add(this.mpLabelWOLTimeOut);
     this.mpGroupBox900.Controls.Add(this.mpTextBoxMacAddress);
     this.mpGroupBox900.Controls.Add(this.mpLabel400);
     this.mpGroupBox900.Controls.Add(this.mpCheckBoxIsAutoMacAddressEnabled);
     this.mpGroupBox900.Controls.Add(this.mpCheckBoxIsWakeOnLanEnabled);
     this.mpGroupBox900.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox900.Location  = new System.Drawing.Point(6, 59);
     this.mpGroupBox900.Name      = "mpGroupBox900";
     this.mpGroupBox900.Size      = new System.Drawing.Size(462, 126);
     this.mpGroupBox900.TabIndex  = 18;
     this.mpGroupBox900.TabStop   = false;
     this.mpGroupBox900.Text      = "Wake-On-Lan";
     //
     // mpNumericTextBoxWOLTimeOut
     //
     this.mpNumericTextBoxWOLTimeOut.AutoCompleteCustomSource.AddRange(new string[] {
         "10",
         "20",
         "30",
         "40",
         "50",
         "60",
         "70",
         "80",
         "90"
     });
     this.mpNumericTextBoxWOLTimeOut.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.mpNumericTextBoxWOLTimeOut.Enabled          = false;
     this.mpNumericTextBoxWOLTimeOut.Location         = new System.Drawing.Point(126, 42);
     this.mpNumericTextBoxWOLTimeOut.MaxLength        = 4;
     this.mpNumericTextBoxWOLTimeOut.Name             = "mpNumericTextBoxWOLTimeOut";
     this.mpNumericTextBoxWOLTimeOut.Size             = new System.Drawing.Size(45, 20);
     this.mpNumericTextBoxWOLTimeOut.TabIndex         = 1;
     this.mpNumericTextBoxWOLTimeOut.Tag      = "Default timeout is 10 seconds";
     this.mpNumericTextBoxWOLTimeOut.Text     = "10";
     this.mpNumericTextBoxWOLTimeOut.Value    = 10;
     this.mpNumericTextBoxWOLTimeOut.WordWrap = false;
     //
     // mpLabelWOLTimeOut
     //
     this.mpLabelWOLTimeOut.AutoSize = true;
     this.mpLabelWOLTimeOut.Location = new System.Drawing.Point(41, 45);
     this.mpLabelWOLTimeOut.Name     = "mpLabelWOLTimeOut";
     this.mpLabelWOLTimeOut.Size     = new System.Drawing.Size(72, 13);
     this.mpLabelWOLTimeOut.TabIndex = 8;
     this.mpLabelWOLTimeOut.Text     = "WOL timeout:";
     //
     // mpTextBoxMacAddress
     //
     this.mpTextBoxMacAddress.BorderColor = System.Drawing.Color.Empty;
     this.mpTextBoxMacAddress.Location    = new System.Drawing.Point(126, 91);
     this.mpTextBoxMacAddress.MaxLength   = 17;
     this.mpTextBoxMacAddress.Name        = "mpTextBoxMacAddress";
     this.mpTextBoxMacAddress.Size        = new System.Drawing.Size(97, 20);
     this.mpTextBoxMacAddress.TabIndex    = 3;
     this.mpTextBoxMacAddress.Text        = "00:00:00:00:00:00";
     //
     // mpLabel400
     //
     this.mpLabel400.AutoSize = true;
     this.mpLabel400.Location = new System.Drawing.Point(41, 94);
     this.mpLabel400.Name     = "mpLabel400";
     this.mpLabel400.Size     = new System.Drawing.Size(74, 13);
     this.mpLabel400.TabIndex = 6;
     this.mpLabel400.Text     = "MAC Address:";
     //
     // mpCheckBoxIsAutoMacAddressEnabled
     //
     this.mpCheckBoxIsAutoMacAddressEnabled.AutoSize  = true;
     this.mpCheckBoxIsAutoMacAddressEnabled.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpCheckBoxIsAutoMacAddressEnabled.Location  = new System.Drawing.Point(44, 68);
     this.mpCheckBoxIsAutoMacAddressEnabled.Name      = "mpCheckBoxIsAutoMacAddressEnabled";
     this.mpCheckBoxIsAutoMacAddressEnabled.Size      = new System.Drawing.Size(192, 17);
     this.mpCheckBoxIsAutoMacAddressEnabled.TabIndex  = 2;
     this.mpCheckBoxIsAutoMacAddressEnabled.Text      = "Auto-configure server MAC Address";
     this.mpCheckBoxIsAutoMacAddressEnabled.UseVisualStyleBackColor = true;
     this.mpCheckBoxIsAutoMacAddressEnabled.CheckedChanged         += new System.EventHandler(this.mpCheckBoxIsAutoMacAddressEnabled_CheckedChanged);
     //
     // mpCheckBoxIsWakeOnLanEnabled
     //
     this.mpCheckBoxIsWakeOnLanEnabled.AutoSize  = true;
     this.mpCheckBoxIsWakeOnLanEnabled.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpCheckBoxIsWakeOnLanEnabled.Location  = new System.Drawing.Point(22, 19);
     this.mpCheckBoxIsWakeOnLanEnabled.Name      = "mpCheckBoxIsWakeOnLanEnabled";
     this.mpCheckBoxIsWakeOnLanEnabled.Size      = new System.Drawing.Size(172, 17);
     this.mpCheckBoxIsWakeOnLanEnabled.TabIndex  = 0;
     this.mpCheckBoxIsWakeOnLanEnabled.Text      = "Wake up TV Server as needed";
     this.mpCheckBoxIsWakeOnLanEnabled.UseVisualStyleBackColor = true;
     this.mpCheckBoxIsWakeOnLanEnabled.CheckedChanged         += new System.EventHandler(this.mpCheckBoxIsWakeOnLanEnabled_CheckedChanged);
     //
     // TVRadio
     //
     this.Controls.Add(this.mpGroupBox900);
     this.Controls.Add(this.mpGroupBox2);
     this.Name = "TVRadio";
     this.Size = new System.Drawing.Size(472, 427);
     this.mpGroupBox2.ResumeLayout(false);
     this.mpGroupBox2.PerformLayout();
     this.mpGroupBox900.ResumeLayout(false);
     this.mpGroupBox900.PerformLayout();
     this.ResumeLayout(false);
 }
Example #4
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1                 = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.showClosedCaptions        = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.defaultAudioLanguagelabel = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label1 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.defaultAudioLanguageComboBox    = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.defaultSubtitleLanguageComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.showSubtitlesCheckBox           = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.showClosedCaptions);
     this.groupBox1.Controls.Add(this.defaultAudioLanguagelabel);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.defaultAudioLanguageComboBox);
     this.groupBox1.Controls.Add(this.defaultSubtitleLanguageComboBox);
     this.groupBox1.Controls.Add(this.showSubtitlesCheckBox);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(6, 0);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(462, 104);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Language Settings";
     //
     // showClosedCaptions
     //
     this.showClosedCaptions.AutoSize  = true;
     this.showClosedCaptions.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.showClosedCaptions.Location  = new System.Drawing.Point(242, 19);
     this.showClosedCaptions.Name      = "showClosedCaptions";
     this.showClosedCaptions.Size      = new System.Drawing.Size(153, 17);
     this.showClosedCaptions.TabIndex  = 5;
     this.showClosedCaptions.Text      = "Show Closed Captions (CC)";
     this.showClosedCaptions.UseVisualStyleBackColor = true;
     //
     // defaultAudioLanguagelabel
     //
     this.defaultAudioLanguagelabel.AutoSize = true;
     this.defaultAudioLanguagelabel.Location = new System.Drawing.Point(16, 72);
     this.defaultAudioLanguagelabel.Name     = "defaultAudioLanguagelabel";
     this.defaultAudioLanguagelabel.Size     = new System.Drawing.Size(129, 13);
     this.defaultAudioLanguagelabel.TabIndex = 3;
     this.defaultAudioLanguagelabel.Text     = "Preferred audio language:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 48);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(136, 13);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Preferred subtitle language:";
     //
     // defaultAudioLanguageComboBox
     //
     this.defaultAudioLanguageComboBox.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.defaultAudioLanguageComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.defaultAudioLanguageComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.defaultAudioLanguageComboBox.Location      = new System.Drawing.Point(168, 68);
     this.defaultAudioLanguageComboBox.Name          = "defaultAudioLanguageComboBox";
     this.defaultAudioLanguageComboBox.Size          = new System.Drawing.Size(278, 21);
     this.defaultAudioLanguageComboBox.Sorted        = true;
     this.defaultAudioLanguageComboBox.TabIndex      = 4;
     //
     // defaultSubtitleLanguageComboBox
     //
     this.defaultSubtitleLanguageComboBox.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.defaultSubtitleLanguageComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.defaultSubtitleLanguageComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.defaultSubtitleLanguageComboBox.Location      = new System.Drawing.Point(168, 44);
     this.defaultSubtitleLanguageComboBox.Name          = "defaultSubtitleLanguageComboBox";
     this.defaultSubtitleLanguageComboBox.Size          = new System.Drawing.Size(278, 21);
     this.defaultSubtitleLanguageComboBox.Sorted        = true;
     this.defaultSubtitleLanguageComboBox.TabIndex      = 2;
     //
     // showSubtitlesCheckBox
     //
     this.showSubtitlesCheckBox.AutoSize  = true;
     this.showSubtitlesCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.showSubtitlesCheckBox.Location  = new System.Drawing.Point(19, 19);
     this.showSubtitlesCheckBox.Name      = "showSubtitlesCheckBox";
     this.showSubtitlesCheckBox.Size      = new System.Drawing.Size(206, 17);
     this.showSubtitlesCheckBox.TabIndex  = 0;
     this.showSubtitlesCheckBox.Text      = "Show subtitles (overrides disc defaults)";
     this.showSubtitlesCheckBox.UseVisualStyleBackColor = true;
     //
     // DVD
     //
     this.Controls.Add(this.groupBox1);
     this.Name = "DVD";
     this.Size = new System.Drawing.Size(472, 408);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1             = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.configAudioRenderer   = new MediaPortal.UserInterface.Controls.MPButton();
     this.configDVDAudio        = new MediaPortal.UserInterface.Controls.MPButton();
     this.configDVDVideo        = new MediaPortal.UserInterface.Controls.MPButton();
     this.configDVDNav          = new MediaPortal.UserInterface.Controls.MPButton();
     this.mpLabel1              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.checkBoxDXVA          = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.audioRendererLabel    = new MediaPortal.UserInterface.Controls.MPLabel();
     this.audioRendererComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.videoCodecLabel       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.videoCodecComboBox    = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.checkBoxAC3           = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.dvdNavigatorComboBox  = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.audioCodecComboBox    = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.dvdNavigatorLabel     = new MediaPortal.UserInterface.Controls.MPLabel();
     this.audioCodecLabel       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.configAudioRenderer);
     this.groupBox1.Controls.Add(this.configDVDAudio);
     this.groupBox1.Controls.Add(this.configDVDVideo);
     this.groupBox1.Controls.Add(this.configDVDNav);
     this.groupBox1.Controls.Add(this.mpLabel1);
     this.groupBox1.Controls.Add(this.checkBoxDXVA);
     this.groupBox1.Controls.Add(this.audioRendererLabel);
     this.groupBox1.Controls.Add(this.audioRendererComboBox);
     this.groupBox1.Controls.Add(this.videoCodecLabel);
     this.groupBox1.Controls.Add(this.videoCodecComboBox);
     this.groupBox1.Controls.Add(this.checkBoxAC3);
     this.groupBox1.Controls.Add(this.dvdNavigatorComboBox);
     this.groupBox1.Controls.Add(this.audioCodecComboBox);
     this.groupBox1.Controls.Add(this.dvdNavigatorLabel);
     this.groupBox1.Controls.Add(this.audioCodecLabel);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(6, 0);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(462, 226);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Settings Decoder";
     //
     // configAudioRenderer
     //
     this.configAudioRenderer.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.configAudioRenderer.Image    = global::MediaPortal.Configuration.Properties.Resources.codec_screwdriver;
     this.configAudioRenderer.Location = new System.Drawing.Point(422, 120);
     this.configAudioRenderer.Name     = "configAudioRenderer";
     this.configAudioRenderer.Size     = new System.Drawing.Size(35, 21);
     this.configAudioRenderer.TabIndex = 73;
     this.configAudioRenderer.UseVisualStyleBackColor = true;
     this.configAudioRenderer.Click += new System.EventHandler(this.configAudioRenderer_Click);
     //
     // configDVDAudio
     //
     this.configDVDAudio.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.configDVDAudio.Image    = global::MediaPortal.Configuration.Properties.Resources.codec_screwdriver;
     this.configDVDAudio.Location = new System.Drawing.Point(422, 96);
     this.configDVDAudio.Name     = "configDVDAudio";
     this.configDVDAudio.Size     = new System.Drawing.Size(35, 21);
     this.configDVDAudio.TabIndex = 72;
     this.configDVDAudio.UseVisualStyleBackColor = true;
     this.configDVDAudio.Click += new System.EventHandler(this.configDVDAudio_Click);
     //
     // configDVDVideo
     //
     this.configDVDVideo.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.configDVDVideo.Image    = global::MediaPortal.Configuration.Properties.Resources.codec_screwdriver;
     this.configDVDVideo.Location = new System.Drawing.Point(422, 72);
     this.configDVDVideo.Name     = "configDVDVideo";
     this.configDVDVideo.Size     = new System.Drawing.Size(35, 21);
     this.configDVDVideo.TabIndex = 71;
     this.configDVDVideo.UseVisualStyleBackColor = true;
     this.configDVDVideo.Click += new System.EventHandler(this.configDVDVideo_Click);
     //
     // configDVDNav
     //
     this.configDVDNav.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.configDVDNav.Image    = global::MediaPortal.Configuration.Properties.Resources.codec_screwdriver;
     this.configDVDNav.Location = new System.Drawing.Point(422, 24);
     this.configDVDNav.Name     = "configDVDNav";
     this.configDVDNav.Size     = new System.Drawing.Size(35, 21);
     this.configDVDNav.TabIndex = 70;
     this.configDVDNav.UseVisualStyleBackColor = true;
     this.configDVDNav.Click += new System.EventHandler(this.configDVDNav_Click);
     //
     // mpLabel1
     //
     this.mpLabel1.AutoSize = true;
     this.mpLabel1.Location = new System.Drawing.Point(119, 49);
     this.mpLabel1.Name     = "mpLabel1";
     this.mpLabel1.Size     = new System.Drawing.Size(281, 13);
     this.mpLabel1.TabIndex = 10;
     this.mpLabel1.Text     = "Note: Use corresponding decoders with chosen Navigator";
     //
     // checkBoxDXVA
     //
     this.checkBoxDXVA.AutoSize  = true;
     this.checkBoxDXVA.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxDXVA.Location  = new System.Drawing.Point(19, 185);
     this.checkBoxDXVA.Name      = "checkBoxDXVA";
     this.checkBoxDXVA.Size      = new System.Drawing.Size(333, 17);
     this.checkBoxDXVA.TabIndex  = 6;
     this.checkBoxDXVA.Text      = "Turn off DxVA (use this option if you have DVD navigation issues)";
     this.checkBoxDXVA.UseVisualStyleBackColor = true;
     //
     // audioRendererLabel
     //
     this.audioRendererLabel.Location = new System.Drawing.Point(17, 124);
     this.audioRendererLabel.Name     = "audioRendererLabel";
     this.audioRendererLabel.Size     = new System.Drawing.Size(88, 18);
     this.audioRendererLabel.TabIndex = 4;
     this.audioRendererLabel.Text     = "Audio renderer:";
     //
     // audioRendererComboBox
     //
     this.audioRendererComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.audioRendererComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.audioRendererComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.audioRendererComboBox.Location      = new System.Drawing.Point(122, 120);
     this.audioRendererComboBox.Name          = "audioRendererComboBox";
     this.audioRendererComboBox.Size          = new System.Drawing.Size(295, 21);
     this.audioRendererComboBox.Sorted        = true;
     this.audioRendererComboBox.TabIndex      = 4;
     //
     // videoCodecLabel
     //
     this.videoCodecLabel.Location = new System.Drawing.Point(17, 77);
     this.videoCodecLabel.Name     = "videoCodecLabel";
     this.videoCodecLabel.Size     = new System.Drawing.Size(99, 16);
     this.videoCodecLabel.TabIndex = 0;
     this.videoCodecLabel.Text     = "DVD video :";
     //
     // videoCodecComboBox
     //
     this.videoCodecComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.videoCodecComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.videoCodecComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.videoCodecComboBox.Location      = new System.Drawing.Point(122, 72);
     this.videoCodecComboBox.Name          = "videoCodecComboBox";
     this.videoCodecComboBox.Size          = new System.Drawing.Size(295, 21);
     this.videoCodecComboBox.Sorted        = true;
     this.videoCodecComboBox.TabIndex      = 2;
     //
     // checkBoxAC3
     //
     this.checkBoxAC3.AutoSize  = true;
     this.checkBoxAC3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxAC3.Location  = new System.Drawing.Point(19, 156);
     this.checkBoxAC3.Name      = "checkBoxAC3";
     this.checkBoxAC3.Size      = new System.Drawing.Size(275, 17);
     this.checkBoxAC3.TabIndex  = 5;
     this.checkBoxAC3.Text      = "Use AC3 filter (for some soundcards using SPDIF out)";
     this.checkBoxAC3.UseVisualStyleBackColor = true;
     //
     // dvdNavigatorComboBox
     //
     this.dvdNavigatorComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.dvdNavigatorComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.dvdNavigatorComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.dvdNavigatorComboBox.Location      = new System.Drawing.Point(122, 24);
     this.dvdNavigatorComboBox.Name          = "dvdNavigatorComboBox";
     this.dvdNavigatorComboBox.Size          = new System.Drawing.Size(295, 21);
     this.dvdNavigatorComboBox.Sorted        = true;
     this.dvdNavigatorComboBox.TabIndex      = 1;
     //
     // audioCodecComboBox
     //
     this.audioCodecComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.audioCodecComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.audioCodecComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.audioCodecComboBox.Location      = new System.Drawing.Point(122, 96);
     this.audioCodecComboBox.Name          = "audioCodecComboBox";
     this.audioCodecComboBox.Size          = new System.Drawing.Size(295, 21);
     this.audioCodecComboBox.Sorted        = true;
     this.audioCodecComboBox.TabIndex      = 3;
     //
     // dvdNavigatorLabel
     //
     this.dvdNavigatorLabel.Location = new System.Drawing.Point(17, 28);
     this.dvdNavigatorLabel.Name     = "dvdNavigatorLabel";
     this.dvdNavigatorLabel.Size     = new System.Drawing.Size(88, 15);
     this.dvdNavigatorLabel.TabIndex = 2;
     this.dvdNavigatorLabel.Text     = "DVD Navigator:";
     //
     // audioCodecLabel
     //
     this.audioCodecLabel.Location = new System.Drawing.Point(17, 99);
     this.audioCodecLabel.Name     = "audioCodecLabel";
     this.audioCodecLabel.Size     = new System.Drawing.Size(117, 17);
     this.audioCodecLabel.TabIndex = 6;
     this.audioCodecLabel.Text     = "DVD audio :";
     //
     // DVDCodec
     //
     this.BackColor = System.Drawing.SystemColors.Window;
     this.Controls.Add(this.groupBox1);
     this.Name = "DVDCodec";
     this.Size = new System.Drawing.Size(472, 391);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1         = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.cbAnalogBlanking  = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.cbColorSpace      = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label6            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.cbIDCT            = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label4            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.cbHardcodePal     = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.cbDVBAR           = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label2            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.tbVideoOffset     = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.cbAspectRatio     = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.label5            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.cbForcedSubtitles = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.cbDeinterlace     = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.cbSmoothing       = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.label3            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.cbAnalogBlanking);
     this.groupBox1.Controls.Add(this.cbColorSpace);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.cbIDCT);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.cbHardcodePal);
     this.groupBox1.Controls.Add(this.cbDVBAR);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.tbVideoOffset);
     this.groupBox1.Controls.Add(this.cbAspectRatio);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.cbForcedSubtitles);
     this.groupBox1.Controls.Add(this.cbDeinterlace);
     this.groupBox1.Controls.Add(this.cbSmoothing);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(472, 288);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Settings";
     //
     // cbAnalogBlanking
     //
     this.cbAnalogBlanking.Checked    = true;
     this.cbAnalogBlanking.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbAnalogBlanking.Location   = new System.Drawing.Point(16, 224);
     this.cbAnalogBlanking.Name       = "cbAnalogBlanking";
     this.cbAnalogBlanking.Size       = new System.Drawing.Size(136, 16);
     this.cbAnalogBlanking.TabIndex   = 12;
     this.cbAnalogBlanking.Text       = "Do analog blanking";
     //
     // cbColorSpace
     //
     this.cbColorSpace.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.cbColorSpace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbColorSpace.Items.AddRange(new object[]
     {
         "YV12",
         "YUY2"
     });
     this.cbColorSpace.Location = new System.Drawing.Point(168, 92);
     this.cbColorSpace.Name     = "cbColorSpace";
     this.cbColorSpace.Size     = new System.Drawing.Size(288, 21);
     this.cbColorSpace.TabIndex = 7;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(16, 96);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(128, 16);
     this.label6.TabIndex = 6;
     this.label6.Text     = "Output colorspace:";
     //
     // cbIDCT
     //
     this.cbIDCT.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.cbIDCT.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbIDCT.Items.AddRange(new object[]
     {
         "Reference",
         "MMX only",
         "Accelerated"
     });
     this.cbIDCT.Location = new System.Drawing.Point(168, 68);
     this.cbIDCT.Name     = "cbIDCT";
     this.cbIDCT.Size     = new System.Drawing.Size(288, 21);
     this.cbIDCT.TabIndex = 5;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(16, 72);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(128, 16);
     this.label4.TabIndex = 4;
     this.label4.Text     = "IDCT to use:";
     //
     // cbHardcodePal
     //
     this.cbHardcodePal.Location = new System.Drawing.Point(16, 200);
     this.cbHardcodePal.Name     = "cbHardcodePal";
     this.cbHardcodePal.Size     = new System.Drawing.Size(184, 16);
     this.cbHardcodePal.TabIndex = 11;
     this.cbHardcodePal.Text     = "Hardcode for PAL with FFdshow";
     //
     // cbDVBAR
     //
     this.cbDVBAR.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.cbDVBAR.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbDVBAR.Items.AddRange(new object[]
     {
         "16:9 Display",
         "4:3 Display Center cut out",
         "4:3 Display Letterbox"
     });
     this.cbDVBAR.Location = new System.Drawing.Point(168, 44);
     this.cbDVBAR.Name     = "cbDVBAR";
     this.cbDVBAR.Size     = new System.Drawing.Size(288, 21);
     this.cbDVBAR.TabIndex = 3;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 48);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(128, 16);
     this.label2.TabIndex = 2;
     this.label2.Text     = "DVB Aspect preference:";
     //
     // tbVideoOffset
     //
     this.tbVideoOffset.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.tbVideoOffset.Location = new System.Drawing.Point(168, 252);
     this.tbVideoOffset.Name     = "tbVideoOffset";
     this.tbVideoOffset.Size     = new System.Drawing.Size(288, 20);
     this.tbVideoOffset.TabIndex = 14;
     this.tbVideoOffset.Text     = "0";
     //
     // cbAspectRatio
     //
     this.cbAspectRatio.Checked    = true;
     this.cbAspectRatio.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbAspectRatio.Location   = new System.Drawing.Point(16, 176);
     this.cbAspectRatio.Name       = "cbAspectRatio";
     this.cbAspectRatio.Size       = new System.Drawing.Size(168, 16);
     this.cbAspectRatio.TabIndex   = 10;
     this.cbAspectRatio.Text       = "Use accurate Aspect Ratios";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(16, 256);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(144, 16);
     this.label5.TabIndex = 13;
     this.label5.Text     = "Video delay offset (msec.):";
     //
     // cbForcedSubtitles
     //
     this.cbForcedSubtitles.Checked    = true;
     this.cbForcedSubtitles.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbForcedSubtitles.Location   = new System.Drawing.Point(16, 128);
     this.cbForcedSubtitles.Name       = "cbForcedSubtitles";
     this.cbForcedSubtitles.Size       = new System.Drawing.Size(136, 16);
     this.cbForcedSubtitles.TabIndex   = 8;
     this.cbForcedSubtitles.Text       = "Display Forced Subtitles";
     //
     // cbDeinterlace
     //
     this.cbDeinterlace.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.cbDeinterlace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbDeinterlace.Items.AddRange(new object[]
     {
         "Automatic",
         "Force Weave",
         "Force Bob"
     });
     this.cbDeinterlace.Location = new System.Drawing.Point(168, 20);
     this.cbDeinterlace.Name     = "cbDeinterlace";
     this.cbDeinterlace.Size     = new System.Drawing.Size(288, 21);
     this.cbDeinterlace.TabIndex = 1;
     //
     // cbSmoothing
     //
     this.cbSmoothing.Checked    = true;
     this.cbSmoothing.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbSmoothing.Location   = new System.Drawing.Point(16, 152);
     this.cbSmoothing.Name       = "cbSmoothing";
     this.cbSmoothing.Size       = new System.Drawing.Size(136, 16);
     this.cbSmoothing.TabIndex   = 9;
     this.cbSmoothing.Text       = "3:2 Playback smoothing";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 24);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(96, 16);
     this.label3.TabIndex = 0;
     this.label3.Text     = "Deinterlace mode:";
     //
     // DScalerVideoFilter
     //
     this.Controls.Add(this.groupBox1);
     this.Name = "DScalerVideoFilter";
     this.Size = new System.Drawing.Size(472, 408);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox2                = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.comboDriveType           = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpLabel3                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.resetButton              = new MediaPortal.UserInterface.Controls.MPButton();
     this.mpLabel2                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.textBoxExtensions        = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.mpLabel1                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.buttonSelectFolder       = new MediaPortal.UserInterface.Controls.MPButton();
     this.comboDriveNo             = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.comboBoxDrive            = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.textBoxDaemonTools       = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label4                   = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label3                   = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label1                   = new MediaPortal.UserInterface.Controls.MPLabel();
     this.checkBoxDaemonTools      = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxAskBeforePlaying = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.comboDriveType);
     this.groupBox2.Controls.Add(this.mpLabel3);
     this.groupBox2.Controls.Add(this.resetButton);
     this.groupBox2.Controls.Add(this.mpLabel2);
     this.groupBox2.Controls.Add(this.textBoxExtensions);
     this.groupBox2.Controls.Add(this.mpLabel1);
     this.groupBox2.Controls.Add(this.buttonSelectFolder);
     this.groupBox2.Controls.Add(this.comboDriveNo);
     this.groupBox2.Controls.Add(this.comboBoxDrive);
     this.groupBox2.Controls.Add(this.textBoxDaemonTools);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.checkBoxDaemonTools);
     this.groupBox2.Controls.Add(this.checkBoxAskBeforePlaying);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox2.Location  = new System.Drawing.Point(0, 0);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(472, 233);
     this.groupBox2.TabIndex  = 0;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Settings";
     //
     // comboDriveType
     //
     this.comboDriveType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.comboDriveType.BorderColor               = System.Drawing.Color.Empty;
     this.comboDriveType.DropDownStyle             = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboDriveType.Location                  = new System.Drawing.Point(168, 118);
     this.comboDriveType.Name                      = "comboDriveType";
     this.comboDriveType.Size                      = new System.Drawing.Size(288, 21);
     this.comboDriveType.TabIndex                  = 14;
     this.comboDriveType.SelectionChangeCommitted += new System.EventHandler(this.comboDriveType_SelectionChangeCommitted);
     //
     // mpLabel3
     //
     this.mpLabel3.AutoSize = true;
     this.mpLabel3.Location = new System.Drawing.Point(16, 121);
     this.mpLabel3.Name     = "mpLabel3";
     this.mpLabel3.Size     = new System.Drawing.Size(62, 13);
     this.mpLabel3.TabIndex = 13;
     this.mpLabel3.Text     = "Drive Type:";
     //
     // resetButton
     //
     this.resetButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.resetButton.Location = new System.Drawing.Point(384, 152);
     this.resetButton.Name     = "resetButton";
     this.resetButton.Size     = new System.Drawing.Size(72, 50);
     this.resetButton.TabIndex = 12;
     this.resetButton.Text     = "Default";
     this.resetButton.UseVisualStyleBackColor = true;
     this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
     //
     // mpLabel2
     //
     this.mpLabel2.AutoSize = true;
     this.mpLabel2.Location = new System.Drawing.Point(16, 206);
     this.mpLabel2.Name     = "mpLabel2";
     this.mpLabel2.Size     = new System.Drawing.Size(367, 13);
     this.mpLabel2.TabIndex = 11;
     this.mpLabel2.Text     = "Supported tools: Windows native ISO, Virtual CloneDrive and Daemon Tools";
     //
     // textBoxExtensions
     //
     this.textBoxExtensions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxExtensions.BorderColor = System.Drawing.Color.Empty;
     this.textBoxExtensions.Location    = new System.Drawing.Point(168, 151);
     this.textBoxExtensions.Name        = "textBoxExtensions";
     this.textBoxExtensions.Size        = new System.Drawing.Size(208, 20);
     this.textBoxExtensions.TabIndex    = 10;
     //
     // mpLabel1
     //
     this.mpLabel1.AutoSize = true;
     this.mpLabel1.Location = new System.Drawing.Point(16, 155);
     this.mpLabel1.Name     = "mpLabel1";
     this.mpLabel1.Size     = new System.Drawing.Size(96, 13);
     this.mpLabel1.TabIndex = 9;
     this.mpLabel1.Text     = "Supported Images:";
     //
     // buttonSelectFolder
     //
     this.buttonSelectFolder.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSelectFolder.Location = new System.Drawing.Point(384, 43);
     this.buttonSelectFolder.Name     = "buttonSelectFolder";
     this.buttonSelectFolder.Size     = new System.Drawing.Size(72, 22);
     this.buttonSelectFolder.TabIndex = 3;
     this.buttonSelectFolder.Text     = "Browse";
     this.buttonSelectFolder.UseVisualStyleBackColor = true;
     this.buttonSelectFolder.Click += new System.EventHandler(this.buttonSelectFolder_Click);
     //
     // comboDriveNo
     //
     this.comboDriveNo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.comboDriveNo.BorderColor   = System.Drawing.Color.Empty;
     this.comboDriveNo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboDriveNo.Items.AddRange(new object[] {
         "0",
         "1",
         "2",
         "3"
     });
     this.comboDriveNo.Location = new System.Drawing.Point(168, 92);
     this.comboDriveNo.Name     = "comboDriveNo";
     this.comboDriveNo.Size     = new System.Drawing.Size(288, 21);
     this.comboDriveNo.TabIndex = 7;
     //
     // comboBoxDrive
     //
     this.comboBoxDrive.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxDrive.BorderColor   = System.Drawing.Color.Empty;
     this.comboBoxDrive.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxDrive.Location      = new System.Drawing.Point(168, 68);
     this.comboBoxDrive.Name          = "comboBoxDrive";
     this.comboBoxDrive.Size          = new System.Drawing.Size(288, 21);
     this.comboBoxDrive.TabIndex      = 5;
     //
     // textBoxDaemonTools
     //
     this.textBoxDaemonTools.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxDaemonTools.BorderColor = System.Drawing.Color.Empty;
     this.textBoxDaemonTools.Location    = new System.Drawing.Point(168, 44);
     this.textBoxDaemonTools.Name        = "textBoxDaemonTools";
     this.textBoxDaemonTools.Size        = new System.Drawing.Size(208, 20);
     this.textBoxDaemonTools.TabIndex    = 2;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(16, 96);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(75, 13);
     this.label4.TabIndex = 6;
     this.label4.Text     = "Drive Number:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(16, 48);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(55, 13);
     this.label3.TabIndex = 1;
     this.label3.Text     = "Drive tool:";
     //
     // label1
     //
     this.label1.AutoSize    = true;
     this.label1.Location    = new System.Drawing.Point(16, 72);
     this.label1.Name        = "label1";
     this.label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.label1.Size        = new System.Drawing.Size(65, 13);
     this.label1.TabIndex    = 4;
     this.label1.Text        = "Virtual drive:";
     //
     // checkBoxDaemonTools
     //
     this.checkBoxDaemonTools.AutoSize  = true;
     this.checkBoxDaemonTools.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxDaemonTools.Location  = new System.Drawing.Point(168, 20);
     this.checkBoxDaemonTools.Name      = "checkBoxDaemonTools";
     this.checkBoxDaemonTools.Size      = new System.Drawing.Size(127, 17);
     this.checkBoxDaemonTools.TabIndex  = 0;
     this.checkBoxDaemonTools.Text      = "Automount image files";
     this.checkBoxDaemonTools.UseVisualStyleBackColor = true;
     this.checkBoxDaemonTools.CheckedChanged         += new System.EventHandler(this.checkBoxDaemonTools_CheckedChanged);
     //
     // checkBoxAskBeforePlaying
     //
     this.checkBoxAskBeforePlaying.AutoSize  = true;
     this.checkBoxAskBeforePlaying.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxAskBeforePlaying.Location  = new System.Drawing.Point(168, 180);
     this.checkBoxAskBeforePlaying.Name      = "checkBoxAskBeforePlaying";
     this.checkBoxAskBeforePlaying.Size      = new System.Drawing.Size(163, 17);
     this.checkBoxAskBeforePlaying.TabIndex  = 8;
     this.checkBoxAskBeforePlaying.Text      = "Ask before playing image files";
     this.checkBoxAskBeforePlaying.UseVisualStyleBackColor = true;
     //
     // GeneralDaemonTools
     //
     this.BackColor = System.Drawing.SystemColors.Control;
     this.Controls.Add(this.groupBox2);
     this.Name = "GeneralDaemonTools";
     this.Size = new System.Drawing.Size(472, 408);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
 }
Example #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components            = new System.ComponentModel.Container();
     this.comboBoxChannels      = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.comboBoxBitsPerSample = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label3            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label2            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.textBoxSampleRate = new MediaPortal.UserInterface.Controls.MPNumericTextBox();
     this.label1            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.toolTip1          = new System.Windows.Forms.ToolTip(this.components);
     this.errorProvider1    = new System.Windows.Forms.ErrorProvider();
     this.SuspendLayout();
     //
     // comboBoxChannels
     //
     this.comboBoxChannels.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxChannels.Items.AddRange(new object[]
     {
         "MONO",
         "STEREO"
     });
     this.comboBoxChannels.Location              = new System.Drawing.Point(96, 56);
     this.comboBoxChannels.Name                  = "comboBoxChannels";
     this.comboBoxChannels.Size                  = new System.Drawing.Size(112, 21);
     this.comboBoxChannels.TabIndex              = 13;
     this.comboBoxChannels.SelectedIndexChanged += new System.EventHandler(this.comboBoxChannels_SelectedIndexChanged);
     //
     // comboBoxBitsPerSample
     //
     this.comboBoxBitsPerSample.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxBitsPerSample.Items.AddRange(new object[]
     {
         "8 bits per sample",
         "16 bits per sample"
     });
     this.comboBoxBitsPerSample.Location              = new System.Drawing.Point(96, 96);
     this.comboBoxBitsPerSample.Name                  = "comboBoxBitsPerSample";
     this.comboBoxBitsPerSample.Size                  = new System.Drawing.Size(112, 21);
     this.comboBoxBitsPerSample.TabIndex              = 12;
     this.comboBoxBitsPerSample.SelectedIndexChanged +=
         new System.EventHandler(this.comboBoxBitsPerSample_SelectedIndexChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 96);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(88, 23);
     this.label3.TabIndex = 11;
     this.label3.Text     = "Bits per sample:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 56);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(72, 16);
     this.label2.TabIndex = 10;
     this.label2.Text     = "Audio mode:";
     //
     // textBoxSampleRate
     //
     this.textBoxSampleRate.Location = new System.Drawing.Point(96, 16);
     this.textBoxSampleRate.Name     = "textBoxSampleRate";
     this.textBoxSampleRate.Size     = new System.Drawing.Size(112, 20);
     this.textBoxSampleRate.TabIndex = 8;
     this.textBoxSampleRate.Text     = "44100";
     this.toolTip1.SetToolTip(this.textBoxSampleRate, "Sample rate, in samples per second. ");
     this.textBoxSampleRate.Value        = 44100;
     this.textBoxSampleRate.FormatValid += new System.EventHandler(this.textBoxSampleRate_FormatValid);
     this.textBoxSampleRate.FormatError += new System.EventHandler(this.textBoxSampleRate_FormatError);
     this.textBoxSampleRate.TextChanged += new System.EventHandler(this.textBoxSampleRate_TextChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 16);
     this.label1.TabIndex = 9;
     this.label1.Text     = "Sample rate:";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // EditFormat
     //
     this.Controls.Add(this.comboBoxChannels);
     this.Controls.Add(this.comboBoxBitsPerSample);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.textBoxSampleRate);
     this.Controls.Add(this.label1);
     this.Name = "EditFormat";
     this.Size = new System.Drawing.Size(288, 200);
     this.ResumeLayout(false);
 }
Example #9
0
 private void InitializeComponent()
 {
     this.groupBox1                   = new MPGroupBox();
     this.label3                      = new Label();
     this.cmbDeviceType               = new ComboBox();
     this.groupBox7                   = new GroupBox();
     this.groupEQstyle                = new GroupBox();
     this.cbUseVUmeter2               = new RadioButton();
     this.cbVUindicators              = new CheckBox();
     this.cbUseVUmeter                = new RadioButton();
     this.cbStereoEQ                  = new RadioButton();
     this.cbNormalEQ                  = new RadioButton();
     this.cmbDelayEqTime              = new MPComboBox();
     this.lblRestrictEQ               = new MPLabel();
     this.cmbEQTitleDisplayTime       = new MPComboBox();
     this.cmbEQTitleShowTime          = new MPComboBox();
     this.mpEQTitleDisplay            = new CheckBox();
     this.mpSmoothEQ                  = new CheckBox();
     this.mpEqDisplay                 = new CheckBox();
     this.mpRestrictEQ                = new CheckBox();
     this.cmbEqRate                   = new MPComboBox();
     this.mpDelayEQ                   = new CheckBox();
     this.lblEQTitleDisplay           = new MPLabel();
     this.groupBox5                   = new GroupBox();
     this.mpEnableDisplayActionTime   = new MPComboBox();
     this.cmbBlankIdleTime            = new MPComboBox();
     this.mpEnableDisplayAction       = new CheckBox();
     this.mpBlankDisplayWithVideo     = new CheckBox();
     this.mpBlankDisplayWhenIdle      = new CheckBox();
     this.groupBox4                   = new GroupBox();
     this.btnRemoteSetup              = new MPButton();
     this.cbEnableCustomKeypadMapping = new CheckBox();
     this.cbDisableRepeat             = new CheckBox();
     this.cbEnableKeypad              = new CheckBox();
     this.btnOK    = new MPButton();
     this.btnReset = new MPButton();
     this.groupBox1.SuspendLayout();
     this.groupBox7.SuspendLayout();
     this.groupEQstyle.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom)
                                               | AnchorStyles.Left)
                                              | AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.cmbDeviceType);
     this.groupBox1.Controls.Add(this.groupBox7);
     this.groupBox1.Controls.Add(this.groupBox5);
     this.groupBox1.Controls.Add(this.groupBox4);
     this.groupBox1.FlatStyle = FlatStyle.Popup;
     this.groupBox1.Location  = new Point(9, 6);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new Size(357, 472);
     this.groupBox1.TabIndex  = 4;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = " CrystalFontz Display Configuration ";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new Point(12, 21);
     this.label3.Name     = "label3";
     this.label3.Size     = new Size(68, 13);
     this.label3.TabIndex = 105;
     this.label3.Text     = "Device Type";
     //
     // cmbDeviceType
     //
     this.cmbDeviceType.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left)
                                                  | AnchorStyles.Right)));
     this.cmbDeviceType.FormattingEnabled = true;
     this.cmbDeviceType.Items.AddRange(new object[]
     {
         "CFA631 - 2 x 20 LCD with KeyPad",
         "CFA632 - 2 x 16 LCD",
         "CFA633 - 2 x 16 LCD with KeyPad",
         "CFA634 - 4 x 20 LCD",
         "CFA635 - 4 x 20 LCD with KeyPad"
     });
     this.cmbDeviceType.Location              = new Point(86, 18);
     this.cmbDeviceType.Name                  = "cmbDeviceType";
     this.cmbDeviceType.Size                  = new Size(197, 21);
     this.cmbDeviceType.TabIndex              = 104;
     this.cmbDeviceType.SelectedValueChanged += new EventHandler(this.cmbDeviceType_Changed);
     //
     // groupBox7
     //
     this.groupBox7.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom)
                                               | AnchorStyles.Left)
                                              | AnchorStyles.Right)));
     this.groupBox7.Controls.Add(this.groupEQstyle);
     this.groupBox7.Controls.Add(this.cmbDelayEqTime);
     this.groupBox7.Controls.Add(this.lblRestrictEQ);
     this.groupBox7.Controls.Add(this.cmbEQTitleDisplayTime);
     this.groupBox7.Controls.Add(this.cmbEQTitleShowTime);
     this.groupBox7.Controls.Add(this.mpEQTitleDisplay);
     this.groupBox7.Controls.Add(this.mpSmoothEQ);
     this.groupBox7.Controls.Add(this.mpEqDisplay);
     this.groupBox7.Controls.Add(this.mpRestrictEQ);
     this.groupBox7.Controls.Add(this.cmbEqRate);
     this.groupBox7.Controls.Add(this.mpDelayEQ);
     this.groupBox7.Controls.Add(this.lblEQTitleDisplay);
     this.groupBox7.Location = new Point(10, 233);
     this.groupBox7.Name     = "groupBox7";
     this.groupBox7.Size     = new Size(338, 233);
     this.groupBox7.TabIndex = 103;
     this.groupBox7.TabStop  = false;
     this.groupBox7.Text     = " Equalizer Options";
     //
     // groupEQstyle
     //
     this.groupEQstyle.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left)
                                                 | AnchorStyles.Right)));
     this.groupEQstyle.Controls.Add(this.cbUseVUmeter2);
     this.groupEQstyle.Controls.Add(this.cbVUindicators);
     this.groupEQstyle.Controls.Add(this.cbUseVUmeter);
     this.groupEQstyle.Controls.Add(this.cbStereoEQ);
     this.groupEQstyle.Controls.Add(this.cbNormalEQ);
     this.groupEQstyle.Location = new Point(32, 38);
     this.groupEQstyle.Name     = "groupEQstyle";
     this.groupEQstyle.Size     = new Size(300, 60);
     this.groupEQstyle.TabIndex = 118;
     this.groupEQstyle.TabStop  = false;
     this.groupEQstyle.Text     = " Equalizer Style ";
     //
     // cbUseVUmeter2
     //
     this.cbUseVUmeter2.AutoSize = true;
     this.cbUseVUmeter2.Location = new Point(211, 17);
     this.cbUseVUmeter2.Name     = "cbUseVUmeter2";
     this.cbUseVUmeter2.Size     = new Size(79, 17);
     this.cbUseVUmeter2.TabIndex = 122;
     this.cbUseVUmeter2.Text     = "VU Meter 2";
     this.cbUseVUmeter2.UseVisualStyleBackColor = true;
     //
     // cbVUindicators
     //
     this.cbVUindicators.AutoSize = true;
     this.cbVUindicators.Location = new Point(9, 39);
     this.cbVUindicators.Name     = "cbVUindicators";
     this.cbVUindicators.Size     = new Size(213, 17);
     this.cbVUindicators.TabIndex = 121;
     this.cbVUindicators.Text     = "Show Channel indicators for VU Display";
     this.cbVUindicators.UseVisualStyleBackColor = true;
     //
     // cbUseVUmeter
     //
     this.cbUseVUmeter.AutoSize = true;
     this.cbUseVUmeter.Location = new Point(135, 17);
     this.cbUseVUmeter.Name     = "cbUseVUmeter";
     this.cbUseVUmeter.Size     = new Size(70, 17);
     this.cbUseVUmeter.TabIndex = 2;
     this.cbUseVUmeter.Text     = "VU Meter";
     this.cbUseVUmeter.UseVisualStyleBackColor = true;
     this.cbUseVUmeter.CheckedChanged         += new EventHandler(this.cbUseVUmeter_CheckedChanged);
     //
     // cbStereoEQ
     //
     this.cbStereoEQ.AutoSize = true;
     this.cbStereoEQ.Location = new Point(77, 17);
     this.cbStereoEQ.Name     = "cbStereoEQ";
     this.cbStereoEQ.Size     = new Size(56, 17);
     this.cbStereoEQ.TabIndex = 1;
     this.cbStereoEQ.Text     = "Stereo";
     this.cbStereoEQ.UseVisualStyleBackColor = true;
     this.cbStereoEQ.CheckedChanged         += new EventHandler(this.cbStereoEQ_CheckedChanged);
     //
     // cbNormalEQ
     //
     this.cbNormalEQ.AutoSize = true;
     this.cbNormalEQ.Checked  = true;
     this.cbNormalEQ.Location = new Point(13, 17);
     this.cbNormalEQ.Name     = "cbNormalEQ";
     this.cbNormalEQ.Size     = new Size(58, 17);
     this.cbNormalEQ.TabIndex = 0;
     this.cbNormalEQ.TabStop  = true;
     this.cbNormalEQ.Text     = "Normal";
     this.cbNormalEQ.UseVisualStyleBackColor = true;
     this.cbNormalEQ.CheckedChanged         += new EventHandler(this.cbNormalEQ_CheckedChanged);
     //
     // cmbDelayEqTime
     //
     this.cmbDelayEqTime.BorderColor   = Color.Empty;
     this.cmbDelayEqTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbDelayEqTime.Items.AddRange(new object[]
     {
         "0",
         "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"
     });
     this.cmbDelayEqTime.Location = new Point(160, 143);
     this.cmbDelayEqTime.Name     = "cmbDelayEqTime";
     this.cmbDelayEqTime.Size     = new Size(52, 21);
     this.cmbDelayEqTime.TabIndex = 104;
     //
     // lblRestrictEQ
     //
     this.lblRestrictEQ.Anchor    = ((AnchorStyles)((AnchorStyles.Top | AnchorStyles.Right)));
     this.lblRestrictEQ.Location  = new Point(100, 124);
     this.lblRestrictEQ.Name      = "lblRestrictEQ";
     this.lblRestrictEQ.Size      = new Size(116, 17);
     this.lblRestrictEQ.TabIndex  = 115;
     this.lblRestrictEQ.Text      = "updates per Seconds";
     this.lblRestrictEQ.TextAlign = ContentAlignment.MiddleLeft;
     //
     // cmbEQTitleDisplayTime
     //
     this.cmbEQTitleDisplayTime.BorderColor   = Color.Empty;
     this.cmbEQTitleDisplayTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbEQTitleDisplayTime.Items.AddRange(new object[]
     {
         "0",
         "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"
     });
     this.cmbEQTitleDisplayTime.Location = new Point(165, 207);
     this.cmbEQTitleDisplayTime.Name     = "cmbEQTitleDisplayTime";
     this.cmbEQTitleDisplayTime.Size     = new Size(52, 21);
     this.cmbEQTitleDisplayTime.TabIndex = 110;
     //
     // cmbEQTitleShowTime
     //
     this.cmbEQTitleShowTime.BorderColor   = Color.Empty;
     this.cmbEQTitleShowTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbEQTitleShowTime.Items.AddRange(new object[]
     {
         "0",
         "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"
     });
     this.cmbEQTitleShowTime.Location = new Point(32, 207);
     this.cmbEQTitleShowTime.Name     = "cmbEQTitleShowTime";
     this.cmbEQTitleShowTime.Size     = new Size(52, 21);
     this.cmbEQTitleShowTime.TabIndex = 113;
     //
     // mpEQTitleDisplay
     //
     this.mpEQTitleDisplay.AutoSize = true;
     this.mpEQTitleDisplay.Location = new Point(21, 187);
     this.mpEQTitleDisplay.Name     = "mpEQTitleDisplay";
     this.mpEQTitleDisplay.Size     = new Size(120, 17);
     this.mpEQTitleDisplay.TabIndex = 112;
     this.mpEQTitleDisplay.Text     = "Show Track Info for";
     this.mpEQTitleDisplay.UseVisualStyleBackColor = true;
     this.mpEQTitleDisplay.CheckedChanged         += new EventHandler(this.mpEQTitleDisplay_CheckedChanged);
     //
     // mpSmoothEQ
     //
     this.mpSmoothEQ.AutoSize = true;
     this.mpSmoothEQ.Location = new Point(21, 166);
     this.mpSmoothEQ.Name     = "mpSmoothEQ";
     this.mpSmoothEQ.Size     = new Size(224, 17);
     this.mpSmoothEQ.TabIndex = 109;
     this.mpSmoothEQ.Text     = "Use Equalizer Smoothing (Delayed decay)";
     this.mpSmoothEQ.UseVisualStyleBackColor = true;
     //
     // mpEqDisplay
     //
     this.mpEqDisplay.AutoSize = true;
     this.mpEqDisplay.Location = new Point(5, 21);
     this.mpEqDisplay.Name     = "mpEqDisplay";
     this.mpEqDisplay.Size     = new Size(126, 17);
     this.mpEqDisplay.TabIndex = 106;
     this.mpEqDisplay.Text     = "Use Equalizer display";
     this.mpEqDisplay.UseVisualStyleBackColor = true;
     this.mpEqDisplay.CheckedChanged         += new EventHandler(this.mpEqDisplay_CheckedChanged);
     //
     // mpRestrictEQ
     //
     this.mpRestrictEQ.AutoSize = true;
     this.mpRestrictEQ.Location = new Point(21, 103);
     this.mpRestrictEQ.Name     = "mpRestrictEQ";
     this.mpRestrictEQ.Size     = new Size(185, 17);
     this.mpRestrictEQ.TabIndex = 107;
     this.mpRestrictEQ.Text     = "Limit Equalizer display update rate";
     this.mpRestrictEQ.UseVisualStyleBackColor = true;
     this.mpRestrictEQ.CheckedChanged         += new EventHandler(this.mpRestrictEQ_CheckedChanged);
     //
     // cmbEqRate
     //
     this.cmbEqRate.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left)
                                              | AnchorStyles.Right)));
     this.cmbEqRate.BorderColor   = Color.Empty;
     this.cmbEqRate.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbEqRate.Items.AddRange(new object[]
     {
         "MAX",
         "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",
         "32",
         "33",
         "34",
         "35",
         "36",
         "37",
         "38",
         "39",
         "40",
         "41",
         "42",
         "43",
         "44",
         "45",
         "46",
         "47",
         "48",
         "49",
         "50",
         "51",
         "52",
         "53",
         "54",
         "55",
         "56",
         "57",
         "58",
         "59",
         "60"
     });
     this.cmbEqRate.Location              = new Point(32, 122);
     this.cmbEqRate.Name                  = "cmbEqRate";
     this.cmbEqRate.Size                  = new Size(69, 21);
     this.cmbEqRate.TabIndex              = 103;
     this.cmbEqRate.SelectedIndexChanged += new EventHandler(this.cmbEqRate_SelectedIndexChanged);
     //
     // mpDelayEQ
     //
     this.mpDelayEQ.AutoSize = true;
     this.mpDelayEQ.Location = new Point(21, 144);
     this.mpDelayEQ.Name     = "mpDelayEQ";
     this.mpDelayEQ.Size     = new Size(246, 17);
     this.mpDelayEQ.TabIndex = 108;
     this.mpDelayEQ.Text     = "Delay Equalizer Start by                      Seconds";
     this.mpDelayEQ.UseVisualStyleBackColor = true;
     this.mpDelayEQ.CheckedChanged         += new EventHandler(this.mpDelayEQ_CheckedChanged);
     //
     // lblEQTitleDisplay
     //
     this.lblEQTitleDisplay.Location  = new Point(86, 208);
     this.lblEQTitleDisplay.Name      = "lblEQTitleDisplay";
     this.lblEQTitleDisplay.Size      = new Size(201, 17);
     this.lblEQTitleDisplay.TabIndex  = 114;
     this.lblEQTitleDisplay.Text      = "Seconds every                     Seconds";
     this.lblEQTitleDisplay.TextAlign = ContentAlignment.MiddleLeft;
     //
     // groupBox5
     //
     this.groupBox5.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left)
                                              | AnchorStyles.Right)));
     this.groupBox5.Controls.Add(this.mpEnableDisplayActionTime);
     this.groupBox5.Controls.Add(this.cmbBlankIdleTime);
     this.groupBox5.Controls.Add(this.mpEnableDisplayAction);
     this.groupBox5.Controls.Add(this.mpBlankDisplayWithVideo);
     this.groupBox5.Controls.Add(this.mpBlankDisplayWhenIdle);
     this.groupBox5.Location = new Point(10, 134);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new Size(338, 97);
     this.groupBox5.TabIndex = 23;
     this.groupBox5.TabStop  = false;
     this.groupBox5.Text     = " Display Control Options ";
     //
     // mpEnableDisplayActionTime
     //
     this.mpEnableDisplayActionTime.BorderColor   = Color.Empty;
     this.mpEnableDisplayActionTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.mpEnableDisplayActionTime.Items.AddRange(new object[]
     {
         "0",
         "1",
         "2",
         "3",
         "4",
         "5",
         "6",
         "7",
         "8",
         "9",
         "10",
         "11",
         "12",
         "13",
         "14",
         "15",
         "16",
         "17",
         "18",
         "19",
         "20"
     });
     this.mpEnableDisplayActionTime.Location = new Point(181, 36);
     this.mpEnableDisplayActionTime.Name     = "mpEnableDisplayActionTime";
     this.mpEnableDisplayActionTime.Size     = new Size(42, 21);
     this.mpEnableDisplayActionTime.TabIndex = 96;
     //
     // cmbBlankIdleTime
     //
     this.cmbBlankIdleTime.BorderColor   = Color.Empty;
     this.cmbBlankIdleTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbBlankIdleTime.Items.AddRange(new object[]
     {
         "0",
         "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"
     });
     this.cmbBlankIdleTime.Location = new Point(167, 58);
     this.cmbBlankIdleTime.Name     = "cmbBlankIdleTime";
     this.cmbBlankIdleTime.Size     = new Size(42, 21);
     this.cmbBlankIdleTime.TabIndex = 98;
     //
     // mpEnableDisplayAction
     //
     this.mpEnableDisplayAction.AutoSize = true;
     this.mpEnableDisplayAction.Location = new Point(23, 38);
     this.mpEnableDisplayAction.Name     = "mpEnableDisplayAction";
     this.mpEnableDisplayAction.Size     = new Size(258, 17);
     this.mpEnableDisplayAction.TabIndex = 97;
     this.mpEnableDisplayAction.Text     = "Enable Display on Action for                   Seconds";
     this.mpEnableDisplayAction.UseVisualStyleBackColor = true;
     this.mpEnableDisplayAction.CheckedChanged         += new EventHandler(this.mpEnableDisplayAction_CheckedChanged);
     //
     // mpBlankDisplayWithVideo
     //
     this.mpBlankDisplayWithVideo.AutoSize = true;
     this.mpBlankDisplayWithVideo.Location = new Point(7, 17);
     this.mpBlankDisplayWithVideo.Name     = "mpBlankDisplayWithVideo";
     this.mpBlankDisplayWithVideo.Size     = new Size(207, 17);
     this.mpBlankDisplayWithVideo.TabIndex = 95;
     this.mpBlankDisplayWithVideo.Text     = "Turn off display during Video Playback";
     this.mpBlankDisplayWithVideo.UseVisualStyleBackColor = true;
     this.mpBlankDisplayWithVideo.CheckedChanged         += new EventHandler(this.mpBlankDisplayWithVideo_CheckedChanged);
     //
     // mpBlankDisplayWhenIdle
     //
     this.mpBlankDisplayWhenIdle.AutoSize = true;
     this.mpBlankDisplayWhenIdle.Location = new Point(7, 60);
     this.mpBlankDisplayWhenIdle.Name     = "mpBlankDisplayWhenIdle";
     this.mpBlankDisplayWhenIdle.Size     = new Size(261, 17);
     this.mpBlankDisplayWhenIdle.TabIndex = 99;
     this.mpBlankDisplayWhenIdle.Text     = "Turn off display when idle for                    seconds";
     this.mpBlankDisplayWhenIdle.UseVisualStyleBackColor = true;
     this.mpBlankDisplayWhenIdle.CheckedChanged         += new EventHandler(this.mpBlankDisplayWhenIdle_CheckedChanged);
     //
     // groupBox4
     //
     this.groupBox4.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left)
                                              | AnchorStyles.Right)));
     this.groupBox4.Controls.Add(this.btnRemoteSetup);
     this.groupBox4.Controls.Add(this.cbEnableCustomKeypadMapping);
     this.groupBox4.Controls.Add(this.cbDisableRepeat);
     this.groupBox4.Controls.Add(this.cbEnableKeypad);
     this.groupBox4.Location = new Point(10, 42);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new Size(338, 90);
     this.groupBox4.TabIndex = 7;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = " Keypad Options ";
     //
     // btnRemoteSetup
     //
     this.btnRemoteSetup.Location = new Point(214, 34);
     this.btnRemoteSetup.Name     = "btnRemoteSetup";
     this.btnRemoteSetup.Size     = new Size(100, 23);
     this.btnRemoteSetup.TabIndex = 111;
     this.btnRemoteSetup.Text     = "K&EYPAD SETUP";
     this.btnRemoteSetup.UseVisualStyleBackColor = true;
     //
     // cbEnableCustomKeypadMapping
     //
     this.cbEnableCustomKeypadMapping.AutoSize = true;
     this.cbEnableCustomKeypadMapping.Location = new Point(25, 37);
     this.cbEnableCustomKeypadMapping.Name     = "cbEnableCustomKeypadMapping";
     this.cbEnableCustomKeypadMapping.Size     = new Size(180, 17);
     this.cbEnableCustomKeypadMapping.TabIndex = 25;
     this.cbEnableCustomKeypadMapping.Text     = "Enable Custom Keypad Mapping";
     this.cbEnableCustomKeypadMapping.UseVisualStyleBackColor = true;
     //
     // cbDisableRepeat
     //
     this.cbDisableRepeat.AutoSize = true;
     this.cbDisableRepeat.Location = new Point(25, 58);
     this.cbDisableRepeat.Name     = "cbDisableRepeat";
     this.cbDisableRepeat.Size     = new Size(120, 17);
     this.cbDisableRepeat.TabIndex = 6;
     this.cbDisableRepeat.Text     = "Disable Key Repeat";
     this.cbDisableRepeat.UseVisualStyleBackColor = true;
     this.cbDisableRepeat.Visible         = false;
     this.cbDisableRepeat.CheckedChanged += new EventHandler(this.cbDisableRepeat_CheckedChanged);
     //
     // cbEnableKeypad
     //
     this.cbEnableKeypad.AutoSize = true;
     this.cbEnableKeypad.Location = new Point(5, 19);
     this.cbEnableKeypad.Name     = "cbEnableKeypad";
     this.cbEnableKeypad.Size     = new Size(98, 17);
     this.cbEnableKeypad.TabIndex = 5;
     this.cbEnableKeypad.Text     = "Enable Keypad";
     this.cbEnableKeypad.UseVisualStyleBackColor = true;
     this.cbEnableKeypad.CheckedChanged         += new EventHandler(this.cbNoRemote_CheckedChanged);
     //
     // btnOK
     //
     this.btnOK.Anchor   = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
     this.btnOK.Location = new Point(286, 484);
     this.btnOK.Name     = "btnOK";
     this.btnOK.Size     = new Size(80, 23);
     this.btnOK.TabIndex = 108;
     this.btnOK.Text     = "&OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new EventHandler(this.btnOK_Click);
     //
     // btnReset
     //
     this.btnReset.Anchor   = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
     this.btnReset.Location = new Point(200, 484);
     this.btnReset.Name     = "btnReset";
     this.btnReset.Size     = new Size(80, 23);
     this.btnReset.TabIndex = 109;
     this.btnReset.Text     = "&RESET";
     this.btnReset.UseVisualStyleBackColor = true;
     this.btnReset.Click += new EventHandler(this.btnReset_Click);
     //
     // CFontz_AdvancedSetupForm
     //
     this.AutoScaleDimensions = new SizeF(6F, 13F);
     this.ClientSize          = new Size(378, 512);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.groupBox1);
     this.Name          = "CFontz_AdvancedSetupForm";
     this.StartPosition = FormStartPosition.CenterParent;
     this.Text          = "MiniDisplay - Setup - Advanced Settings";
     this.Load         += new EventHandler(this.CFontz_AdvancedSetupForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox7.ResumeLayout(false);
     this.groupBox7.PerformLayout();
     this.groupEQstyle.ResumeLayout(false);
     this.groupEQstyle.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBoxSettings         = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.checkBoxOutputInterlaced = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.buttonReset             = new MediaPortal.UserInterface.Controls.MPButton();
     this.buttonTvDefaults        = new MediaPortal.UserInterface.Controls.MPButton();
     this.labelNote               = new MediaPortal.UserInterface.Controls.MPLabel();
     this.labelSaturation         = new MediaPortal.UserInterface.Controls.MPLabel();
     this.labelHue                = new MediaPortal.UserInterface.Controls.MPLabel();
     this.labelContrast           = new MediaPortal.UserInterface.Controls.MPLabel();
     this.labelBrightness         = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBoxDeinterlace     = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.labelDeinterlaceMethod  = new MediaPortal.UserInterface.Controls.MPLabel();
     this.checkBoxForcedSubtitles = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxPlanar          = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.trackBarSaturation      = new System.Windows.Forms.TrackBar();
     this.trackBarHue             = new System.Windows.Forms.TrackBar();
     this.trackBarContrast        = new System.Windows.Forms.TrackBar();
     this.trackBarBrightness      = new System.Windows.Forms.TrackBar();
     this.groupBoxSettings.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarSaturation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarHue)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarContrast)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarBrightness)).BeginInit();
     this.SuspendLayout();
     //
     // groupBoxSettings
     //
     this.groupBoxSettings.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBoxSettings.Controls.Add(this.checkBoxOutputInterlaced);
     this.groupBoxSettings.Controls.Add(this.buttonReset);
     this.groupBoxSettings.Controls.Add(this.buttonTvDefaults);
     this.groupBoxSettings.Controls.Add(this.labelNote);
     this.groupBoxSettings.Controls.Add(this.labelSaturation);
     this.groupBoxSettings.Controls.Add(this.labelHue);
     this.groupBoxSettings.Controls.Add(this.labelContrast);
     this.groupBoxSettings.Controls.Add(this.labelBrightness);
     this.groupBoxSettings.Controls.Add(this.comboBoxDeinterlace);
     this.groupBoxSettings.Controls.Add(this.labelDeinterlaceMethod);
     this.groupBoxSettings.Controls.Add(this.checkBoxForcedSubtitles);
     this.groupBoxSettings.Controls.Add(this.checkBoxPlanar);
     this.groupBoxSettings.Controls.Add(this.trackBarSaturation);
     this.groupBoxSettings.Controls.Add(this.trackBarHue);
     this.groupBoxSettings.Controls.Add(this.trackBarContrast);
     this.groupBoxSettings.Controls.Add(this.trackBarBrightness);
     this.groupBoxSettings.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBoxSettings.Location  = new System.Drawing.Point(6, 0);
     this.groupBoxSettings.Name      = "groupBoxSettings";
     this.groupBoxSettings.Size      = new System.Drawing.Size(462, 405);
     this.groupBoxSettings.TabIndex  = 0;
     this.groupBoxSettings.TabStop   = false;
     this.groupBoxSettings.Text      = "Settings";
     //
     // checkBoxOutputInterlaced
     //
     this.checkBoxOutputInterlaced.AutoSize  = true;
     this.checkBoxOutputInterlaced.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxOutputInterlaced.Location  = new System.Drawing.Point(16, 70);
     this.checkBoxOutputInterlaced.Name      = "checkBoxOutputInterlaced";
     this.checkBoxOutputInterlaced.Size      = new System.Drawing.Size(157, 17);
     this.checkBoxOutputInterlaced.TabIndex  = 15;
     this.checkBoxOutputInterlaced.Text      = "Set interlaced flag for output";
     this.checkBoxOutputInterlaced.UseVisualStyleBackColor = true;
     this.checkBoxOutputInterlaced.CheckedChanged         +=
         new System.EventHandler(this.checkBoxOutputInterlaced_CheckedChanged);
     //
     // buttonReset
     //
     this.buttonReset.Location = new System.Drawing.Point(272, 322);
     this.buttonReset.Name     = "buttonReset";
     this.buttonReset.Size     = new System.Drawing.Size(75, 23);
     this.buttonReset.TabIndex = 14;
     this.buttonReset.Text     = "Reset";
     this.buttonReset.UseVisualStyleBackColor = true;
     this.buttonReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // buttonTvDefaults
     //
     this.buttonTvDefaults.Location = new System.Drawing.Point(165, 322);
     this.buttonTvDefaults.Name     = "buttonTvDefaults";
     this.buttonTvDefaults.Size     = new System.Drawing.Size(75, 23);
     this.buttonTvDefaults.TabIndex = 13;
     this.buttonTvDefaults.Text     = "TV defaults";
     this.buttonTvDefaults.UseVisualStyleBackColor = true;
     this.buttonTvDefaults.Click += new System.EventHandler(this.buttonTvDefaults_Click);
     //
     // labelNote
     //
     this.labelNote.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.labelNote.Location = new System.Drawing.Point(13, 362);
     this.labelNote.Name     = "labelNote";
     this.labelNote.Size     = new System.Drawing.Size(430, 40);
     this.labelNote.TabIndex = 12;
     this.labelNote.Text     = "Note: Using a non-planar output format, bob deinterlacer, or adjusting color prop" +
                               "erties may degrade performance. \"Auto\" deinterlacer will switch to \"Blend\" if ne" +
                               "cessary.";
     //
     // labelSaturation
     //
     this.labelSaturation.Location = new System.Drawing.Point(13, 272);
     this.labelSaturation.Name     = "labelSaturation";
     this.labelSaturation.Size     = new System.Drawing.Size(64, 16);
     this.labelSaturation.TabIndex = 8;
     this.labelSaturation.Text     = "Saturation:";
     //
     // labelHue
     //
     this.labelHue.Location = new System.Drawing.Point(13, 232);
     this.labelHue.Name     = "labelHue";
     this.labelHue.Size     = new System.Drawing.Size(32, 16);
     this.labelHue.TabIndex = 6;
     this.labelHue.Text     = "Hue:";
     //
     // labelContrast
     //
     this.labelContrast.Location = new System.Drawing.Point(13, 192);
     this.labelContrast.Name     = "labelContrast";
     this.labelContrast.Size     = new System.Drawing.Size(56, 16);
     this.labelContrast.TabIndex = 4;
     this.labelContrast.Text     = "Contrast:";
     //
     // labelBrightness
     //
     this.labelBrightness.Location = new System.Drawing.Point(13, 152);
     this.labelBrightness.Name     = "labelBrightness";
     this.labelBrightness.Size     = new System.Drawing.Size(64, 16);
     this.labelBrightness.TabIndex = 2;
     this.labelBrightness.Text     = "Brightness:";
     //
     // comboBoxDeinterlace
     //
     this.comboBoxDeinterlace.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxDeinterlace.BorderColor   = System.Drawing.Color.Empty;
     this.comboBoxDeinterlace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxDeinterlace.Items.AddRange(new object[]
     {
         "Auto",
         "Weave",
         "Blend",
         "Bob",
         "Field Shift"
     });
     this.comboBoxDeinterlace.Location = new System.Drawing.Point(131, 103);
     this.comboBoxDeinterlace.Name     = "comboBoxDeinterlace";
     this.comboBoxDeinterlace.Size     = new System.Drawing.Size(312, 21);
     this.comboBoxDeinterlace.TabIndex = 11;
     //
     // labelDeinterlaceMethod
     //
     this.labelDeinterlaceMethod.Location = new System.Drawing.Point(13, 106);
     this.labelDeinterlaceMethod.Name     = "labelDeinterlaceMethod";
     this.labelDeinterlaceMethod.Size     = new System.Drawing.Size(112, 16);
     this.labelDeinterlaceMethod.TabIndex = 10;
     this.labelDeinterlaceMethod.Text     = "Deinterlace method:";
     //
     // checkBoxForcedSubtitles
     //
     this.checkBoxForcedSubtitles.AutoSize   = true;
     this.checkBoxForcedSubtitles.Checked    = true;
     this.checkBoxForcedSubtitles.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxForcedSubtitles.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxForcedSubtitles.Location   = new System.Drawing.Point(16, 47);
     this.checkBoxForcedSubtitles.Name       = "checkBoxForcedSubtitles";
     this.checkBoxForcedSubtitles.Size       = new System.Drawing.Size(166, 17);
     this.checkBoxForcedSubtitles.TabIndex   = 1;
     this.checkBoxForcedSubtitles.Text       = "Always display forced subtitles";
     this.checkBoxForcedSubtitles.UseVisualStyleBackColor = true;
     //
     // checkBoxPlanar
     //
     this.checkBoxPlanar.AutoSize   = true;
     this.checkBoxPlanar.Checked    = true;
     this.checkBoxPlanar.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxPlanar.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxPlanar.Location   = new System.Drawing.Point(16, 24);
     this.checkBoxPlanar.Name       = "checkBoxPlanar";
     this.checkBoxPlanar.Size       = new System.Drawing.Size(266, 17);
     this.checkBoxPlanar.TabIndex   = 0;
     this.checkBoxPlanar.Text       = "Enable planar YUV media types (YV12, I420, IYUV)";
     this.checkBoxPlanar.UseVisualStyleBackColor = true;
     //
     // trackBarSaturation
     //
     this.trackBarSaturation.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarSaturation.LargeChange   = 10;
     this.trackBarSaturation.Location      = new System.Drawing.Point(131, 268);
     this.trackBarSaturation.Maximum       = 200;
     this.trackBarSaturation.Name          = "trackBarSaturation";
     this.trackBarSaturation.Size          = new System.Drawing.Size(320, 45);
     this.trackBarSaturation.TabIndex      = 9;
     this.trackBarSaturation.TickFrequency = 25;
     this.trackBarSaturation.Value         = 100;
     //
     // trackBarHue
     //
     this.trackBarHue.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarHue.LargeChange   = 15;
     this.trackBarHue.Location      = new System.Drawing.Point(131, 228);
     this.trackBarHue.Maximum       = 360;
     this.trackBarHue.Name          = "trackBarHue";
     this.trackBarHue.Size          = new System.Drawing.Size(320, 45);
     this.trackBarHue.TabIndex      = 7;
     this.trackBarHue.TickFrequency = 45;
     this.trackBarHue.Value         = 180;
     //
     // trackBarContrast
     //
     this.trackBarContrast.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarContrast.LargeChange   = 10;
     this.trackBarContrast.Location      = new System.Drawing.Point(131, 188);
     this.trackBarContrast.Maximum       = 200;
     this.trackBarContrast.Name          = "trackBarContrast";
     this.trackBarContrast.Size          = new System.Drawing.Size(320, 45);
     this.trackBarContrast.TabIndex      = 5;
     this.trackBarContrast.TickFrequency = 25;
     this.trackBarContrast.Value         = 100;
     //
     // trackBarBrightness
     //
     this.trackBarBrightness.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarBrightness.LargeChange   = 16;
     this.trackBarBrightness.Location      = new System.Drawing.Point(131, 148);
     this.trackBarBrightness.Maximum       = 256;
     this.trackBarBrightness.Name          = "trackBarBrightness";
     this.trackBarBrightness.Size          = new System.Drawing.Size(320, 45);
     this.trackBarBrightness.TabIndex      = 3;
     this.trackBarBrightness.TickFrequency = 32;
     this.trackBarBrightness.Value         = 128;
     //
     // FiltersMPEG2DecVideo
     //
     this.Controls.Add(this.groupBoxSettings);
     this.Name = "FiltersMPEG2DecVideo";
     this.Size = new System.Drawing.Size(472, 408);
     this.groupBoxSettings.ResumeLayout(false);
     this.groupBoxSettings.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarSaturation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarHue)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarContrast)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarBrightness)).EndInit();
     this.ResumeLayout(false);
 }
Example #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.folderBrowserDialog   = new System.Windows.Forms.FolderBrowserDialog();
     this.fontDialog            = new System.Windows.Forms.FontDialog();
     this.tabControl1           = new MediaPortal.UserInterface.Controls.MPTabControl();
     this.tabPage1              = new MediaPortal.UserInterface.Controls.MPTabPage();
     this.groupBox1             = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.ParentalControlUpDown = new System.Windows.Forms.NumericUpDown();
     this.label2                          = new System.Windows.Forms.Label();
     this.label1                          = new System.Windows.Forms.Label();
     this.RegionCodeComboBox              = new System.Windows.Forms.ComboBox();
     this.pictureBoxRegions               = new System.Windows.Forms.PictureBox();
     this.labelPlayAll                    = new MediaPortal.UserInterface.Controls.MPLabel();
     this.useInternalBDPlayer             = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.mpTabPage1                      = new MediaPortal.UserInterface.Controls.MPTabPage();
     this.mpGroupBox4                     = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.preferredAudioTypeComboBox      = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpLabel1                        = new MediaPortal.UserInterface.Controls.MPLabel();
     this.SubsEnabled                     = new System.Windows.Forms.CheckBox();
     this.mpLabel7                        = new MediaPortal.UserInterface.Controls.MPLabel();
     this.defaultAudioLanguageComboBox    = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpLabel8                        = new MediaPortal.UserInterface.Controls.MPLabel();
     this.defaultSubtitleLanguageComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ParentalControlUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRegions)).BeginInit();
     this.mpTabPage1.SuspendLayout();
     this.mpGroupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // fontDialog
     //
     this.fontDialog.Color = System.Drawing.SystemColors.ControlText;
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.mpTabPage1);
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(472, 408);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Controls.Add(this.useInternalBDPlayer);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(464, 382);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "General";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.ParentalControlUpDown);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.RegionCodeComboBox);
     this.groupBox1.Controls.Add(this.pictureBoxRegions);
     this.groupBox1.Controls.Add(this.labelPlayAll);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(16, 16);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(432, 298);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Settings";
     //
     // ParentalControlUpDown
     //
     this.ParentalControlUpDown.Location = new System.Drawing.Point(249, 247);
     this.ParentalControlUpDown.Maximum  = new decimal(new int[] {
         99,
         0,
         0,
         0
     });
     this.ParentalControlUpDown.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.ParentalControlUpDown.Name      = "ParentalControlUpDown";
     this.ParentalControlUpDown.Size      = new System.Drawing.Size(40, 20);
     this.ParentalControlUpDown.TabIndex  = 10;
     this.ParentalControlUpDown.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ParentalControlUpDown.Value     = new decimal(new int[] {
         99,
         0,
         0,
         0
     });
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(246, 227);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(125, 13);
     this.label2.TabIndex = 9;
     this.label2.Text     = "Parental control age limit:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(25, 227);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(101, 13);
     this.label1.TabIndex = 8;
     this.label1.Text     = "Blu-ray region code:";
     //
     // RegionCodeComboBox
     //
     this.RegionCodeComboBox.FormattingEnabled = true;
     this.RegionCodeComboBox.Location          = new System.Drawing.Point(28, 246);
     this.RegionCodeComboBox.Name     = "RegionCodeComboBox";
     this.RegionCodeComboBox.Size     = new System.Drawing.Size(36, 21);
     this.RegionCodeComboBox.TabIndex = 7;
     //
     // pictureBoxRegions
     //
     this.pictureBoxRegions.Image    = global::MediaPortal.Configuration.Properties.Resources.blu_ray_regions;
     this.pictureBoxRegions.Location = new System.Drawing.Point(28, 26);
     this.pictureBoxRegions.Name     = "pictureBoxRegions";
     this.pictureBoxRegions.Size     = new System.Drawing.Size(376, 185);
     this.pictureBoxRegions.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBoxRegions.TabIndex = 6;
     this.pictureBoxRegions.TabStop  = false;
     //
     // labelPlayAll
     //
     this.labelPlayAll.Location = new System.Drawing.Point(0, 0);
     this.labelPlayAll.Name     = "labelPlayAll";
     this.labelPlayAll.Size     = new System.Drawing.Size(100, 23);
     this.labelPlayAll.TabIndex = 0;
     //
     // useInternalBDPlayer
     //
     this.useInternalBDPlayer.AutoSize  = true;
     this.useInternalBDPlayer.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.useInternalBDPlayer.Location  = new System.Drawing.Point(19, 332);
     this.useInternalBDPlayer.Name      = "useInternalBDPlayer";
     this.useInternalBDPlayer.Size      = new System.Drawing.Size(180, 17);
     this.useInternalBDPlayer.TabIndex  = 6;
     this.useInternalBDPlayer.Text      = "Use internal Blu-ray menu player";
     this.useInternalBDPlayer.UseVisualStyleBackColor = true;
     //
     // mpTabPage1
     //
     this.mpTabPage1.Controls.Add(this.mpGroupBox4);
     this.mpTabPage1.Location = new System.Drawing.Point(4, 22);
     this.mpTabPage1.Name     = "mpTabPage1";
     this.mpTabPage1.Size     = new System.Drawing.Size(464, 382);
     this.mpTabPage1.TabIndex = 9;
     this.mpTabPage1.Text     = "Audio & subtitles";
     this.mpTabPage1.UseVisualStyleBackColor = true;
     //
     // mpGroupBox4
     //
     this.mpGroupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.mpGroupBox4.Controls.Add(this.preferredAudioTypeComboBox);
     this.mpGroupBox4.Controls.Add(this.mpLabel1);
     this.mpGroupBox4.Controls.Add(this.SubsEnabled);
     this.mpGroupBox4.Controls.Add(this.mpLabel7);
     this.mpGroupBox4.Controls.Add(this.defaultAudioLanguageComboBox);
     this.mpGroupBox4.Controls.Add(this.mpLabel8);
     this.mpGroupBox4.Controls.Add(this.defaultSubtitleLanguageComboBox);
     this.mpGroupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox4.Location  = new System.Drawing.Point(14, 12);
     this.mpGroupBox4.Name      = "mpGroupBox4";
     this.mpGroupBox4.Size      = new System.Drawing.Size(432, 171);
     this.mpGroupBox4.TabIndex  = 10;
     this.mpGroupBox4.TabStop   = false;
     this.mpGroupBox4.Text      = "Default Language";
     //
     // preferredAudioTypeComboBox
     //
     this.preferredAudioTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.preferredAudioTypeComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.preferredAudioTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.preferredAudioTypeComboBox.Location      = new System.Drawing.Point(136, 78);
     this.preferredAudioTypeComboBox.Name          = "preferredAudioTypeComboBox";
     this.preferredAudioTypeComboBox.Size          = new System.Drawing.Size(280, 21);
     this.preferredAudioTypeComboBox.Sorted        = true;
     this.preferredAudioTypeComboBox.TabIndex      = 10;
     //
     // mpLabel1
     //
     this.mpLabel1.Location = new System.Drawing.Point(13, 81);
     this.mpLabel1.Name     = "mpLabel1";
     this.mpLabel1.Size     = new System.Drawing.Size(96, 16);
     this.mpLabel1.TabIndex = 9;
     this.mpLabel1.Text     = "Audio type:";
     //
     // SubsEnabled
     //
     this.SubsEnabled.AutoSize = true;
     this.SubsEnabled.Location = new System.Drawing.Point(16, 148);
     this.SubsEnabled.Name     = "SubsEnabled";
     this.SubsEnabled.Size     = new System.Drawing.Size(100, 17);
     this.SubsEnabled.TabIndex = 8;
     this.SubsEnabled.Text     = "Enable subtitles";
     this.SubsEnabled.UseVisualStyleBackColor = true;
     //
     // mpLabel7
     //
     this.mpLabel7.Location = new System.Drawing.Point(13, 56);
     this.mpLabel7.Name     = "mpLabel7";
     this.mpLabel7.Size     = new System.Drawing.Size(96, 16);
     this.mpLabel7.TabIndex = 6;
     this.mpLabel7.Text     = "Audio:";
     //
     // defaultAudioLanguageComboBox
     //
     this.defaultAudioLanguageComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.defaultAudioLanguageComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.defaultAudioLanguageComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.defaultAudioLanguageComboBox.Location      = new System.Drawing.Point(136, 51);
     this.defaultAudioLanguageComboBox.Name          = "defaultAudioLanguageComboBox";
     this.defaultAudioLanguageComboBox.Size          = new System.Drawing.Size(280, 21);
     this.defaultAudioLanguageComboBox.Sorted        = true;
     this.defaultAudioLanguageComboBox.TabIndex      = 7;
     //
     // mpLabel8
     //
     this.mpLabel8.Location = new System.Drawing.Point(13, 27);
     this.mpLabel8.Name     = "mpLabel8";
     this.mpLabel8.Size     = new System.Drawing.Size(96, 16);
     this.mpLabel8.TabIndex = 6;
     this.mpLabel8.Text     = "Subtitles:";
     //
     // defaultSubtitleLanguageComboBox
     //
     this.defaultSubtitleLanguageComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.defaultSubtitleLanguageComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.defaultSubtitleLanguageComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.defaultSubtitleLanguageComboBox.Location      = new System.Drawing.Point(136, 24);
     this.defaultSubtitleLanguageComboBox.Name          = "defaultSubtitleLanguageComboBox";
     this.defaultSubtitleLanguageComboBox.Size          = new System.Drawing.Size(280, 21);
     this.defaultSubtitleLanguageComboBox.Sorted        = true;
     this.defaultSubtitleLanguageComboBox.TabIndex      = 7;
     //
     // BD
     //
     this.Controls.Add(this.tabControl1);
     this.Name = "BD";
     this.Size = new System.Drawing.Size(472, 408);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ParentalControlUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRegions)).EndInit();
     this.mpTabPage1.ResumeLayout(false);
     this.mpGroupBox4.ResumeLayout(false);
     this.mpGroupBox4.PerformLayout();
     this.ResumeLayout(false);
 }
Example #12
0
 private void InitializeComponent()
 {
     this.btnAdvanced        = new MediaPortal.UserInterface.Controls.MPButton();
     this.cmbPort            = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label1             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.groupBox1          = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.btnTest            = new MediaPortal.UserInterface.Controls.MPButton();
     this.groupShutdown      = new System.Windows.Forms.GroupBox();
     this.label11            = new System.Windows.Forms.Label();
     this.label6             = new System.Windows.Forms.Label();
     this.mpShutdown2        = new System.Windows.Forms.TextBox();
     this.mpShutdown1        = new System.Windows.Forms.TextBox();
     this.cbContrast         = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.cbDisplayOff       = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.lblBrightness      = new MediaPortal.UserInterface.Controls.MPLabel();
     this.tbBrightness       = new System.Windows.Forms.TrackBar();
     this.btnTestDisplay     = new MediaPortal.UserInterface.Controls.MPButton();
     this.lblContrast        = new MediaPortal.UserInterface.Controls.MPLabel();
     this.tbContrast         = new System.Windows.Forms.TrackBar();
     this.txtScrollDelay     = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.gbGraphMode        = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.txtPixelsToScroll  = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.mpLabel5           = new MediaPortal.UserInterface.Controls.MPLabel();
     this.ckForceGraphicText = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.txtFontSize        = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.mpLabel2           = new MediaPortal.UserInterface.Controls.MPLabel();
     this.txtFont            = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpLabel1           = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label8             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.txtTimG            = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.txtRowsG           = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.txtColsG           = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label9             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label10            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.mpLabel3           = new MediaPortal.UserInterface.Controls.MPLabel();
     this.gbTextMode         = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.mpPrefixChar       = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.mpLabel6           = new MediaPortal.UserInterface.Controls.MPLabel();
     this.txtCharsToScroll   = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.mpLabel4           = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label2             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.txtTim             = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.txtRows            = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.txtCols            = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label4             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label3             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label7             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.cmbType            = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.cbLight            = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.cbPropertyBrowser  = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.btnOK = new MediaPortal.UserInterface.Controls.MPButton();
     this.cbExtensiveLogging = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.mpDisableGUISetup  = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.btnCancel          = new MediaPortal.UserInterface.Controls.MPButton();
     this.groupBox1.SuspendLayout();
     this.groupShutdown.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbBrightness)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbContrast)).BeginInit();
     this.gbGraphMode.SuspendLayout();
     this.gbTextMode.SuspendLayout();
     this.SuspendLayout();
     //
     // btnAdvanced
     //
     this.btnAdvanced.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdvanced.Location = new System.Drawing.Point(271, 41);
     this.btnAdvanced.Name     = "btnAdvanced";
     this.btnAdvanced.Size     = new System.Drawing.Size(88, 23);
     this.btnAdvanced.TabIndex = 70;
     this.btnAdvanced.Text     = "&Advanced";
     this.btnAdvanced.UseVisualStyleBackColor = true;
     this.btnAdvanced.Click += new System.EventHandler(this.btnAdvanced_Click);
     //
     // cmbPort
     //
     this.cmbPort.BorderColor   = System.Drawing.Color.Empty;
     this.cmbPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbPort.Items.AddRange(new object[]
     {
         "LPT1",
         "LPT2",
         "LPT3",
         "LPT4",
         "USB",
         "COM1",
         "COM2",
         "COM3",
         "COM4",
         "COM5",
         "COM6",
         "COM7",
         "COM8",
         "NONE",
         "localhost"
     });
     this.cmbPort.Location = new System.Drawing.Point(40, 42);
     this.cmbPort.Name     = "cmbPort";
     this.cmbPort.Size     = new System.Drawing.Size(64, 21);
     this.cmbPort.TabIndex = 20;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 42);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(32, 23);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "Port";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // groupBox1
     //
     this.groupBox1.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.btnTest);
     this.groupBox1.Controls.Add(this.groupShutdown);
     this.groupBox1.Controls.Add(this.cbContrast);
     this.groupBox1.Controls.Add(this.cbDisplayOff);
     this.groupBox1.Controls.Add(this.lblBrightness);
     this.groupBox1.Controls.Add(this.tbBrightness);
     this.groupBox1.Controls.Add(this.btnTestDisplay);
     this.groupBox1.Controls.Add(this.lblContrast);
     this.groupBox1.Controls.Add(this.tbContrast);
     this.groupBox1.Controls.Add(this.txtScrollDelay);
     this.groupBox1.Controls.Add(this.gbGraphMode);
     this.groupBox1.Controls.Add(this.mpLabel3);
     this.groupBox1.Controls.Add(this.gbTextMode);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.cmbType);
     this.groupBox1.Controls.Add(this.cbLight);
     this.groupBox1.Controls.Add(this.btnAdvanced);
     this.groupBox1.Controls.Add(this.cmbPort);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(8, 8);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(373, 402);
     this.groupBox1.TabIndex  = 3;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Configuration";
     //
     // btnTest
     //
     this.btnTest.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnTest.Location = new System.Drawing.Point(271, 348);
     this.btnTest.Name     = "btnTest";
     this.btnTest.Size     = new System.Drawing.Size(92, 48);
     this.btnTest.TabIndex = 83;
     this.btnTest.Text     = "Configuration Editor";
     this.btnTest.UseVisualStyleBackColor = true;
     this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
     //
     // groupShutdown
     //
     this.groupShutdown.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.groupShutdown.Controls.Add(this.label11);
     this.groupShutdown.Controls.Add(this.label6);
     this.groupShutdown.Controls.Add(this.mpShutdown2);
     this.groupShutdown.Controls.Add(this.mpShutdown1);
     this.groupShutdown.Location = new System.Drawing.Point(8, 331);
     this.groupShutdown.Name     = "groupShutdown";
     this.groupShutdown.Size     = new System.Drawing.Size(191, 65);
     this.groupShutdown.TabIndex = 76;
     this.groupShutdown.TabStop  = false;
     this.groupShutdown.Text     = " ShutDown Message ";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(6, 43);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(36, 13);
     this.label11.TabIndex = 79;
     this.label11.Text     = "Line 2";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(6, 20);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(36, 13);
     this.label6.TabIndex = 78;
     this.label6.Text     = "Line 1";
     //
     // mpShutdown2
     //
     this.mpShutdown2.Location = new System.Drawing.Point(46, 40);
     this.mpShutdown2.Name     = "mpShutdown2";
     this.mpShutdown2.Size     = new System.Drawing.Size(139, 20);
     this.mpShutdown2.TabIndex = 77;
     //
     // mpShutdown1
     //
     this.mpShutdown1.Location = new System.Drawing.Point(46, 17);
     this.mpShutdown1.Name     = "mpShutdown1";
     this.mpShutdown1.Size     = new System.Drawing.Size(139, 20);
     this.mpShutdown1.TabIndex = 76;
     //
     // cbContrast
     //
     this.cbContrast.AutoSize   = true;
     this.cbContrast.Checked    = true;
     this.cbContrast.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbContrast.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.cbContrast.Location   = new System.Drawing.Point(190, 265);
     this.cbContrast.Name       = "cbContrast";
     this.cbContrast.Size       = new System.Drawing.Size(98, 17);
     this.cbContrast.TabIndex   = 81;
     this.cbContrast.Text       = "Control contrast";
     this.cbContrast.UseVisualStyleBackColor = true;
     this.cbContrast.Visible = false;
     //
     // cbDisplayOff
     //
     this.cbDisplayOff.AutoSize  = true;
     this.cbDisplayOff.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbDisplayOff.Location  = new System.Drawing.Point(8, 234);
     this.cbDisplayOff.Name      = "cbDisplayOff";
     this.cbDisplayOff.Size      = new System.Drawing.Size(138, 17);
     this.cbDisplayOff.TabIndex  = 80;
     this.cbDisplayOff.Text      = "Turn OFF display on exit";
     this.cbDisplayOff.UseVisualStyleBackColor = true;
     this.cbDisplayOff.CheckedChanged         += new System.EventHandler(this.cbDisplayOff_CheckedChanged);
     //
     // lblBrightness
     //
     this.lblBrightness.Location = new System.Drawing.Point(16, 283);
     this.lblBrightness.Name     = "lblBrightness";
     this.lblBrightness.Size     = new System.Drawing.Size(96, 16);
     this.lblBrightness.TabIndex = 79;
     this.lblBrightness.Text     = "Brightness: ";
     //
     // tbBrightness
     //
     this.tbBrightness.Location      = new System.Drawing.Point(15, 299);
     this.tbBrightness.Maximum       = 255;
     this.tbBrightness.Name          = "tbBrightness";
     this.tbBrightness.Size          = new System.Drawing.Size(160, 45);
     this.tbBrightness.TabIndex      = 78;
     this.tbBrightness.TickFrequency = 8;
     this.tbBrightness.TickStyle     = System.Windows.Forms.TickStyle.None;
     this.tbBrightness.Value         = 127;
     this.tbBrightness.ValueChanged += new System.EventHandler(this.tbBrightness_ValueChanged);
     //
     // btnTestDisplay
     //
     this.btnTestDisplay.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnTestDisplay.Location = new System.Drawing.Point(179, 41);
     this.btnTestDisplay.Name     = "btnTestDisplay";
     this.btnTestDisplay.Size     = new System.Drawing.Size(88, 23);
     this.btnTestDisplay.TabIndex = 77;
     this.btnTestDisplay.Text     = "&Test Display";
     this.btnTestDisplay.UseVisualStyleBackColor = true;
     this.btnTestDisplay.Click += new System.EventHandler(this.btnTestDisplay_Click);
     //
     // lblContrast
     //
     this.lblContrast.Location = new System.Drawing.Point(187, 283);
     this.lblContrast.Name     = "lblContrast";
     this.lblContrast.Size     = new System.Drawing.Size(96, 16);
     this.lblContrast.TabIndex = 74;
     this.lblContrast.Text     = "Contrast:";
     //
     // tbContrast
     //
     this.tbContrast.Location      = new System.Drawing.Point(186, 299);
     this.tbContrast.Maximum       = 255;
     this.tbContrast.Name          = "tbContrast";
     this.tbContrast.Size          = new System.Drawing.Size(160, 45);
     this.tbContrast.TabIndex      = 73;
     this.tbContrast.TickFrequency = 8;
     this.tbContrast.TickStyle     = System.Windows.Forms.TickStyle.None;
     this.tbContrast.Value         = 127;
     this.tbContrast.ValueChanged += new System.EventHandler(this.tbContrast_ValueChanged);
     //
     // txtScrollDelay
     //
     this.txtScrollDelay.BorderColor = System.Drawing.Color.Empty;
     this.txtScrollDelay.Location    = new System.Drawing.Point(96, 209);
     this.txtScrollDelay.Name        = "txtScrollDelay";
     this.txtScrollDelay.Size        = new System.Drawing.Size(48, 20);
     this.txtScrollDelay.TabIndex    = 52;
     this.txtScrollDelay.Text        = "300";
     //
     // gbGraphMode
     //
     this.gbGraphMode.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.gbGraphMode.Controls.Add(this.txtPixelsToScroll);
     this.gbGraphMode.Controls.Add(this.mpLabel5);
     this.gbGraphMode.Controls.Add(this.ckForceGraphicText);
     this.gbGraphMode.Controls.Add(this.txtFontSize);
     this.gbGraphMode.Controls.Add(this.mpLabel2);
     this.gbGraphMode.Controls.Add(this.txtFont);
     this.gbGraphMode.Controls.Add(this.mpLabel1);
     this.gbGraphMode.Controls.Add(this.label8);
     this.gbGraphMode.Controls.Add(this.txtTimG);
     this.gbGraphMode.Controls.Add(this.txtRowsG);
     this.gbGraphMode.Controls.Add(this.txtColsG);
     this.gbGraphMode.Controls.Add(this.label9);
     this.gbGraphMode.Controls.Add(this.label10);
     this.gbGraphMode.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.gbGraphMode.Location  = new System.Drawing.Point(168, 68);
     this.gbGraphMode.Name      = "gbGraphMode";
     this.gbGraphMode.Size      = new System.Drawing.Size(191, 188);
     this.gbGraphMode.TabIndex  = 72;
     this.gbGraphMode.TabStop   = false;
     this.gbGraphMode.Text      = "GraphMode";
     //
     // txtPixelsToScroll
     //
     this.txtPixelsToScroll.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPixelsToScroll.BorderColor = System.Drawing.Color.Empty;
     this.txtPixelsToScroll.Location    = new System.Drawing.Point(86, 135);
     this.txtPixelsToScroll.Name        = "txtPixelsToScroll";
     this.txtPixelsToScroll.Size        = new System.Drawing.Size(48, 20);
     this.txtPixelsToScroll.TabIndex    = 57;
     this.txtPixelsToScroll.Text        = "10";
     //
     // mpLabel5
     //
     this.mpLabel5.Location  = new System.Drawing.Point(8, 133);
     this.mpLabel5.Name      = "mpLabel5";
     this.mpLabel5.Size      = new System.Drawing.Size(80, 23);
     this.mpLabel5.TabIndex  = 56;
     this.mpLabel5.Text      = "Pixels to scroll";
     this.mpLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ckForceGraphicText
     //
     this.ckForceGraphicText.AutoSize  = true;
     this.ckForceGraphicText.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.ckForceGraphicText.Location  = new System.Drawing.Point(11, 161);
     this.ckForceGraphicText.Name      = "ckForceGraphicText";
     this.ckForceGraphicText.Size      = new System.Drawing.Size(123, 17);
     this.ckForceGraphicText.TabIndex  = 55;
     this.ckForceGraphicText.Text      = "Force Graphical Text";
     this.ckForceGraphicText.UseVisualStyleBackColor = true;
     //
     // txtFontSize
     //
     this.txtFontSize.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.txtFontSize.BorderColor = System.Drawing.Color.Empty;
     this.txtFontSize.Location    = new System.Drawing.Point(86, 110);
     this.txtFontSize.Name        = "txtFontSize";
     this.txtFontSize.Size        = new System.Drawing.Size(48, 20);
     this.txtFontSize.TabIndex    = 54;
     this.txtFontSize.Text        = "10";
     //
     // mpLabel2
     //
     this.mpLabel2.Location  = new System.Drawing.Point(8, 110);
     this.mpLabel2.Name      = "mpLabel2";
     this.mpLabel2.Size      = new System.Drawing.Size(64, 23);
     this.mpLabel2.TabIndex  = 53;
     this.mpLabel2.Text      = "Font Size";
     this.mpLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtFont
     //
     this.txtFont.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.txtFont.BorderColor = System.Drawing.Color.Empty;
     this.txtFont.Location    = new System.Drawing.Point(86, 87);
     this.txtFont.Name        = "txtFont";
     this.txtFont.Size        = new System.Drawing.Size(99, 21);
     this.txtFont.TabIndex    = 52;
     this.txtFont.Text        = "Arial Black";
     //
     // mpLabel1
     //
     this.mpLabel1.Location  = new System.Drawing.Point(8, 87);
     this.mpLabel1.Name      = "mpLabel1";
     this.mpLabel1.Size      = new System.Drawing.Size(80, 23);
     this.mpLabel1.TabIndex  = 51;
     this.mpLabel1.Text      = "Font";
     this.mpLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(8, 16);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(64, 23);
     this.label8.TabIndex  = 3;
     this.label8.Text      = "Columns";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtTimG
     //
     this.txtTimG.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.txtTimG.BorderColor = System.Drawing.Color.Empty;
     this.txtTimG.Location    = new System.Drawing.Point(86, 64);
     this.txtTimG.Name        = "txtTimG";
     this.txtTimG.Size        = new System.Drawing.Size(48, 20);
     this.txtTimG.TabIndex    = 50;
     this.txtTimG.Text        = "1";
     //
     // txtRowsG
     //
     this.txtRowsG.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRowsG.BorderColor = System.Drawing.Color.Empty;
     this.txtRowsG.Location    = new System.Drawing.Point(86, 40);
     this.txtRowsG.Name        = "txtRowsG";
     this.txtRowsG.Size        = new System.Drawing.Size(48, 20);
     this.txtRowsG.TabIndex    = 40;
     this.txtRowsG.Text        = "240";
     //
     // txtColsG
     //
     this.txtColsG.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.txtColsG.BorderColor = System.Drawing.Color.Empty;
     this.txtColsG.Location    = new System.Drawing.Point(86, 16);
     this.txtColsG.Name        = "txtColsG";
     this.txtColsG.Size        = new System.Drawing.Size(48, 20);
     this.txtColsG.TabIndex    = 30;
     this.txtColsG.Text        = "320";
     //
     // label9
     //
     this.label9.Location  = new System.Drawing.Point(8, 64);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(80, 23);
     this.label9.TabIndex  = 5;
     this.label9.Text      = "Comm. Delay";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(8, 40);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(72, 23);
     this.label10.TabIndex  = 4;
     this.label10.Text      = "Rows";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mpLabel3
     //
     this.mpLabel3.Location  = new System.Drawing.Point(5, 207);
     this.mpLabel3.Name      = "mpLabel3";
     this.mpLabel3.Size      = new System.Drawing.Size(80, 23);
     this.mpLabel3.TabIndex  = 51;
     this.mpLabel3.Text      = "Scroll Delay";
     this.mpLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // gbTextMode
     //
     this.gbTextMode.Controls.Add(this.mpPrefixChar);
     this.gbTextMode.Controls.Add(this.mpLabel6);
     this.gbTextMode.Controls.Add(this.txtCharsToScroll);
     this.gbTextMode.Controls.Add(this.mpLabel4);
     this.gbTextMode.Controls.Add(this.label2);
     this.gbTextMode.Controls.Add(this.txtTim);
     this.gbTextMode.Controls.Add(this.txtRows);
     this.gbTextMode.Controls.Add(this.txtCols);
     this.gbTextMode.Controls.Add(this.label4);
     this.gbTextMode.Controls.Add(this.label3);
     this.gbTextMode.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.gbTextMode.Location  = new System.Drawing.Point(8, 68);
     this.gbTextMode.Name      = "gbTextMode";
     this.gbTextMode.Size      = new System.Drawing.Size(152, 136);
     this.gbTextMode.TabIndex  = 71;
     this.gbTextMode.TabStop   = false;
     this.gbTextMode.Text      = "TextMode";
     //
     // mpPrefixChar
     //
     this.mpPrefixChar.BorderColor = System.Drawing.Color.Empty;
     this.mpPrefixChar.Location    = new System.Drawing.Point(88, 112);
     this.mpPrefixChar.Name        = "mpPrefixChar";
     this.mpPrefixChar.Size        = new System.Drawing.Size(48, 20);
     this.mpPrefixChar.TabIndex    = 56;
     this.mpPrefixChar.Visible     = false;
     //
     // mpLabel6
     //
     this.mpLabel6.Location  = new System.Drawing.Point(8, 112);
     this.mpLabel6.Name      = "mpLabel6";
     this.mpLabel6.Size      = new System.Drawing.Size(88, 23);
     this.mpLabel6.TabIndex  = 55;
     this.mpLabel6.Text      = "Line Prefix     0x";
     this.mpLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.mpLabel6.Visible   = false;
     //
     // txtCharsToScroll
     //
     this.txtCharsToScroll.BorderColor = System.Drawing.Color.Empty;
     this.txtCharsToScroll.Location    = new System.Drawing.Point(88, 87);
     this.txtCharsToScroll.Name        = "txtCharsToScroll";
     this.txtCharsToScroll.Size        = new System.Drawing.Size(48, 20);
     this.txtCharsToScroll.TabIndex    = 54;
     this.txtCharsToScroll.Text        = "1";
     //
     // mpLabel4
     //
     this.mpLabel4.Location  = new System.Drawing.Point(8, 87);
     this.mpLabel4.Name      = "mpLabel4";
     this.mpLabel4.Size      = new System.Drawing.Size(80, 23);
     this.mpLabel4.TabIndex  = 53;
     this.mpLabel4.Text      = "#Chars to scroll";
     this.mpLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 16);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(64, 23);
     this.label2.TabIndex  = 3;
     this.label2.Text      = "Columns";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtTim
     //
     this.txtTim.BorderColor = System.Drawing.Color.Empty;
     this.txtTim.Location    = new System.Drawing.Point(88, 64);
     this.txtTim.Name        = "txtTim";
     this.txtTim.Size        = new System.Drawing.Size(48, 20);
     this.txtTim.TabIndex    = 50;
     this.txtTim.Text        = "1";
     //
     // txtRows
     //
     this.txtRows.BorderColor = System.Drawing.Color.Empty;
     this.txtRows.Location    = new System.Drawing.Point(88, 40);
     this.txtRows.Name        = "txtRows";
     this.txtRows.Size        = new System.Drawing.Size(48, 20);
     this.txtRows.TabIndex    = 40;
     this.txtRows.Text        = "2";
     //
     // txtCols
     //
     this.txtCols.BorderColor  = System.Drawing.Color.Empty;
     this.txtCols.Location     = new System.Drawing.Point(88, 16);
     this.txtCols.Name         = "txtCols";
     this.txtCols.Size         = new System.Drawing.Size(48, 20);
     this.txtCols.TabIndex     = 30;
     this.txtCols.Text         = "16";
     this.txtCols.TextChanged += new System.EventHandler(this.txtCols_TextChanged);
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(8, 64);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(80, 23);
     this.label4.TabIndex  = 5;
     this.label4.Text      = "Comm. Delay";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(8, 40);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(72, 23);
     this.label3.TabIndex  = 4;
     this.label3.Text      = "Rows";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(8, 16);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(32, 23);
     this.label7.TabIndex  = 11;
     this.label7.Text      = "Type";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cmbType
     //
     this.cmbType.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbType.BorderColor               = System.Drawing.Color.Empty;
     this.cmbType.DropDownStyle             = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbType.Location                  = new System.Drawing.Point(40, 16);
     this.cmbType.Name                      = "cmbType";
     this.cmbType.Size                      = new System.Drawing.Size(319, 21);
     this.cmbType.Sorted                    = true;
     this.cmbType.TabIndex                  = 10;
     this.cmbType.SelectionChangeCommitted += new System.EventHandler(this.cmbType_SelectionChangeCommitted);
     //
     // cbLight
     //
     this.cbLight.AutoSize   = true;
     this.cbLight.Checked    = true;
     this.cbLight.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbLight.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.cbLight.Location   = new System.Drawing.Point(19, 265);
     this.cbLight.Name       = "cbLight";
     this.cbLight.Size       = new System.Drawing.Size(108, 17);
     this.cbLight.TabIndex   = 60;
     this.cbLight.Text       = "Control brightness";
     this.cbLight.UseVisualStyleBackColor = true;
     this.cbLight.Visible = false;
     //
     // cbPropertyBrowser
     //
     this.cbPropertyBrowser.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cbPropertyBrowser.AutoSize  = true;
     this.cbPropertyBrowser.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbPropertyBrowser.Location  = new System.Drawing.Point(8, 447);
     this.cbPropertyBrowser.Name      = "cbPropertyBrowser";
     this.cbPropertyBrowser.Size      = new System.Drawing.Size(132, 17);
     this.cbPropertyBrowser.TabIndex  = 4;
     this.cbPropertyBrowser.Text      = "Show property browser";
     this.cbPropertyBrowser.UseVisualStyleBackColor = true;
     //
     // btnOK
     //
     this.btnOK.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOK.Location = new System.Drawing.Point(213, 435);
     this.btnOK.Name     = "btnOK";
     this.btnOK.Size     = new System.Drawing.Size(78, 23);
     this.btnOK.TabIndex = 5;
     this.btnOK.Text     = "&OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // cbExtensiveLogging
     //
     this.cbExtensiveLogging.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cbExtensiveLogging.AutoSize  = true;
     this.cbExtensiveLogging.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbExtensiveLogging.Location  = new System.Drawing.Point(8, 430);
     this.cbExtensiveLogging.Name      = "cbExtensiveLogging";
     this.cbExtensiveLogging.Size      = new System.Drawing.Size(107, 17);
     this.cbExtensiveLogging.TabIndex  = 6;
     this.cbExtensiveLogging.Text      = "Extensive logging";
     this.cbExtensiveLogging.UseVisualStyleBackColor = true;
     //
     // mpDisableGUISetup
     //
     this.mpDisableGUISetup.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.mpDisableGUISetup.AutoSize  = true;
     this.mpDisableGUISetup.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpDisableGUISetup.Location  = new System.Drawing.Point(8, 413);
     this.mpDisableGUISetup.Name      = "mpDisableGUISetup";
     this.mpDisableGUISetup.Size      = new System.Drawing.Size(112, 17);
     this.mpDisableGUISetup.TabIndex  = 77;
     this.mpDisableGUISetup.Text      = "Disable GUI Setup";
     this.mpDisableGUISetup.UseVisualStyleBackColor = true;
     //
     // btnCancel
     //
     this.btnCancel.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location                = new System.Drawing.Point(297, 435);
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.Size                    = new System.Drawing.Size(78, 23);
     this.btnCancel.TabIndex                = 78;
     this.btnCancel.Text                    = "&Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click                  += new System.EventHandler(this.btnCancel_Click);
     //
     // SetupForm
     //
     this.AcceptButton        = this.btnOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.CancelButton        = this.btnCancel;
     this.ClientSize          = new System.Drawing.Size(389, 464);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.mpDisableGUISetup);
     this.Controls.Add(this.cbExtensiveLogging);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.cbPropertyBrowser);
     this.Controls.Add(this.groupBox1);
     this.Name          = "SetupForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "MiniDisplay - Setup";
     this.Load         += new System.EventHandler(this.SetupForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupShutdown.ResumeLayout(false);
     this.groupShutdown.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbBrightness)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbContrast)).EndInit();
     this.gbGraphMode.ResumeLayout(false);
     this.gbGraphMode.PerformLayout();
     this.gbTextMode.ResumeLayout(false);
     this.gbTextMode.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources =
         new System.ComponentModel.ComponentResourceManager(typeof(FiltersMonogramAACDecoder));
     this.pictureBox1           = new System.Windows.Forms.PictureBox();
     this.mpGradientLabel1      = new MediaPortal.UserInterface.Controls.MPGradientLabel();
     this.mpGroupBox1           = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.mpLabel2              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.mpLabel1              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.volumeTrackBar        = new System.Windows.Forms.TrackBar();
     this.labelVolume           = new MediaPortal.UserInterface.Controls.MPLabel();
     this.labelSpeakerOut       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBoxSpeakerOutput = new MediaPortal.UserInterface.Controls.MPComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.mpGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.volumeTrackBar)).BeginInit();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 2);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(472, 60);
     this.pictureBox1.TabIndex = 3;
     this.pictureBox1.TabStop  = false;
     //
     // mpGradientLabel1
     //
     this.mpGradientLabel1.Caption    = "";
     this.mpGradientLabel1.FirstColor = System.Drawing.Color.DarkSlateBlue;
     this.mpGradientLabel1.LastColor  = System.Drawing.Color.White;
     this.mpGradientLabel1.Location   = new System.Drawing.Point(0, 60);
     this.mpGradientLabel1.Name       = "mpGradientLabel1";
     this.mpGradientLabel1.Size       = new System.Drawing.Size(472, 8);
     this.mpGradientLabel1.TabIndex   = 4;
     this.mpGradientLabel1.TextColor  = System.Drawing.SystemColors.ControlText;
     this.mpGradientLabel1.TextFont   = new System.Drawing.Font("Microsoft Sans Serif", 8.25F,
                                                                System.Drawing.FontStyle.Regular,
                                                                System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // mpGroupBox1
     //
     this.mpGroupBox1.Controls.Add(this.mpLabel2);
     this.mpGroupBox1.Controls.Add(this.mpLabel1);
     this.mpGroupBox1.Controls.Add(this.volumeTrackBar);
     this.mpGroupBox1.Controls.Add(this.labelVolume);
     this.mpGroupBox1.Controls.Add(this.labelSpeakerOut);
     this.mpGroupBox1.Controls.Add(this.comboBoxSpeakerOutput);
     this.mpGroupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox1.Location  = new System.Drawing.Point(6, 74);
     this.mpGroupBox1.Name      = "mpGroupBox1";
     this.mpGroupBox1.Size      = new System.Drawing.Size(462, 144);
     this.mpGroupBox1.TabIndex  = 2;
     this.mpGroupBox1.TabStop   = false;
     this.mpGroupBox1.Text      = "AAC Audio Decoder Settings";
     //
     // mpLabel2
     //
     this.mpLabel2.AutoSize = true;
     this.mpLabel2.Location = new System.Drawing.Point(400, 111);
     this.mpLabel2.Name     = "mpLabel2";
     this.mpLabel2.Size     = new System.Drawing.Size(44, 13);
     this.mpLabel2.TabIndex = 6;
     this.mpLabel2.Text     = "10.0 dB";
     //
     // mpLabel1
     //
     this.mpLabel1.AutoSize = true;
     this.mpLabel1.Location = new System.Drawing.Point(74, 111);
     this.mpLabel1.Name     = "mpLabel1";
     this.mpLabel1.Size     = new System.Drawing.Size(47, 13);
     this.mpLabel1.TabIndex = 5;
     this.mpLabel1.Text     = "-10.0 dB";
     //
     // volumeTrackBar
     //
     this.volumeTrackBar.Location      = new System.Drawing.Point(116, 93);
     this.volumeTrackBar.Minimum       = -10;
     this.volumeTrackBar.Name          = "volumeTrackBar";
     this.volumeTrackBar.Size          = new System.Drawing.Size(290, 45);
     this.volumeTrackBar.TabIndex      = 4;
     this.volumeTrackBar.ValueChanged += new System.EventHandler(this.volumeTrackBar_ValueChanged);
     //
     // labelVolume
     //
     this.labelVolume.AutoSize = true;
     this.labelVolume.Location = new System.Drawing.Point(19, 81);
     this.labelVolume.Name     = "labelVolume";
     this.labelVolume.Size     = new System.Drawing.Size(79, 13);
     this.labelVolume.TabIndex = 3;
     this.labelVolume.Text     = "Volume: 0.0 dB";
     //
     // labelSpeakerOut
     //
     this.labelSpeakerOut.AutoSize = true;
     this.labelSpeakerOut.Location = new System.Drawing.Point(19, 28);
     this.labelSpeakerOut.Name     = "labelSpeakerOut";
     this.labelSpeakerOut.Size     = new System.Drawing.Size(132, 13);
     this.labelSpeakerOut.TabIndex = 2;
     this.labelSpeakerOut.Text     = "Speaker Output Properties";
     //
     // comboBoxSpeakerOutput
     //
     this.comboBoxSpeakerOutput.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxSpeakerOutput.BorderColor   = System.Drawing.Color.Empty;
     this.comboBoxSpeakerOutput.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxSpeakerOutput.Items.AddRange(new object[]
     {
         "No channel mixing",
         "Mix to mono (1 channel)",
         "Mix to stereo (2 channels)",
         "Mix to 2.1 (3 channels)",
         "Mix to quadrophonic (4 channels)",
         "Mix to 5.1 (6 channels)"
     });
     this.comboBoxSpeakerOutput.Location = new System.Drawing.Point(103, 50);
     this.comboBoxSpeakerOutput.Name     = "comboBoxSpeakerOutput";
     this.comboBoxSpeakerOutput.Size     = new System.Drawing.Size(320, 21);
     this.comboBoxSpeakerOutput.TabIndex = 1;
     //
     // FiltersMonogramAACDecoder
     //
     this.Controls.Add(this.mpGradientLabel1);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.mpGroupBox1);
     this.Name = "FiltersMonogramAACDecoder";
     this.Size = new System.Drawing.Size(472, 408);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.mpGroupBox1.ResumeLayout(false);
     this.mpGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.volumeTrackBar)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox3     = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.groupBox4     = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.label15       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label18       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label16       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label17       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.textBoxSample = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label19       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.tbSortRight   = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label20       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.tbSortLeft    = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label21       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBox1     = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label38       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox3
     //
     this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox3.Controls.Add(this.groupBox4);
     this.groupBox3.Controls.Add(this.textBoxSample);
     this.groupBox3.Controls.Add(this.label19);
     this.groupBox3.Controls.Add(this.tbSortRight);
     this.groupBox3.Controls.Add(this.label20);
     this.groupBox3.Controls.Add(this.tbSortLeft);
     this.groupBox3.Controls.Add(this.label21);
     this.groupBox3.Controls.Add(this.comboBox1);
     this.groupBox3.Controls.Add(this.label38);
     this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox3.Location  = new System.Drawing.Point(6, 0);
     this.groupBox3.Name      = "groupBox3";
     this.groupBox3.Size      = new System.Drawing.Size(462, 282);
     this.groupBox3.TabIndex  = 3;
     this.groupBox3.TabStop   = false;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.label15);
     this.groupBox4.Controls.Add(this.label18);
     this.groupBox4.Controls.Add(this.label16);
     this.groupBox4.Controls.Add(this.label17);
     this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox4.Location  = new System.Drawing.Point(19, 135);
     this.groupBox4.Name      = "groupBox4";
     this.groupBox4.Size      = new System.Drawing.Size(397, 132);
     this.groupBox4.TabIndex  = 21;
     this.groupBox4.TabStop   = false;
     this.groupBox4.Text      = "Available Tags";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(289, 24);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(94, 91);
     this.label15.TabIndex = 15;
     this.label15.Text     = "filename\r\nfilesize of song\r\nduration of song\r\nsong rating\r\nfile date\r\nname of com" +
                             "poser\r\ngenre of track";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(211, 24);
     this.label18.Name     = "label18";
     this.label18.Size     = new System.Drawing.Size(78, 91);
     this.label18.TabIndex = 14;
     this.label18.Text     = "%filename% =\r\n%filesize% =\r\n%duration% =\r\n%rating% =\r\n%date% =\r\n%composer% =\r\n%ge" +
                             "nre% =\r\n";
     this.label18.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(94, 24);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(189, 104);
     this.label16.TabIndex = 13;
     this.label16.Text     = "name of artist\r\nsong title\r\nname of album artist\r\nname of album\r\ndisc number\r\ntra" +
                             "cknumber\r\nyear of song\r\nnumber of times track has been played";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(6, 24);
     this.label17.Name     = "label17";
     this.label17.Size     = new System.Drawing.Size(87, 104);
     this.label17.TabIndex = 12;
     this.label17.Text     = "%artist% =\r\n%title% =\r\n%albumartist% =\r\n%album% =\r\n%disc#% =\r\n%track% =\r\n%year% =" +
                             "\r\n%timesplayed% =";
     this.label17.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textBoxSample
     //
     this.textBoxSample.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxSample.BackColor   = System.Drawing.SystemColors.ControlLight;
     this.textBoxSample.BorderColor = System.Drawing.Color.Empty;
     this.textBoxSample.Location    = new System.Drawing.Point(96, 102);
     this.textBoxSample.Name        = "textBoxSample";
     this.textBoxSample.ReadOnly    = true;
     this.textBoxSample.Size        = new System.Drawing.Size(350, 20);
     this.textBoxSample.TabIndex    = 19;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(16, 24);
     this.label19.Name     = "label19";
     this.label19.Size     = new System.Drawing.Size(72, 13);
     this.label19.TabIndex = 18;
     this.label19.Text     = "Sorting mode:";
     //
     // tbSortRight
     //
     this.tbSortRight.BorderColor  = System.Drawing.Color.Empty;
     this.tbSortRight.Location     = new System.Drawing.Point(345, 71);
     this.tbSortRight.Name         = "tbSortRight";
     this.tbSortRight.Size         = new System.Drawing.Size(71, 20);
     this.tbSortRight.TabIndex     = 4;
     this.tbSortRight.Text         = "%duration%";
     this.tbSortRight.TextChanged += new System.EventHandler(this.tbSortRight_TextChanged);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(93, 51);
     this.label20.Name     = "label20";
     this.label20.Size     = new System.Drawing.Size(217, 13);
     this.label20.TabIndex = 0;
     this.label20.Text     = "Use blockquotes [ ] to specify optional fields.";
     //
     // tbSortLeft
     //
     this.tbSortLeft.BorderColor  = System.Drawing.Color.Empty;
     this.tbSortLeft.Location     = new System.Drawing.Point(96, 71);
     this.tbSortLeft.Name         = "tbSortLeft";
     this.tbSortLeft.Size         = new System.Drawing.Size(248, 20);
     this.tbSortLeft.TabIndex     = 3;
     this.tbSortLeft.Text         = "%track%. %artist% - %title%";
     this.tbSortLeft.TextChanged += new System.EventHandler(this.tbSortLeft_TextChanged);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(16, 105);
     this.label21.Name     = "label21";
     this.label21.Size     = new System.Drawing.Size(45, 13);
     this.label21.TabIndex = 5;
     this.label21.Text     = "Sample:";
     //
     // comboBox1
     //
     this.comboBox1.BorderColor       = System.Drawing.Color.Empty;
     this.comboBox1.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location          = new System.Drawing.Point(96, 21);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(88, 21);
     this.comboBox1.TabIndex              = 0;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(16, 74);
     this.label38.Name     = "label38";
     this.label38.Size     = new System.Drawing.Size(42, 13);
     this.label38.TabIndex = 3;
     this.label38.Text     = "Format:";
     //
     // MusicSort
     //
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.Controls.Add(this.groupBox3);
     this.DoubleBuffered = true;
     this.Name           = "MusicSort";
     this.Size           = new System.Drawing.Size(472, 408);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1           = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.disableAnimCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.mpLabel2            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.pow2texCheckBox     = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.mpLabel1            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.subPicsAheadUpDown  = new MediaPortal.UserInterface.Controls.MPNumericUpDown();
     this.textureComboBox     = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label3      = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label1      = new MediaPortal.UserInterface.Controls.MPLabel();
     this.buttonClose = new MediaPortal.UserInterface.Controls.MPButton();
     this.buttonOK    = new MediaPortal.UserInterface.Controls.MPButton();
     this.posYUpDown  = new System.Windows.Forms.NumericUpDown();
     this.label2      = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.subPicsAheadUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.posYUpDown)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.posYUpDown);
     this.groupBox1.Controls.Add(this.disableAnimCheckBox);
     this.groupBox1.Controls.Add(this.mpLabel2);
     this.groupBox1.Controls.Add(this.pow2texCheckBox);
     this.groupBox1.Controls.Add(this.mpLabel1);
     this.groupBox1.Controls.Add(this.subPicsAheadUpDown);
     this.groupBox1.Controls.Add(this.textureComboBox);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(8, 8);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(450, 151);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Options";
     //
     // disableAnimCheckBox
     //
     this.disableAnimCheckBox.AutoSize  = true;
     this.disableAnimCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.disableAnimCheckBox.Location  = new System.Drawing.Point(101, 96);
     this.disableAnimCheckBox.Name      = "disableAnimCheckBox";
     this.disableAnimCheckBox.Size      = new System.Drawing.Size(137, 17);
     this.disableAnimCheckBox.TabIndex  = 16;
     this.disableAnimCheckBox.Text      = "(Set for slow computers)";
     this.disableAnimCheckBox.UseVisualStyleBackColor = true;
     //
     // mpLabel2
     //
     this.mpLabel2.Location = new System.Drawing.Point(6, 98);
     this.mpLabel2.Name     = "mpLabel2";
     this.mpLabel2.Size     = new System.Drawing.Size(157, 22);
     this.mpLabel2.TabIndex = 15;
     this.mpLabel2.Text     = "Disable Animation:";
     //
     // pow2texCheckBox
     //
     this.pow2texCheckBox.AutoSize  = true;
     this.pow2texCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.pow2texCheckBox.Location  = new System.Drawing.Point(293, 63);
     this.pow2texCheckBox.Name      = "pow2texCheckBox";
     this.pow2texCheckBox.Size      = new System.Drawing.Size(139, 17);
     this.pow2texCheckBox.TabIndex  = 14;
     this.pow2texCheckBox.Text      = "Round to the power of 2";
     this.pow2texCheckBox.UseVisualStyleBackColor = true;
     //
     // mpLabel1
     //
     this.mpLabel1.Location = new System.Drawing.Point(293, 27);
     this.mpLabel1.Name     = "mpLabel1";
     this.mpLabel1.Size     = new System.Drawing.Size(151, 37);
     this.mpLabel1.TabIndex = 13;
     this.mpLabel1.Text     = "Set to 0 to disable buffering (not recommended)";
     //
     // subPicsAheadUpDown
     //
     this.subPicsAheadUpDown.Location = new System.Drawing.Point(232, 30);
     this.subPicsAheadUpDown.Name     = "subPicsAheadUpDown";
     this.subPicsAheadUpDown.Size     = new System.Drawing.Size(41, 20);
     this.subPicsAheadUpDown.TabIndex = 12;
     this.subPicsAheadUpDown.Value    = new decimal(new int[]
     {
         3,
         0,
         0,
         0
     });
     //
     // textureComboBox
     //
     this.textureComboBox.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.textureComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.textureComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.textureComboBox.Items.AddRange(new object[]
     {
         "Desktop",
         "Medium",
         "Low"
     });
     this.textureComboBox.Location = new System.Drawing.Point(169, 62);
     this.textureComboBox.Name     = "textureComboBox";
     this.textureComboBox.Size     = new System.Drawing.Size(104, 21);
     this.textureComboBox.TabIndex = 0;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(6, 65);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(157, 23);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Maximum texture resolution:";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(6, 30);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(220, 24);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Number of subpictures to buffer ahead:";
     //
     // buttonClose
     //
     this.buttonClose.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonClose.Location                = new System.Drawing.Point(383, 165);
     this.buttonClose.Name                    = "buttonClose";
     this.buttonClose.Size                    = new System.Drawing.Size(75, 23);
     this.buttonClose.TabIndex                = 2;
     this.buttonClose.Text                    = "Close";
     this.buttonClose.UseVisualStyleBackColor = true;
     this.buttonClose.Click                  += new System.EventHandler(this.closeButton_Click);
     //
     // buttonOK
     //
     this.buttonOK.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOK.Location = new System.Drawing.Point(302, 165);
     this.buttonOK.Name     = "buttonOK";
     this.buttonOK.Size     = new System.Drawing.Size(75, 23);
     this.buttonOK.TabIndex = 1;
     this.buttonOK.Text     = "OK";
     this.buttonOK.UseVisualStyleBackColor = true;
     this.buttonOK.Click += new System.EventHandler(this.okButton_Click);
     //
     // posYUpDown
     //
     this.posYUpDown.Location = new System.Drawing.Point(232, 118);
     this.posYUpDown.Name     = "posYUpDown";
     this.posYUpDown.Size     = new System.Drawing.Size(41, 20);
     this.posYUpDown.TabIndex = 17;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(6, 120);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(210, 13);
     this.label2.TabIndex = 18;
     this.label2.Text     = "Adjust subtitle height position (pixels down):";
     //
     // MpcHcSubsForm
     //
     this.AcceptButton        = this.buttonOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.CancelButton        = this.buttonClose;
     this.ClientSize          = new System.Drawing.Size(466, 200);
     this.Controls.Add(this.buttonOK);
     this.Controls.Add(this.buttonClose);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MinimumSize     = new System.Drawing.Size(472, 212);
     this.Name            = "MpcHcSubsForm";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "MPC-HC advanced properties";
     this.Load           += new System.EventHandler(this.MpcHcSubsForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.subPicsAheadUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.posYUpDown)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.mpGroupBox2              = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.AudioQuality             = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.radioButtonQualityLow    = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonQualityMedium = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonQualityGood   = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonQualityHigh   = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.SampleFrequency          = new MediaPortal.UserInterface.Controls.MPLabel();
     this.AudioBitrate             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBoxFrequency        = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.comboBoxAudioBitrate     = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.AudioMode                  = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.radioButtonModeStereo      = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonModeDualChannel = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonModeMono        = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonModeJointStereo = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.mpGroupBox1                = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.EncoderQuality             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.VideoFormat                = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBoxEncoderQuality     = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.comboBoxVideoFormat        = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.AspectRatio                = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBoxAspectRatio        = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.FrameRate                  = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBoxFrameRate          = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpGroupBox2.SuspendLayout();
     this.AudioQuality.SuspendLayout();
     this.AudioMode.SuspendLayout();
     this.mpGroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // mpGroupBox2
     //
     this.mpGroupBox2.Controls.Add(this.AudioQuality);
     this.mpGroupBox2.Controls.Add(this.SampleFrequency);
     this.mpGroupBox2.Controls.Add(this.AudioBitrate);
     this.mpGroupBox2.Controls.Add(this.comboBoxFrequency);
     this.mpGroupBox2.Controls.Add(this.comboBoxAudioBitrate);
     this.mpGroupBox2.Controls.Add(this.AudioMode);
     this.mpGroupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox2.Location  = new System.Drawing.Point(6, 146);
     this.mpGroupBox2.Name      = "mpGroupBox2";
     this.mpGroupBox2.Size      = new System.Drawing.Size(462, 202);
     this.mpGroupBox2.TabIndex  = 0;
     this.mpGroupBox2.TabStop   = false;
     this.mpGroupBox2.Text      = "Audio Encoder Settings";
     //
     // AudioQuality
     //
     this.AudioQuality.Controls.Add(this.radioButtonQualityLow);
     this.AudioQuality.Controls.Add(this.radioButtonQualityMedium);
     this.AudioQuality.Controls.Add(this.radioButtonQualityGood);
     this.AudioQuality.Controls.Add(this.radioButtonQualityHigh);
     this.AudioQuality.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.AudioQuality.Location  = new System.Drawing.Point(223, 19);
     this.AudioQuality.Name      = "AudioQuality";
     this.AudioQuality.Size      = new System.Drawing.Size(224, 78);
     this.AudioQuality.TabIndex  = 14;
     this.AudioQuality.TabStop   = false;
     this.AudioQuality.Text      = "Audio Quality";
     //
     // radioButtonQualityLow
     //
     this.radioButtonQualityLow.AutoSize  = true;
     this.radioButtonQualityLow.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonQualityLow.Location  = new System.Drawing.Point(135, 42);
     this.radioButtonQualityLow.Name      = "radioButtonQualityLow";
     this.radioButtonQualityLow.Size      = new System.Drawing.Size(44, 17);
     this.radioButtonQualityLow.TabIndex  = 9;
     this.radioButtonQualityLow.TabStop   = true;
     this.radioButtonQualityLow.Text      = "Low";
     this.radioButtonQualityLow.UseVisualStyleBackColor = true;
     this.radioButtonQualityLow.CheckedChanged         += new System.EventHandler(this.radioButtonQualityLow_CheckedChanged);
     //
     // radioButtonQualityMedium
     //
     this.radioButtonQualityMedium.AutoSize  = true;
     this.radioButtonQualityMedium.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonQualityMedium.Location  = new System.Drawing.Point(31, 42);
     this.radioButtonQualityMedium.Name      = "radioButtonQualityMedium";
     this.radioButtonQualityMedium.Size      = new System.Drawing.Size(61, 17);
     this.radioButtonQualityMedium.TabIndex  = 8;
     this.radioButtonQualityMedium.TabStop   = true;
     this.radioButtonQualityMedium.Text      = "Medium";
     this.radioButtonQualityMedium.UseVisualStyleBackColor = true;
     this.radioButtonQualityMedium.CheckedChanged         +=
         new System.EventHandler(this.radioButtonQualityMedium_CheckedChanged);
     //
     // radioButtonQualityGood
     //
     this.radioButtonQualityGood.AutoSize  = true;
     this.radioButtonQualityGood.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonQualityGood.Location  = new System.Drawing.Point(135, 19);
     this.radioButtonQualityGood.Name      = "radioButtonQualityGood";
     this.radioButtonQualityGood.Size      = new System.Drawing.Size(50, 17);
     this.radioButtonQualityGood.TabIndex  = 7;
     this.radioButtonQualityGood.TabStop   = true;
     this.radioButtonQualityGood.Text      = "Good";
     this.radioButtonQualityGood.UseVisualStyleBackColor = true;
     this.radioButtonQualityGood.CheckedChanged         += new System.EventHandler(this.radioButtonQualityGood_CheckedChanged);
     //
     // radioButtonQualityHigh
     //
     this.radioButtonQualityHigh.AutoSize  = true;
     this.radioButtonQualityHigh.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonQualityHigh.Location  = new System.Drawing.Point(31, 19);
     this.radioButtonQualityHigh.Name      = "radioButtonQualityHigh";
     this.radioButtonQualityHigh.Size      = new System.Drawing.Size(46, 17);
     this.radioButtonQualityHigh.TabIndex  = 4;
     this.radioButtonQualityHigh.TabStop   = true;
     this.radioButtonQualityHigh.Text      = "High";
     this.radioButtonQualityHigh.UseVisualStyleBackColor = true;
     this.radioButtonQualityHigh.CheckedChanged         += new System.EventHandler(this.radioButtonQualityHigh_CheckedChanged);
     //
     // SampleFrequency
     //
     this.SampleFrequency.AutoSize = true;
     this.SampleFrequency.Location = new System.Drawing.Point(7, 106);
     this.SampleFrequency.Name     = "SampleFrequency";
     this.SampleFrequency.Size     = new System.Drawing.Size(103, 13);
     this.SampleFrequency.TabIndex = 3;
     this.SampleFrequency.Text     = "Sampling Frequency";
     //
     // AudioBitrate
     //
     this.AudioBitrate.AutoSize = true;
     this.AudioBitrate.Location = new System.Drawing.Point(7, 32);
     this.AudioBitrate.Name     = "AudioBitrate";
     this.AudioBitrate.Size     = new System.Drawing.Size(140, 13);
     this.AudioBitrate.TabIndex = 2;
     this.AudioBitrate.Text     = "Audio Bitrate (kbits/s x1000)";
     //
     // comboBoxFrequency
     //
     this.comboBoxFrequency.BorderColor   = System.Drawing.Color.Empty;
     this.comboBoxFrequency.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxFrequency.DropDownWidth = 125;
     this.comboBoxFrequency.Items.AddRange(new object[]
     {
         "From Source",
         "44.1 kHz",
         "48 kHz",
         "32 kHz"
     });
     this.comboBoxFrequency.Location              = new System.Drawing.Point(62, 135);
     this.comboBoxFrequency.Name                  = "comboBoxFrequency";
     this.comboBoxFrequency.Size                  = new System.Drawing.Size(125, 21);
     this.comboBoxFrequency.TabIndex              = 0;
     this.comboBoxFrequency.SelectedIndexChanged += new System.EventHandler(this.comboBoxFrequency_SelectedIndexChanged);
     //
     // comboBoxAudioBitrate
     //
     this.comboBoxAudioBitrate.BorderColor   = System.Drawing.Color.Empty;
     this.comboBoxAudioBitrate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxAudioBitrate.Items.AddRange(new object[]
     {
         "128",
         "160",
         "192",
         "224",
         "256",
         "320",
         "384"
     });
     this.comboBoxAudioBitrate.Location = new System.Drawing.Point(62, 57);
     this.comboBoxAudioBitrate.Name     = "comboBoxAudioBitrate";
     this.comboBoxAudioBitrate.Size     = new System.Drawing.Size(125, 21);
     this.comboBoxAudioBitrate.TabIndex = 1;
     //
     // AudioMode
     //
     this.AudioMode.Controls.Add(this.radioButtonModeStereo);
     this.AudioMode.Controls.Add(this.radioButtonModeDualChannel);
     this.AudioMode.Controls.Add(this.radioButtonModeMono);
     this.AudioMode.Controls.Add(this.radioButtonModeJointStereo);
     this.AudioMode.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.AudioMode.Location  = new System.Drawing.Point(223, 106);
     this.AudioMode.Name      = "AudioMode";
     this.AudioMode.Size      = new System.Drawing.Size(224, 79);
     this.AudioMode.TabIndex  = 15;
     this.AudioMode.TabStop   = false;
     this.AudioMode.Text      = "Audio Mode";
     //
     // radioButtonModeStereo
     //
     this.radioButtonModeStereo.AutoSize  = true;
     this.radioButtonModeStereo.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonModeStereo.Location  = new System.Drawing.Point(31, 19);
     this.radioButtonModeStereo.Name      = "radioButtonModeStereo";
     this.radioButtonModeStereo.Size      = new System.Drawing.Size(55, 17);
     this.radioButtonModeStereo.TabIndex  = 10;
     this.radioButtonModeStereo.TabStop   = true;
     this.radioButtonModeStereo.Text      = "Stereo";
     this.radioButtonModeStereo.UseVisualStyleBackColor = true;
     this.radioButtonModeStereo.CheckedChanged         += new System.EventHandler(this.radioButtonModeStereo_CheckedChanged);
     //
     // radioButtonModeDualChannel
     //
     this.radioButtonModeDualChannel.AutoSize  = true;
     this.radioButtonModeDualChannel.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonModeDualChannel.Location  = new System.Drawing.Point(31, 42);
     this.radioButtonModeDualChannel.Name      = "radioButtonModeDualChannel";
     this.radioButtonModeDualChannel.Size      = new System.Drawing.Size(88, 17);
     this.radioButtonModeDualChannel.TabIndex  = 12;
     this.radioButtonModeDualChannel.TabStop   = true;
     this.radioButtonModeDualChannel.Text      = "Dual Channel";
     this.radioButtonModeDualChannel.UseVisualStyleBackColor = true;
     this.radioButtonModeDualChannel.CheckedChanged         +=
         new System.EventHandler(this.radioButtonModeDualChannel_CheckedChanged);
     //
     // radioButtonModeMono
     //
     this.radioButtonModeMono.AutoSize  = true;
     this.radioButtonModeMono.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonModeMono.Location  = new System.Drawing.Point(135, 42);
     this.radioButtonModeMono.Name      = "radioButtonModeMono";
     this.radioButtonModeMono.Size      = new System.Drawing.Size(51, 17);
     this.radioButtonModeMono.TabIndex  = 13;
     this.radioButtonModeMono.TabStop   = true;
     this.radioButtonModeMono.Text      = "Mono";
     this.radioButtonModeMono.UseVisualStyleBackColor = true;
     this.radioButtonModeMono.CheckedChanged         += new System.EventHandler(this.radioButtonModeMono_CheckedChanged);
     //
     // radioButtonModeJointStereo
     //
     this.radioButtonModeJointStereo.AutoSize  = true;
     this.radioButtonModeJointStereo.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonModeJointStereo.Location  = new System.Drawing.Point(135, 19);
     this.radioButtonModeJointStereo.Name      = "radioButtonModeJointStereo";
     this.radioButtonModeJointStereo.Size      = new System.Drawing.Size(80, 17);
     this.radioButtonModeJointStereo.TabIndex  = 11;
     this.radioButtonModeJointStereo.TabStop   = true;
     this.radioButtonModeJointStereo.Text      = "Joint Stereo";
     this.radioButtonModeJointStereo.UseVisualStyleBackColor = true;
     this.radioButtonModeJointStereo.CheckedChanged         +=
         new System.EventHandler(this.radioButtonModeJointStereo_CheckedChanged);
     //
     // mpGroupBox1
     //
     this.mpGroupBox1.Controls.Add(this.EncoderQuality);
     this.mpGroupBox1.Controls.Add(this.VideoFormat);
     this.mpGroupBox1.Controls.Add(this.comboBoxEncoderQuality);
     this.mpGroupBox1.Controls.Add(this.comboBoxVideoFormat);
     this.mpGroupBox1.Controls.Add(this.AspectRatio);
     this.mpGroupBox1.Controls.Add(this.comboBoxAspectRatio);
     this.mpGroupBox1.Controls.Add(this.FrameRate);
     this.mpGroupBox1.Controls.Add(this.comboBoxFrameRate);
     this.mpGroupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox1.Location  = new System.Drawing.Point(6, 0);
     this.mpGroupBox1.Name      = "mpGroupBox1";
     this.mpGroupBox1.Size      = new System.Drawing.Size(462, 143);
     this.mpGroupBox1.TabIndex  = 5;
     this.mpGroupBox1.TabStop   = false;
     this.mpGroupBox1.Text      = "Video Encoder Settings";
     //
     // EncoderQuality
     //
     this.EncoderQuality.AutoSize = true;
     this.EncoderQuality.Location = new System.Drawing.Point(239, 83);
     this.EncoderQuality.Name     = "EncoderQuality";
     this.EncoderQuality.Size     = new System.Drawing.Size(82, 13);
     this.EncoderQuality.TabIndex = 11;
     this.EncoderQuality.Text     = "Encoder Quality";
     //
     // VideoFormat
     //
     this.VideoFormat.AutoSize = true;
     this.VideoFormat.Location = new System.Drawing.Point(239, 26);
     this.VideoFormat.Name     = "VideoFormat";
     this.VideoFormat.Size     = new System.Drawing.Size(69, 13);
     this.VideoFormat.TabIndex = 10;
     this.VideoFormat.Text     = "Video Format";
     //
     // comboBoxEncoderQuality
     //
     this.comboBoxEncoderQuality.BorderColor       = System.Drawing.Color.Empty;
     this.comboBoxEncoderQuality.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEncoderQuality.FormattingEnabled = true;
     this.comboBoxEncoderQuality.Items.AddRange(new object[]
     {
         "Low",
         "Medium",
         "High"
     });
     this.comboBoxEncoderQuality.Location              = new System.Drawing.Point(296, 105);
     this.comboBoxEncoderQuality.Name                  = "comboBoxEncoderQuality";
     this.comboBoxEncoderQuality.Size                  = new System.Drawing.Size(121, 21);
     this.comboBoxEncoderQuality.TabIndex              = 9;
     this.comboBoxEncoderQuality.SelectedIndexChanged +=
         new System.EventHandler(this.comboBoxEncoderQuality_SelectedIndexChanged);
     //
     // comboBoxVideoFormat
     //
     this.comboBoxVideoFormat.BorderColor       = System.Drawing.Color.Empty;
     this.comboBoxVideoFormat.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxVideoFormat.FormattingEnabled = true;
     this.comboBoxVideoFormat.Items.AddRange(new object[]
     {
         "NTSC",
         "PAL",
         "SECAM"
     });
     this.comboBoxVideoFormat.Location              = new System.Drawing.Point(296, 51);
     this.comboBoxVideoFormat.Name                  = "comboBoxVideoFormat";
     this.comboBoxVideoFormat.Size                  = new System.Drawing.Size(121, 21);
     this.comboBoxVideoFormat.TabIndex              = 8;
     this.comboBoxVideoFormat.SelectedIndexChanged +=
         new System.EventHandler(this.comboBoxVideoFormat_SelectedIndexChanged);
     //
     // AspectRatio
     //
     this.AspectRatio.AutoSize = true;
     this.AspectRatio.Location = new System.Drawing.Point(7, 83);
     this.AspectRatio.Name     = "AspectRatio";
     this.AspectRatio.Size     = new System.Drawing.Size(68, 13);
     this.AspectRatio.TabIndex = 7;
     this.AspectRatio.Text     = "Aspect Ratio";
     //
     // comboBoxAspectRatio
     //
     this.comboBoxAspectRatio.BorderColor       = System.Drawing.Color.Empty;
     this.comboBoxAspectRatio.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxAspectRatio.FormattingEnabled = true;
     this.comboBoxAspectRatio.Items.AddRange(new object[]
     {
         "square",
         "4 : 3",
         "16 : 9"
     });
     this.comboBoxAspectRatio.Location              = new System.Drawing.Point(62, 105);
     this.comboBoxAspectRatio.Name                  = "comboBoxAspectRatio";
     this.comboBoxAspectRatio.Size                  = new System.Drawing.Size(125, 21);
     this.comboBoxAspectRatio.TabIndex              = 6;
     this.comboBoxAspectRatio.SelectedIndexChanged +=
         new System.EventHandler(this.comboBoxAspectRatio_SelectedIndexChanged);
     //
     // FrameRate
     //
     this.FrameRate.AutoSize = true;
     this.FrameRate.Location = new System.Drawing.Point(7, 26);
     this.FrameRate.Name     = "FrameRate";
     this.FrameRate.Size     = new System.Drawing.Size(62, 13);
     this.FrameRate.TabIndex = 5;
     this.FrameRate.Text     = "Frame Rate";
     //
     // comboBoxFrameRate
     //
     this.comboBoxFrameRate.BorderColor       = System.Drawing.Color.Empty;
     this.comboBoxFrameRate.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxFrameRate.FormattingEnabled = true;
     this.comboBoxFrameRate.Items.AddRange(new object[]
     {
         "25.00 fps",
         "29.97 fps"
     });
     this.comboBoxFrameRate.Location              = new System.Drawing.Point(62, 51);
     this.comboBoxFrameRate.Name                  = "comboBoxFrameRate";
     this.comboBoxFrameRate.Size                  = new System.Drawing.Size(125, 21);
     this.comboBoxFrameRate.TabIndex              = 4;
     this.comboBoxFrameRate.SelectedIndexChanged += new System.EventHandler(this.comboBoxFrameRate_SelectedIndexChanged);
     //
     // FiltersInterVideoEncoder
     //
     this.Controls.Add(this.mpGroupBox2);
     this.Controls.Add(this.mpGroupBox1);
     this.Name = "FiltersInterVideoEncoder";
     this.Size = new System.Drawing.Size(472, 408);
     this.mpGroupBox2.ResumeLayout(false);
     this.mpGroupBox2.PerformLayout();
     this.AudioQuality.ResumeLayout(false);
     this.AudioQuality.PerformLayout();
     this.AudioMode.ResumeLayout(false);
     this.AudioMode.PerformLayout();
     this.mpGroupBox1.ResumeLayout(false);
     this.mpGroupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.mpGroupBox3             = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.checkBoxUIUseSW         = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxUIUseHAM        = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.comboBoxH264DeInterlace = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpLabel6             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.mpLabel5             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.checkBoxUIUseH264HVA = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.mpGroupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // mpGroupBox3
     //
     this.mpGroupBox3.Controls.Add(this.checkBoxUIUseSW);
     this.mpGroupBox3.Controls.Add(this.checkBoxUIUseHAM);
     this.mpGroupBox3.Controls.Add(this.comboBoxH264DeInterlace);
     this.mpGroupBox3.Controls.Add(this.mpLabel6);
     this.mpGroupBox3.Controls.Add(this.mpLabel5);
     this.mpGroupBox3.Controls.Add(this.checkBoxUIUseH264HVA);
     this.mpGroupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox3.Location  = new System.Drawing.Point(6, 0);
     this.mpGroupBox3.Name      = "mpGroupBox3";
     this.mpGroupBox3.Size      = new System.Drawing.Size(462, 221);
     this.mpGroupBox3.TabIndex  = 4;
     this.mpGroupBox3.TabStop   = false;
     this.mpGroupBox3.Text      = "H.264/VC-1/MPEG Video Decoder Settings (PDVD10+)";
     //
     // checkBoxUIUseSW
     //
     this.checkBoxUIUseSW.AutoSize  = true;
     this.checkBoxUIUseSW.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxUIUseSW.Location  = new System.Drawing.Point(22, 80);
     this.checkBoxUIUseSW.Name      = "checkBoxUIUseSW";
     this.checkBoxUIUseSW.Size      = new System.Drawing.Size(64, 17);
     this.checkBoxUIUseSW.TabIndex  = 7;
     this.checkBoxUIUseSW.Text      = "Use SW";
     this.checkBoxUIUseSW.UseVisualStyleBackColor = true;
     this.checkBoxUIUseSW.CheckedChanged         += new System.EventHandler(this.checkBoxUIUseSW_CheckedChanged);
     //
     // checkBoxUIUseHAM
     //
     this.checkBoxUIUseHAM.AutoSize  = true;
     this.checkBoxUIUseHAM.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxUIUseHAM.Location  = new System.Drawing.Point(22, 56);
     this.checkBoxUIUseHAM.Name      = "checkBoxUIUseHAM";
     this.checkBoxUIUseHAM.Size      = new System.Drawing.Size(70, 17);
     this.checkBoxUIUseHAM.TabIndex  = 6;
     this.checkBoxUIUseHAM.Text      = "Use HAM";
     this.checkBoxUIUseHAM.UseVisualStyleBackColor = true;
     this.checkBoxUIUseHAM.CheckedChanged         += new System.EventHandler(this.checkBoxUIUseHAM_CheckedChanged);
     //
     // comboBoxH264DeInterlace
     //
     this.comboBoxH264DeInterlace.BorderColor       = System.Drawing.Color.Empty;
     this.comboBoxH264DeInterlace.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxH264DeInterlace.FormattingEnabled = true;
     this.comboBoxH264DeInterlace.Items.AddRange(new object[] {
         "Auto-select",
         "Force bob",
         "Force weave"
     });
     this.comboBoxH264DeInterlace.Location = new System.Drawing.Point(52, 143);
     this.comboBoxH264DeInterlace.Name     = "comboBoxH264DeInterlace";
     this.comboBoxH264DeInterlace.Size     = new System.Drawing.Size(198, 21);
     this.comboBoxH264DeInterlace.TabIndex = 5;
     //
     // mpLabel6
     //
     this.mpLabel6.AutoSize = true;
     this.mpLabel6.Location = new System.Drawing.Point(22, 118);
     this.mpLabel6.Name     = "mpLabel6";
     this.mpLabel6.Size     = new System.Drawing.Size(104, 13);
     this.mpLabel6.TabIndex = 4;
     this.mpLabel6.Text     = "De-Interlace Options";
     //
     // mpLabel5
     //
     this.mpLabel5.AutoSize    = true;
     this.mpLabel5.Location    = new System.Drawing.Point(188, 21);
     this.mpLabel5.MaximumSize = new System.Drawing.Size(270, 0);
     this.mpLabel5.Name        = "mpLabel5";
     this.mpLabel5.Size        = new System.Drawing.Size(256, 26);
     this.mpLabel5.TabIndex    = 4;
     this.mpLabel5.Text        = "Recommended to reduce CPU utilization. If selected De-Interlace options are contr" +
                                 "olled by VMR9.";
     //
     // checkBoxUIUseH264HVA
     //
     this.checkBoxUIUseH264HVA.AutoSize  = true;
     this.checkBoxUIUseH264HVA.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxUIUseH264HVA.Location  = new System.Drawing.Point(22, 30);
     this.checkBoxUIUseH264HVA.Name      = "checkBoxUIUseH264HVA";
     this.checkBoxUIUseH264HVA.Size      = new System.Drawing.Size(75, 17);
     this.checkBoxUIUseH264HVA.TabIndex  = 4;
     this.checkBoxUIUseH264HVA.Text      = "Use DXVA";
     this.checkBoxUIUseH264HVA.UseVisualStyleBackColor = true;
     this.checkBoxUIUseH264HVA.CheckedChanged         += new System.EventHandler(this.mpCheckBox1_CheckedChanged);
     //
     // FiltersPowerDVDDecoder10
     //
     this.Controls.Add(this.mpGroupBox3);
     this.Name = "FiltersPowerDVDDecoder10";
     this.Size = new System.Drawing.Size(472, 408);
     this.mpGroupBox3.ResumeLayout(false);
     this.mpGroupBox3.PerformLayout();
     this.ResumeLayout(false);
 }
Example #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1             = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.mpLabel1              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.checkBoxDXVA          = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.audioRendererLabel    = new MediaPortal.UserInterface.Controls.MPLabel();
     this.audioRendererComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.videoCodecLabel       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.videoCodecComboBox    = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.checkBoxAC3           = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.dvdNavigatorComboBox  = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.audioCodecComboBox    = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.dvdNavigatorLabel     = new MediaPortal.UserInterface.Controls.MPLabel();
     this.audioCodecLabel       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.mpLabel1);
     this.groupBox1.Controls.Add(this.checkBoxDXVA);
     this.groupBox1.Controls.Add(this.audioRendererLabel);
     this.groupBox1.Controls.Add(this.audioRendererComboBox);
     this.groupBox1.Controls.Add(this.videoCodecLabel);
     this.groupBox1.Controls.Add(this.videoCodecComboBox);
     this.groupBox1.Controls.Add(this.checkBoxAC3);
     this.groupBox1.Controls.Add(this.dvdNavigatorComboBox);
     this.groupBox1.Controls.Add(this.audioCodecComboBox);
     this.groupBox1.Controls.Add(this.dvdNavigatorLabel);
     this.groupBox1.Controls.Add(this.audioCodecLabel);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(6, 0);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(462, 226);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Settings";
     //
     // mpLabel1
     //
     this.mpLabel1.AutoSize = true;
     this.mpLabel1.Location = new System.Drawing.Point(165, 49);
     this.mpLabel1.Name     = "mpLabel1";
     this.mpLabel1.Size     = new System.Drawing.Size(305, 13);
     this.mpLabel1.TabIndex = 10;
     this.mpLabel1.Text     = "Note: Use corresponding decoders with chosen Navigator";
     //
     // checkBoxDXVA
     //
     this.checkBoxDXVA.AutoSize  = true;
     this.checkBoxDXVA.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxDXVA.Location  = new System.Drawing.Point(19, 185);
     this.checkBoxDXVA.Name      = "checkBoxDXVA";
     this.checkBoxDXVA.Size      = new System.Drawing.Size(359, 17);
     this.checkBoxDXVA.TabIndex  = 6;
     this.checkBoxDXVA.Text      = "Turn off DxVA (use this option if you have DVD navigation issues)";
     this.checkBoxDXVA.UseVisualStyleBackColor = true;
     //
     // audioRendererLabel
     //
     this.audioRendererLabel.Location = new System.Drawing.Point(16, 124);
     this.audioRendererLabel.Name     = "audioRendererLabel";
     this.audioRendererLabel.Size     = new System.Drawing.Size(88, 18);
     this.audioRendererLabel.TabIndex = 4;
     this.audioRendererLabel.Text     = "Audio renderer:";
     //
     // audioRendererComboBox
     //
     this.audioRendererComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.audioRendererComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.audioRendererComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.audioRendererComboBox.Location      = new System.Drawing.Point(168, 120);
     this.audioRendererComboBox.Name          = "audioRendererComboBox";
     this.audioRendererComboBox.Size          = new System.Drawing.Size(278, 21);
     this.audioRendererComboBox.Sorted        = true;
     this.audioRendererComboBox.TabIndex      = 4;
     //
     // videoCodecLabel
     //
     this.videoCodecLabel.Location = new System.Drawing.Point(16, 76);
     this.videoCodecLabel.Name     = "videoCodecLabel";
     this.videoCodecLabel.Size     = new System.Drawing.Size(117, 16);
     this.videoCodecLabel.TabIndex = 0;
     this.videoCodecLabel.Text     = "DVD video decoder:";
     //
     // videoCodecComboBox
     //
     this.videoCodecComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.videoCodecComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.videoCodecComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.videoCodecComboBox.Location      = new System.Drawing.Point(168, 72);
     this.videoCodecComboBox.Name          = "videoCodecComboBox";
     this.videoCodecComboBox.Size          = new System.Drawing.Size(278, 21);
     this.videoCodecComboBox.Sorted        = true;
     this.videoCodecComboBox.TabIndex      = 2;
     //
     // checkBoxAC3
     //
     this.checkBoxAC3.AutoSize  = true;
     this.checkBoxAC3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxAC3.Location  = new System.Drawing.Point(19, 156);
     this.checkBoxAC3.Name      = "checkBoxAC3";
     this.checkBoxAC3.Size      = new System.Drawing.Size(295, 17);
     this.checkBoxAC3.TabIndex  = 5;
     this.checkBoxAC3.Text      = "Use AC3 filter (for some soundcards using SPDIF out)";
     this.checkBoxAC3.UseVisualStyleBackColor = true;
     //
     // dvdNavigatorComboBox
     //
     this.dvdNavigatorComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.dvdNavigatorComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.dvdNavigatorComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.dvdNavigatorComboBox.Location      = new System.Drawing.Point(168, 24);
     this.dvdNavigatorComboBox.Name          = "dvdNavigatorComboBox";
     this.dvdNavigatorComboBox.Size          = new System.Drawing.Size(278, 21);
     this.dvdNavigatorComboBox.Sorted        = true;
     this.dvdNavigatorComboBox.TabIndex      = 1;
     //
     // audioCodecComboBox
     //
     this.audioCodecComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.audioCodecComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.audioCodecComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.audioCodecComboBox.Location      = new System.Drawing.Point(168, 96);
     this.audioCodecComboBox.Name          = "audioCodecComboBox";
     this.audioCodecComboBox.Size          = new System.Drawing.Size(278, 21);
     this.audioCodecComboBox.Sorted        = true;
     this.audioCodecComboBox.TabIndex      = 3;
     //
     // dvdNavigatorLabel
     //
     this.dvdNavigatorLabel.Location = new System.Drawing.Point(16, 28);
     this.dvdNavigatorLabel.Name     = "dvdNavigatorLabel";
     this.dvdNavigatorLabel.Size     = new System.Drawing.Size(88, 15);
     this.dvdNavigatorLabel.TabIndex = 2;
     this.dvdNavigatorLabel.Text     = "DVD Navigator:";
     //
     // audioCodecLabel
     //
     this.audioCodecLabel.Location = new System.Drawing.Point(16, 99);
     this.audioCodecLabel.Name     = "audioCodecLabel";
     this.audioCodecLabel.Size     = new System.Drawing.Size(117, 17);
     this.audioCodecLabel.TabIndex = 6;
     this.audioCodecLabel.Text     = "DVD audio decoder:";
     //
     // DVDCodec
     //
     this.BackColor = System.Drawing.SystemColors.Window;
     this.Controls.Add(this.groupBox1);
     this.Name = "DVDCodec";
     this.Size = new System.Drawing.Size(472, 391);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.cmdTest   = new MediaPortal.UserInterface.Controls.MPButton();
     this.label2    = new MediaPortal.UserInterface.Controls.MPLabel();
     this.testRedeyeChannelsTextBox = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.buttonIRDA        = new MediaPortal.UserInterface.Controls.MPButton();
     this.buttonRC5         = new MediaPortal.UserInterface.Controls.MPButton();
     this.buttonSKY         = new MediaPortal.UserInterface.Controls.MPButton();
     this.label7            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label6            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.CommandDelayCombo = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label1            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.CommPortCombo     = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.inputCheckBox     = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.infoTextBox       = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.groupBox2         = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.statusLabel       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.groupBox3         = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.cmdTest);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.testRedeyeChannelsTextBox);
     this.groupBox1.Controls.Add(this.buttonIRDA);
     this.groupBox1.Controls.Add(this.buttonRC5);
     this.groupBox1.Controls.Add(this.buttonSKY);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.CommandDelayCombo);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.CommPortCombo);
     this.groupBox1.Controls.Add(this.inputCheckBox);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(6, 0);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(462, 184);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "General settings";
     //
     // cmdTest
     //
     this.cmdTest.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdTest.Location = new System.Drawing.Point(374, 152);
     this.cmdTest.Name     = "cmdTest";
     this.cmdTest.Size     = new System.Drawing.Size(72, 22);
     this.cmdTest.TabIndex = 11;
     this.cmdTest.Text     = "Test";
     this.cmdTest.UseVisualStyleBackColor = true;
     this.cmdTest.Click += new System.EventHandler(this.cmdTest_Click);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 128);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 9;
     this.label2.Text     = "Channels:";
     //
     // testRedeyeChannelsTextBox
     //
     this.testRedeyeChannelsTextBox.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.testRedeyeChannelsTextBox.BorderColor = System.Drawing.Color.Empty;
     this.testRedeyeChannelsTextBox.Location    = new System.Drawing.Point(168, 124);
     this.testRedeyeChannelsTextBox.MaxLength   = 3;
     this.testRedeyeChannelsTextBox.Name        = "testRedeyeChannelsTextBox";
     this.testRedeyeChannelsTextBox.Size        = new System.Drawing.Size(278, 20);
     this.testRedeyeChannelsTextBox.TabIndex    = 10;
     //
     // buttonIRDA
     //
     this.buttonIRDA.Location = new System.Drawing.Point(167, 50);
     this.buttonIRDA.Name     = "buttonIRDA";
     this.buttonIRDA.Size     = new System.Drawing.Size(72, 23);
     this.buttonIRDA.TabIndex = 2;
     this.buttonIRDA.Text     = "IRDA";
     this.buttonIRDA.UseVisualStyleBackColor = true;
     this.buttonIRDA.Click += new System.EventHandler(this.buttonIRDA_Click);
     //
     // buttonRC5
     //
     this.buttonRC5.Location = new System.Drawing.Point(247, 50);
     this.buttonRC5.Name     = "buttonRC5";
     this.buttonRC5.Size     = new System.Drawing.Size(72, 23);
     this.buttonRC5.TabIndex = 3;
     this.buttonRC5.Text     = "RC5";
     this.buttonRC5.UseVisualStyleBackColor = true;
     this.buttonRC5.Click += new System.EventHandler(this.buttonRC5_Click);
     //
     // buttonSKY
     //
     this.buttonSKY.Location = new System.Drawing.Point(327, 50);
     this.buttonSKY.Name     = "buttonSKY";
     this.buttonSKY.Size     = new System.Drawing.Size(72, 23);
     this.buttonSKY.TabIndex = 4;
     this.buttonSKY.Text     = "SKY";
     this.buttonSKY.UseVisualStyleBackColor = true;
     this.buttonSKY.Click += new System.EventHandler(this.buttonSKY_Click);
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(16, 56);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(64, 16);
     this.label7.TabIndex = 1;
     this.label7.Text     = "Signal Type:";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(16, 104);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(72, 16);
     this.label6.TabIndex = 7;
     this.label6.Text     = "Delay (msec.):";
     //
     // CommandDelayCombo
     //
     this.CommandDelayCombo.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.CommandDelayCombo.BorderColor   = System.Drawing.Color.Empty;
     this.CommandDelayCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.CommandDelayCombo.Items.AddRange(new object[]
     {
         "150",
         "200",
         "250",
         "300",
         "350",
         "400",
         "450",
         "500",
         "550",
         "600",
         "650",
         "700",
         "750",
         "800",
         "850",
         "900",
         "950",
         "1000",
         "1050",
         "1100",
         "1150",
         "1200"
     });
     this.CommandDelayCombo.Location              = new System.Drawing.Point(168, 100);
     this.CommandDelayCombo.Name                  = "CommandDelayCombo";
     this.CommandDelayCombo.Size                  = new System.Drawing.Size(278, 21);
     this.CommandDelayCombo.TabIndex              = 8;
     this.CommandDelayCombo.SelectedIndexChanged += new System.EventHandler(this.CommandDelayCombo_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 80);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(24, 16);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Port:";
     //
     // CommPortCombo
     //
     this.CommPortCombo.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.CommPortCombo.BorderColor   = System.Drawing.Color.Empty;
     this.CommPortCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.CommPortCombo.Items.AddRange(new object[]
     {
         "COM1:",
         "COM2:",
         "COM3:",
         "COM4:",
         "COM5:",
         "COM6:",
         "COM7:",
         "COM8:"
     });
     this.CommPortCombo.Location              = new System.Drawing.Point(168, 76);
     this.CommPortCombo.Name                  = "CommPortCombo";
     this.CommPortCombo.Size                  = new System.Drawing.Size(278, 21);
     this.CommPortCombo.TabIndex              = 6;
     this.CommPortCombo.SelectedIndexChanged += new System.EventHandler(this.CommPortCombo_SelectedIndexChanged);
     //
     // inputCheckBox
     //
     this.inputCheckBox.AutoSize  = true;
     this.inputCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.inputCheckBox.Location  = new System.Drawing.Point(16, 24);
     this.inputCheckBox.Name      = "inputCheckBox";
     this.inputCheckBox.Size      = new System.Drawing.Size(127, 17);
     this.inputCheckBox.TabIndex  = 0;
     this.inputCheckBox.Text      = "Enable RedEye Serial";
     this.inputCheckBox.UseVisualStyleBackColor = true;
     this.inputCheckBox.CheckedChanged         += new System.EventHandler(this.inputCheckBox_CheckedChanged);
     //
     // infoTextBox
     //
     this.infoTextBox.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.infoTextBox.BackColor   = System.Drawing.SystemColors.Control;
     this.infoTextBox.BorderColor = System.Drawing.Color.Empty;
     this.infoTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.infoTextBox.Location    = new System.Drawing.Point(16, 24);
     this.infoTextBox.Multiline   = true;
     this.infoTextBox.Name        = "infoTextBox";
     this.infoTextBox.ReadOnly    = true;
     this.infoTextBox.ScrollBars  = System.Windows.Forms.ScrollBars.Vertical;
     this.infoTextBox.Size        = new System.Drawing.Size(430, 104);
     this.infoTextBox.TabIndex    = 0;
     this.infoTextBox.WordWrap    = false;
     //
     // groupBox2
     //
     this.groupBox2.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.statusLabel);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox2.Location  = new System.Drawing.Point(6, 192);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(462, 64);
     this.groupBox2.TabIndex  = 1;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Device status";
     //
     // statusLabel
     //
     this.statusLabel.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.statusLabel.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.statusLabel.Location  = new System.Drawing.Point(16, 24);
     this.statusLabel.Name      = "statusLabel";
     this.statusLabel.Size      = new System.Drawing.Size(430, 32);
     this.statusLabel.TabIndex  = 0;
     this.statusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.statusLabel.Click    += new System.EventHandler(this.statusLabel_Click);
     //
     // groupBox3
     //
     this.groupBox3.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox3.Controls.Add(this.infoTextBox);
     this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox3.Location  = new System.Drawing.Point(6, 264);
     this.groupBox3.Name      = "groupBox3";
     this.groupBox3.Size      = new System.Drawing.Size(462, 144);
     this.groupBox3.TabIndex  = 2;
     this.groupBox3.TabStop   = false;
     this.groupBox3.Text      = "Information";
     //
     // RemoteRedEye
     //
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Name = "RemoteRedEye";
     this.Size = new System.Drawing.Size(472, 408);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components         = new System.ComponentModel.Container();
     this.tabControl1        = new MediaPortal.UserInterface.Controls.MPTabControl();
     this.tabPage1           = new MediaPortal.UserInterface.Controls.MPTabPage();
     this.editFormat1        = new Yeti.MMedia.EditFormat();
     this.tabPage2           = new MediaPortal.UserInterface.Controls.MPTabPage();
     this.checkBoxPrivate    = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxOriginal   = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxCRC        = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxCopyRight  = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxVBR        = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.groupBoxVBR        = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.label8             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label7             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBoxVBRMethod  = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label4             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.trackBarVBRQuality = new System.Windows.Forms.TrackBar();
     this.label6             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBoxAvgBitrate = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label5             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBoxMaxBitRate = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label3             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.comboBoxBitRate    = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.textBoxMpegVersion = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label2             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label1             = new MediaPortal.UserInterface.Controls.MPLabel();
     this.toolTip1           = new System.Windows.Forms.ToolTip(this.components);
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.groupBoxVBR.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarVBRQuality)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(336, 280);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.editFormat1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(328, 254);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Input format";
     //
     // editFormat1
     //
     this.editFormat1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.editFormat1.Location = new System.Drawing.Point(0, 0);
     this.editFormat1.Name     = "editFormat1";
     this.editFormat1.ReadOnly = true;
     this.editFormat1.Size     = new System.Drawing.Size(328, 254);
     this.editFormat1.TabIndex = 0;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.checkBoxPrivate);
     this.tabPage2.Controls.Add(this.checkBoxOriginal);
     this.tabPage2.Controls.Add(this.checkBoxCRC);
     this.tabPage2.Controls.Add(this.checkBoxCopyRight);
     this.tabPage2.Controls.Add(this.checkBoxVBR);
     this.tabPage2.Controls.Add(this.groupBoxVBR);
     this.tabPage2.Controls.Add(this.comboBoxBitRate);
     this.tabPage2.Controls.Add(this.textBoxMpegVersion);
     this.tabPage2.Controls.Add(this.label2);
     this.tabPage2.Controls.Add(this.label1);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(328, 254);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "MP3 config";
     //
     // checkBoxPrivate
     //
     this.checkBoxPrivate.Location = new System.Drawing.Point(248, 48);
     this.checkBoxPrivate.Name     = "checkBoxPrivate";
     this.checkBoxPrivate.Size     = new System.Drawing.Size(72, 24);
     this.checkBoxPrivate.TabIndex = 9;
     this.checkBoxPrivate.Text     = "Private";
     this.toolTip1.SetToolTip(this.checkBoxPrivate, "Controls the private bit of MP3 stream");
     this.checkBoxPrivate.CheckedChanged += new System.EventHandler(this.Control_Changed);
     //
     // checkBoxOriginal
     //
     this.checkBoxOriginal.Location = new System.Drawing.Point(168, 48);
     this.checkBoxOriginal.Name     = "checkBoxOriginal";
     this.checkBoxOriginal.Size     = new System.Drawing.Size(72, 24);
     this.checkBoxOriginal.TabIndex = 8;
     this.checkBoxOriginal.Text     = "Original";
     this.toolTip1.SetToolTip(this.checkBoxOriginal, "Controls the original bit of MP3 stream");
     this.checkBoxOriginal.CheckedChanged += new System.EventHandler(this.Control_Changed);
     //
     // checkBoxCRC
     //
     this.checkBoxCRC.Location = new System.Drawing.Point(88, 48);
     this.checkBoxCRC.Name     = "checkBoxCRC";
     this.checkBoxCRC.Size     = new System.Drawing.Size(72, 24);
     this.checkBoxCRC.TabIndex = 7;
     this.checkBoxCRC.Text     = "CRC";
     this.toolTip1.SetToolTip(this.checkBoxCRC, "If set enables CRC-checksum in the bitstream");
     this.checkBoxCRC.CheckedChanged += new System.EventHandler(this.Control_Changed);
     //
     // checkBoxCopyRight
     //
     this.checkBoxCopyRight.Location = new System.Drawing.Point(8, 48);
     this.checkBoxCopyRight.Name     = "checkBoxCopyRight";
     this.checkBoxCopyRight.Size     = new System.Drawing.Size(72, 24);
     this.checkBoxCopyRight.TabIndex = 6;
     this.checkBoxCopyRight.Text     = "Copyright";
     this.toolTip1.SetToolTip(this.checkBoxCopyRight, "Controls the copyrightb bit of MP3 stream");
     this.checkBoxCopyRight.CheckedChanged += new System.EventHandler(this.Control_Changed);
     //
     // checkBoxVBR
     //
     this.checkBoxVBR.Location        = new System.Drawing.Point(8, 72);
     this.checkBoxVBR.Name            = "checkBoxVBR";
     this.checkBoxVBR.Size            = new System.Drawing.Size(192, 24);
     this.checkBoxVBR.TabIndex        = 5;
     this.checkBoxVBR.Text            = "Enable Variable Bit Rate (VBR)";
     this.checkBoxVBR.CheckedChanged += new System.EventHandler(this.checkBoxVBR_CheckedChanged);
     //
     // groupBoxVBR
     //
     this.groupBoxVBR.Controls.Add(this.label8);
     this.groupBoxVBR.Controls.Add(this.label7);
     this.groupBoxVBR.Controls.Add(this.comboBoxVBRMethod);
     this.groupBoxVBR.Controls.Add(this.label4);
     this.groupBoxVBR.Controls.Add(this.trackBarVBRQuality);
     this.groupBoxVBR.Controls.Add(this.label6);
     this.groupBoxVBR.Controls.Add(this.comboBoxAvgBitrate);
     this.groupBoxVBR.Controls.Add(this.label5);
     this.groupBoxVBR.Controls.Add(this.comboBoxMaxBitRate);
     this.groupBoxVBR.Controls.Add(this.label3);
     this.groupBoxVBR.Location = new System.Drawing.Point(8, 96);
     this.groupBoxVBR.Name     = "groupBoxVBR";
     this.groupBoxVBR.Size     = new System.Drawing.Size(304, 144);
     this.groupBoxVBR.TabIndex = 4;
     this.groupBoxVBR.TabStop  = false;
     this.groupBoxVBR.Text     = "VBR options";
     //
     // label8
     //
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold,
                                                System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label8.Location = new System.Drawing.Point(256, 64);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(32, 16);
     this.label8.TabIndex = 13;
     this.label8.Text     = "Min";
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold,
                                                System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location = new System.Drawing.Point(152, 64);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(56, 16);
     this.label7.TabIndex = 12;
     this.label7.Text     = "Max.";
     //
     // comboBoxVBRMethod
     //
     this.comboBoxVBRMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxVBRMethod.Items.AddRange(new object[]
     {
         "NONE",
         "DEFAULT",
         "OLD",
         "NEW",
         "MTRH",
         "ABR"
     });
     this.comboBoxVBRMethod.Location              = new System.Drawing.Point(8, 32);
     this.comboBoxVBRMethod.Name                  = "comboBoxVBRMethod";
     this.comboBoxVBRMethod.Size                  = new System.Drawing.Size(121, 21);
     this.comboBoxVBRMethod.TabIndex              = 7;
     this.comboBoxVBRMethod.SelectedIndexChanged += new System.EventHandler(this.comboBoxVBRMethod_SelectedIndexChanged);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 16);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(96, 24);
     this.label4.TabIndex = 6;
     this.label4.Text     = "VBR method:";
     //
     // trackBarVBRQuality
     //
     this.trackBarVBRQuality.LargeChange = 0;
     this.trackBarVBRQuality.Location    = new System.Drawing.Point(144, 32);
     this.trackBarVBRQuality.Maximum     = 9;
     this.trackBarVBRQuality.Name        = "trackBarVBRQuality";
     this.trackBarVBRQuality.Size        = new System.Drawing.Size(144, 42);
     this.trackBarVBRQuality.TabIndex    = 11;
     this.trackBarVBRQuality.Scroll     += new System.EventHandler(this.Control_Changed);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(152, 16);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(100, 16);
     this.label6.TabIndex = 10;
     this.label6.Text     = "VBR quality:";
     //
     // comboBoxAvgBitrate
     //
     this.comboBoxAvgBitrate.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxAvgBitrate.Location              = new System.Drawing.Point(8, 112);
     this.comboBoxAvgBitrate.Name                  = "comboBoxAvgBitrate";
     this.comboBoxAvgBitrate.Size                  = new System.Drawing.Size(121, 21);
     this.comboBoxAvgBitrate.TabIndex              = 9;
     this.comboBoxAvgBitrate.SelectedIndexChanged += new System.EventHandler(this.Control_Changed);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(8, 96);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(88, 16);
     this.label5.TabIndex = 8;
     this.label5.Text     = "Average bit rate:";
     //
     // comboBoxMaxBitRate
     //
     this.comboBoxMaxBitRate.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxMaxBitRate.Location              = new System.Drawing.Point(8, 72);
     this.comboBoxMaxBitRate.Name                  = "comboBoxMaxBitRate";
     this.comboBoxMaxBitRate.Size                  = new System.Drawing.Size(121, 21);
     this.comboBoxMaxBitRate.TabIndex              = 5;
     this.comboBoxMaxBitRate.SelectedIndexChanged += new System.EventHandler(this.BitRateChange);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 56);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(104, 16);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Max bit rate:";
     //
     // comboBoxBitRate
     //
     this.comboBoxBitRate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxBitRate.Location      = new System.Drawing.Point(168, 24);
     this.comboBoxBitRate.Name          = "comboBoxBitRate";
     this.comboBoxBitRate.Size          = new System.Drawing.Size(121, 21);
     this.comboBoxBitRate.TabIndex      = 3;
     this.toolTip1.SetToolTip(this.comboBoxBitRate, "Minimum bit rate if VBR is specified ");
     this.comboBoxBitRate.SelectedIndexChanged += new System.EventHandler(this.BitRateChange);
     //
     // textBoxMpegVersion
     //
     this.textBoxMpegVersion.Location = new System.Drawing.Point(8, 24);
     this.textBoxMpegVersion.Name     = "textBoxMpegVersion";
     this.textBoxMpegVersion.ReadOnly = true;
     this.textBoxMpegVersion.Size     = new System.Drawing.Size(120, 20);
     this.textBoxMpegVersion.TabIndex = 2;
     this.textBoxMpegVersion.Text     = "";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 8);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(96, 16);
     this.label2.TabIndex = 1;
     this.label2.Text     = "MPEG Version:";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(168, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Bit rate:";
     //
     // EditMp3Writer
     //
     this.Controls.Add(this.tabControl1);
     this.Name = "EditMp3Writer";
     this.Size = new System.Drawing.Size(336, 280);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.groupBoxVBR.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackBarVBRQuality)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.folderBrowserDialog             = new System.Windows.Forms.FolderBrowserDialog();
     this.fontDialog                      = new System.Windows.Forms.FontDialog();
     this.tabControl1                     = new MediaPortal.UserInterface.Controls.MPTabControl();
     this.useBDInternalMenu               = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.mpTabPage1                      = new MediaPortal.UserInterface.Controls.MPTabPage();
     this.mpGroupBox4                     = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.mpLabel7                        = new MediaPortal.UserInterface.Controls.MPLabel();
     this.defaultAudioLanguageComboBox    = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpLabel8                        = new MediaPortal.UserInterface.Controls.MPLabel();
     this.defaultSubtitleLanguageComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.groupBox1                       = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.labelPlayAll                    = new MediaPortal.UserInterface.Controls.MPLabel();
     this.tabPage1                        = new MediaPortal.UserInterface.Controls.MPTabPage();
     this.tabControl1.SuspendLayout();
     this.mpTabPage1.SuspendLayout();
     this.mpGroupBox4.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.mpTabPage1);
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(472, 408);
     this.tabControl1.TabIndex      = 0;
     //
     // mpTabPage1
     //
     this.mpTabPage1.Controls.Add(this.mpGroupBox4);
     this.mpTabPage1.Location = new System.Drawing.Point(4, 22);
     this.mpTabPage1.Name     = "mpTabPage1";
     this.mpTabPage1.Size     = new System.Drawing.Size(464, 382);
     this.mpTabPage1.TabIndex = 9;
     this.mpTabPage1.Text     = "Language";
     this.mpTabPage1.UseVisualStyleBackColor = true;
     //
     // mpGroupBox4
     //
     this.mpGroupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.mpGroupBox4.Controls.Add(this.mpLabel7);
     this.mpGroupBox4.Controls.Add(this.defaultAudioLanguageComboBox);
     this.mpGroupBox4.Controls.Add(this.mpLabel8);
     this.mpGroupBox4.Controls.Add(this.defaultSubtitleLanguageComboBox);
     this.mpGroupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox4.Location  = new System.Drawing.Point(14, 12);
     this.mpGroupBox4.Name      = "mpGroupBox4";
     this.mpGroupBox4.Size      = new System.Drawing.Size(432, 88);
     this.mpGroupBox4.TabIndex  = 10;
     this.mpGroupBox4.TabStop   = false;
     this.mpGroupBox4.Text      = "Default Language";
     //
     // mpLabel7
     //
     this.mpLabel7.Location = new System.Drawing.Point(13, 56);
     this.mpLabel7.Name     = "mpLabel7";
     this.mpLabel7.Size     = new System.Drawing.Size(96, 16);
     this.mpLabel7.TabIndex = 6;
     this.mpLabel7.Text     = "Audio:";
     //
     // defaultAudioLanguageComboBox
     //
     this.defaultAudioLanguageComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.defaultAudioLanguageComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.defaultAudioLanguageComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.defaultAudioLanguageComboBox.Location      = new System.Drawing.Point(136, 51);
     this.defaultAudioLanguageComboBox.Name          = "defaultAudioLanguageComboBox";
     this.defaultAudioLanguageComboBox.Size          = new System.Drawing.Size(280, 21);
     this.defaultAudioLanguageComboBox.Sorted        = true;
     this.defaultAudioLanguageComboBox.TabIndex      = 7;
     //
     // mpLabel8
     //
     this.mpLabel8.Location = new System.Drawing.Point(13, 27);
     this.mpLabel8.Name     = "mpLabel8";
     this.mpLabel8.Size     = new System.Drawing.Size(96, 16);
     this.mpLabel8.TabIndex = 6;
     this.mpLabel8.Text     = "Subtitles:";
     //
     // defaultSubtitleLanguageComboBox
     //
     this.defaultSubtitleLanguageComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.defaultSubtitleLanguageComboBox.BorderColor   = System.Drawing.Color.Empty;
     this.defaultSubtitleLanguageComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.defaultSubtitleLanguageComboBox.Location      = new System.Drawing.Point(136, 24);
     this.defaultSubtitleLanguageComboBox.Name          = "defaultSubtitleLanguageComboBox";
     this.defaultSubtitleLanguageComboBox.Size          = new System.Drawing.Size(280, 21);
     this.defaultSubtitleLanguageComboBox.Sorted        = true;
     this.defaultSubtitleLanguageComboBox.TabIndex      = 7;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.useBDInternalMenu);
     this.groupBox1.Controls.Add(this.labelPlayAll);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(16, 16);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(432, 186);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Settings";
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(464, 382);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "General";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // BD
     //
     this.Controls.Add(this.tabControl1);
     this.Name = "BD";
     this.Size = new System.Drawing.Size(472, 408);
     this.tabControl1.ResumeLayout(false);
     this.mpTabPage1.ResumeLayout(false);
     this.mpGroupBox4.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabPage1.ResumeLayout(false);
     this.ResumeLayout(false);
     //
     // useBDInternalMenu
     //
     this.useBDInternalMenu.AutoSize  = true;
     this.useBDInternalMenu.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.useBDInternalMenu.Location  = new System.Drawing.Point(15, 26);
     this.useBDInternalMenu.Name      = "useBDInternalMenu";
     this.useBDInternalMenu.Size      = new System.Drawing.Size(151, 17);
     this.useBDInternalMenu.TabIndex  = 6;
     this.useBDInternalMenu.Text      = "Use internal Blu-Ray player";
     this.useBDInternalMenu.UseVisualStyleBackColor = true;
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBoxAc3DecoderSettings = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.radioButtonAc3Spdif        = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonAc3Speakers     = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.checkBoxAc3Lfe             = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.comboBoxAc3SpeakerConfig   = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.checkBoxAc3DynamicRange    = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.groupBoxFormat             = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.labelBoostValue            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.labelBoost                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.radioButtonPcm16Bit        = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonPcm24Bit        = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonPcm32Bit        = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonIeee            = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.checkBoxNormalize          = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.trackBarBoost              = new System.Windows.Forms.TrackBar();
     this.groupBoxDtsDecoderSettings = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.radioButtonDtsSpdif        = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.radioButtonDtsSpeakers     = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.checkBoxDtsLfe             = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.comboBoxDtsSpeakerConfig   = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.checkBoxDtsDynamicRange    = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.groupBoxAacDecoderSettings = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.checkBoxAacDynamic         = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxAacDownmix         = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.label2 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.groupBoxAc3DecoderSettings.SuspendLayout();
     this.groupBoxFormat.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarBoost)).BeginInit();
     this.groupBoxDtsDecoderSettings.SuspendLayout();
     this.groupBoxAacDecoderSettings.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBoxAc3DecoderSettings
     //
     this.groupBoxAc3DecoderSettings.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBoxAc3DecoderSettings.Controls.Add(this.radioButtonAc3Spdif);
     this.groupBoxAc3DecoderSettings.Controls.Add(this.radioButtonAc3Speakers);
     this.groupBoxAc3DecoderSettings.Controls.Add(this.checkBoxAc3Lfe);
     this.groupBoxAc3DecoderSettings.Controls.Add(this.comboBoxAc3SpeakerConfig);
     this.groupBoxAc3DecoderSettings.Controls.Add(this.checkBoxAc3DynamicRange);
     this.groupBoxAc3DecoderSettings.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBoxAc3DecoderSettings.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F,
                                                                         System.Drawing.FontStyle.Regular,
                                                                         System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBoxAc3DecoderSettings.Location = new System.Drawing.Point(6, 0);
     this.groupBoxAc3DecoderSettings.Name     = "groupBoxAc3DecoderSettings";
     this.groupBoxAc3DecoderSettings.Size     = new System.Drawing.Size(462, 104);
     this.groupBoxAc3DecoderSettings.TabIndex = 0;
     this.groupBoxAc3DecoderSettings.TabStop  = false;
     this.groupBoxAc3DecoderSettings.Text     = "AC3 Decoder Settings";
     //
     // radioButtonAc3Spdif
     //
     this.radioButtonAc3Spdif.AutoSize  = true;
     this.radioButtonAc3Spdif.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonAc3Spdif.Location  = new System.Drawing.Point(16, 48);
     this.radioButtonAc3Spdif.Name      = "radioButtonAc3Spdif";
     this.radioButtonAc3Spdif.Size      = new System.Drawing.Size(60, 17);
     this.radioButtonAc3Spdif.TabIndex  = 3;
     this.radioButtonAc3Spdif.Text      = "S/PDIF";
     this.radioButtonAc3Spdif.UseVisualStyleBackColor = true;
     this.radioButtonAc3Spdif.CheckedChanged         += new System.EventHandler(this.radioButtonAC3SPDIF_CheckedChanged);
     //
     // radioButtonAc3Speakers
     //
     this.radioButtonAc3Speakers.AutoSize  = true;
     this.radioButtonAc3Speakers.Checked   = true;
     this.radioButtonAc3Speakers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonAc3Speakers.Location  = new System.Drawing.Point(16, 24);
     this.radioButtonAc3Speakers.Name      = "radioButtonAc3Speakers";
     this.radioButtonAc3Speakers.Size      = new System.Drawing.Size(123, 17);
     this.radioButtonAc3Speakers.TabIndex  = 0;
     this.radioButtonAc3Speakers.TabStop   = true;
     this.radioButtonAc3Speakers.Text      = "Decode to speakers:";
     this.radioButtonAc3Speakers.UseVisualStyleBackColor = true;
     //
     // checkBoxAc3Lfe
     //
     this.checkBoxAc3Lfe.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkBoxAc3Lfe.AutoSize  = true;
     this.checkBoxAc3Lfe.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxAc3Lfe.Location  = new System.Drawing.Point(403, 24);
     this.checkBoxAc3Lfe.Name      = "checkBoxAc3Lfe";
     this.checkBoxAc3Lfe.Size      = new System.Drawing.Size(43, 17);
     this.checkBoxAc3Lfe.TabIndex  = 2;
     this.checkBoxAc3Lfe.Text      = "LFE";
     this.checkBoxAc3Lfe.UseVisualStyleBackColor = true;
     //
     // comboBoxAc3SpeakerConfig
     //
     this.comboBoxAc3SpeakerConfig.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxAc3SpeakerConfig.BorderColor   = System.Drawing.Color.Empty;
     this.comboBoxAc3SpeakerConfig.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxAc3SpeakerConfig.Items.AddRange(new object[]
     {
         "Dual Mono",
         "Mono",
         "Stereo",
         "3 Front",
         "2 Front + 1 Rear",
         "3 Front + 1 Rear",
         "2 Front + 2 Rear",
         "3 Front + 2 Rear",
         "Channel 1",
         "Channel 2",
         "Dolby Stereo"
     });
     this.comboBoxAc3SpeakerConfig.Location = new System.Drawing.Point(168, 20);
     this.comboBoxAc3SpeakerConfig.Name     = "comboBoxAc3SpeakerConfig";
     this.comboBoxAc3SpeakerConfig.Size     = new System.Drawing.Size(230, 21);
     this.comboBoxAc3SpeakerConfig.TabIndex = 1;
     //
     // checkBoxAc3DynamicRange
     //
     this.checkBoxAc3DynamicRange.AutoSize  = true;
     this.checkBoxAc3DynamicRange.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxAc3DynamicRange.Location  = new System.Drawing.Point(16, 72);
     this.checkBoxAc3DynamicRange.Name      = "checkBoxAc3DynamicRange";
     this.checkBoxAc3DynamicRange.Size      = new System.Drawing.Size(136, 17);
     this.checkBoxAc3DynamicRange.TabIndex  = 4;
     this.checkBoxAc3DynamicRange.Text      = "Dynamic Range Control";
     this.checkBoxAc3DynamicRange.UseVisualStyleBackColor = true;
     //
     // groupBoxFormat
     //
     this.groupBoxFormat.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBoxFormat.Controls.Add(this.labelBoostValue);
     this.groupBoxFormat.Controls.Add(this.labelBoost);
     this.groupBoxFormat.Controls.Add(this.radioButtonPcm16Bit);
     this.groupBoxFormat.Controls.Add(this.radioButtonPcm24Bit);
     this.groupBoxFormat.Controls.Add(this.radioButtonPcm32Bit);
     this.groupBoxFormat.Controls.Add(this.radioButtonIeee);
     this.groupBoxFormat.Controls.Add(this.checkBoxNormalize);
     this.groupBoxFormat.Controls.Add(this.trackBarBoost);
     this.groupBoxFormat.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBoxFormat.Location  = new System.Drawing.Point(7, 224);
     this.groupBoxFormat.Name      = "groupBoxFormat";
     this.groupBoxFormat.Size      = new System.Drawing.Size(461, 121);
     this.groupBoxFormat.TabIndex  = 2;
     this.groupBoxFormat.TabStop   = false;
     this.groupBoxFormat.Text      = "AC3/AAC/DTS/LPCM Format";
     //
     // labelBoostValue
     //
     this.labelBoostValue.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelBoostValue.Location  = new System.Drawing.Point(325, 51);
     this.labelBoostValue.Name      = "labelBoostValue";
     this.labelBoostValue.Size      = new System.Drawing.Size(26, 23);
     this.labelBoostValue.TabIndex  = 7;
     this.labelBoostValue.Text      = "0";
     this.labelBoostValue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelBoost
     //
     this.labelBoost.Location = new System.Drawing.Point(16, 56);
     this.labelBoost.Name     = "labelBoost";
     this.labelBoost.Size     = new System.Drawing.Size(40, 16);
     this.labelBoost.TabIndex = 4;
     this.labelBoost.Text     = "Boost:";
     //
     // radioButtonPcm16Bit
     //
     this.radioButtonPcm16Bit.AutoSize  = true;
     this.radioButtonPcm16Bit.Checked   = true;
     this.radioButtonPcm16Bit.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonPcm16Bit.Location  = new System.Drawing.Point(16, 24);
     this.radioButtonPcm16Bit.Name      = "radioButtonPcm16Bit";
     this.radioButtonPcm16Bit.Size      = new System.Drawing.Size(76, 17);
     this.radioButtonPcm16Bit.TabIndex  = 0;
     this.radioButtonPcm16Bit.TabStop   = true;
     this.radioButtonPcm16Bit.Text      = "PCM 16 bit";
     this.radioButtonPcm16Bit.UseVisualStyleBackColor = true;
     //
     // radioButtonPcm24Bit
     //
     this.radioButtonPcm24Bit.AutoSize  = true;
     this.radioButtonPcm24Bit.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonPcm24Bit.Location  = new System.Drawing.Point(104, 24);
     this.radioButtonPcm24Bit.Name      = "radioButtonPcm24Bit";
     this.radioButtonPcm24Bit.Size      = new System.Drawing.Size(76, 17);
     this.radioButtonPcm24Bit.TabIndex  = 1;
     this.radioButtonPcm24Bit.Text      = "PCM 24 bit";
     this.radioButtonPcm24Bit.UseVisualStyleBackColor = true;
     //
     // radioButtonPcm32Bit
     //
     this.radioButtonPcm32Bit.AutoSize  = true;
     this.radioButtonPcm32Bit.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonPcm32Bit.Location  = new System.Drawing.Point(192, 24);
     this.radioButtonPcm32Bit.Name      = "radioButtonPcm32Bit";
     this.radioButtonPcm32Bit.Size      = new System.Drawing.Size(76, 17);
     this.radioButtonPcm32Bit.TabIndex  = 2;
     this.radioButtonPcm32Bit.Text      = "PCM 32 bit";
     this.radioButtonPcm32Bit.UseVisualStyleBackColor = true;
     //
     // radioButtonIeee
     //
     this.radioButtonIeee.AutoSize  = true;
     this.radioButtonIeee.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonIeee.Location  = new System.Drawing.Point(288, 24);
     this.radioButtonIeee.Name      = "radioButtonIeee";
     this.radioButtonIeee.Size      = new System.Drawing.Size(74, 17);
     this.radioButtonIeee.TabIndex  = 3;
     this.radioButtonIeee.Text      = "IEEE Float";
     this.radioButtonIeee.UseVisualStyleBackColor = true;
     //
     // checkBoxNormalize
     //
     this.checkBoxNormalize.AutoSize  = true;
     this.checkBoxNormalize.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxNormalize.Location  = new System.Drawing.Point(16, 89);
     this.checkBoxNormalize.Name      = "checkBoxNormalize";
     this.checkBoxNormalize.Size      = new System.Drawing.Size(70, 17);
     this.checkBoxNormalize.TabIndex  = 6;
     this.checkBoxNormalize.Text      = "Normalize";
     this.checkBoxNormalize.UseVisualStyleBackColor = true;
     //
     // trackBarBoost
     //
     this.trackBarBoost.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarBoost.Location  = new System.Drawing.Point(48, 52);
     this.trackBarBoost.Maximum   = 100;
     this.trackBarBoost.Name      = "trackBarBoost";
     this.trackBarBoost.Size      = new System.Drawing.Size(281, 45);
     this.trackBarBoost.TabIndex  = 5;
     this.trackBarBoost.TickStyle = System.Windows.Forms.TickStyle.None;
     this.trackBarBoost.Scroll   += new System.EventHandler(this.trackBarBoost_Scroll);
     //
     // groupBoxDtsDecoderSettings
     //
     this.groupBoxDtsDecoderSettings.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBoxDtsDecoderSettings.Controls.Add(this.radioButtonDtsSpdif);
     this.groupBoxDtsDecoderSettings.Controls.Add(this.radioButtonDtsSpeakers);
     this.groupBoxDtsDecoderSettings.Controls.Add(this.checkBoxDtsLfe);
     this.groupBoxDtsDecoderSettings.Controls.Add(this.comboBoxDtsSpeakerConfig);
     this.groupBoxDtsDecoderSettings.Controls.Add(this.checkBoxDtsDynamicRange);
     this.groupBoxDtsDecoderSettings.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBoxDtsDecoderSettings.Location  = new System.Drawing.Point(6, 112);
     this.groupBoxDtsDecoderSettings.Name      = "groupBoxDtsDecoderSettings";
     this.groupBoxDtsDecoderSettings.Size      = new System.Drawing.Size(462, 104);
     this.groupBoxDtsDecoderSettings.TabIndex  = 1;
     this.groupBoxDtsDecoderSettings.TabStop   = false;
     this.groupBoxDtsDecoderSettings.Text      = "DTS Decoder Settings";
     //
     // radioButtonDtsSpdif
     //
     this.radioButtonDtsSpdif.AutoSize  = true;
     this.radioButtonDtsSpdif.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonDtsSpdif.Location  = new System.Drawing.Point(16, 48);
     this.radioButtonDtsSpdif.Name      = "radioButtonDtsSpdif";
     this.radioButtonDtsSpdif.Size      = new System.Drawing.Size(60, 17);
     this.radioButtonDtsSpdif.TabIndex  = 3;
     this.radioButtonDtsSpdif.Text      = "S/PDIF";
     this.radioButtonDtsSpdif.UseVisualStyleBackColor = true;
     this.radioButtonDtsSpdif.CheckedChanged         += new System.EventHandler(this.radioButtonDTSSPDIF_CheckedChanged);
     //
     // radioButtonDtsSpeakers
     //
     this.radioButtonDtsSpeakers.AutoSize  = true;
     this.radioButtonDtsSpeakers.Checked   = true;
     this.radioButtonDtsSpeakers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButtonDtsSpeakers.Location  = new System.Drawing.Point(16, 24);
     this.radioButtonDtsSpeakers.Name      = "radioButtonDtsSpeakers";
     this.radioButtonDtsSpeakers.Size      = new System.Drawing.Size(123, 17);
     this.radioButtonDtsSpeakers.TabIndex  = 0;
     this.radioButtonDtsSpeakers.TabStop   = true;
     this.radioButtonDtsSpeakers.Text      = "Decode to speakers:";
     this.radioButtonDtsSpeakers.UseVisualStyleBackColor = true;
     //
     // checkBoxDtsLfe
     //
     this.checkBoxDtsLfe.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkBoxDtsLfe.AutoSize  = true;
     this.checkBoxDtsLfe.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxDtsLfe.Location  = new System.Drawing.Point(403, 24);
     this.checkBoxDtsLfe.Name      = "checkBoxDtsLfe";
     this.checkBoxDtsLfe.Size      = new System.Drawing.Size(43, 17);
     this.checkBoxDtsLfe.TabIndex  = 2;
     this.checkBoxDtsLfe.Text      = "LFE";
     this.checkBoxDtsLfe.UseVisualStyleBackColor = true;
     //
     // comboBoxDtsSpeakerConfig
     //
     this.comboBoxDtsSpeakerConfig.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxDtsSpeakerConfig.BorderColor   = System.Drawing.Color.Empty;
     this.comboBoxDtsSpeakerConfig.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxDtsSpeakerConfig.Items.AddRange(new object[]
     {
         "Mono",
         "Dual Mono",
         "Stereo",
         "3 Front",
         "2 Front + 1 Rear",
         "3 Front + 1 Rear",
         "2 Front + 2 Rear",
         "3 Front + 2 Rear"
     });
     this.comboBoxDtsSpeakerConfig.Location = new System.Drawing.Point(168, 20);
     this.comboBoxDtsSpeakerConfig.Name     = "comboBoxDtsSpeakerConfig";
     this.comboBoxDtsSpeakerConfig.Size     = new System.Drawing.Size(230, 21);
     this.comboBoxDtsSpeakerConfig.TabIndex = 1;
     //
     // checkBoxDtsDynamicRange
     //
     this.checkBoxDtsDynamicRange.AutoSize  = true;
     this.checkBoxDtsDynamicRange.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxDtsDynamicRange.Location  = new System.Drawing.Point(16, 72);
     this.checkBoxDtsDynamicRange.Name      = "checkBoxDtsDynamicRange";
     this.checkBoxDtsDynamicRange.Size      = new System.Drawing.Size(136, 17);
     this.checkBoxDtsDynamicRange.TabIndex  = 4;
     this.checkBoxDtsDynamicRange.Text      = "Dynamic Range Control";
     this.checkBoxDtsDynamicRange.UseVisualStyleBackColor = true;
     //
     // groupBoxAacDecoderSettings
     //
     this.groupBoxAacDecoderSettings.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBoxAacDecoderSettings.Controls.Add(this.checkBoxAacDynamic);
     this.groupBoxAacDecoderSettings.Controls.Add(this.checkBoxAacDownmix);
     this.groupBoxAacDecoderSettings.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBoxAacDecoderSettings.Location  = new System.Drawing.Point(6, 353);
     this.groupBoxAacDecoderSettings.Name      = "groupBoxAacDecoderSettings";
     this.groupBoxAacDecoderSettings.Size      = new System.Drawing.Size(462, 52);
     this.groupBoxAacDecoderSettings.TabIndex  = 3;
     this.groupBoxAacDecoderSettings.TabStop   = false;
     this.groupBoxAacDecoderSettings.Text      = "AAC Decoder Settings";
     //
     // checkBoxAacDynamic
     //
     this.checkBoxAacDynamic.AutoSize  = true;
     this.checkBoxAacDynamic.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxAacDynamic.Location  = new System.Drawing.Point(192, 24);
     this.checkBoxAacDynamic.Name      = "checkBoxAacDynamic";
     this.checkBoxAacDynamic.Size      = new System.Drawing.Size(136, 17);
     this.checkBoxAacDynamic.TabIndex  = 5;
     this.checkBoxAacDynamic.Text      = "Dynamic Range Control";
     this.checkBoxAacDynamic.UseVisualStyleBackColor = true;
     //
     // checkBoxAacDownmix
     //
     this.checkBoxAacDownmix.AutoSize   = true;
     this.checkBoxAacDownmix.Checked    = true;
     this.checkBoxAacDownmix.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxAacDownmix.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxAacDownmix.Location   = new System.Drawing.Point(16, 24);
     this.checkBoxAacDownmix.Name       = "checkBoxAacDownmix";
     this.checkBoxAacDownmix.Size       = new System.Drawing.Size(111, 17);
     this.checkBoxAacDownmix.TabIndex   = 0;
     this.checkBoxAacDownmix.Text       = "Downmix to stereo";
     this.checkBoxAacDownmix.UseVisualStyleBackColor = true;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(104, 64);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 7;
     this.label2.Text     = "Boost:";
     //
     // FiltersMPEG2DecAudio
     //
     this.Controls.Add(this.groupBoxDtsDecoderSettings);
     this.Controls.Add(this.groupBoxAc3DecoderSettings);
     this.Controls.Add(this.groupBoxFormat);
     this.Controls.Add(this.groupBoxAacDecoderSettings);
     this.Name = "FiltersMPEG2DecAudio";
     this.Size = new System.Drawing.Size(472, 408);
     this.groupBoxAc3DecoderSettings.ResumeLayout(false);
     this.groupBoxAc3DecoderSettings.PerformLayout();
     this.groupBoxFormat.ResumeLayout(false);
     this.groupBoxFormat.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarBoost)).EndInit();
     this.groupBoxDtsDecoderSettings.ResumeLayout(false);
     this.groupBoxDtsDecoderSettings.PerformLayout();
     this.groupBoxAacDecoderSettings.ResumeLayout(false);
     this.groupBoxAacDecoderSettings.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1                     = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.comboBoxDateAdded             = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.lblDate                       = new MediaPortal.UserInterface.Controls.MPLabel();
     this.groupBoxUseAlbumThumbs        = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.checkBoxCreateGenre           = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxCreateFolderThumb     = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxCreateArtist          = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.groupBoxUseForThumbs          = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.checkBoxAllImages             = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxUseFolderThumb        = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.buildThumbsCheckBox           = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.tbPrefixes                    = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.checkBoxStripArtistPrefix     = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxUpdateSinceLastImport = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.monitorSharesCheckBox         = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.folderAsAlbumCheckBox         = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.startButton                   = new MediaPortal.UserInterface.Controls.MPButton();
     this.sharesListBox                 = new System.Windows.Forms.CheckedListBox();
     this.groupBox2                     = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.fileLabel                     = new MediaPortal.UserInterface.Controls.MPLabel();
     this.groupBox1.SuspendLayout();
     this.groupBoxUseAlbumThumbs.SuspendLayout();
     this.groupBoxUseForThumbs.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.comboBoxDateAdded);
     this.groupBox1.Controls.Add(this.lblDate);
     this.groupBox1.Controls.Add(this.groupBoxUseAlbumThumbs);
     this.groupBox1.Controls.Add(this.groupBoxUseForThumbs);
     this.groupBox1.Controls.Add(this.tbPrefixes);
     this.groupBox1.Controls.Add(this.checkBoxStripArtistPrefix);
     this.groupBox1.Controls.Add(this.checkBoxUpdateSinceLastImport);
     this.groupBox1.Controls.Add(this.monitorSharesCheckBox);
     this.groupBox1.Controls.Add(this.folderAsAlbumCheckBox);
     this.groupBox1.Controls.Add(this.startButton);
     this.groupBox1.Controls.Add(this.sharesListBox);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(6, 0);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(462, 339);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Scan music folders";
     //
     // comboBoxDateAdded
     //
     this.comboBoxDateAdded.BorderColor       = System.Drawing.Color.Empty;
     this.comboBoxDateAdded.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxDateAdded.FormattingEnabled = true;
     this.comboBoxDateAdded.Items.AddRange(new object[]
     {
         "Current Date",
         "Creation Date",
         "Last Write Date"
     });
     this.comboBoxDateAdded.Location = new System.Drawing.Point(246, 257);
     this.comboBoxDateAdded.Name     = "comboBoxDateAdded";
     this.comboBoxDateAdded.Size     = new System.Drawing.Size(210, 21);
     this.comboBoxDateAdded.TabIndex = 16;
     //
     // lblDate
     //
     this.lblDate.AutoSize = true;
     this.lblDate.Location = new System.Drawing.Point(16, 261);
     this.lblDate.Name     = "lblDate";
     this.lblDate.Size     = new System.Drawing.Size(226, 13);
     this.lblDate.TabIndex = 15;
     this.lblDate.Text     = "Set date in database for new/changed files to:";
     //
     // groupBoxUseAlbumThumbs
     //
     this.groupBoxUseAlbumThumbs.Controls.Add(this.checkBoxCreateGenre);
     this.groupBoxUseAlbumThumbs.Controls.Add(this.checkBoxCreateFolderThumb);
     this.groupBoxUseAlbumThumbs.Controls.Add(this.checkBoxCreateArtist);
     this.groupBoxUseAlbumThumbs.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBoxUseAlbumThumbs.Location  = new System.Drawing.Point(246, 156);
     this.groupBoxUseAlbumThumbs.Name      = "groupBoxUseAlbumThumbs";
     this.groupBoxUseAlbumThumbs.Size      = new System.Drawing.Size(210, 96);
     this.groupBoxUseAlbumThumbs.TabIndex  = 14;
     this.groupBoxUseAlbumThumbs.TabStop   = false;
     this.groupBoxUseAlbumThumbs.Text      = "Use existing album thumbs to:";
     //
     // checkBoxCreateGenre
     //
     this.checkBoxCreateGenre.AutoSize   = true;
     this.checkBoxCreateGenre.Checked    = true;
     this.checkBoxCreateGenre.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxCreateGenre.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxCreateGenre.Location   = new System.Drawing.Point(15, 22);
     this.checkBoxCreateGenre.Name       = "checkBoxCreateGenre";
     this.checkBoxCreateGenre.Size       = new System.Drawing.Size(161, 17);
     this.checkBoxCreateGenre.TabIndex   = 7;
     this.checkBoxCreateGenre.Text       = "create genre preview thumbs";
     this.checkBoxCreateGenre.UseVisualStyleBackColor = true;
     //
     // checkBoxCreateFolderThumb
     //
     this.checkBoxCreateFolderThumb.AutoSize  = true;
     this.checkBoxCreateFolderThumb.Enabled   = false;
     this.checkBoxCreateFolderThumb.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxCreateFolderThumb.Location  = new System.Drawing.Point(15, 68);
     this.checkBoxCreateFolderThumb.Name      = "checkBoxCreateFolderThumb";
     this.checkBoxCreateFolderThumb.Size      = new System.Drawing.Size(137, 17);
     this.checkBoxCreateFolderThumb.TabIndex  = 9;
     this.checkBoxCreateFolderThumb.Text      = "create missing folder.jpg";
     this.checkBoxCreateFolderThumb.UseVisualStyleBackColor = true;
     //
     // checkBoxCreateArtist
     //
     this.checkBoxCreateArtist.AutoSize  = true;
     this.checkBoxCreateArtist.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxCreateArtist.Location  = new System.Drawing.Point(15, 45);
     this.checkBoxCreateArtist.Name      = "checkBoxCreateArtist";
     this.checkBoxCreateArtist.Size      = new System.Drawing.Size(156, 17);
     this.checkBoxCreateArtist.TabIndex  = 8;
     this.checkBoxCreateArtist.Text      = "create artist preview thumbs";
     this.checkBoxCreateArtist.UseVisualStyleBackColor = true;
     //
     // groupBoxUseForThumbs
     //
     this.groupBoxUseForThumbs.Controls.Add(this.checkBoxAllImages);
     this.groupBoxUseForThumbs.Controls.Add(this.checkBoxUseFolderThumb);
     this.groupBoxUseForThumbs.Controls.Add(this.buildThumbsCheckBox);
     this.groupBoxUseForThumbs.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBoxUseForThumbs.Location  = new System.Drawing.Point(16, 156);
     this.groupBoxUseForThumbs.Name      = "groupBoxUseForThumbs";
     this.groupBoxUseForThumbs.Size      = new System.Drawing.Size(210, 96);
     this.groupBoxUseForThumbs.TabIndex  = 13;
     this.groupBoxUseForThumbs.TabStop   = false;
     this.groupBoxUseForThumbs.Text      = "Use for thumb creation:";
     //
     // checkBoxAllImages
     //
     this.checkBoxAllImages.AutoSize   = true;
     this.checkBoxAllImages.Checked    = true;
     this.checkBoxAllImages.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxAllImages.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxAllImages.Location   = new System.Drawing.Point(15, 45);
     this.checkBoxAllImages.Name       = "checkBoxAllImages";
     this.checkBoxAllImages.Size       = new System.Drawing.Size(181, 17);
     this.checkBoxAllImages.TabIndex   = 5;
     this.checkBoxAllImages.Text       = "*.png, *.jpg (prefers \"front\" cover)";
     this.checkBoxAllImages.UseVisualStyleBackColor = true;
     //
     // checkBoxUseFolderThumb
     //
     this.checkBoxUseFolderThumb.AutoSize   = true;
     this.checkBoxUseFolderThumb.Checked    = true;
     this.checkBoxUseFolderThumb.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxUseFolderThumb.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxUseFolderThumb.Location   = new System.Drawing.Point(15, 22);
     this.checkBoxUseFolderThumb.Name       = "checkBoxUseFolderThumb";
     this.checkBoxUseFolderThumb.Size       = new System.Drawing.Size(143, 17);
     this.checkBoxUseFolderThumb.TabIndex   = 4;
     this.checkBoxUseFolderThumb.Text       = "folder.jpg (recommended)";
     this.checkBoxUseFolderThumb.UseVisualStyleBackColor = true;
     this.checkBoxUseFolderThumb.CheckedChanged         += new System.EventHandler(this.checkBoxUseFolderThumb_CheckedChanged);
     //
     // buildThumbsCheckBox
     //
     this.buildThumbsCheckBox.AutoSize  = true;
     this.buildThumbsCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buildThumbsCheckBox.Location  = new System.Drawing.Point(15, 68);
     this.buildThumbsCheckBox.Name      = "buildThumbsCheckBox";
     this.buildThumbsCheckBox.Size      = new System.Drawing.Size(177, 17);
     this.buildThumbsCheckBox.TabIndex  = 6;
     this.buildThumbsCheckBox.Text      = "cover art embedded in ID3-Tags";
     this.buildThumbsCheckBox.UseVisualStyleBackColor = true;
     //
     // tbPrefixes
     //
     this.tbPrefixes.BorderColor = System.Drawing.Color.Empty;
     this.tbPrefixes.Location    = new System.Drawing.Point(301, 109);
     this.tbPrefixes.Name        = "tbPrefixes";
     this.tbPrefixes.Size        = new System.Drawing.Size(155, 20);
     this.tbPrefixes.TabIndex    = 2;
     //
     // checkBoxStripArtistPrefix
     //
     this.checkBoxStripArtistPrefix.AutoSize  = true;
     this.checkBoxStripArtistPrefix.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxStripArtistPrefix.Location  = new System.Drawing.Point(16, 110);
     this.checkBoxStripArtistPrefix.Name      = "checkBoxStripArtistPrefix";
     this.checkBoxStripArtistPrefix.Size      = new System.Drawing.Size(279, 17);
     this.checkBoxStripArtistPrefix.TabIndex  = 1;
     this.checkBoxStripArtistPrefix.Text      = "Strip artist prefix (i.e. \"The Beatles\" ->  \"Beatles, The\")";
     this.checkBoxStripArtistPrefix.UseVisualStyleBackColor = true;
     //
     // checkBoxUpdateSinceLastImport
     //
     this.checkBoxUpdateSinceLastImport.AutoSize   = true;
     this.checkBoxUpdateSinceLastImport.Checked    = true;
     this.checkBoxUpdateSinceLastImport.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxUpdateSinceLastImport.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxUpdateSinceLastImport.Location   = new System.Drawing.Point(19, 287);
     this.checkBoxUpdateSinceLastImport.Name       = "checkBoxUpdateSinceLastImport";
     this.checkBoxUpdateSinceLastImport.Size       = new System.Drawing.Size(178, 17);
     this.checkBoxUpdateSinceLastImport.TabIndex   = 10;
     this.checkBoxUpdateSinceLastImport.Text       = "Only update new / changed files";
     this.checkBoxUpdateSinceLastImport.UseVisualStyleBackColor = true;
     //
     // monitorSharesCheckBox
     //
     this.monitorSharesCheckBox.AutoSize  = true;
     this.monitorSharesCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.monitorSharesCheckBox.Location  = new System.Drawing.Point(19, 311);
     this.monitorSharesCheckBox.Name      = "monitorSharesCheckBox";
     this.monitorSharesCheckBox.Size      = new System.Drawing.Size(199, 17);
     this.monitorSharesCheckBox.TabIndex  = 11;
     this.monitorSharesCheckBox.Text      = "Auto-update DB on changes in share";
     this.monitorSharesCheckBox.UseVisualStyleBackColor = true;
     this.monitorSharesCheckBox.CheckedChanged         += new System.EventHandler(this.monitorSharesCheckBox_CheckedChanged);
     //
     // folderAsAlbumCheckBox
     //
     this.folderAsAlbumCheckBox.AutoSize  = true;
     this.folderAsAlbumCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.folderAsAlbumCheckBox.Location  = new System.Drawing.Point(16, 133);
     this.folderAsAlbumCheckBox.Name      = "folderAsAlbumCheckBox";
     this.folderAsAlbumCheckBox.Size      = new System.Drawing.Size(243, 17);
     this.folderAsAlbumCheckBox.TabIndex  = 3;
     this.folderAsAlbumCheckBox.Text      = "Treat tracks in an individual folder as an album";
     this.folderAsAlbumCheckBox.UseVisualStyleBackColor = true;
     this.folderAsAlbumCheckBox.CheckedChanged         += new System.EventHandler(this.folderAsAlbumCheckBox_CheckedChanged);
     //
     // startButton
     //
     this.startButton.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.startButton.Location = new System.Drawing.Point(236, 307);
     this.startButton.Name     = "startButton";
     this.startButton.Size     = new System.Drawing.Size(210, 22);
     this.startButton.TabIndex = 12;
     this.startButton.Text     = "Update database from selected shares";
     this.startButton.UseVisualStyleBackColor = true;
     this.startButton.Click += new System.EventHandler(this.startButton_Click);
     //
     // sharesListBox
     //
     this.sharesListBox.CheckOnClick          = true;
     this.sharesListBox.Location              = new System.Drawing.Point(16, 24);
     this.sharesListBox.Name                  = "sharesListBox";
     this.sharesListBox.Size                  = new System.Drawing.Size(440, 79);
     this.sharesListBox.TabIndex              = 0;
     this.sharesListBox.SelectedIndexChanged += new System.EventHandler(this.sharesListBox_SelectedIndexChanged);
     this.sharesListBox.ItemCheck            += new System.Windows.Forms.ItemCheckEventHandler(this.sharesListBox_ItemCheck);
     this.sharesListBox.DoubleClick          += new System.EventHandler(this.sharesListBox_DoubleClick);
     //
     // groupBox2
     //
     this.groupBox2.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.fileLabel);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox2.Location  = new System.Drawing.Point(0, 345);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(472, 51);
     this.groupBox2.TabIndex  = 1;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Progress";
     //
     // fileLabel
     //
     this.fileLabel.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.fileLabel.Location = new System.Drawing.Point(16, 23);
     this.fileLabel.Name     = "fileLabel";
     this.fileLabel.Size     = new System.Drawing.Size(440, 16);
     this.fileLabel.TabIndex = 0;
     //
     // MusicDatabase
     //
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Name = "MusicDatabase";
     this.Size = new System.Drawing.Size(472, 408);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBoxUseAlbumThumbs.ResumeLayout(false);
     this.groupBoxUseAlbumThumbs.PerformLayout();
     this.groupBoxUseForThumbs.ResumeLayout(false);
     this.groupBoxUseForThumbs.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.checkBoxUsePrefix = new System.Windows.Forms.CheckBox();
     this.mpGroupBox1       = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.languageComboBox  = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label2            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.mpGroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // checkBoxUsePrefix
     //
     this.checkBoxUsePrefix.AutoSize   = true;
     this.checkBoxUsePrefix.Checked    = true;
     this.checkBoxUsePrefix.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxUsePrefix.Location   = new System.Drawing.Point(19, 58);
     this.checkBoxUsePrefix.Name       = "checkBoxUsePrefix";
     this.checkBoxUsePrefix.Size       = new System.Drawing.Size(199, 17);
     this.checkBoxUsePrefix.TabIndex   = 3;
     this.checkBoxUsePrefix.Text       = "Use string prefixes (e.g. TV = My TV)";
     this.checkBoxUsePrefix.UseVisualStyleBackColor = true;
     //
     // mpGroupBox1
     //
     this.mpGroupBox1.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.mpGroupBox1.Controls.Add(this.checkBoxUsePrefix);
     this.mpGroupBox1.Controls.Add(this.languageComboBox);
     this.mpGroupBox1.Controls.Add(this.label2);
     this.mpGroupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox1.Location  = new System.Drawing.Point(6, 0);
     this.mpGroupBox1.Name      = "mpGroupBox1";
     this.mpGroupBox1.Size      = new System.Drawing.Size(460, 88);
     this.mpGroupBox1.TabIndex  = 5;
     this.mpGroupBox1.TabStop   = false;
     this.mpGroupBox1.Text      = "Language Settings";
     //
     // languageComboBox
     //
     this.languageComboBox.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.languageComboBox.BorderColor     = System.Drawing.Color.Empty;
     this.languageComboBox.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.languageComboBox.Location        = new System.Drawing.Point(118, 21);
     this.languageComboBox.Name            = "languageComboBox";
     this.languageComboBox.Size            = new System.Drawing.Size(325, 21);
     this.languageComboBox.TabIndex        = 1;
     this.languageComboBox.DropDownClosed += new System.EventHandler(this.languageComboBox_DropDownClosed);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(96, 16);
     this.label2.TabIndex = 0;
     this.label2.Text     = "Display language:";
     //
     // GuiLanguage
     //
     this.BackColor = System.Drawing.SystemColors.Control;
     this.Controls.Add(this.mpGroupBox1);
     this.Name = "GuiLanguage";
     this.Size = new System.Drawing.Size(472, 408);
     this.mpGroupBox1.ResumeLayout(false);
     this.mpGroupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditShareForm));
     this.groupBox1           = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.mpButtonLearnMacNow = new MediaPortal.UserInterface.Controls.MPButton();
     this.cbEnableWakeOnLan   = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.cbEachFolderIsMovie = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.cbCreateThumbs      = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.labelCreateThumbs   = new MediaPortal.UserInterface.Controls.MPLabel();
     this.checkBoxPASV        = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.comboBox1           = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label9 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.textBoxRemoteFolder = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label3              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.label8              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.textBoxPort         = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.textBoxPassword     = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label7              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.textBoxLogin        = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label6              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.textBoxServer       = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label5              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.checkBoxRemote      = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.pinCodeTextBox      = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label4              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.folderButton        = new MediaPortal.UserInterface.Controls.MPButton();
     this.folderTextBox       = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label2              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.nameTextBox         = new MediaPortal.UserInterface.Controls.MPTextBox();
     this.label1              = new MediaPortal.UserInterface.Controls.MPLabel();
     this.cancelButton        = new MediaPortal.UserInterface.Controls.MPButton();
     this.okButton            = new MediaPortal.UserInterface.Controls.MPButton();
     this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
     this.toolTipEditShare    = new System.Windows.Forms.ToolTip(this.components);
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.mpButtonLearnMacNow);
     this.groupBox1.Controls.Add(this.cbEnableWakeOnLan);
     this.groupBox1.Controls.Add(this.cbEachFolderIsMovie);
     this.groupBox1.Controls.Add(this.cbCreateThumbs);
     this.groupBox1.Controls.Add(this.labelCreateThumbs);
     this.groupBox1.Controls.Add(this.checkBoxPASV);
     this.groupBox1.Controls.Add(this.comboBox1);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.textBoxRemoteFolder);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.textBoxPort);
     this.groupBox1.Controls.Add(this.textBoxPassword);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.textBoxLogin);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.textBoxServer);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.checkBoxRemote);
     this.groupBox1.Controls.Add(this.pinCodeTextBox);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.folderButton);
     this.groupBox1.Controls.Add(this.folderTextBox);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.nameTextBox);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(8, 8);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(408, 354);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Folder settings";
     this.groupBox1.Enter    += new System.EventHandler(this.groupBox1_Enter);
     //
     // mpButtonLearnMacNow
     //
     this.mpButtonLearnMacNow.Location = new System.Drawing.Point(251, 172);
     this.mpButtonLearnMacNow.Name     = "mpButtonLearnMacNow";
     this.mpButtonLearnMacNow.Size     = new System.Drawing.Size(141, 23);
     this.mpButtonLearnMacNow.TabIndex = 32;
     this.mpButtonLearnMacNow.Text     = "Learn MAC address now";
     this.mpButtonLearnMacNow.UseVisualStyleBackColor = true;
     this.mpButtonLearnMacNow.Click += new System.EventHandler(this.mpButton1_Click);
     //
     // cbEnableWakeOnLan
     //
     this.cbEnableWakeOnLan.AutoSize  = true;
     this.cbEnableWakeOnLan.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbEnableWakeOnLan.Location  = new System.Drawing.Point(16, 172);
     this.cbEnableWakeOnLan.Name      = "cbEnableWakeOnLan";
     this.cbEnableWakeOnLan.Size      = new System.Drawing.Size(127, 17);
     this.cbEnableWakeOnLan.TabIndex  = 31;
     this.cbEnableWakeOnLan.Text      = "Enable Wake On Lan";
     this.cbEnableWakeOnLan.UseVisualStyleBackColor = true;
     //
     // cbEachFolderIsMovie
     //
     this.cbEachFolderIsMovie.AutoSize  = true;
     this.cbEachFolderIsMovie.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbEachFolderIsMovie.Location  = new System.Drawing.Point(259, 140);
     this.cbEachFolderIsMovie.Name      = "cbEachFolderIsMovie";
     this.cbEachFolderIsMovie.Size      = new System.Drawing.Size(133, 17);
     this.cbEachFolderIsMovie.TabIndex  = 29;
     this.cbEachFolderIsMovie.Text      = "Dedicated movie folder";
     this.toolTipEditShare.SetToolTip(this.cbEachFolderIsMovie, resources.GetString("cbEachFolderIsMovie.ToolTip"));
     this.cbEachFolderIsMovie.UseVisualStyleBackColor = true;
     this.cbEachFolderIsMovie.Visible = false;
     //
     // cbCreateThumbs
     //
     this.cbCreateThumbs.AutoSize   = true;
     this.cbCreateThumbs.Checked    = true;
     this.cbCreateThumbs.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbCreateThumbs.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.cbCreateThumbs.Location   = new System.Drawing.Point(325, 43);
     this.cbCreateThumbs.Name       = "cbCreateThumbs";
     this.cbCreateThumbs.Size       = new System.Drawing.Size(13, 12);
     this.cbCreateThumbs.TabIndex   = 28;
     this.cbCreateThumbs.UseVisualStyleBackColor = true;
     this.cbCreateThumbs.Visible = false;
     //
     // labelCreateThumbs
     //
     this.labelCreateThumbs.Location = new System.Drawing.Point(293, 24);
     this.labelCreateThumbs.Name     = "labelCreateThumbs";
     this.labelCreateThumbs.Size     = new System.Drawing.Size(87, 16);
     this.labelCreateThumbs.TabIndex = 27;
     this.labelCreateThumbs.Text     = "Create Thumbs";
     this.labelCreateThumbs.Visible  = false;
     //
     // checkBoxPASV
     //
     this.checkBoxPASV.AutoSize  = true;
     this.checkBoxPASV.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxPASV.Location  = new System.Drawing.Point(343, 241);
     this.checkBoxPASV.Name      = "checkBoxPASV";
     this.checkBoxPASV.Size      = new System.Drawing.Size(52, 17);
     this.checkBoxPASV.TabIndex  = 26;
     this.checkBoxPASV.Text      = "PASV";
     this.checkBoxPASV.UseVisualStyleBackColor = true;
     this.checkBoxPASV.Visible = false;
     //
     // comboBox1
     //
     this.comboBox1.BorderColor   = System.Drawing.Color.Empty;
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.Items.AddRange(new object[] {
         "List",
         "Icons",
         "Big Icons",
         "Album",
         "Filmstrip",
         "Cover Flow"
     });
     this.comboBox1.Location = new System.Drawing.Point(16, 136);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(184, 21);
     this.comboBox1.TabIndex = 25;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(16, 120);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(75, 13);
     this.label9.TabIndex = 24;
     this.label9.Text     = "Default layout:";
     //
     // textBoxRemoteFolder
     //
     this.textBoxRemoteFolder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxRemoteFolder.BorderColor = System.Drawing.Color.Empty;
     this.textBoxRemoteFolder.Location    = new System.Drawing.Point(16, 320);
     this.textBoxRemoteFolder.Name        = "textBoxRemoteFolder";
     this.textBoxRemoteFolder.Size        = new System.Drawing.Size(381, 20);
     this.textBoxRemoteFolder.TabIndex    = 8;
     this.textBoxRemoteFolder.Text        = "/";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 304);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(168, 23);
     this.label3.TabIndex = 23;
     this.label3.Text     = "Folder on the remote ftp server";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(288, 222);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(68, 13);
     this.label8.TabIndex = 22;
     this.label8.Text     = "TCP/IP Port:";
     //
     // textBoxPort
     //
     this.textBoxPort.BorderColor = System.Drawing.Color.Empty;
     this.textBoxPort.Location    = new System.Drawing.Point(291, 240);
     this.textBoxPort.Name        = "textBoxPort";
     this.textBoxPort.Size        = new System.Drawing.Size(38, 20);
     this.textBoxPort.TabIndex    = 7;
     this.textBoxPort.Text        = "21";
     this.textBoxPort.TextAlign   = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // textBoxPassword
     //
     this.textBoxPassword.BorderColor  = System.Drawing.Color.Empty;
     this.textBoxPassword.Location     = new System.Drawing.Point(213, 280);
     this.textBoxPassword.Name         = "textBoxPassword";
     this.textBoxPassword.PasswordChar = '*';
     this.textBoxPassword.Size         = new System.Drawing.Size(184, 20);
     this.textBoxPassword.TabIndex     = 6;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(213, 264);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(100, 16);
     this.label7.TabIndex = 19;
     this.label7.Text     = "Password:"******"textBoxLogin";
     this.textBoxLogin.Size        = new System.Drawing.Size(184, 20);
     this.textBoxLogin.TabIndex    = 5;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(16, 264);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(100, 16);
     this.label6.TabIndex = 17;
     this.label6.Text     = "Login:"******"textBoxServer";
     this.textBoxServer.Size        = new System.Drawing.Size(263, 20);
     this.textBoxServer.TabIndex    = 4;
     this.textBoxServer.Text        = "127.0.0.1";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(16, 222);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(135, 13);
     this.label5.TabIndex = 15;
     this.label5.Text     = "FTP Server (without ftp://):";
     //
     // checkBoxRemote
     //
     this.checkBoxRemote.AutoSize  = true;
     this.checkBoxRemote.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxRemote.Location  = new System.Drawing.Point(16, 200);
     this.checkBoxRemote.Name      = "checkBoxRemote";
     this.checkBoxRemote.Size      = new System.Drawing.Size(153, 17);
     this.checkBoxRemote.TabIndex  = 3;
     this.checkBoxRemote.Text      = "This is a remote FTP Folder";
     this.checkBoxRemote.UseVisualStyleBackColor = true;
     this.checkBoxRemote.CheckedChanged         += new System.EventHandler(this.checkBoxRemote_CheckedChanged);
     //
     // pinCodeTextBox
     //
     this.pinCodeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.pinCodeTextBox.BorderColor = System.Drawing.Color.Empty;
     this.pinCodeTextBox.Location    = new System.Drawing.Point(216, 40);
     this.pinCodeTextBox.MaxLength   = 4;
     this.pinCodeTextBox.Name        = "pinCodeTextBox";
     this.pinCodeTextBox.Size        = new System.Drawing.Size(63, 20);
     this.pinCodeTextBox.TabIndex    = 1;
     this.pinCodeTextBox.KeyPress   += new System.Windows.Forms.KeyPressEventHandler(this.pinCodeTextBox_KeyPress);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(216, 24);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(63, 16);
     this.label4.TabIndex = 12;
     this.label4.Text     = "Pin Code";
     //
     // folderButton
     //
     this.folderButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.folderButton.Location = new System.Drawing.Point(368, 88);
     this.folderButton.Name     = "folderButton";
     this.folderButton.Size     = new System.Drawing.Size(24, 20);
     this.folderButton.TabIndex = 3;
     this.folderButton.Text     = "...";
     this.folderButton.UseVisualStyleBackColor = true;
     this.folderButton.Click += new System.EventHandler(this.folderButton_Click);
     //
     // folderTextBox
     //
     this.folderTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.folderTextBox.BorderColor  = System.Drawing.Color.Empty;
     this.folderTextBox.Location     = new System.Drawing.Point(16, 88);
     this.folderTextBox.Name         = "folderTextBox";
     this.folderTextBox.Size         = new System.Drawing.Size(344, 20);
     this.folderTextBox.TabIndex     = 2;
     this.folderTextBox.TextChanged += new System.EventHandler(this.folderTextBox_TextChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(16, 72);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(155, 13);
     this.label2.TabIndex = 8;
     this.label2.Text     = "Media folder / optical disk drive";
     //
     // nameTextBox
     //
     this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.nameTextBox.BorderColor = System.Drawing.Color.Empty;
     this.nameTextBox.Location    = new System.Drawing.Point(16, 40);
     this.nameTextBox.Name        = "nameTextBox";
     this.nameTextBox.Size        = new System.Drawing.Size(184, 20);
     this.nameTextBox.TabIndex    = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 13);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Visual name";
     //
     // cancelButton
     //
     this.cancelButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location                = new System.Drawing.Point(342, 369);
     this.cancelButton.Name                    = "cancelButton";
     this.cancelButton.Size                    = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex                = 1;
     this.cancelButton.Text                    = "Cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     this.cancelButton.Click                  += new System.EventHandler(this.cancelButton_Click);
     //
     // okButton
     //
     this.okButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.okButton.Location = new System.Drawing.Point(262, 369);
     this.okButton.Name     = "okButton";
     this.okButton.Size     = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex = 0;
     this.okButton.Text     = "OK";
     this.okButton.UseVisualStyleBackColor = true;
     this.okButton.Click += new System.EventHandler(this.okButton_Click);
     //
     // EditShareForm
     //
     this.AcceptButton        = this.okButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.CancelButton        = this.cancelButton;
     this.ClientSize          = new System.Drawing.Size(426, 402);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(424, 248);
     this.Name            = "EditShareForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Edit Folder";
     this.Load           += new System.EventHandler(this.EditShareForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.radioButton1                  = new MediaPortal.UserInterface.Controls.MPRadioButton();
     this.groupBox3                     = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.byIndexCheckBox               = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.showChannelNumberCheckBox     = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.channelNumberMaxLengthNumUpDn = new System.Windows.Forms.NumericUpDown();
     this.lblChanNumMaxLen              = new System.Windows.Forms.Label();
     this.groupBox5                     = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.cbAutoFullscreen              = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.cbTurnOnTv                    = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.label8               = new MediaPortal.UserInterface.Controls.MPLabel();
     this.cbDeinterlace        = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpGroupBoxAdditional = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.channelNumberMaxLengthNumUpDn)).BeginInit();
     this.groupBox5.SuspendLayout();
     this.mpGroupBoxAdditional.SuspendLayout();
     this.SuspendLayout();
     //
     // radioButton1
     //
     this.radioButton1.AutoSize  = true;
     this.radioButton1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.radioButton1.Location  = new System.Drawing.Point(0, 0);
     this.radioButton1.Name      = "radioButton1";
     this.radioButton1.Size      = new System.Drawing.Size(104, 24);
     this.radioButton1.TabIndex  = 0;
     this.radioButton1.UseVisualStyleBackColor = true;
     //
     // groupBox3
     //
     this.groupBox3.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox3.Controls.Add(this.byIndexCheckBox);
     this.groupBox3.Controls.Add(this.showChannelNumberCheckBox);
     this.groupBox3.Controls.Add(this.channelNumberMaxLengthNumUpDn);
     this.groupBox3.Controls.Add(this.lblChanNumMaxLen);
     this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox3.Location  = new System.Drawing.Point(6, 66);
     this.groupBox3.Name      = "groupBox3";
     this.groupBox3.Size      = new System.Drawing.Size(233, 94);
     this.groupBox3.TabIndex  = 3;
     this.groupBox3.TabStop   = false;
     this.groupBox3.Text      = "Channel numbers";
     //
     // byIndexCheckBox
     //
     this.byIndexCheckBox.AutoSize  = true;
     this.byIndexCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.byIndexCheckBox.Location  = new System.Drawing.Point(17, 20);
     this.byIndexCheckBox.Name      = "byIndexCheckBox";
     this.byIndexCheckBox.Size      = new System.Drawing.Size(182, 17);
     this.byIndexCheckBox.TabIndex  = 0;
     this.byIndexCheckBox.Text      = "Select channel by index (non-US)";
     this.byIndexCheckBox.UseVisualStyleBackColor = true;
     //
     // showChannelNumberCheckBox
     //
     this.showChannelNumberCheckBox.AutoSize  = true;
     this.showChannelNumberCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.showChannelNumberCheckBox.Location  = new System.Drawing.Point(17, 40);
     this.showChannelNumberCheckBox.Name      = "showChannelNumberCheckBox";
     this.showChannelNumberCheckBox.Size      = new System.Drawing.Size(135, 17);
     this.showChannelNumberCheckBox.TabIndex  = 1;
     this.showChannelNumberCheckBox.Text      = "Show channel numbers";
     this.showChannelNumberCheckBox.UseVisualStyleBackColor = true;
     //
     // channelNumberMaxLengthNumUpDn
     //
     this.channelNumberMaxLengthNumUpDn.AutoSize = true;
     this.channelNumberMaxLengthNumUpDn.Location = new System.Drawing.Point(178, 60);
     this.channelNumberMaxLengthNumUpDn.Maximum  = new decimal(new int[]
     {
         5,
         0,
         0,
         0
     });
     this.channelNumberMaxLengthNumUpDn.Minimum = new decimal(new int[]
     {
         1,
         0,
         0,
         0
     });
     this.channelNumberMaxLengthNumUpDn.Name     = "channelNumberMaxLengthNumUpDn";
     this.channelNumberMaxLengthNumUpDn.Size     = new System.Drawing.Size(42, 20);
     this.channelNumberMaxLengthNumUpDn.TabIndex = 3;
     this.channelNumberMaxLengthNumUpDn.Value    = new decimal(new int[]
     {
         3,
         0,
         0,
         0
     });
     //
     // lblChanNumMaxLen
     //
     this.lblChanNumMaxLen.AutoSize = true;
     this.lblChanNumMaxLen.Location = new System.Drawing.Point(31, 62);
     this.lblChanNumMaxLen.Name     = "lblChanNumMaxLen";
     this.lblChanNumMaxLen.Size     = new System.Drawing.Size(141, 13);
     this.lblChanNumMaxLen.TabIndex = 2;
     this.lblChanNumMaxLen.Text     = "Channel number max. length";
     //
     // groupBox5
     //
     this.groupBox5.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox5.Controls.Add(this.cbAutoFullscreen);
     this.groupBox5.Controls.Add(this.cbTurnOnTv);
     this.groupBox5.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox5.Location  = new System.Drawing.Point(248, 66);
     this.groupBox5.Name      = "groupBox5";
     this.groupBox5.Size      = new System.Drawing.Size(220, 94);
     this.groupBox5.TabIndex  = 4;
     this.groupBox5.TabStop   = false;
     this.groupBox5.Text      = "When entering the TV screen:";
     //
     // cbAutoFullscreen
     //
     this.cbAutoFullscreen.AutoSize  = true;
     this.cbAutoFullscreen.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbAutoFullscreen.Location  = new System.Drawing.Point(17, 40);
     this.cbAutoFullscreen.Name      = "cbAutoFullscreen";
     this.cbAutoFullscreen.Size      = new System.Drawing.Size(152, 17);
     this.cbAutoFullscreen.TabIndex  = 1;
     this.cbAutoFullscreen.Text      = "Directly show fullscreen TV";
     this.cbAutoFullscreen.UseVisualStyleBackColor = true;
     this.cbAutoFullscreen.CheckedChanged         += new System.EventHandler(this.cbAutoFullscreen_CheckedChanged);
     //
     // cbTurnOnTv
     //
     this.cbTurnOnTv.AutoSize  = true;
     this.cbTurnOnTv.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbTurnOnTv.Location  = new System.Drawing.Point(17, 20);
     this.cbTurnOnTv.Name      = "cbTurnOnTv";
     this.cbTurnOnTv.Size      = new System.Drawing.Size(78, 17);
     this.cbTurnOnTv.TabIndex  = 0;
     this.cbTurnOnTv.Text      = "Turn on TV";
     this.cbTurnOnTv.UseVisualStyleBackColor = true;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(6, 23);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(146, 17);
     this.label8.TabIndex = 14;
     this.label8.Text     = "Fallback de-interlace mode:";
     //
     // cbDeinterlace
     //
     this.cbDeinterlace.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.cbDeinterlace.BorderColor   = System.Drawing.Color.Empty;
     this.cbDeinterlace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbDeinterlace.Items.AddRange(new object[]
     {
         "None",
         "Bob",
         "Weave",
         "Best"
     });
     this.cbDeinterlace.Location = new System.Drawing.Point(166, 19);
     this.cbDeinterlace.Name     = "cbDeinterlace";
     this.cbDeinterlace.Size     = new System.Drawing.Size(290, 21);
     this.cbDeinterlace.TabIndex = 15;
     //
     // mpGroupBoxAdditional
     //
     this.mpGroupBoxAdditional.Controls.Add(this.cbDeinterlace);
     this.mpGroupBoxAdditional.Controls.Add(this.label8);
     this.mpGroupBoxAdditional.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBoxAdditional.Location  = new System.Drawing.Point(6, 0);
     this.mpGroupBoxAdditional.Name      = "mpGroupBoxAdditional";
     this.mpGroupBoxAdditional.Size      = new System.Drawing.Size(462, 63);
     this.mpGroupBoxAdditional.TabIndex  = 16;
     this.mpGroupBoxAdditional.TabStop   = false;
     this.mpGroupBoxAdditional.Text      = "Additional settings";
     //
     // TV
     //
     this.Controls.Add(this.mpGroupBoxAdditional);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox3);
     this.Name = "TV";
     this.Size = new System.Drawing.Size(472, 427);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.channelNumberMaxLengthNumUpDn)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.mpGroupBoxAdditional.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #27
0
 private void InitializeComponent()
 {
     this.groupBox1 = new MPGroupBox();
     this.groupBox5 = new GroupBox();
     this.mpEnableDisplayActionTime = new MPComboBox();
     this.cmbBlankIdleTime          = new MPComboBox();
     this.mpEnableDisplayAction     = new CheckBox();
     this.mpBlankDisplayWithVideo   = new CheckBox();
     this.mpBlankDisplayWhenIdle    = new CheckBox();
     this.btnOK    = new MPButton();
     this.btnReset = new MPButton();
     this.groupBox1.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom)
                                               | AnchorStyles.Left)
                                              | AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.groupBox5);
     this.groupBox1.FlatStyle = FlatStyle.Popup;
     this.groupBox1.Location  = new Point(9, 6);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new Size(357, 124);
     this.groupBox1.TabIndex  = 4;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = " MD8800 (Dritek) Display Configuration ";
     //
     // groupBox5
     //
     this.groupBox5.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom)
                                               | AnchorStyles.Left)
                                              | AnchorStyles.Right)));
     this.groupBox5.Controls.Add(this.mpEnableDisplayActionTime);
     this.groupBox5.Controls.Add(this.cmbBlankIdleTime);
     this.groupBox5.Controls.Add(this.mpEnableDisplayAction);
     this.groupBox5.Controls.Add(this.mpBlankDisplayWithVideo);
     this.groupBox5.Controls.Add(this.mpBlankDisplayWhenIdle);
     this.groupBox5.Location = new Point(10, 19);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new Size(338, 97);
     this.groupBox5.TabIndex = 23;
     this.groupBox5.TabStop  = false;
     this.groupBox5.Text     = " Display Control Options ";
     //
     // mpEnableDisplayActionTime
     //
     this.mpEnableDisplayActionTime.BorderColor   = Color.Empty;
     this.mpEnableDisplayActionTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.mpEnableDisplayActionTime.Items.AddRange(new object[]
     {
         "0",
         "1",
         "2",
         "3",
         "4",
         "5",
         "6",
         "7",
         "8",
         "9",
         "10",
         "11",
         "12",
         "13",
         "14",
         "15",
         "16",
         "17",
         "18",
         "19",
         "20"
     });
     this.mpEnableDisplayActionTime.Location = new Point(181, 36);
     this.mpEnableDisplayActionTime.Name     = "mpEnableDisplayActionTime";
     this.mpEnableDisplayActionTime.Size     = new Size(42, 21);
     this.mpEnableDisplayActionTime.TabIndex = 96;
     //
     // cmbBlankIdleTime
     //
     this.cmbBlankIdleTime.BorderColor   = Color.Empty;
     this.cmbBlankIdleTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbBlankIdleTime.Items.AddRange(new object[]
     {
         "0",
         "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"
     });
     this.cmbBlankIdleTime.Location = new Point(167, 58);
     this.cmbBlankIdleTime.Name     = "cmbBlankIdleTime";
     this.cmbBlankIdleTime.Size     = new Size(42, 21);
     this.cmbBlankIdleTime.TabIndex = 98;
     //
     // mpEnableDisplayAction
     //
     this.mpEnableDisplayAction.AutoSize = true;
     this.mpEnableDisplayAction.Location = new Point(23, 38);
     this.mpEnableDisplayAction.Name     = "mpEnableDisplayAction";
     this.mpEnableDisplayAction.Size     = new Size(258, 17);
     this.mpEnableDisplayAction.TabIndex = 97;
     this.mpEnableDisplayAction.Text     = "Enable Display on Action for                   Seconds";
     this.mpEnableDisplayAction.UseVisualStyleBackColor = true;
     this.mpEnableDisplayAction.CheckedChanged         += new EventHandler(this.mpEnableDisplayAction_CheckedChanged);
     //
     // mpBlankDisplayWithVideo
     //
     this.mpBlankDisplayWithVideo.AutoSize = true;
     this.mpBlankDisplayWithVideo.Location = new Point(7, 17);
     this.mpBlankDisplayWithVideo.Name     = "mpBlankDisplayWithVideo";
     this.mpBlankDisplayWithVideo.Size     = new Size(207, 17);
     this.mpBlankDisplayWithVideo.TabIndex = 95;
     this.mpBlankDisplayWithVideo.Text     = "Turn off display during Video Playback";
     this.mpBlankDisplayWithVideo.UseVisualStyleBackColor = true;
     this.mpBlankDisplayWithVideo.CheckedChanged         += new EventHandler(this.mpBlankDisplayWithVideo_CheckedChanged);
     //
     // mpBlankDisplayWhenIdle
     //
     this.mpBlankDisplayWhenIdle.AutoSize = true;
     this.mpBlankDisplayWhenIdle.Location = new Point(7, 60);
     this.mpBlankDisplayWhenIdle.Name     = "mpBlankDisplayWhenIdle";
     this.mpBlankDisplayWhenIdle.Size     = new Size(261, 17);
     this.mpBlankDisplayWhenIdle.TabIndex = 99;
     this.mpBlankDisplayWhenIdle.Text     = "Turn off display when idle for                    seconds";
     this.mpBlankDisplayWhenIdle.UseVisualStyleBackColor = true;
     this.mpBlankDisplayWhenIdle.CheckedChanged         += new EventHandler(this.mpBlankDisplayWhenIdle_CheckedChanged);
     //
     // btnOK
     //
     this.btnOK.Anchor   = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
     this.btnOK.Location = new Point(286, 136);
     this.btnOK.Name     = "btnOK";
     this.btnOK.Size     = new Size(80, 23);
     this.btnOK.TabIndex = 108;
     this.btnOK.Text     = "&OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new EventHandler(this.btnOK_Click);
     //
     // btnReset
     //
     this.btnReset.Anchor   = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
     this.btnReset.Location = new Point(200, 136);
     this.btnReset.Name     = "btnReset";
     this.btnReset.Size     = new Size(80, 23);
     this.btnReset.TabIndex = 109;
     this.btnReset.Text     = "&RESET";
     this.btnReset.UseVisualStyleBackColor = true;
     this.btnReset.Click += new EventHandler(this.btnReset_Click);
     //
     // MD8800_AdvancedSetupForm
     //
     this.AutoScaleDimensions = new SizeF(6F, 13F);
     this.ClientSize          = new Size(378, 165);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.groupBox1);
     this.Name          = "MD8800_AdvancedSetupForm";
     this.StartPosition = FormStartPosition.CenterParent;
     this.Text          = "MiniDisplay - Setup - Advanced Settings";
     this.groupBox1.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.ResumeLayout(false);
 }
Example #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1              = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.checkBoxRTS            = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.checkBoxDTR            = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.label8                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.ParityCombo            = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.buttonNoneCodes        = new MediaPortal.UserInterface.Controls.MPButton();
     this.buttonDefaultCodes     = new MediaPortal.UserInterface.Controls.MPButton();
     this.buttonAllCodes         = new MediaPortal.UserInterface.Controls.MPButton();
     this.label7                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.ActionsCheckList       = new System.Windows.Forms.CheckedListBox();
     this.label6                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.CommandDelayCombo      = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label5                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.LearningTimeoutCombo   = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label4                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.IRLengthCombo          = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label3                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.HandShakeCombo         = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.label2                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.BaudRateCombo          = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.checkBoxInitUIRIrman   = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.label1                 = new MediaPortal.UserInterface.Controls.MPLabel();
     this.CommPortCombo          = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.internalCommandsButton = new MediaPortal.UserInterface.Controls.MPButton();
     this.inputCheckBox          = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.groupBox2              = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.statusLabel            = new MediaPortal.UserInterface.Controls.MPLabel();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.checkBoxRTS);
     this.groupBox1.Controls.Add(this.checkBoxDTR);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.ParityCombo);
     this.groupBox1.Controls.Add(this.buttonNoneCodes);
     this.groupBox1.Controls.Add(this.buttonDefaultCodes);
     this.groupBox1.Controls.Add(this.buttonAllCodes);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.ActionsCheckList);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.CommandDelayCombo);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.LearningTimeoutCombo);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.IRLengthCombo);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.HandShakeCombo);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.BaudRateCombo);
     this.groupBox1.Controls.Add(this.checkBoxInitUIRIrman);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.CommPortCombo);
     this.groupBox1.Controls.Add(this.internalCommandsButton);
     this.groupBox1.Controls.Add(this.inputCheckBox);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox1.Location  = new System.Drawing.Point(6, 0);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(462, 336);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Settings";
     //
     // checkBoxRTS
     //
     this.checkBoxRTS.AutoSize   = true;
     this.checkBoxRTS.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBoxRTS.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxRTS.Location   = new System.Drawing.Point(16, 200);
     this.checkBoxRTS.Name       = "checkBoxRTS";
     this.checkBoxRTS.Size       = new System.Drawing.Size(46, 17);
     this.checkBoxRTS.TabIndex   = 12;
     this.checkBoxRTS.Text       = "RTS";
     this.checkBoxRTS.UseVisualStyleBackColor = true;
     this.checkBoxRTS.CheckedChanged         += new System.EventHandler(this.checkBoxRTS_CheckedChanged);
     //
     // checkBoxDTR
     //
     this.checkBoxDTR.AutoSize   = true;
     this.checkBoxDTR.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBoxDTR.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxDTR.Location   = new System.Drawing.Point(16, 176);
     this.checkBoxDTR.Name       = "checkBoxDTR";
     this.checkBoxDTR.Size       = new System.Drawing.Size(47, 17);
     this.checkBoxDTR.TabIndex   = 10;
     this.checkBoxDTR.Text       = "DTR";
     this.checkBoxDTR.UseVisualStyleBackColor = true;
     this.checkBoxDTR.CheckedChanged         += new System.EventHandler(this.checkBoxDTR_CheckedChanged);
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(120, 120);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(64, 16);
     this.label8.TabIndex = 7;
     this.label8.Text     = "Parity";
     //
     // ParityCombo
     //
     this.ParityCombo.BorderColor   = System.Drawing.Color.Empty;
     this.ParityCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ParityCombo.Items.AddRange(new object[]
     {
         "None",
         "Odd",
         "Even",
         "Mark",
         "Space"
     });
     this.ParityCombo.Location              = new System.Drawing.Point(120, 136);
     this.ParityCombo.Name                  = "ParityCombo";
     this.ParityCombo.Size                  = new System.Drawing.Size(88, 21);
     this.ParityCombo.TabIndex              = 9;
     this.ParityCombo.SelectedIndexChanged += new System.EventHandler(this.ParityCombo_SelectedIndexChanged);
     //
     // buttonNoneCodes
     //
     this.buttonNoneCodes.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonNoneCodes.Location = new System.Drawing.Point(269, 14);
     this.buttonNoneCodes.Name     = "buttonNoneCodes";
     this.buttonNoneCodes.Size     = new System.Drawing.Size(56, 23);
     this.buttonNoneCodes.TabIndex = 20;
     this.buttonNoneCodes.Text     = "Mini";
     this.buttonNoneCodes.UseVisualStyleBackColor = true;
     this.buttonNoneCodes.Click += new System.EventHandler(this.buttonNoneCodes_Click);
     //
     // buttonDefaultCodes
     //
     this.buttonDefaultCodes.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonDefaultCodes.Location = new System.Drawing.Point(329, 14);
     this.buttonDefaultCodes.Name     = "buttonDefaultCodes";
     this.buttonDefaultCodes.Size     = new System.Drawing.Size(65, 23);
     this.buttonDefaultCodes.TabIndex = 21;
     this.buttonDefaultCodes.Text     = "Extended";
     this.buttonDefaultCodes.UseVisualStyleBackColor = true;
     this.buttonDefaultCodes.Click += new System.EventHandler(this.buttonDefaultCodes_Click);
     //
     // buttonAllCodes
     //
     this.buttonAllCodes.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonAllCodes.Location = new System.Drawing.Point(398, 14);
     this.buttonAllCodes.Name     = "buttonAllCodes";
     this.buttonAllCodes.Size     = new System.Drawing.Size(56, 23);
     this.buttonAllCodes.TabIndex = 22;
     this.buttonAllCodes.Text     = "All";
     this.buttonAllCodes.UseVisualStyleBackColor = true;
     this.buttonAllCodes.Click += new System.EventHandler(this.buttonAllCodes_Click);
     //
     // label7
     //
     this.label7.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label7.Location = new System.Drawing.Point(214, 19);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(50, 21);
     this.label7.TabIndex = 19;
     this.label7.Text     = "Learn:";
     //
     // ActionsCheckList
     //
     this.ActionsCheckList.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.ActionsCheckList.CheckOnClick = true;
     this.ActionsCheckList.Location     = new System.Drawing.Point(224, 40);
     this.ActionsCheckList.Name         = "ActionsCheckList";
     this.ActionsCheckList.Size         = new System.Drawing.Size(230, 289);
     this.ActionsCheckList.TabIndex     = 23;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(16, 222);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(98, 32);
     this.label6.TabIndex = 14;
     this.label6.Text     = "Delay between commands (msec):";
     //
     // CommandDelayCombo
     //
     this.CommandDelayCombo.BorderColor   = System.Drawing.Color.Empty;
     this.CommandDelayCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.CommandDelayCombo.Items.AddRange(new object[]
     {
         "150",
         "200",
         "250",
         "300",
         "250",
         "400",
         "450",
         "500"
     });
     this.CommandDelayCombo.Location              = new System.Drawing.Point(120, 224);
     this.CommandDelayCombo.Name                  = "CommandDelayCombo";
     this.CommandDelayCombo.Size                  = new System.Drawing.Size(88, 21);
     this.CommandDelayCombo.TabIndex              = 15;
     this.CommandDelayCombo.SelectedIndexChanged += new System.EventHandler(this.CommandDelayCombo_SelectedIndexChanged);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(16, 262);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(80, 32);
     this.label5.TabIndex = 16;
     this.label5.Text     = "Learning timeout (sec):";
     //
     // LearningTimeoutCombo
     //
     this.LearningTimeoutCombo.BorderColor   = System.Drawing.Color.Empty;
     this.LearningTimeoutCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.LearningTimeoutCombo.Items.AddRange(new object[]
     {
         "1",
         "2",
         "3",
         "4",
         "5",
         "6",
         "7",
         "8",
         "9",
         "10"
     });
     this.LearningTimeoutCombo.Location              = new System.Drawing.Point(120, 264);
     this.LearningTimeoutCombo.Name                  = "LearningTimeoutCombo";
     this.LearningTimeoutCombo.Size                  = new System.Drawing.Size(88, 21);
     this.LearningTimeoutCombo.TabIndex              = 17;
     this.LearningTimeoutCombo.SelectedIndexChanged +=
         new System.EventHandler(this.LearningTimeoutCombo_SelectedIndexChanged);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(120, 168);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(88, 16);
     this.label4.TabIndex = 11;
     this.label4.Text     = "IR Code Length";
     //
     // IRLengthCombo
     //
     this.IRLengthCombo.BorderColor   = System.Drawing.Color.Empty;
     this.IRLengthCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.IRLengthCombo.Items.AddRange(new object[]
     {
         "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",
         "32"
     });
     this.IRLengthCombo.Location              = new System.Drawing.Point(120, 184);
     this.IRLengthCombo.Name                  = "IRLengthCombo";
     this.IRLengthCombo.Size                  = new System.Drawing.Size(88, 21);
     this.IRLengthCombo.TabIndex              = 13;
     this.IRLengthCombo.SelectedIndexChanged += new System.EventHandler(this.IRLengthCombo_SelectedIndexChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 120);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(64, 16);
     this.label3.TabIndex = 6;
     this.label3.Text     = "Handshake";
     //
     // HandShakeCombo
     //
     this.HandShakeCombo.BorderColor   = System.Drawing.Color.Empty;
     this.HandShakeCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.HandShakeCombo.Items.AddRange(new object[]
     {
         "None",
         "CtsRts",
         "DsrDtr",
         "XonXoff"
     });
     this.HandShakeCombo.Location              = new System.Drawing.Point(16, 136);
     this.HandShakeCombo.Name                  = "HandShakeCombo";
     this.HandShakeCombo.Size                  = new System.Drawing.Size(88, 21);
     this.HandShakeCombo.TabIndex              = 8;
     this.HandShakeCombo.SelectedIndexChanged += new System.EventHandler(this.HandShakeCombo_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(120, 72);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(64, 16);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Baud Rate";
     //
     // BaudRateCombo
     //
     this.BaudRateCombo.BorderColor   = System.Drawing.Color.Empty;
     this.BaudRateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BaudRateCombo.Items.AddRange(new object[]
     {
         "300",
         "600",
         "1200",
         "2400",
         "4800",
         "9600",
         "14400",
         "19200",
         "28800",
         "38400",
         "56000",
         "57600",
         "115200"
     });
     this.BaudRateCombo.Location              = new System.Drawing.Point(120, 88);
     this.BaudRateCombo.Name                  = "BaudRateCombo";
     this.BaudRateCombo.Size                  = new System.Drawing.Size(88, 21);
     this.BaudRateCombo.TabIndex              = 5;
     this.BaudRateCombo.SelectedIndexChanged += new System.EventHandler(this.BaudRateCombo_SelectedIndexChanged);
     //
     // checkBoxInitUIRIrman
     //
     this.checkBoxInitUIRIrman.AutoSize   = true;
     this.checkBoxInitUIRIrman.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBoxInitUIRIrman.Checked    = true;
     this.checkBoxInitUIRIrman.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxInitUIRIrman.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxInitUIRIrman.Location   = new System.Drawing.Point(16, 48);
     this.checkBoxInitUIRIrman.Name       = "checkBoxInitUIRIrman";
     this.checkBoxInitUIRIrman.Size       = new System.Drawing.Size(184, 17);
     this.checkBoxInitUIRIrman.TabIndex   = 1;
     this.checkBoxInitUIRIrman.Text       = "Initialize UIR/IRMan type receiver";
     this.checkBoxInitUIRIrman.UseVisualStyleBackColor = true;
     this.checkBoxInitUIRIrman.CheckedChanged         += new System.EventHandler(this.checkBoxInitUIRIrman_CheckedChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 72);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Comm. Port";
     //
     // CommPortCombo
     //
     this.CommPortCombo.BorderColor   = System.Drawing.Color.Empty;
     this.CommPortCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.CommPortCombo.Items.AddRange(new object[]
     {
         "COM1:",
         "COM2:",
         "COM3:",
         "COM4:",
         "COM5:",
         "COM6:",
         "COM7:",
         "COM8:"
     });
     this.CommPortCombo.Location              = new System.Drawing.Point(16, 88);
     this.CommPortCombo.Name                  = "CommPortCombo";
     this.CommPortCombo.Size                  = new System.Drawing.Size(88, 21);
     this.CommPortCombo.TabIndex              = 4;
     this.CommPortCombo.SelectedIndexChanged += new System.EventHandler(this.CommPortCombo_SelectedIndexChanged);
     //
     // internalCommandsButton
     //
     this.internalCommandsButton.Location = new System.Drawing.Point(16, 296);
     this.internalCommandsButton.Name     = "internalCommandsButton";
     this.internalCommandsButton.Size     = new System.Drawing.Size(192, 23);
     this.internalCommandsButton.TabIndex = 18;
     this.internalCommandsButton.Text     = "Learn selected commands";
     this.internalCommandsButton.UseVisualStyleBackColor = true;
     this.internalCommandsButton.Click += new System.EventHandler(this.internalCommandsButton_Click);
     //
     // inputCheckBox
     //
     this.inputCheckBox.AutoSize  = true;
     this.inputCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.inputCheckBox.Location  = new System.Drawing.Point(16, 24);
     this.inputCheckBox.Name      = "inputCheckBox";
     this.inputCheckBox.Size      = new System.Drawing.Size(198, 17);
     this.inputCheckBox.TabIndex  = 0;
     this.inputCheckBox.Text      = "Enable Serial UIR for remote controls";
     this.inputCheckBox.UseVisualStyleBackColor = true;
     this.inputCheckBox.CheckedChanged         += new System.EventHandler(this.inputCheckBox_CheckedChanged);
     //
     // groupBox2
     //
     this.groupBox2.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.statusLabel);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox2.Location  = new System.Drawing.Point(6, 344);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(462, 64);
     this.groupBox2.TabIndex  = 1;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Device Status";
     //
     // statusLabel
     //
     this.statusLabel.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              (((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
     this.statusLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.statusLabel.Location = new System.Drawing.Point(16, 24);
     this.statusLabel.Name     = "statusLabel";
     this.statusLabel.Size     = new System.Drawing.Size(438, 32);
     this.statusLabel.TabIndex = 0;
     //
     // RemoteSerialUIR
     //
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Name = "RemoteSerialUIR";
     this.Size = new System.Drawing.Size(472, 408);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.groupBox1                 = new MPGroupBox();
     this.groupBox5                 = new GroupBox();
     this.cbUseClockOnShutdown      = new CheckBox();
     this.mpEnableDisplayActionTime = new MPComboBox();
     this.cmbBlankIdleTime          = new MPComboBox();
     this.mpEnableDisplayAction     = new CheckBox();
     this.mpBlankDisplayWithVideo   = new CheckBox();
     this.mpBlankDisplayWhenIdle    = new CheckBox();
     this.groupEqualizerOptions     = new GroupBox();
     this.groupEQstyle              = new GroupBox();
     this.cbUseVUmeter2             = new RadioButton();
     this.cbVUindicators            = new CheckBox();
     this.cbUseVUmeter              = new RadioButton();
     this.cbStereoEQ                = new RadioButton();
     this.cbNormalEQ                = new RadioButton();
     this.cmbDelayEqTime            = new MPComboBox();
     this.lblRestrictEQ             = new MPLabel();
     this.cmbEQTitleDisplayTime     = new MPComboBox();
     this.cmbEQTitleShowTime        = new MPComboBox();
     this.mpEQTitleDisplay          = new CheckBox();
     this.mpSmoothEQ                = new CheckBox();
     this.mpEqDisplay               = new CheckBox();
     this.mpRestrictEQ              = new CheckBox();
     this.cmbEqRate                 = new MPComboBox();
     this.mpDelayEQ                 = new CheckBox();
     this.lblEQTitleDisplay         = new MPLabel();
     this.btnOK    = new MPButton();
     this.btnReset = new MPButton();
     this.groupBox1.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.groupEqualizerOptions.SuspendLayout();
     this.groupEQstyle.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom)
                                               | AnchorStyles.Left)
                                              | AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.groupBox5);
     this.groupBox1.Controls.Add(this.groupEqualizerOptions);
     this.groupBox1.FlatStyle = FlatStyle.Popup;
     this.groupBox1.Location  = new Point(7, 6);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new Size(397, 368);
     this.groupBox1.TabIndex  = 4;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = " IO-Warrior Graphical LCD Advanced Configuration ";
     //
     // groupBox5
     //
     this.groupBox5.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left)
                                              | AnchorStyles.Right)));
     this.groupBox5.Controls.Add(this.cbUseClockOnShutdown);
     this.groupBox5.Controls.Add(this.mpEnableDisplayActionTime);
     this.groupBox5.Controls.Add(this.cmbBlankIdleTime);
     this.groupBox5.Controls.Add(this.mpEnableDisplayAction);
     this.groupBox5.Controls.Add(this.mpBlankDisplayWithVideo);
     this.groupBox5.Controls.Add(this.mpBlankDisplayWhenIdle);
     this.groupBox5.Location = new Point(6, 19);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new Size(383, 103);
     this.groupBox5.TabIndex = 105;
     this.groupBox5.TabStop  = false;
     this.groupBox5.Text     = " Display Control Options ";
     //
     // cbUseClockOnShutdown
     //
     this.cbUseClockOnShutdown.AutoSize = true;
     this.cbUseClockOnShutdown.Location = new Point(8, 81);
     this.cbUseClockOnShutdown.Name     = "cbUseClockOnShutdown";
     this.cbUseClockOnShutdown.Size     = new Size(204, 17);
     this.cbUseClockOnShutdown.TabIndex = 100;
     this.cbUseClockOnShutdown.Text     = "Use Clock on shutdown (If supported)";
     this.cbUseClockOnShutdown.UseVisualStyleBackColor = true;
     this.cbUseClockOnShutdown.Visible = false;
     //
     // mpEnableDisplayActionTime
     //
     this.mpEnableDisplayActionTime.BorderColor   = Color.Empty;
     this.mpEnableDisplayActionTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.mpEnableDisplayActionTime.Items.AddRange(new object[]
     {
         "0",
         "1",
         "2",
         "3",
         "4",
         "5",
         "6",
         "7",
         "8",
         "9",
         "10",
         "11",
         "12",
         "13",
         "14",
         "15",
         "16",
         "17",
         "18",
         "19",
         "20"
     });
     this.mpEnableDisplayActionTime.Location = new Point(180, 36);
     this.mpEnableDisplayActionTime.Name     = "mpEnableDisplayActionTime";
     this.mpEnableDisplayActionTime.Size     = new Size(49, 21);
     this.mpEnableDisplayActionTime.TabIndex = 96;
     //
     // cmbBlankIdleTime
     //
     this.cmbBlankIdleTime.BorderColor   = Color.Empty;
     this.cmbBlankIdleTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbBlankIdleTime.Items.AddRange(new object[]
     {
         "0",
         "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"
     });
     this.cmbBlankIdleTime.Location = new Point(166, 58);
     this.cmbBlankIdleTime.Name     = "cmbBlankIdleTime";
     this.cmbBlankIdleTime.Size     = new Size(51, 21);
     this.cmbBlankIdleTime.TabIndex = 98;
     //
     // mpEnableDisplayAction
     //
     this.mpEnableDisplayAction.AutoSize = true;
     this.mpEnableDisplayAction.Location = new Point(23, 38);
     this.mpEnableDisplayAction.Name     = "mpEnableDisplayAction";
     this.mpEnableDisplayAction.Size     = new Size(258, 17);
     this.mpEnableDisplayAction.TabIndex = 97;
     this.mpEnableDisplayAction.Text     = "Enable Display on Action for                   Seconds";
     this.mpEnableDisplayAction.UseVisualStyleBackColor = true;
     this.mpEnableDisplayAction.CheckedChanged         += new EventHandler(this.mpEnableDisplayAction_CheckedChanged);
     //
     // mpBlankDisplayWithVideo
     //
     this.mpBlankDisplayWithVideo.AutoSize = true;
     this.mpBlankDisplayWithVideo.Location = new Point(7, 17);
     this.mpBlankDisplayWithVideo.Name     = "mpBlankDisplayWithVideo";
     this.mpBlankDisplayWithVideo.Size     = new Size(207, 17);
     this.mpBlankDisplayWithVideo.TabIndex = 95;
     this.mpBlankDisplayWithVideo.Text     = "Turn off display during Video Playback";
     this.mpBlankDisplayWithVideo.UseVisualStyleBackColor = true;
     this.mpBlankDisplayWithVideo.CheckedChanged         += new EventHandler(this.mpBlankDisplayWithVideo_CheckedChanged);
     //
     // mpBlankDisplayWhenIdle
     //
     this.mpBlankDisplayWhenIdle.AutoSize = true;
     this.mpBlankDisplayWhenIdle.Location = new Point(7, 60);
     this.mpBlankDisplayWhenIdle.Name     = "mpBlankDisplayWhenIdle";
     this.mpBlankDisplayWhenIdle.Size     = new Size(261, 17);
     this.mpBlankDisplayWhenIdle.TabIndex = 99;
     this.mpBlankDisplayWhenIdle.Text     = "Turn off display when idle for                    seconds";
     this.mpBlankDisplayWhenIdle.UseVisualStyleBackColor = true;
     this.mpBlankDisplayWhenIdle.CheckedChanged         += new EventHandler(this.mpBlankDisplayWhenIdle_CheckedChanged);
     //
     // groupEqualizerOptions
     //
     this.groupEqualizerOptions.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom)
                                                           | AnchorStyles.Left)
                                                          | AnchorStyles.Right)));
     this.groupEqualizerOptions.Controls.Add(this.groupEQstyle);
     this.groupEqualizerOptions.Controls.Add(this.cmbDelayEqTime);
     this.groupEqualizerOptions.Controls.Add(this.lblRestrictEQ);
     this.groupEqualizerOptions.Controls.Add(this.cmbEQTitleDisplayTime);
     this.groupEqualizerOptions.Controls.Add(this.cmbEQTitleShowTime);
     this.groupEqualizerOptions.Controls.Add(this.mpEQTitleDisplay);
     this.groupEqualizerOptions.Controls.Add(this.mpSmoothEQ);
     this.groupEqualizerOptions.Controls.Add(this.mpEqDisplay);
     this.groupEqualizerOptions.Controls.Add(this.mpRestrictEQ);
     this.groupEqualizerOptions.Controls.Add(this.cmbEqRate);
     this.groupEqualizerOptions.Controls.Add(this.mpDelayEQ);
     this.groupEqualizerOptions.Controls.Add(this.lblEQTitleDisplay);
     this.groupEqualizerOptions.Location = new Point(6, 128);
     this.groupEqualizerOptions.Name     = "groupEqualizerOptions";
     this.groupEqualizerOptions.Size     = new Size(383, 233);
     this.groupEqualizerOptions.TabIndex = 104;
     this.groupEqualizerOptions.TabStop  = false;
     this.groupEqualizerOptions.Text     = " Equalizer Options";
     //
     // groupEQstyle
     //
     this.groupEQstyle.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left)
                                                 | AnchorStyles.Right)));
     this.groupEQstyle.Controls.Add(this.cbUseVUmeter2);
     this.groupEQstyle.Controls.Add(this.cbVUindicators);
     this.groupEQstyle.Controls.Add(this.cbUseVUmeter);
     this.groupEQstyle.Controls.Add(this.cbStereoEQ);
     this.groupEQstyle.Controls.Add(this.cbNormalEQ);
     this.groupEQstyle.Location = new Point(39, 38);
     this.groupEQstyle.Name     = "groupEQstyle";
     this.groupEQstyle.Size     = new Size(300, 60);
     this.groupEQstyle.TabIndex = 118;
     this.groupEQstyle.TabStop  = false;
     this.groupEQstyle.Text     = " Equalizer Style ";
     //
     // cbUseVUmeter2
     //
     this.cbUseVUmeter2.AutoSize = true;
     this.cbUseVUmeter2.Location = new Point(211, 17);
     this.cbUseVUmeter2.Name     = "cbUseVUmeter2";
     this.cbUseVUmeter2.Size     = new Size(79, 17);
     this.cbUseVUmeter2.TabIndex = 122;
     this.cbUseVUmeter2.Text     = "VU Meter 2";
     this.cbUseVUmeter2.UseVisualStyleBackColor = true;
     this.cbUseVUmeter2.CheckedChanged         += new EventHandler(this.cbUseVUmeter2_CheckedChanged);
     //
     // cbVUindicators
     //
     this.cbVUindicators.AutoSize = true;
     this.cbVUindicators.Location = new Point(9, 39);
     this.cbVUindicators.Name     = "cbVUindicators";
     this.cbVUindicators.Size     = new Size(213, 17);
     this.cbVUindicators.TabIndex = 121;
     this.cbVUindicators.Text     = "Show Channel indicators for VU Display";
     this.cbVUindicators.UseVisualStyleBackColor = true;
     //
     // cbUseVUmeter
     //
     this.cbUseVUmeter.AutoSize = true;
     this.cbUseVUmeter.Location = new Point(135, 17);
     this.cbUseVUmeter.Name     = "cbUseVUmeter";
     this.cbUseVUmeter.Size     = new Size(70, 17);
     this.cbUseVUmeter.TabIndex = 2;
     this.cbUseVUmeter.Text     = "VU Meter";
     this.cbUseVUmeter.UseVisualStyleBackColor = true;
     this.cbUseVUmeter.CheckedChanged         += new EventHandler(this.cbUseVUmeter_CheckedChanged);
     //
     // cbStereoEQ
     //
     this.cbStereoEQ.AutoSize = true;
     this.cbStereoEQ.Location = new Point(77, 17);
     this.cbStereoEQ.Name     = "cbStereoEQ";
     this.cbStereoEQ.Size     = new Size(56, 17);
     this.cbStereoEQ.TabIndex = 1;
     this.cbStereoEQ.Text     = "Stereo";
     this.cbStereoEQ.UseVisualStyleBackColor = true;
     this.cbStereoEQ.CheckedChanged         += new EventHandler(this.cbStereoEQ_CheckedChanged);
     //
     // cbNormalEQ
     //
     this.cbNormalEQ.AutoSize = true;
     this.cbNormalEQ.Checked  = true;
     this.cbNormalEQ.Location = new Point(13, 17);
     this.cbNormalEQ.Name     = "cbNormalEQ";
     this.cbNormalEQ.Size     = new Size(58, 17);
     this.cbNormalEQ.TabIndex = 0;
     this.cbNormalEQ.TabStop  = true;
     this.cbNormalEQ.Text     = "Normal";
     this.cbNormalEQ.UseVisualStyleBackColor = true;
     this.cbNormalEQ.CheckedChanged         += new EventHandler(this.cbNormalEQ_CheckedChanged);
     //
     // cmbDelayEqTime
     //
     this.cmbDelayEqTime.BorderColor   = Color.Empty;
     this.cmbDelayEqTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbDelayEqTime.Items.AddRange(new object[]
     {
         "0",
         "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"
     });
     this.cmbDelayEqTime.Location = new Point(160, 143);
     this.cmbDelayEqTime.Name     = "cmbDelayEqTime";
     this.cmbDelayEqTime.Size     = new Size(52, 21);
     this.cmbDelayEqTime.TabIndex = 104;
     //
     // lblRestrictEQ
     //
     this.lblRestrictEQ.Anchor    = ((AnchorStyles)((AnchorStyles.Top | AnchorStyles.Right)));
     this.lblRestrictEQ.Location  = new Point(102, 124);
     this.lblRestrictEQ.Name      = "lblRestrictEQ";
     this.lblRestrictEQ.Size      = new Size(116, 17);
     this.lblRestrictEQ.TabIndex  = 115;
     this.lblRestrictEQ.Text      = "updates per Seconds";
     this.lblRestrictEQ.TextAlign = ContentAlignment.MiddleLeft;
     //
     // cmbEQTitleDisplayTime
     //
     this.cmbEQTitleDisplayTime.BorderColor   = Color.Empty;
     this.cmbEQTitleDisplayTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbEQTitleDisplayTime.Items.AddRange(new object[]
     {
         "0",
         "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"
     });
     this.cmbEQTitleDisplayTime.Location = new Point(165, 207);
     this.cmbEQTitleDisplayTime.Name     = "cmbEQTitleDisplayTime";
     this.cmbEQTitleDisplayTime.Size     = new Size(52, 21);
     this.cmbEQTitleDisplayTime.TabIndex = 110;
     //
     // cmbEQTitleShowTime
     //
     this.cmbEQTitleShowTime.BorderColor   = Color.Empty;
     this.cmbEQTitleShowTime.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbEQTitleShowTime.Items.AddRange(new object[]
     {
         "0",
         "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"
     });
     this.cmbEQTitleShowTime.Location = new Point(32, 207);
     this.cmbEQTitleShowTime.Name     = "cmbEQTitleShowTime";
     this.cmbEQTitleShowTime.Size     = new Size(52, 21);
     this.cmbEQTitleShowTime.TabIndex = 113;
     //
     // mpEQTitleDisplay
     //
     this.mpEQTitleDisplay.AutoSize = true;
     this.mpEQTitleDisplay.Location = new Point(21, 187);
     this.mpEQTitleDisplay.Name     = "mpEQTitleDisplay";
     this.mpEQTitleDisplay.Size     = new Size(120, 17);
     this.mpEQTitleDisplay.TabIndex = 112;
     this.mpEQTitleDisplay.Text     = "Show Track Info for";
     this.mpEQTitleDisplay.UseVisualStyleBackColor = true;
     this.mpEQTitleDisplay.CheckedChanged         += new EventHandler(this.mpEQTitleDisplay_CheckedChanged);
     //
     // mpSmoothEQ
     //
     this.mpSmoothEQ.AutoSize = true;
     this.mpSmoothEQ.Location = new Point(21, 166);
     this.mpSmoothEQ.Name     = "mpSmoothEQ";
     this.mpSmoothEQ.Size     = new Size(224, 17);
     this.mpSmoothEQ.TabIndex = 109;
     this.mpSmoothEQ.Text     = "Use Equalizer Smoothing (Delayed decay)";
     this.mpSmoothEQ.UseVisualStyleBackColor = true;
     //
     // mpEqDisplay
     //
     this.mpEqDisplay.AutoSize = true;
     this.mpEqDisplay.Location = new Point(5, 21);
     this.mpEqDisplay.Name     = "mpEqDisplay";
     this.mpEqDisplay.Size     = new Size(126, 17);
     this.mpEqDisplay.TabIndex = 106;
     this.mpEqDisplay.Text     = "Use Equalizer display";
     this.mpEqDisplay.UseVisualStyleBackColor = true;
     this.mpEqDisplay.CheckedChanged         += new EventHandler(this.mpEqDisplay_CheckedChanged);
     //
     // mpRestrictEQ
     //
     this.mpRestrictEQ.AutoSize = true;
     this.mpRestrictEQ.Location = new Point(21, 103);
     this.mpRestrictEQ.Name     = "mpRestrictEQ";
     this.mpRestrictEQ.Size     = new Size(185, 17);
     this.mpRestrictEQ.TabIndex = 107;
     this.mpRestrictEQ.Text     = "Limit Equalizer display update rate";
     this.mpRestrictEQ.UseVisualStyleBackColor = true;
     this.mpRestrictEQ.CheckedChanged         += new EventHandler(this.mpRestrictEQ_CheckedChanged);
     //
     // cmbEqRate
     //
     this.cmbEqRate.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left)
                                              | AnchorStyles.Right)));
     this.cmbEqRate.BorderColor   = Color.Empty;
     this.cmbEqRate.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbEqRate.Items.AddRange(new object[]
     {
         "MAX",
         "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",
         "32",
         "33",
         "34",
         "35",
         "36",
         "37",
         "38",
         "39",
         "40",
         "41",
         "42",
         "43",
         "44",
         "45",
         "46",
         "47",
         "48",
         "49",
         "50",
         "51",
         "52",
         "53",
         "54",
         "55",
         "56",
         "57",
         "58",
         "59",
         "60"
     });
     this.cmbEqRate.Location = new Point(32, 122);
     this.cmbEqRate.Name     = "cmbEqRate";
     this.cmbEqRate.Size     = new Size(69, 21);
     this.cmbEqRate.TabIndex = 103;
     //
     // mpDelayEQ
     //
     this.mpDelayEQ.AutoSize = true;
     this.mpDelayEQ.Location = new Point(21, 144);
     this.mpDelayEQ.Name     = "mpDelayEQ";
     this.mpDelayEQ.Size     = new Size(246, 17);
     this.mpDelayEQ.TabIndex = 108;
     this.mpDelayEQ.Text     = "Delay Equalizer Start by                      Seconds";
     this.mpDelayEQ.UseVisualStyleBackColor = true;
     this.mpDelayEQ.CheckedChanged         += new EventHandler(this.mpDelayEQ_CheckedChanged);
     //
     // lblEQTitleDisplay
     //
     this.lblEQTitleDisplay.Location  = new Point(86, 208);
     this.lblEQTitleDisplay.Name      = "lblEQTitleDisplay";
     this.lblEQTitleDisplay.Size      = new Size(201, 17);
     this.lblEQTitleDisplay.TabIndex  = 114;
     this.lblEQTitleDisplay.Text      = "Seconds every                     Seconds";
     this.lblEQTitleDisplay.TextAlign = ContentAlignment.MiddleLeft;
     //
     // btnOK
     //
     this.btnOK.Anchor   = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
     this.btnOK.Location = new Point(316, 380);
     this.btnOK.Name     = "btnOK";
     this.btnOK.Size     = new Size(88, 23);
     this.btnOK.TabIndex = 12;
     this.btnOK.Text     = "&OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new EventHandler(this.btnOK_Click);
     //
     // btnReset
     //
     this.btnReset.Anchor   = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
     this.btnReset.Location = new Point(222, 380);
     this.btnReset.Name     = "btnReset";
     this.btnReset.Size     = new Size(88, 23);
     this.btnReset.TabIndex = 13;
     this.btnReset.Text     = "&RESET";
     this.btnReset.UseVisualStyleBackColor = true;
     this.btnReset.Click += new EventHandler(this.btnReset_Click);
     //
     // IOWarrior_AdvancedSetupForm
     //
     this.AutoScaleDimensions = new SizeF(6F, 13F);
     this.ClientSize          = new Size(411, 409);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.groupBox1);
     this.Name          = "IOWarrior_AdvancedSetupForm";
     this.StartPosition = FormStartPosition.CenterParent;
     this.Text          = "MiniDisplay - Setup - Advanced Settings";
     this.groupBox1.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.groupEqualizerOptions.ResumeLayout(false);
     this.groupEqualizerOptions.PerformLayout();
     this.groupEQstyle.ResumeLayout(false);
     this.groupEQstyle.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.mpGroupBox2             = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.comboBoxDeInterlace     = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpLabel4                = new MediaPortal.UserInterface.Controls.MPLabel();
     this.mpLabel3                = new MediaPortal.UserInterface.Controls.MPLabel();
     this.checkBoxUIUseHVA        = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.mpGroupBox3             = new MediaPortal.UserInterface.Controls.MPGroupBox();
     this.comboBoxH264DeInterlace = new MediaPortal.UserInterface.Controls.MPComboBox();
     this.mpLabel6                = new MediaPortal.UserInterface.Controls.MPLabel();
     this.mpLabel5                = new MediaPortal.UserInterface.Controls.MPLabel();
     this.checkBoxUIUseH264HVA    = new MediaPortal.UserInterface.Controls.MPCheckBox();
     this.mpGroupBox2.SuspendLayout();
     this.mpGroupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // mpGroupBox2
     //
     this.mpGroupBox2.Controls.Add(this.comboBoxDeInterlace);
     this.mpGroupBox2.Controls.Add(this.mpLabel4);
     this.mpGroupBox2.Controls.Add(this.mpLabel3);
     this.mpGroupBox2.Controls.Add(this.checkBoxUIUseHVA);
     this.mpGroupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox2.Location  = new System.Drawing.Point(6, 0);
     this.mpGroupBox2.Name      = "mpGroupBox2";
     this.mpGroupBox2.Size      = new System.Drawing.Size(462, 118);
     this.mpGroupBox2.TabIndex  = 3;
     this.mpGroupBox2.TabStop   = false;
     this.mpGroupBox2.Text      = "MPEG-2 Video Decoder Settings";
     //
     // comboBoxDeInterlace
     //
     this.comboBoxDeInterlace.BorderColor       = System.Drawing.Color.Empty;
     this.comboBoxDeInterlace.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxDeInterlace.FormattingEnabled = true;
     this.comboBoxDeInterlace.Items.AddRange(new object[] {
         "Auto-select",
         "Force bob",
         "Force weave"
     });
     this.comboBoxDeInterlace.Location = new System.Drawing.Point(52, 85);
     this.comboBoxDeInterlace.Name     = "comboBoxDeInterlace";
     this.comboBoxDeInterlace.Size     = new System.Drawing.Size(198, 21);
     this.comboBoxDeInterlace.TabIndex = 3;
     //
     // mpLabel4
     //
     this.mpLabel4.AutoSize = true;
     this.mpLabel4.Location = new System.Drawing.Point(22, 60);
     this.mpLabel4.Name     = "mpLabel4";
     this.mpLabel4.Size     = new System.Drawing.Size(104, 13);
     this.mpLabel4.TabIndex = 2;
     this.mpLabel4.Text     = "De-Interlace Options";
     //
     // mpLabel3
     //
     this.mpLabel3.AutoSize    = true;
     this.mpLabel3.Location    = new System.Drawing.Point(188, 21);
     this.mpLabel3.MaximumSize = new System.Drawing.Size(270, 0);
     this.mpLabel3.Name        = "mpLabel3";
     this.mpLabel3.Size        = new System.Drawing.Size(256, 26);
     this.mpLabel3.TabIndex    = 1;
     this.mpLabel3.Text        = "Recommended to reduce CPU utilization. If selected De-Interlace options are contr" +
                                 "olled by VMR9.";
     //
     // checkBoxUIUseHVA
     //
     this.checkBoxUIUseHVA.AutoSize  = true;
     this.checkBoxUIUseHVA.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxUIUseHVA.Location  = new System.Drawing.Point(22, 30);
     this.checkBoxUIUseHVA.Name      = "checkBoxUIUseHVA";
     this.checkBoxUIUseHVA.Size      = new System.Drawing.Size(149, 17);
     this.checkBoxUIUseHVA.TabIndex  = 0;
     this.checkBoxUIUseHVA.Text      = "Use Hardware Accelerator";
     this.checkBoxUIUseHVA.UseVisualStyleBackColor = true;
     this.checkBoxUIUseHVA.CheckedChanged         += new System.EventHandler(this.UIUseHVA_CheckedChanged);
     //
     // mpGroupBox3
     //
     this.mpGroupBox3.Controls.Add(this.comboBoxH264DeInterlace);
     this.mpGroupBox3.Controls.Add(this.mpLabel6);
     this.mpGroupBox3.Controls.Add(this.mpLabel5);
     this.mpGroupBox3.Controls.Add(this.checkBoxUIUseH264HVA);
     this.mpGroupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.mpGroupBox3.Location  = new System.Drawing.Point(6, 124);
     this.mpGroupBox3.Name      = "mpGroupBox3";
     this.mpGroupBox3.Size      = new System.Drawing.Size(462, 119);
     this.mpGroupBox3.TabIndex  = 4;
     this.mpGroupBox3.TabStop   = false;
     this.mpGroupBox3.Text      = "H.264 Video Decoder Settings";
     //
     // comboBoxH264DeInterlace
     //
     this.comboBoxH264DeInterlace.BorderColor       = System.Drawing.Color.Empty;
     this.comboBoxH264DeInterlace.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxH264DeInterlace.FormattingEnabled = true;
     this.comboBoxH264DeInterlace.Items.AddRange(new object[] {
         "Auto-select",
         "Force bob",
         "Force weave"
     });
     this.comboBoxH264DeInterlace.Location = new System.Drawing.Point(52, 87);
     this.comboBoxH264DeInterlace.Name     = "comboBoxH264DeInterlace";
     this.comboBoxH264DeInterlace.Size     = new System.Drawing.Size(198, 21);
     this.comboBoxH264DeInterlace.TabIndex = 5;
     //
     // mpLabel6
     //
     this.mpLabel6.AutoSize = true;
     this.mpLabel6.Location = new System.Drawing.Point(22, 62);
     this.mpLabel6.Name     = "mpLabel6";
     this.mpLabel6.Size     = new System.Drawing.Size(104, 13);
     this.mpLabel6.TabIndex = 4;
     this.mpLabel6.Text     = "De-Interlace Options";
     //
     // mpLabel5
     //
     this.mpLabel5.AutoSize    = true;
     this.mpLabel5.Location    = new System.Drawing.Point(188, 21);
     this.mpLabel5.MaximumSize = new System.Drawing.Size(270, 0);
     this.mpLabel5.Name        = "mpLabel5";
     this.mpLabel5.Size        = new System.Drawing.Size(256, 26);
     this.mpLabel5.TabIndex    = 4;
     this.mpLabel5.Text        = "Recommended to reduce CPU utilization. If selected De-Interlace options are contr" +
                                 "olled by VMR9.";
     //
     // checkBoxUIUseH264HVA
     //
     this.checkBoxUIUseH264HVA.AutoSize  = true;
     this.checkBoxUIUseH264HVA.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.checkBoxUIUseH264HVA.Location  = new System.Drawing.Point(22, 30);
     this.checkBoxUIUseH264HVA.Name      = "checkBoxUIUseH264HVA";
     this.checkBoxUIUseH264HVA.Size      = new System.Drawing.Size(149, 17);
     this.checkBoxUIUseH264HVA.TabIndex  = 4;
     this.checkBoxUIUseH264HVA.Text      = "Use Hardware Accelerator";
     this.checkBoxUIUseH264HVA.UseVisualStyleBackColor = true;
     this.checkBoxUIUseH264HVA.CheckedChanged         += new System.EventHandler(this.mpCheckBox1_CheckedChanged);
     //
     // FiltersPowerDVDDecoder
     //
     this.Controls.Add(this.mpGroupBox3);
     this.Controls.Add(this.mpGroupBox2);
     this.Name = "FiltersPowerDVDDecoder";
     this.Size = new System.Drawing.Size(472, 408);
     this.mpGroupBox2.ResumeLayout(false);
     this.mpGroupBox2.PerformLayout();
     this.mpGroupBox3.ResumeLayout(false);
     this.mpGroupBox3.PerformLayout();
     this.ResumeLayout(false);
 }