Server/MainForm.Designer.cs
changeset 168 2568261f74fb
parent 153 95f253aaf588
child 175 391bce3c8368
     1.1 --- a/Server/MainForm.Designer.cs	Sat Sep 26 16:35:27 2015 +0200
     1.2 +++ b/Server/MainForm.Designer.cs	Sat Sep 26 17:55:51 2015 +0200
     1.3 @@ -96,6 +96,12 @@
     1.4              this.pictureBoxGreenStart = new System.Windows.Forms.PictureBox();
     1.5              this.labelStartFileName = new System.Windows.Forms.Label();
     1.6              this.buttonSelectFile = new System.Windows.Forms.Button();
     1.7 +            this.tabPageCec = new System.Windows.Forms.TabPage();
     1.8 +            this.checkBoxCecMonitorOn = new System.Windows.Forms.CheckBox();
     1.9 +            this.checkBoxCecMonitorOff = new System.Windows.Forms.CheckBox();
    1.10 +            this.checkBoxCecEnabled = new System.Windows.Forms.CheckBox();
    1.11 +            this.labelHdmiPort = new System.Windows.Forms.Label();
    1.12 +            this.comboBoxHdmiPort = new System.Windows.Forms.ComboBox();
    1.13              this.tabPageApp = new System.Windows.Forms.TabPage();
    1.14              this.checkBoxStartMinimized = new System.Windows.Forms.CheckBox();
    1.15              this.checkBoxMinimizeToTray = new System.Windows.Forms.CheckBox();
    1.16 @@ -105,7 +111,6 @@
    1.17              this.labelFontHeight = new System.Windows.Forms.Label();
    1.18              this.toolTip = new System.Windows.Forms.ToolTip(this.components);
    1.19              this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
    1.20 -            this.pictureBoxDemo = new System.Windows.Forms.PictureBox();
    1.21              this.panelDisplay.SuspendLayout();
    1.22              this.tableLayoutPanel.SuspendLayout();
    1.23              this.statusStrip.SuspendLayout();
    1.24 @@ -118,8 +123,8 @@
    1.25              ((System.ComponentModel.ISupportInitialize)(this.trackBarMasterVolume)).BeginInit();
    1.26              this.tabPageInput.SuspendLayout();
    1.27              ((System.ComponentModel.ISupportInitialize)(this.pictureBoxGreenStart)).BeginInit();
    1.28 +            this.tabPageCec.SuspendLayout();
    1.29              this.tabPageApp.SuspendLayout();
    1.30 -            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxDemo)).BeginInit();
    1.31              this.SuspendLayout();
    1.32              // 
    1.33              // panelDisplay
    1.34 @@ -521,6 +526,7 @@
    1.35              this.tabControl.Controls.Add(this.tabPageDesign);
    1.36              this.tabControl.Controls.Add(this.tabPageAudio);
    1.37              this.tabControl.Controls.Add(this.tabPageInput);
    1.38 +            this.tabControl.Controls.Add(this.tabPageCec);
    1.39              this.tabControl.Controls.Add(this.tabPageApp);
    1.40              this.tabControl.Location = new System.Drawing.Point(12, 139);
    1.41              this.tabControl.Name = "tabControl";
    1.42 @@ -766,6 +772,86 @@
    1.43              this.buttonSelectFile.UseVisualStyleBackColor = true;
    1.44              this.buttonSelectFile.Click += new System.EventHandler(this.buttonSelectFile_Click);
    1.45              // 
    1.46 +            // tabPageCec
    1.47 +            // 
    1.48 +            this.tabPageCec.Controls.Add(this.checkBoxCecMonitorOn);
    1.49 +            this.tabPageCec.Controls.Add(this.checkBoxCecMonitorOff);
    1.50 +            this.tabPageCec.Controls.Add(this.checkBoxCecEnabled);
    1.51 +            this.tabPageCec.Controls.Add(this.labelHdmiPort);
    1.52 +            this.tabPageCec.Controls.Add(this.comboBoxHdmiPort);
    1.53 +            this.tabPageCec.Location = new System.Drawing.Point(4, 22);
    1.54 +            this.tabPageCec.Name = "tabPageCec";
    1.55 +            this.tabPageCec.Padding = new System.Windows.Forms.Padding(3);
    1.56 +            this.tabPageCec.Size = new System.Drawing.Size(592, 242);
    1.57 +            this.tabPageCec.TabIndex = 7;
    1.58 +            this.tabPageCec.Text = "CEC";
    1.59 +            this.tabPageCec.UseVisualStyleBackColor = true;
    1.60 +            // 
    1.61 +            // checkBoxCecMonitorOn
    1.62 +            // 
    1.63 +            this.checkBoxCecMonitorOn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    1.64 +            this.checkBoxCecMonitorOn.AutoSize = true;
    1.65 +            this.checkBoxCecMonitorOn.Location = new System.Drawing.Point(6, 92);
    1.66 +            this.checkBoxCecMonitorOn.Name = "checkBoxCecMonitorOn";
    1.67 +            this.checkBoxCecMonitorOn.Size = new System.Drawing.Size(192, 17);
    1.68 +            this.checkBoxCecMonitorOn.TabIndex = 23;
    1.69 +            this.checkBoxCecMonitorOn.Text = "Wake up TV when screen turns on";
    1.70 +            this.checkBoxCecMonitorOn.UseVisualStyleBackColor = true;
    1.71 +            this.checkBoxCecMonitorOn.CheckedChanged += new System.EventHandler(this.checkBoxCecMonitorOn_CheckedChanged);
    1.72 +            // 
    1.73 +            // checkBoxCecMonitorOff
    1.74 +            // 
    1.75 +            this.checkBoxCecMonitorOff.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    1.76 +            this.checkBoxCecMonitorOff.AutoSize = true;
    1.77 +            this.checkBoxCecMonitorOff.Location = new System.Drawing.Point(6, 69);
    1.78 +            this.checkBoxCecMonitorOff.Name = "checkBoxCecMonitorOff";
    1.79 +            this.checkBoxCecMonitorOff.Size = new System.Drawing.Size(219, 17);
    1.80 +            this.checkBoxCecMonitorOff.TabIndex = 22;
    1.81 +            this.checkBoxCecMonitorOff.Text = "Set TV on standby when screen turns off";
    1.82 +            this.checkBoxCecMonitorOff.UseVisualStyleBackColor = true;
    1.83 +            this.checkBoxCecMonitorOff.CheckedChanged += new System.EventHandler(this.checkBoxCecMonitorOff_CheckedChanged);
    1.84 +            // 
    1.85 +            // checkBoxCecEnabled
    1.86 +            // 
    1.87 +            this.checkBoxCecEnabled.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    1.88 +            this.checkBoxCecEnabled.AutoSize = true;
    1.89 +            this.checkBoxCecEnabled.Location = new System.Drawing.Point(6, 6);
    1.90 +            this.checkBoxCecEnabled.Name = "checkBoxCecEnabled";
    1.91 +            this.checkBoxCecEnabled.Size = new System.Drawing.Size(83, 17);
    1.92 +            this.checkBoxCecEnabled.TabIndex = 21;
    1.93 +            this.checkBoxCecEnabled.Text = "Enable CEC";
    1.94 +            this.checkBoxCecEnabled.UseVisualStyleBackColor = true;
    1.95 +            this.checkBoxCecEnabled.CheckedChanged += new System.EventHandler(this.checkBoxCecEnabled_CheckedChanged);
    1.96 +            // 
    1.97 +            // labelHdmiPort
    1.98 +            // 
    1.99 +            this.labelHdmiPort.AutoSize = true;
   1.100 +            this.labelHdmiPort.Location = new System.Drawing.Point(3, 26);
   1.101 +            this.labelHdmiPort.Name = "labelHdmiPort";
   1.102 +            this.labelHdmiPort.Size = new System.Drawing.Size(182, 13);
   1.103 +            this.labelHdmiPort.TabIndex = 20;
   1.104 +            this.labelHdmiPort.Text = "TV HDMI port connected to your PC:";
   1.105 +            // 
   1.106 +            // comboBoxHdmiPort
   1.107 +            // 
   1.108 +            this.comboBoxHdmiPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
   1.109 +            this.comboBoxHdmiPort.FormattingEnabled = true;
   1.110 +            this.comboBoxHdmiPort.Items.AddRange(new object[] {
   1.111 +            "HDMI 1",
   1.112 +            "HDMI 2",
   1.113 +            "HDMI 3",
   1.114 +            "HDMI 4",
   1.115 +            "HDMI 5",
   1.116 +            "HDMI 6",
   1.117 +            "HDMI 7",
   1.118 +            "HDMI 8",
   1.119 +            "HDMI 9"});
   1.120 +            this.comboBoxHdmiPort.Location = new System.Drawing.Point(6, 42);
   1.121 +            this.comboBoxHdmiPort.Name = "comboBoxHdmiPort";
   1.122 +            this.comboBoxHdmiPort.Size = new System.Drawing.Size(87, 21);
   1.123 +            this.comboBoxHdmiPort.TabIndex = 19;
   1.124 +            this.comboBoxHdmiPort.SelectedIndexChanged += new System.EventHandler(this.comboBoxHdmiPort_SelectedIndexChanged);
   1.125 +            // 
   1.126              // tabPageApp
   1.127              // 
   1.128              this.tabPageApp.Controls.Add(this.checkBoxStartMinimized);
   1.129 @@ -848,20 +934,11 @@
   1.130              // 
   1.131              this.openFileDialog.Filter = "EXE files (*.exe)|*.exe|All files (*.*)|*.*";
   1.132              // 
   1.133 -            // pictureBoxDemo
   1.134 -            // 
   1.135 -            this.pictureBoxDemo.Location = new System.Drawing.Point(478, 54);
   1.136 -            this.pictureBoxDemo.Name = "pictureBoxDemo";
   1.137 -            this.pictureBoxDemo.Size = new System.Drawing.Size(100, 50);
   1.138 -            this.pictureBoxDemo.TabIndex = 21;
   1.139 -            this.pictureBoxDemo.TabStop = false;
   1.140 -            // 
   1.141              // MainForm
   1.142              // 
   1.143              this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
   1.144              this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
   1.145              this.ClientSize = new System.Drawing.Size(624, 442);
   1.146 -            this.Controls.Add(this.pictureBoxDemo);
   1.147              this.Controls.Add(this.labelFontHeight);
   1.148              this.Controls.Add(this.labelFontWidth);
   1.149              this.Controls.Add(this.labelWarning);
   1.150 @@ -894,9 +971,10 @@
   1.151              this.tabPageInput.ResumeLayout(false);
   1.152              this.tabPageInput.PerformLayout();
   1.153              ((System.ComponentModel.ISupportInitialize)(this.pictureBoxGreenStart)).EndInit();
   1.154 +            this.tabPageCec.ResumeLayout(false);
   1.155 +            this.tabPageCec.PerformLayout();
   1.156              this.tabPageApp.ResumeLayout(false);
   1.157              this.tabPageApp.PerformLayout();
   1.158 -            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxDemo)).EndInit();
   1.159              this.ResumeLayout(false);
   1.160              this.PerformLayout();
   1.161  
   1.162 @@ -945,7 +1023,6 @@
   1.163          private System.Windows.Forms.Label labelFontWidth;
   1.164          private System.Windows.Forms.Label labelFontHeight;
   1.165          private System.Windows.Forms.CheckBox checkBoxInverseColors;
   1.166 -        private System.Windows.Forms.PictureBox pictureBoxDemo;
   1.167          private System.Windows.Forms.TabPage tabPageApp;
   1.168          private System.Windows.Forms.Button buttonUpdate;
   1.169  		private System.Windows.Forms.CheckBox checkBoxAutoStart;
   1.170 @@ -971,6 +1048,12 @@
   1.171  		private System.Windows.Forms.PictureBox pictureBoxGreenStart;
   1.172          private System.Windows.Forms.ComboBox comboBoxOpticalDrives;
   1.173          private System.Windows.Forms.Label labelOpticalDriveEject;
   1.174 +        private System.Windows.Forms.TabPage tabPageCec;
   1.175 +        private System.Windows.Forms.CheckBox checkBoxCecEnabled;
   1.176 +        private System.Windows.Forms.Label labelHdmiPort;
   1.177 +        private System.Windows.Forms.ComboBox comboBoxHdmiPort;
   1.178 +        private System.Windows.Forms.CheckBox checkBoxCecMonitorOn;
   1.179 +        private System.Windows.Forms.CheckBox checkBoxCecMonitorOff;
   1.180      }
   1.181  }
   1.182