Server/FormMain.Designer.cs
author StephaneLenclud
Sat, 07 Jan 2017 20:21:42 +0100
changeset 277 71ba0dd622a5
parent 271 24aec939b286
child 279 10f0de70b69b
permissions -rw-r--r--
Created Audio Manager class.
Clean up CScore audio usage.
Fixing broken audio device change handler.
Fixed various audio Dispose deadlock due to Invoke usage.
Thus now using BeginInvoke instead.
     1 namespace SharpDisplayManager
     2 {
     3     partial class FormMain
     4     {
     5         /// <summary>
     6         /// Required designer variable.
     7         /// </summary>
     8         private System.ComponentModel.IContainer components = null;
     9 
    10         /// <summary>
    11         /// Clean up any resources being used.
    12         /// </summary>
    13         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    14         protected override void Dispose(bool disposing)
    15         {
    16             if (disposing)
    17             {
    18                 if (iNotifyIcon != null)
    19                 {
    20                     iNotifyIcon.Dispose();
    21                     iNotifyIcon = null;
    22                 }
    23                 
    24                 if (components != null)
    25                 {
    26                     components.Dispose();
    27                 }
    28             }
    29             base.Dispose(disposing);
    30         }
    31 
    32         #region Windows Form Designer generated code
    33 
    34         /// <summary>
    35         /// Required method for Designer support - do not modify
    36         /// the contents of this method with the code editor.
    37         /// </summary>
    38         private void InitializeComponent()
    39         {
    40             this.components = new System.ComponentModel.Container();
    41             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
    42             this.panelDisplay = new System.Windows.Forms.Panel();
    43             this.iTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
    44             this.marqueeLabelTop = new SharpDisplayManager.MarqueeLabel();
    45             this.marqueeLabelBottom = new SharpDisplayManager.MarqueeLabel();
    46             this.fontDialog = new System.Windows.Forms.FontDialog();
    47             this.iTimerDisplay = new System.Windows.Forms.Timer(this.components);
    48             this.statusStrip = new System.Windows.Forms.StatusStrip();
    49             this.toolStripStatusLabelConnect = new System.Windows.Forms.ToolStripStatusLabel();
    50             this.toolStripStatusLabelSpring = new System.Windows.Forms.ToolStripStatusLabel();
    51             this.toolStripStatusLabelPower = new System.Windows.Forms.ToolStripStatusLabel();
    52             this.toolStripStatusLabelFps = new System.Windows.Forms.ToolStripStatusLabel();
    53             this.tabPageClients = new System.Windows.Forms.TabPage();
    54             this.iCheckBoxStartIdleClient = new System.Windows.Forms.CheckBox();
    55             this.iButtonStartIdleClient = new System.Windows.Forms.Button();
    56             this.buttonCloseClients = new System.Windows.Forms.Button();
    57             this.buttonStartClient = new System.Windows.Forms.Button();
    58             this.iTreeViewClients = new System.Windows.Forms.TreeView();
    59             this.tabPageDisplay = new System.Windows.Forms.TabPage();
    60             this.buttonShowClock = new System.Windows.Forms.Button();
    61             this.buttonHideClock = new System.Windows.Forms.Button();
    62             this.buttonPowerOff = new System.Windows.Forms.Button();
    63             this.buttonPowerOn = new System.Windows.Forms.Button();
    64             this.labelTimerInterval = new System.Windows.Forms.Label();
    65             this.maskedTextBoxTimerInterval = new System.Windows.Forms.MaskedTextBox();
    66             this.comboBoxDisplayType = new System.Windows.Forms.ComboBox();
    67             this.buttonSuspend = new System.Windows.Forms.Button();
    68             this.checkBoxConnectOnStartup = new System.Windows.Forms.CheckBox();
    69             this.trackBarBrightness = new System.Windows.Forms.TrackBar();
    70             this.buttonFill = new System.Windows.Forms.Button();
    71             this.buttonClear = new System.Windows.Forms.Button();
    72             this.buttonClose = new System.Windows.Forms.Button();
    73             this.buttonOpen = new System.Windows.Forms.Button();
    74             this.buttonCapture = new System.Windows.Forms.Button();
    75             this.labelWarning = new System.Windows.Forms.Label();
    76             this.checkBoxFixedPitchFontOnly = new System.Windows.Forms.CheckBox();
    77             this.checkBoxShowBorders = new System.Windows.Forms.CheckBox();
    78             this.buttonFont = new System.Windows.Forms.Button();
    79             this.tabControl = new System.Windows.Forms.TabControl();
    80             this.tabPageDesign = new System.Windows.Forms.TabPage();
    81             this.labelScrollingSpeed = new System.Windows.Forms.Label();
    82             this.maskedTextBoxScrollingSpeed = new System.Windows.Forms.MaskedTextBox();
    83             this.labelScrollLoopSeparator = new System.Windows.Forms.Label();
    84             this.textBoxScrollLoopSeparator = new System.Windows.Forms.TextBox();
    85             this.labelMinFontSize = new System.Windows.Forms.Label();
    86             this.maskedTextBoxMinFontSize = new System.Windows.Forms.MaskedTextBox();
    87             this.checkBoxScaleToFit = new System.Windows.Forms.CheckBox();
    88             this.checkBoxInverseColors = new System.Windows.Forms.CheckBox();
    89             this.checkBoxReverseScreen = new System.Windows.Forms.CheckBox();
    90             this.tabPageAudio = new System.Windows.Forms.TabPage();
    91             this.iLabelDefaultAudioDevice = new System.Windows.Forms.Label();
    92             this.checkBoxShowVolumeLabel = new System.Windows.Forms.CheckBox();
    93             this.checkBoxMute = new System.Windows.Forms.CheckBox();
    94             this.trackBarMasterVolume = new System.Windows.Forms.TrackBar();
    95             this.tabPageCec = new System.Windows.Forms.TabPage();
    96             this.groupBoxCecLogOptions = new System.Windows.Forms.GroupBox();
    97             this.checkBoxCecLogNoPoll = new System.Windows.Forms.CheckBox();
    98             this.checkBoxCecLogTraffic = new System.Windows.Forms.CheckBox();
    99             this.checkBoxCecLogDebug = new System.Windows.Forms.CheckBox();
   100             this.checkBoxCecLogNotice = new System.Windows.Forms.CheckBox();
   101             this.checkBoxCecLogError = new System.Windows.Forms.CheckBox();
   102             this.checkBoxCecLogWarning = new System.Windows.Forms.CheckBox();
   103             this.labelHdmiPort = new System.Windows.Forms.Label();
   104             this.comboBoxHdmiPort = new System.Windows.Forms.ComboBox();
   105             this.iCheckBoxCecEnabled = new System.Windows.Forms.CheckBox();
   106             this.tabPageHarmony = new System.Windows.Forms.TabPage();
   107             this.iButtonHarmonyConnect = new System.Windows.Forms.Button();
   108             this.iCheckBoxHarmonyEnabled = new System.Windows.Forms.CheckBox();
   109             this.iTreeViewHarmony = new System.Windows.Forms.TreeView();
   110             this.label1 = new System.Windows.Forms.Label();
   111             this.iTextBoxHarmonyHubAddress = new System.Windows.Forms.TextBox();
   112             this.tabPageEvent = new System.Windows.Forms.TabPage();
   113             this.buttonEventEdit = new System.Windows.Forms.Button();
   114             this.buttonEventDelete = new System.Windows.Forms.Button();
   115             this.buttonEventAdd = new System.Windows.Forms.Button();
   116             this.buttonEventTest = new System.Windows.Forms.Button();
   117             this.buttonActionEdit = new System.Windows.Forms.Button();
   118             this.buttonActionMoveUp = new System.Windows.Forms.Button();
   119             this.buttonActionMoveDown = new System.Windows.Forms.Button();
   120             this.buttonActionTest = new System.Windows.Forms.Button();
   121             this.buttonActionDelete = new System.Windows.Forms.Button();
   122             this.buttonActionAdd = new System.Windows.Forms.Button();
   123             this.iTreeViewEvents = new System.Windows.Forms.TreeView();
   124             this.tabPageApp = new System.Windows.Forms.TabPage();
   125             this.checkBoxStartMinimized = new System.Windows.Forms.CheckBox();
   126             this.checkBoxMinimizeToTray = new System.Windows.Forms.CheckBox();
   127             this.checkBoxAutoStart = new System.Windows.Forms.CheckBox();
   128             this.buttonUpdate = new System.Windows.Forms.Button();
   129             this.tabPageLogs = new System.Windows.Forms.TabPage();
   130             this.buttonClearLogs = new System.Windows.Forms.Button();
   131             this.richTextBoxLogs = new System.Windows.Forms.RichTextBox();
   132             this.labelFontWidth = new System.Windows.Forms.Label();
   133             this.labelFontHeight = new System.Windows.Forms.Label();
   134             this.toolTip = new System.Windows.Forms.ToolTip(this.components);
   135             this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
   136             this.panelDisplay.SuspendLayout();
   137             this.iTableLayoutPanel.SuspendLayout();
   138             this.statusStrip.SuspendLayout();
   139             this.tabPageClients.SuspendLayout();
   140             this.tabPageDisplay.SuspendLayout();
   141             ((System.ComponentModel.ISupportInitialize)(this.trackBarBrightness)).BeginInit();
   142             this.tabControl.SuspendLayout();
   143             this.tabPageDesign.SuspendLayout();
   144             this.tabPageAudio.SuspendLayout();
   145             ((System.ComponentModel.ISupportInitialize)(this.trackBarMasterVolume)).BeginInit();
   146             this.tabPageCec.SuspendLayout();
   147             this.groupBoxCecLogOptions.SuspendLayout();
   148             this.tabPageHarmony.SuspendLayout();
   149             this.tabPageEvent.SuspendLayout();
   150             this.tabPageApp.SuspendLayout();
   151             this.tabPageLogs.SuspendLayout();
   152             this.SuspendLayout();
   153             // 
   154             // panelDisplay
   155             // 
   156             this.panelDisplay.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
   157             this.panelDisplay.Controls.Add(this.iTableLayoutPanel);
   158             this.panelDisplay.Location = new System.Drawing.Point(173, 40);
   159             this.panelDisplay.Margin = new System.Windows.Forms.Padding(0);
   160             this.panelDisplay.Name = "panelDisplay";
   161             this.panelDisplay.Size = new System.Drawing.Size(258, 66);
   162             this.panelDisplay.TabIndex = 12;
   163             // 
   164             // iTableLayoutPanel
   165             // 
   166             this.iTableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   167             | System.Windows.Forms.AnchorStyles.Left) 
   168             | System.Windows.Forms.AnchorStyles.Right)));
   169             this.iTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
   170             this.iTableLayoutPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
   171             this.iTableLayoutPanel.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
   172             this.iTableLayoutPanel.ColumnCount = 1;
   173             this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
   174             this.iTableLayoutPanel.Controls.Add(this.marqueeLabelTop, 0, 0);
   175             this.iTableLayoutPanel.Controls.Add(this.marqueeLabelBottom, 0, 1);
   176             this.iTableLayoutPanel.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
   177             this.iTableLayoutPanel.Location = new System.Drawing.Point(0, 0);
   178             this.iTableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
   179             this.iTableLayoutPanel.Name = "iTableLayoutPanel";
   180             this.iTableLayoutPanel.RowCount = 2;
   181             this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
   182             this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
   183             this.iTableLayoutPanel.Size = new System.Drawing.Size(256, 64);
   184             this.iTableLayoutPanel.TabIndex = 5;
   185             this.iTableLayoutPanel.SizeChanged += new System.EventHandler(this.tableLayoutPanel_SizeChanged);
   186             // 
   187             // marqueeLabelTop
   188             // 
   189             this.marqueeLabelTop.AutoEllipsis = true;
   190             this.marqueeLabelTop.AutoSize = true;
   191             this.marqueeLabelTop.BackColor = System.Drawing.Color.Transparent;
   192             this.marqueeLabelTop.Dock = System.Windows.Forms.DockStyle.Fill;
   193             this.marqueeLabelTop.Location = new System.Drawing.Point(1, 1);
   194             this.marqueeLabelTop.Margin = new System.Windows.Forms.Padding(0);
   195             this.marqueeLabelTop.MinFontSize = 15F;
   196             this.marqueeLabelTop.Name = "marqueeLabelTop";
   197             this.marqueeLabelTop.OwnTimer = false;
   198             this.marqueeLabelTop.PixelsPerSecond = 64;
   199             this.marqueeLabelTop.ScaleToFit = true;
   200             this.marqueeLabelTop.Separator = "|";
   201             this.marqueeLabelTop.Size = new System.Drawing.Size(254, 30);
   202             this.marqueeLabelTop.TabIndex = 2;
   203             this.marqueeLabelTop.Text = "ABCDEFGHIJKLMNOPQRST-0123456789";
   204             this.marqueeLabelTop.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   205             this.marqueeLabelTop.UseCompatibleTextRendering = true;
   206             // 
   207             // marqueeLabelBottom
   208             // 
   209             this.marqueeLabelBottom.AutoEllipsis = true;
   210             this.marqueeLabelBottom.AutoSize = true;
   211             this.marqueeLabelBottom.Dock = System.Windows.Forms.DockStyle.Fill;
   212             this.marqueeLabelBottom.Location = new System.Drawing.Point(1, 32);
   213             this.marqueeLabelBottom.Margin = new System.Windows.Forms.Padding(0);
   214             this.marqueeLabelBottom.MinFontSize = 15F;
   215             this.marqueeLabelBottom.Name = "marqueeLabelBottom";
   216             this.marqueeLabelBottom.OwnTimer = false;
   217             this.marqueeLabelBottom.PixelsPerSecond = 64;
   218             this.marqueeLabelBottom.ScaleToFit = true;
   219             this.marqueeLabelBottom.Separator = "|";
   220             this.marqueeLabelBottom.Size = new System.Drawing.Size(254, 31);
   221             this.marqueeLabelBottom.TabIndex = 3;
   222             this.marqueeLabelBottom.Text = "abcdefghijklmnopqrst-0123456789";
   223             this.marqueeLabelBottom.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   224             this.marqueeLabelBottom.UseCompatibleTextRendering = true;
   225             // 
   226             // iTimerDisplay
   227             // 
   228             this.iTimerDisplay.Interval = 50;
   229             this.iTimerDisplay.Tick += new System.EventHandler(this.timer_Tick);
   230             // 
   231             // statusStrip
   232             // 
   233             this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
   234             this.toolStripStatusLabelConnect,
   235             this.toolStripStatusLabelSpring,
   236             this.toolStripStatusLabelPower,
   237             this.toolStripStatusLabelFps});
   238             this.statusStrip.Location = new System.Drawing.Point(0, 540);
   239             this.statusStrip.Name = "statusStrip";
   240             this.statusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
   241             this.statusStrip.Size = new System.Drawing.Size(784, 22);
   242             this.statusStrip.TabIndex = 1;
   243             this.statusStrip.Text = "statusStrip";
   244             // 
   245             // toolStripStatusLabelConnect
   246             // 
   247             this.toolStripStatusLabelConnect.Name = "toolStripStatusLabelConnect";
   248             this.toolStripStatusLabelConnect.Size = new System.Drawing.Size(86, 17);
   249             this.toolStripStatusLabelConnect.Text = "Not connected";
   250             // 
   251             // toolStripStatusLabelSpring
   252             // 
   253             this.toolStripStatusLabelSpring.Name = "toolStripStatusLabelSpring";
   254             this.toolStripStatusLabelSpring.Size = new System.Drawing.Size(633, 17);
   255             this.toolStripStatusLabelSpring.Spring = true;
   256             // 
   257             // toolStripStatusLabelPower
   258             // 
   259             this.toolStripStatusLabelPower.Name = "toolStripStatusLabelPower";
   260             this.toolStripStatusLabelPower.Size = new System.Drawing.Size(24, 17);
   261             this.toolStripStatusLabelPower.Text = "NA";
   262             // 
   263             // toolStripStatusLabelFps
   264             // 
   265             this.toolStripStatusLabelFps.Name = "toolStripStatusLabelFps";
   266             this.toolStripStatusLabelFps.Size = new System.Drawing.Size(26, 17);
   267             this.toolStripStatusLabelFps.Text = "FPS";
   268             // 
   269             // tabPageClients
   270             // 
   271             this.tabPageClients.Controls.Add(this.iCheckBoxStartIdleClient);
   272             this.tabPageClients.Controls.Add(this.iButtonStartIdleClient);
   273             this.tabPageClients.Controls.Add(this.buttonCloseClients);
   274             this.tabPageClients.Controls.Add(this.buttonStartClient);
   275             this.tabPageClients.Controls.Add(this.iTreeViewClients);
   276             this.tabPageClients.Location = new System.Drawing.Point(4, 22);
   277             this.tabPageClients.Name = "tabPageClients";
   278             this.tabPageClients.Padding = new System.Windows.Forms.Padding(3);
   279             this.tabPageClients.Size = new System.Drawing.Size(752, 385);
   280             this.tabPageClients.TabIndex = 2;
   281             this.tabPageClients.Text = "Clients";
   282             this.tabPageClients.UseVisualStyleBackColor = true;
   283             // 
   284             // iCheckBoxStartIdleClient
   285             // 
   286             this.iCheckBoxStartIdleClient.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   287             this.iCheckBoxStartIdleClient.AutoSize = true;
   288             this.iCheckBoxStartIdleClient.Checked = global::SharpDisplayManager.Properties.Settings.Default.StartIdleClient;
   289             this.iCheckBoxStartIdleClient.CheckState = System.Windows.Forms.CheckState.Checked;
   290             this.iCheckBoxStartIdleClient.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::SharpDisplayManager.Properties.Settings.Default, "StartIdleClient", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
   291             this.iCheckBoxStartIdleClient.Location = new System.Drawing.Point(108, 340);
   292             this.iCheckBoxStartIdleClient.Name = "iCheckBoxStartIdleClient";
   293             this.iCheckBoxStartIdleClient.Size = new System.Drawing.Size(145, 17);
   294             this.iCheckBoxStartIdleClient.TabIndex = 22;
   295             this.iCheckBoxStartIdleClient.Text = "Start idle client on startup";
   296             this.iCheckBoxStartIdleClient.UseVisualStyleBackColor = true;
   297             // 
   298             // iButtonStartIdleClient
   299             // 
   300             this.iButtonStartIdleClient.Location = new System.Drawing.Point(6, 35);
   301             this.iButtonStartIdleClient.Name = "iButtonStartIdleClient";
   302             this.iButtonStartIdleClient.Size = new System.Drawing.Size(96, 23);
   303             this.iButtonStartIdleClient.TabIndex = 21;
   304             this.iButtonStartIdleClient.Text = "Start Idle Client";
   305             this.iButtonStartIdleClient.UseVisualStyleBackColor = true;
   306             this.iButtonStartIdleClient.Click += new System.EventHandler(this.ButtonStartIdleClient_Click);
   307             // 
   308             // buttonCloseClients
   309             // 
   310             this.buttonCloseClients.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   311             this.buttonCloseClients.Location = new System.Drawing.Point(6, 336);
   312             this.buttonCloseClients.Name = "buttonCloseClients";
   313             this.buttonCloseClients.Size = new System.Drawing.Size(96, 23);
   314             this.buttonCloseClients.TabIndex = 20;
   315             this.buttonCloseClients.Text = "Close Clients";
   316             this.buttonCloseClients.UseVisualStyleBackColor = true;
   317             this.buttonCloseClients.Click += new System.EventHandler(this.buttonCloseClients_Click);
   318             // 
   319             // buttonStartClient
   320             // 
   321             this.buttonStartClient.Location = new System.Drawing.Point(6, 6);
   322             this.buttonStartClient.Name = "buttonStartClient";
   323             this.buttonStartClient.Size = new System.Drawing.Size(96, 23);
   324             this.buttonStartClient.TabIndex = 19;
   325             this.buttonStartClient.Text = "Start Test Client";
   326             this.buttonStartClient.UseVisualStyleBackColor = true;
   327             this.buttonStartClient.Click += new System.EventHandler(this.buttonStartClient_Click);
   328             // 
   329             // iTreeViewClients
   330             // 
   331             this.iTreeViewClients.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   332             | System.Windows.Forms.AnchorStyles.Left) 
   333             | System.Windows.Forms.AnchorStyles.Right)));
   334             this.iTreeViewClients.Location = new System.Drawing.Point(108, 6);
   335             this.iTreeViewClients.Name = "iTreeViewClients";
   336             this.iTreeViewClients.Size = new System.Drawing.Size(638, 328);
   337             this.iTreeViewClients.TabIndex = 0;
   338             this.iTreeViewClients.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewClients_AfterSelect);
   339             // 
   340             // tabPageDisplay
   341             // 
   342             this.tabPageDisplay.Controls.Add(this.buttonShowClock);
   343             this.tabPageDisplay.Controls.Add(this.buttonHideClock);
   344             this.tabPageDisplay.Controls.Add(this.buttonPowerOff);
   345             this.tabPageDisplay.Controls.Add(this.buttonPowerOn);
   346             this.tabPageDisplay.Controls.Add(this.labelTimerInterval);
   347             this.tabPageDisplay.Controls.Add(this.maskedTextBoxTimerInterval);
   348             this.tabPageDisplay.Controls.Add(this.comboBoxDisplayType);
   349             this.tabPageDisplay.Controls.Add(this.buttonSuspend);
   350             this.tabPageDisplay.Controls.Add(this.checkBoxConnectOnStartup);
   351             this.tabPageDisplay.Controls.Add(this.trackBarBrightness);
   352             this.tabPageDisplay.Controls.Add(this.buttonFill);
   353             this.tabPageDisplay.Controls.Add(this.buttonClear);
   354             this.tabPageDisplay.Controls.Add(this.buttonClose);
   355             this.tabPageDisplay.Controls.Add(this.buttonOpen);
   356             this.tabPageDisplay.Controls.Add(this.buttonCapture);
   357             this.tabPageDisplay.Location = new System.Drawing.Point(4, 22);
   358             this.tabPageDisplay.Name = "tabPageDisplay";
   359             this.tabPageDisplay.Padding = new System.Windows.Forms.Padding(3);
   360             this.tabPageDisplay.Size = new System.Drawing.Size(752, 385);
   361             this.tabPageDisplay.TabIndex = 0;
   362             this.tabPageDisplay.Text = "Display";
   363             this.tabPageDisplay.UseVisualStyleBackColor = true;
   364             // 
   365             // buttonShowClock
   366             // 
   367             this.buttonShowClock.Location = new System.Drawing.Point(6, 122);
   368             this.buttonShowClock.Name = "buttonShowClock";
   369             this.buttonShowClock.Size = new System.Drawing.Size(75, 23);
   370             this.buttonShowClock.TabIndex = 23;
   371             this.buttonShowClock.Text = "Show Clock";
   372             this.buttonShowClock.UseVisualStyleBackColor = true;
   373             this.buttonShowClock.Click += new System.EventHandler(this.buttonShowClock_Click);
   374             // 
   375             // buttonHideClock
   376             // 
   377             this.buttonHideClock.Location = new System.Drawing.Point(6, 151);
   378             this.buttonHideClock.Name = "buttonHideClock";
   379             this.buttonHideClock.Size = new System.Drawing.Size(75, 23);
   380             this.buttonHideClock.TabIndex = 22;
   381             this.buttonHideClock.Text = "Hide Clock";
   382             this.buttonHideClock.UseVisualStyleBackColor = true;
   383             this.buttonHideClock.Click += new System.EventHandler(this.buttonHideClock_Click);
   384             // 
   385             // buttonPowerOff
   386             // 
   387             this.buttonPowerOff.Location = new System.Drawing.Point(6, 209);
   388             this.buttonPowerOff.Name = "buttonPowerOff";
   389             this.buttonPowerOff.Size = new System.Drawing.Size(75, 23);
   390             this.buttonPowerOff.TabIndex = 21;
   391             this.buttonPowerOff.Text = "OFF";
   392             this.buttonPowerOff.UseVisualStyleBackColor = true;
   393             this.buttonPowerOff.Click += new System.EventHandler(this.buttonPowerOff_Click);
   394             // 
   395             // buttonPowerOn
   396             // 
   397             this.buttonPowerOn.Location = new System.Drawing.Point(6, 180);
   398             this.buttonPowerOn.Name = "buttonPowerOn";
   399             this.buttonPowerOn.Size = new System.Drawing.Size(75, 23);
   400             this.buttonPowerOn.TabIndex = 20;
   401             this.buttonPowerOn.Text = "ON";
   402             this.buttonPowerOn.UseVisualStyleBackColor = true;
   403             this.buttonPowerOn.Click += new System.EventHandler(this.buttonPowerOn_Click);
   404             // 
   405             // labelTimerInterval
   406             // 
   407             this.labelTimerInterval.AutoSize = true;
   408             this.labelTimerInterval.Location = new System.Drawing.Point(184, 45);
   409             this.labelTimerInterval.Name = "labelTimerInterval";
   410             this.labelTimerInterval.Size = new System.Drawing.Size(98, 13);
   411             this.labelTimerInterval.TabIndex = 19;
   412             this.labelTimerInterval.Text = "Timer interval (ms) :";
   413             // 
   414             // maskedTextBoxTimerInterval
   415             // 
   416             this.maskedTextBoxTimerInterval.Location = new System.Drawing.Point(288, 42);
   417             this.maskedTextBoxTimerInterval.Mask = "000";
   418             this.maskedTextBoxTimerInterval.Name = "maskedTextBoxTimerInterval";
   419             this.maskedTextBoxTimerInterval.PromptChar = ' ';
   420             this.maskedTextBoxTimerInterval.Size = new System.Drawing.Size(24, 20);
   421             this.maskedTextBoxTimerInterval.TabIndex = 18;
   422             this.maskedTextBoxTimerInterval.TextChanged += new System.EventHandler(this.maskedTextBoxTimerInterval_TextChanged);
   423             // 
   424             // comboBoxDisplayType
   425             // 
   426             this.comboBoxDisplayType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
   427             this.comboBoxDisplayType.FormattingEnabled = true;
   428             this.comboBoxDisplayType.Location = new System.Drawing.Point(187, 9);
   429             this.comboBoxDisplayType.Name = "comboBoxDisplayType";
   430             this.comboBoxDisplayType.Size = new System.Drawing.Size(181, 21);
   431             this.comboBoxDisplayType.TabIndex = 17;
   432             this.comboBoxDisplayType.SelectedIndexChanged += new System.EventHandler(this.comboBoxDisplayType_SelectedIndexChanged);
   433             // 
   434             // buttonSuspend
   435             // 
   436             this.buttonSuspend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   437             this.buttonSuspend.Location = new System.Drawing.Point(6, 317);
   438             this.buttonSuspend.Name = "buttonSuspend";
   439             this.buttonSuspend.Size = new System.Drawing.Size(75, 23);
   440             this.buttonSuspend.TabIndex = 16;
   441             this.buttonSuspend.Text = "Pause";
   442             this.buttonSuspend.UseVisualStyleBackColor = true;
   443             this.buttonSuspend.Click += new System.EventHandler(this.buttonSuspend_Click);
   444             // 
   445             // checkBoxConnectOnStartup
   446             // 
   447             this.checkBoxConnectOnStartup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   448             this.checkBoxConnectOnStartup.AutoSize = true;
   449             this.checkBoxConnectOnStartup.Checked = global::SharpDisplayManager.Properties.Settings.Default.DisplayConnectOnStartup;
   450             this.checkBoxConnectOnStartup.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::SharpDisplayManager.Properties.Settings.Default, "DisplayConnectOnStartup", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
   451             this.checkBoxConnectOnStartup.Location = new System.Drawing.Point(113, 350);
   452             this.checkBoxConnectOnStartup.Name = "checkBoxConnectOnStartup";
   453             this.checkBoxConnectOnStartup.Size = new System.Drawing.Size(119, 17);
   454             this.checkBoxConnectOnStartup.TabIndex = 13;
   455             this.checkBoxConnectOnStartup.Text = "Connect on stratup ";
   456             this.checkBoxConnectOnStartup.UseVisualStyleBackColor = true;
   457             // 
   458             // trackBarBrightness
   459             // 
   460             this.trackBarBrightness.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   461             | System.Windows.Forms.AnchorStyles.Right)));
   462             this.trackBarBrightness.BackColor = System.Drawing.SystemColors.Window;
   463             this.trackBarBrightness.Location = new System.Drawing.Point(704, 9);
   464             this.trackBarBrightness.Name = "trackBarBrightness";
   465             this.trackBarBrightness.Orientation = System.Windows.Forms.Orientation.Vertical;
   466             this.trackBarBrightness.Size = new System.Drawing.Size(45, 358);
   467             this.trackBarBrightness.TabIndex = 10;
   468             this.trackBarBrightness.TickStyle = System.Windows.Forms.TickStyle.Both;
   469             this.toolTip.SetToolTip(this.trackBarBrightness, "Brightness adjustment");
   470             this.trackBarBrightness.Scroll += new System.EventHandler(this.trackBarBrightness_Scroll);
   471             // 
   472             // buttonFill
   473             // 
   474             this.buttonFill.Location = new System.Drawing.Point(6, 93);
   475             this.buttonFill.Name = "buttonFill";
   476             this.buttonFill.Size = new System.Drawing.Size(75, 23);
   477             this.buttonFill.TabIndex = 9;
   478             this.buttonFill.Text = "Fill";
   479             this.buttonFill.UseVisualStyleBackColor = true;
   480             this.buttonFill.Click += new System.EventHandler(this.buttonFill_Click);
   481             // 
   482             // buttonClear
   483             // 
   484             this.buttonClear.Location = new System.Drawing.Point(6, 64);
   485             this.buttonClear.Name = "buttonClear";
   486             this.buttonClear.Size = new System.Drawing.Size(75, 23);
   487             this.buttonClear.TabIndex = 8;
   488             this.buttonClear.Text = "Clear";
   489             this.buttonClear.UseVisualStyleBackColor = true;
   490             this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
   491             // 
   492             // buttonClose
   493             // 
   494             this.buttonClose.Location = new System.Drawing.Point(6, 35);
   495             this.buttonClose.Name = "buttonClose";
   496             this.buttonClose.Size = new System.Drawing.Size(75, 23);
   497             this.buttonClose.TabIndex = 7;
   498             this.buttonClose.Text = "Close";
   499             this.buttonClose.UseVisualStyleBackColor = true;
   500             this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
   501             // 
   502             // buttonOpen
   503             // 
   504             this.buttonOpen.Location = new System.Drawing.Point(6, 6);
   505             this.buttonOpen.Name = "buttonOpen";
   506             this.buttonOpen.Size = new System.Drawing.Size(75, 23);
   507             this.buttonOpen.TabIndex = 6;
   508             this.buttonOpen.Text = "Open";
   509             this.buttonOpen.UseVisualStyleBackColor = true;
   510             this.buttonOpen.Click += new System.EventHandler(this.buttonOpen_Click);
   511             // 
   512             // buttonCapture
   513             // 
   514             this.buttonCapture.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   515             this.buttonCapture.Location = new System.Drawing.Point(6, 346);
   516             this.buttonCapture.Name = "buttonCapture";
   517             this.buttonCapture.Size = new System.Drawing.Size(75, 23);
   518             this.buttonCapture.TabIndex = 5;
   519             this.buttonCapture.Text = "Capture";
   520             this.buttonCapture.UseVisualStyleBackColor = true;
   521             this.buttonCapture.Click += new System.EventHandler(this.buttonCapture_Click);
   522             // 
   523             // labelWarning
   524             // 
   525             this.labelWarning.AutoSize = true;
   526             this.labelWarning.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
   527             this.labelWarning.ForeColor = System.Drawing.Color.Red;
   528             this.labelWarning.Location = new System.Drawing.Point(9, 9);
   529             this.labelWarning.Name = "labelWarning";
   530             this.labelWarning.Size = new System.Drawing.Size(80, 16);
   531             this.labelWarning.TabIndex = 18;
   532             this.labelWarning.Text = "WARNING";
   533             this.labelWarning.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   534             this.labelWarning.Visible = false;
   535             // 
   536             // checkBoxFixedPitchFontOnly
   537             // 
   538             this.checkBoxFixedPitchFontOnly.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   539             this.checkBoxFixedPitchFontOnly.AutoSize = true;
   540             this.checkBoxFixedPitchFontOnly.Location = new System.Drawing.Point(87, 362);
   541             this.checkBoxFixedPitchFontOnly.Name = "checkBoxFixedPitchFontOnly";
   542             this.checkBoxFixedPitchFontOnly.Size = new System.Drawing.Size(120, 17);
   543             this.checkBoxFixedPitchFontOnly.TabIndex = 17;
   544             this.checkBoxFixedPitchFontOnly.Text = "Fixed pitch font only";
   545             this.checkBoxFixedPitchFontOnly.UseVisualStyleBackColor = true;
   546             // 
   547             // checkBoxShowBorders
   548             // 
   549             this.checkBoxShowBorders.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   550             this.checkBoxShowBorders.AutoSize = true;
   551             this.checkBoxShowBorders.Location = new System.Drawing.Point(645, 29);
   552             this.checkBoxShowBorders.Name = "checkBoxShowBorders";
   553             this.checkBoxShowBorders.Size = new System.Drawing.Size(91, 17);
   554             this.checkBoxShowBorders.TabIndex = 11;
   555             this.checkBoxShowBorders.Text = "Show borders";
   556             this.checkBoxShowBorders.UseVisualStyleBackColor = true;
   557             this.checkBoxShowBorders.CheckedChanged += new System.EventHandler(this.checkBoxShowBorders_CheckedChanged);
   558             // 
   559             // buttonFont
   560             // 
   561             this.buttonFont.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   562             this.buttonFont.Location = new System.Drawing.Point(6, 356);
   563             this.buttonFont.Name = "buttonFont";
   564             this.buttonFont.Size = new System.Drawing.Size(75, 23);
   565             this.buttonFont.TabIndex = 0;
   566             this.buttonFont.Text = "Select Font";
   567             this.buttonFont.UseVisualStyleBackColor = true;
   568             this.buttonFont.Click += new System.EventHandler(this.buttonFont_Click);
   569             // 
   570             // tabControl
   571             // 
   572             this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   573             | System.Windows.Forms.AnchorStyles.Left) 
   574             | System.Windows.Forms.AnchorStyles.Right)));
   575             this.tabControl.Controls.Add(this.tabPageDisplay);
   576             this.tabControl.Controls.Add(this.tabPageClients);
   577             this.tabControl.Controls.Add(this.tabPageDesign);
   578             this.tabControl.Controls.Add(this.tabPageAudio);
   579             this.tabControl.Controls.Add(this.tabPageCec);
   580             this.tabControl.Controls.Add(this.tabPageHarmony);
   581             this.tabControl.Controls.Add(this.tabPageEvent);
   582             this.tabControl.Controls.Add(this.tabPageApp);
   583             this.tabControl.Controls.Add(this.tabPageLogs);
   584             this.tabControl.Location = new System.Drawing.Point(12, 125);
   585             this.tabControl.Name = "tabControl";
   586             this.tabControl.SelectedIndex = 0;
   587             this.tabControl.Size = new System.Drawing.Size(760, 411);
   588             this.tabControl.TabIndex = 0;
   589             // 
   590             // tabPageDesign
   591             // 
   592             this.tabPageDesign.Controls.Add(this.labelScrollingSpeed);
   593             this.tabPageDesign.Controls.Add(this.maskedTextBoxScrollingSpeed);
   594             this.tabPageDesign.Controls.Add(this.labelScrollLoopSeparator);
   595             this.tabPageDesign.Controls.Add(this.textBoxScrollLoopSeparator);
   596             this.tabPageDesign.Controls.Add(this.labelMinFontSize);
   597             this.tabPageDesign.Controls.Add(this.maskedTextBoxMinFontSize);
   598             this.tabPageDesign.Controls.Add(this.checkBoxScaleToFit);
   599             this.tabPageDesign.Controls.Add(this.checkBoxInverseColors);
   600             this.tabPageDesign.Controls.Add(this.checkBoxFixedPitchFontOnly);
   601             this.tabPageDesign.Controls.Add(this.buttonFont);
   602             this.tabPageDesign.Controls.Add(this.checkBoxReverseScreen);
   603             this.tabPageDesign.Controls.Add(this.checkBoxShowBorders);
   604             this.tabPageDesign.Location = new System.Drawing.Point(4, 22);
   605             this.tabPageDesign.Name = "tabPageDesign";
   606             this.tabPageDesign.Padding = new System.Windows.Forms.Padding(3);
   607             this.tabPageDesign.Size = new System.Drawing.Size(752, 385);
   608             this.tabPageDesign.TabIndex = 3;
   609             this.tabPageDesign.Text = "Design";
   610             this.tabPageDesign.UseVisualStyleBackColor = true;
   611             // 
   612             // labelScrollingSpeed
   613             // 
   614             this.labelScrollingSpeed.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   615             this.labelScrollingSpeed.AutoSize = true;
   616             this.labelScrollingSpeed.Location = new System.Drawing.Point(92, 248);
   617             this.labelScrollingSpeed.Name = "labelScrollingSpeed";
   618             this.labelScrollingSpeed.Size = new System.Drawing.Size(115, 13);
   619             this.labelScrollingSpeed.TabIndex = 28;
   620             this.labelScrollingSpeed.Text = "Scrolling speed (px/s) :";
   621             // 
   622             // maskedTextBoxScrollingSpeed
   623             // 
   624             this.maskedTextBoxScrollingSpeed.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   625             this.maskedTextBoxScrollingSpeed.Location = new System.Drawing.Point(213, 245);
   626             this.maskedTextBoxScrollingSpeed.Mask = "000";
   627             this.maskedTextBoxScrollingSpeed.Name = "maskedTextBoxScrollingSpeed";
   628             this.maskedTextBoxScrollingSpeed.PromptChar = ' ';
   629             this.maskedTextBoxScrollingSpeed.Size = new System.Drawing.Size(24, 20);
   630             this.maskedTextBoxScrollingSpeed.TabIndex = 27;
   631             this.maskedTextBoxScrollingSpeed.TextChanged += new System.EventHandler(this.maskedTextBoxScrollingSpeed_TextChanged);
   632             // 
   633             // labelScrollLoopSeparator
   634             // 
   635             this.labelScrollLoopSeparator.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   636             this.labelScrollLoopSeparator.AutoSize = true;
   637             this.labelScrollLoopSeparator.Location = new System.Drawing.Point(98, 274);
   638             this.labelScrollLoopSeparator.Name = "labelScrollLoopSeparator";
   639             this.labelScrollLoopSeparator.Size = new System.Drawing.Size(109, 13);
   640             this.labelScrollLoopSeparator.TabIndex = 26;
   641             this.labelScrollLoopSeparator.Text = "Scroll loop separator :";
   642             // 
   643             // textBoxScrollLoopSeparator
   644             // 
   645             this.textBoxScrollLoopSeparator.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   646             this.textBoxScrollLoopSeparator.Location = new System.Drawing.Point(213, 271);
   647             this.textBoxScrollLoopSeparator.Name = "textBoxScrollLoopSeparator";
   648             this.textBoxScrollLoopSeparator.Size = new System.Drawing.Size(74, 20);
   649             this.textBoxScrollLoopSeparator.TabIndex = 25;
   650             this.textBoxScrollLoopSeparator.TextChanged += new System.EventHandler(this.textBoxScrollLoopSeparator_TextChanged);
   651             // 
   652             // labelMinFontSize
   653             // 
   654             this.labelMinFontSize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   655             this.labelMinFontSize.AutoSize = true;
   656             this.labelMinFontSize.Location = new System.Drawing.Point(88, 323);
   657             this.labelMinFontSize.Name = "labelMinFontSize";
   658             this.labelMinFontSize.Size = new System.Drawing.Size(119, 13);
   659             this.labelMinFontSize.TabIndex = 24;
   660             this.labelMinFontSize.Text = "Minimum font size (pts) :";
   661             // 
   662             // maskedTextBoxMinFontSize
   663             // 
   664             this.maskedTextBoxMinFontSize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   665             this.maskedTextBoxMinFontSize.Location = new System.Drawing.Point(213, 320);
   666             this.maskedTextBoxMinFontSize.Mask = "000";
   667             this.maskedTextBoxMinFontSize.Name = "maskedTextBoxMinFontSize";
   668             this.maskedTextBoxMinFontSize.PromptChar = ' ';
   669             this.maskedTextBoxMinFontSize.Size = new System.Drawing.Size(24, 20);
   670             this.maskedTextBoxMinFontSize.TabIndex = 23;
   671             this.maskedTextBoxMinFontSize.TextChanged += new System.EventHandler(this.maskedTextBoxMinFontSize_TextChanged);
   672             // 
   673             // checkBoxScaleToFit
   674             // 
   675             this.checkBoxScaleToFit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   676             this.checkBoxScaleToFit.AutoSize = true;
   677             this.checkBoxScaleToFit.Location = new System.Drawing.Point(86, 297);
   678             this.checkBoxScaleToFit.Name = "checkBoxScaleToFit";
   679             this.checkBoxScaleToFit.Size = new System.Drawing.Size(201, 17);
   680             this.checkBoxScaleToFit.TabIndex = 22;
   681             this.checkBoxScaleToFit.Text = "Try scale font down to avoid scrolling";
   682             this.checkBoxScaleToFit.UseVisualStyleBackColor = true;
   683             this.checkBoxScaleToFit.CheckedChanged += new System.EventHandler(this.checkBoxScaleToFit_CheckedChanged);
   684             // 
   685             // checkBoxInverseColors
   686             // 
   687             this.checkBoxInverseColors.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   688             this.checkBoxInverseColors.AutoSize = true;
   689             this.checkBoxInverseColors.Location = new System.Drawing.Point(645, 52);
   690             this.checkBoxInverseColors.Name = "checkBoxInverseColors";
   691             this.checkBoxInverseColors.Size = new System.Drawing.Size(92, 17);
   692             this.checkBoxInverseColors.TabIndex = 21;
   693             this.checkBoxInverseColors.Text = "Inverse colors";
   694             this.checkBoxInverseColors.UseVisualStyleBackColor = true;
   695             this.checkBoxInverseColors.CheckedChanged += new System.EventHandler(this.checkBoxInverseColors_CheckedChanged);
   696             // 
   697             // checkBoxReverseScreen
   698             // 
   699             this.checkBoxReverseScreen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   700             this.checkBoxReverseScreen.AutoSize = true;
   701             this.checkBoxReverseScreen.Location = new System.Drawing.Point(645, 6);
   702             this.checkBoxReverseScreen.Name = "checkBoxReverseScreen";
   703             this.checkBoxReverseScreen.Size = new System.Drawing.Size(101, 17);
   704             this.checkBoxReverseScreen.TabIndex = 14;
   705             this.checkBoxReverseScreen.Text = "Reverse screen";
   706             this.checkBoxReverseScreen.UseVisualStyleBackColor = true;
   707             this.checkBoxReverseScreen.CheckedChanged += new System.EventHandler(this.checkBoxReverseScreen_CheckedChanged);
   708             // 
   709             // tabPageAudio
   710             // 
   711             this.tabPageAudio.Controls.Add(this.iLabelDefaultAudioDevice);
   712             this.tabPageAudio.Controls.Add(this.checkBoxShowVolumeLabel);
   713             this.tabPageAudio.Controls.Add(this.checkBoxMute);
   714             this.tabPageAudio.Controls.Add(this.trackBarMasterVolume);
   715             this.tabPageAudio.Location = new System.Drawing.Point(4, 22);
   716             this.tabPageAudio.Name = "tabPageAudio";
   717             this.tabPageAudio.Padding = new System.Windows.Forms.Padding(3);
   718             this.tabPageAudio.Size = new System.Drawing.Size(752, 385);
   719             this.tabPageAudio.TabIndex = 5;
   720             this.tabPageAudio.Text = "Audio";
   721             this.tabPageAudio.UseVisualStyleBackColor = true;
   722             // 
   723             // iLabelDefaultAudioDevice
   724             // 
   725             this.iLabelDefaultAudioDevice.AutoSize = true;
   726             this.iLabelDefaultAudioDevice.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
   727             this.iLabelDefaultAudioDevice.Location = new System.Drawing.Point(3, 6);
   728             this.iLabelDefaultAudioDevice.Name = "iLabelDefaultAudioDevice";
   729             this.iLabelDefaultAudioDevice.Size = new System.Drawing.Size(120, 13);
   730             this.iLabelDefaultAudioDevice.TabIndex = 19;
   731             this.iLabelDefaultAudioDevice.Text = "Audio Device Unknown";
   732             // 
   733             // checkBoxShowVolumeLabel
   734             // 
   735             this.checkBoxShowVolumeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   736             this.checkBoxShowVolumeLabel.AutoSize = true;
   737             this.checkBoxShowVolumeLabel.Location = new System.Drawing.Point(3, 329);
   738             this.checkBoxShowVolumeLabel.Name = "checkBoxShowVolumeLabel";
   739             this.checkBoxShowVolumeLabel.Size = new System.Drawing.Size(115, 17);
   740             this.checkBoxShowVolumeLabel.TabIndex = 18;
   741             this.checkBoxShowVolumeLabel.Text = "Show volume label";
   742             this.checkBoxShowVolumeLabel.UseVisualStyleBackColor = true;
   743             this.checkBoxShowVolumeLabel.CheckedChanged += new System.EventHandler(this.checkBoxShowVolumeLabel_CheckedChanged);
   744             // 
   745             // checkBoxMute
   746             // 
   747             this.checkBoxMute.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   748             this.checkBoxMute.AutoSize = true;
   749             this.checkBoxMute.Location = new System.Drawing.Point(3, 352);
   750             this.checkBoxMute.Name = "checkBoxMute";
   751             this.checkBoxMute.Size = new System.Drawing.Size(50, 17);
   752             this.checkBoxMute.TabIndex = 17;
   753             this.checkBoxMute.Text = "Mute";
   754             this.checkBoxMute.UseVisualStyleBackColor = true;
   755             this.checkBoxMute.CheckedChanged += new System.EventHandler(this.checkBoxMute_CheckedChanged);
   756             // 
   757             // trackBarMasterVolume
   758             // 
   759             this.trackBarMasterVolume.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   760             | System.Windows.Forms.AnchorStyles.Right)));
   761             this.trackBarMasterVolume.BackColor = System.Drawing.SystemColors.Window;
   762             this.trackBarMasterVolume.Location = new System.Drawing.Point(701, 6);
   763             this.trackBarMasterVolume.Maximum = 100;
   764             this.trackBarMasterVolume.Name = "trackBarMasterVolume";
   765             this.trackBarMasterVolume.Orientation = System.Windows.Forms.Orientation.Vertical;
   766             this.trackBarMasterVolume.Size = new System.Drawing.Size(45, 373);
   767             this.trackBarMasterVolume.TabIndex = 0;
   768             this.trackBarMasterVolume.TickFrequency = 10;
   769             this.trackBarMasterVolume.TickStyle = System.Windows.Forms.TickStyle.Both;
   770             this.toolTip.SetToolTip(this.trackBarMasterVolume, "Master Volume");
   771             this.trackBarMasterVolume.Scroll += new System.EventHandler(this.trackBarMasterVolume_Scroll);
   772             // 
   773             // tabPageCec
   774             // 
   775             this.tabPageCec.Controls.Add(this.groupBoxCecLogOptions);
   776             this.tabPageCec.Controls.Add(this.labelHdmiPort);
   777             this.tabPageCec.Controls.Add(this.comboBoxHdmiPort);
   778             this.tabPageCec.Controls.Add(this.iCheckBoxCecEnabled);
   779             this.tabPageCec.Location = new System.Drawing.Point(4, 22);
   780             this.tabPageCec.Name = "tabPageCec";
   781             this.tabPageCec.Padding = new System.Windows.Forms.Padding(3);
   782             this.tabPageCec.Size = new System.Drawing.Size(752, 385);
   783             this.tabPageCec.TabIndex = 7;
   784             this.tabPageCec.Text = "CEC";
   785             this.tabPageCec.UseVisualStyleBackColor = true;
   786             // 
   787             // groupBoxCecLogOptions
   788             // 
   789             this.groupBoxCecLogOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   790             this.groupBoxCecLogOptions.Controls.Add(this.checkBoxCecLogNoPoll);
   791             this.groupBoxCecLogOptions.Controls.Add(this.checkBoxCecLogTraffic);
   792             this.groupBoxCecLogOptions.Controls.Add(this.checkBoxCecLogDebug);
   793             this.groupBoxCecLogOptions.Controls.Add(this.checkBoxCecLogNotice);
   794             this.groupBoxCecLogOptions.Controls.Add(this.checkBoxCecLogError);
   795             this.groupBoxCecLogOptions.Controls.Add(this.checkBoxCecLogWarning);
   796             this.groupBoxCecLogOptions.Location = new System.Drawing.Point(6, 239);
   797             this.groupBoxCecLogOptions.Name = "groupBoxCecLogOptions";
   798             this.groupBoxCecLogOptions.Size = new System.Drawing.Size(165, 140);
   799             this.groupBoxCecLogOptions.TabIndex = 25;
   800             this.groupBoxCecLogOptions.TabStop = false;
   801             this.groupBoxCecLogOptions.Text = "Log options";
   802             // 
   803             // checkBoxCecLogNoPoll
   804             // 
   805             this.checkBoxCecLogNoPoll.AutoSize = true;
   806             this.checkBoxCecLogNoPoll.Checked = true;
   807             this.checkBoxCecLogNoPoll.CheckState = System.Windows.Forms.CheckState.Checked;
   808             this.checkBoxCecLogNoPoll.Location = new System.Drawing.Point(76, 24);
   809             this.checkBoxCecLogNoPoll.Name = "checkBoxCecLogNoPoll";
   810             this.checkBoxCecLogNoPoll.Size = new System.Drawing.Size(59, 17);
   811             this.checkBoxCecLogNoPoll.TabIndex = 30;
   812             this.checkBoxCecLogNoPoll.Text = "No poll";
   813             this.checkBoxCecLogNoPoll.UseVisualStyleBackColor = true;
   814             this.checkBoxCecLogNoPoll.CheckedChanged += new System.EventHandler(this.checkBoxCecLogs_CheckedChanged);
   815             // 
   816             // checkBoxCecLogTraffic
   817             // 
   818             this.checkBoxCecLogTraffic.AutoSize = true;
   819             this.checkBoxCecLogTraffic.Location = new System.Drawing.Point(6, 93);
   820             this.checkBoxCecLogTraffic.Name = "checkBoxCecLogTraffic";
   821             this.checkBoxCecLogTraffic.Size = new System.Drawing.Size(56, 17);
   822             this.checkBoxCecLogTraffic.TabIndex = 29;
   823             this.checkBoxCecLogTraffic.Text = "Traffic";
   824             this.checkBoxCecLogTraffic.UseVisualStyleBackColor = true;
   825             this.checkBoxCecLogTraffic.CheckedChanged += new System.EventHandler(this.checkBoxCecLogs_CheckedChanged);
   826             // 
   827             // checkBoxCecLogDebug
   828             // 
   829             this.checkBoxCecLogDebug.AutoSize = true;
   830             this.checkBoxCecLogDebug.Location = new System.Drawing.Point(6, 116);
   831             this.checkBoxCecLogDebug.Name = "checkBoxCecLogDebug";
   832             this.checkBoxCecLogDebug.Size = new System.Drawing.Size(58, 17);
   833             this.checkBoxCecLogDebug.TabIndex = 28;
   834             this.checkBoxCecLogDebug.Text = "Debug";
   835             this.checkBoxCecLogDebug.UseVisualStyleBackColor = true;
   836             this.checkBoxCecLogDebug.CheckedChanged += new System.EventHandler(this.checkBoxCecLogs_CheckedChanged);
   837             // 
   838             // checkBoxCecLogNotice
   839             // 
   840             this.checkBoxCecLogNotice.AutoSize = true;
   841             this.checkBoxCecLogNotice.Checked = true;
   842             this.checkBoxCecLogNotice.CheckState = System.Windows.Forms.CheckState.Checked;
   843             this.checkBoxCecLogNotice.Location = new System.Drawing.Point(6, 70);
   844             this.checkBoxCecLogNotice.Name = "checkBoxCecLogNotice";
   845             this.checkBoxCecLogNotice.Size = new System.Drawing.Size(57, 17);
   846             this.checkBoxCecLogNotice.TabIndex = 27;
   847             this.checkBoxCecLogNotice.Text = "Notice";
   848             this.checkBoxCecLogNotice.UseVisualStyleBackColor = true;
   849             this.checkBoxCecLogNotice.CheckedChanged += new System.EventHandler(this.checkBoxCecLogs_CheckedChanged);
   850             // 
   851             // checkBoxCecLogError
   852             // 
   853             this.checkBoxCecLogError.AutoSize = true;
   854             this.checkBoxCecLogError.Checked = true;
   855             this.checkBoxCecLogError.CheckState = System.Windows.Forms.CheckState.Checked;
   856             this.checkBoxCecLogError.Location = new System.Drawing.Point(6, 24);
   857             this.checkBoxCecLogError.Name = "checkBoxCecLogError";
   858             this.checkBoxCecLogError.Size = new System.Drawing.Size(48, 17);
   859             this.checkBoxCecLogError.TabIndex = 26;
   860             this.checkBoxCecLogError.Text = "Error";
   861             this.checkBoxCecLogError.UseVisualStyleBackColor = true;
   862             this.checkBoxCecLogError.CheckedChanged += new System.EventHandler(this.checkBoxCecLogs_CheckedChanged);
   863             // 
   864             // checkBoxCecLogWarning
   865             // 
   866             this.checkBoxCecLogWarning.AutoSize = true;
   867             this.checkBoxCecLogWarning.Checked = true;
   868             this.checkBoxCecLogWarning.CheckState = System.Windows.Forms.CheckState.Checked;
   869             this.checkBoxCecLogWarning.Location = new System.Drawing.Point(6, 47);
   870             this.checkBoxCecLogWarning.Name = "checkBoxCecLogWarning";
   871             this.checkBoxCecLogWarning.Size = new System.Drawing.Size(66, 17);
   872             this.checkBoxCecLogWarning.TabIndex = 25;
   873             this.checkBoxCecLogWarning.Text = "Warning";
   874             this.checkBoxCecLogWarning.UseVisualStyleBackColor = true;
   875             this.checkBoxCecLogWarning.CheckedChanged += new System.EventHandler(this.checkBoxCecLogs_CheckedChanged);
   876             // 
   877             // labelHdmiPort
   878             // 
   879             this.labelHdmiPort.AutoSize = true;
   880             this.labelHdmiPort.Location = new System.Drawing.Point(3, 26);
   881             this.labelHdmiPort.Name = "labelHdmiPort";
   882             this.labelHdmiPort.Size = new System.Drawing.Size(182, 13);
   883             this.labelHdmiPort.TabIndex = 20;
   884             this.labelHdmiPort.Text = "TV HDMI port connected to your PC:";
   885             // 
   886             // comboBoxHdmiPort
   887             // 
   888             this.comboBoxHdmiPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
   889             this.comboBoxHdmiPort.FormattingEnabled = true;
   890             this.comboBoxHdmiPort.Items.AddRange(new object[] {
   891             "HDMI 1",
   892             "HDMI 2",
   893             "HDMI 3",
   894             "HDMI 4",
   895             "HDMI 5",
   896             "HDMI 6",
   897             "HDMI 7",
   898             "HDMI 8",
   899             "HDMI 9"});
   900             this.comboBoxHdmiPort.Location = new System.Drawing.Point(6, 42);
   901             this.comboBoxHdmiPort.Name = "comboBoxHdmiPort";
   902             this.comboBoxHdmiPort.Size = new System.Drawing.Size(87, 21);
   903             this.comboBoxHdmiPort.TabIndex = 19;
   904             this.comboBoxHdmiPort.SelectedIndexChanged += new System.EventHandler(this.comboBoxHdmiPort_SelectedIndexChanged);
   905             // 
   906             // iCheckBoxCecEnabled
   907             // 
   908             this.iCheckBoxCecEnabled.AutoSize = true;
   909             this.iCheckBoxCecEnabled.Checked = global::SharpDisplayManager.Properties.Settings.Default.CecEnabled;
   910             this.iCheckBoxCecEnabled.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::SharpDisplayManager.Properties.Settings.Default, "CecEnabled", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
   911             this.iCheckBoxCecEnabled.Location = new System.Drawing.Point(6, 6);
   912             this.iCheckBoxCecEnabled.Name = "iCheckBoxCecEnabled";
   913             this.iCheckBoxCecEnabled.Size = new System.Drawing.Size(83, 17);
   914             this.iCheckBoxCecEnabled.TabIndex = 21;
   915             this.iCheckBoxCecEnabled.Text = "Enable CEC";
   916             this.iCheckBoxCecEnabled.UseVisualStyleBackColor = true;
   917             this.iCheckBoxCecEnabled.CheckedChanged += new System.EventHandler(this.iCheckBoxCecEnabled_CheckedChanged);
   918             // 
   919             // tabPageHarmony
   920             // 
   921             this.tabPageHarmony.Controls.Add(this.iButtonHarmonyConnect);
   922             this.tabPageHarmony.Controls.Add(this.iCheckBoxHarmonyEnabled);
   923             this.tabPageHarmony.Controls.Add(this.iTreeViewHarmony);
   924             this.tabPageHarmony.Controls.Add(this.label1);
   925             this.tabPageHarmony.Controls.Add(this.iTextBoxHarmonyHubAddress);
   926             this.tabPageHarmony.Location = new System.Drawing.Point(4, 22);
   927             this.tabPageHarmony.Name = "tabPageHarmony";
   928             this.tabPageHarmony.Padding = new System.Windows.Forms.Padding(3);
   929             this.tabPageHarmony.Size = new System.Drawing.Size(752, 385);
   930             this.tabPageHarmony.TabIndex = 10;
   931             this.tabPageHarmony.Text = "Harmony";
   932             this.tabPageHarmony.UseVisualStyleBackColor = true;
   933             // 
   934             // iButtonHarmonyConnect
   935             // 
   936             this.iButtonHarmonyConnect.Location = new System.Drawing.Point(6, 49);
   937             this.iButtonHarmonyConnect.Name = "iButtonHarmonyConnect";
   938             this.iButtonHarmonyConnect.Size = new System.Drawing.Size(75, 23);
   939             this.iButtonHarmonyConnect.TabIndex = 23;
   940             this.iButtonHarmonyConnect.Text = "Open";
   941             this.iButtonHarmonyConnect.UseVisualStyleBackColor = true;
   942             this.iButtonHarmonyConnect.Click += new System.EventHandler(this.iButtonHarmonyConnect_Click);
   943             // 
   944             // iCheckBoxHarmonyEnabled
   945             // 
   946             this.iCheckBoxHarmonyEnabled.AutoSize = true;
   947             this.iCheckBoxHarmonyEnabled.Checked = global::SharpDisplayManager.Properties.Settings.Default.HarmonyEnabled;
   948             this.iCheckBoxHarmonyEnabled.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::SharpDisplayManager.Properties.Settings.Default, "HarmonyEnabled", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
   949             this.iCheckBoxHarmonyEnabled.Location = new System.Drawing.Point(6, 6);
   950             this.iCheckBoxHarmonyEnabled.Name = "iCheckBoxHarmonyEnabled";
   951             this.iCheckBoxHarmonyEnabled.Size = new System.Drawing.Size(104, 17);
   952             this.iCheckBoxHarmonyEnabled.TabIndex = 22;
   953             this.iCheckBoxHarmonyEnabled.Text = "Enable Harmony";
   954             this.iCheckBoxHarmonyEnabled.UseVisualStyleBackColor = true;
   955             this.iCheckBoxHarmonyEnabled.CheckedChanged += new System.EventHandler(this.iCheckBoxHarmonyEnabled_CheckedChanged);
   956             // 
   957             // iTreeViewHarmony
   958             // 
   959             this.iTreeViewHarmony.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   960             | System.Windows.Forms.AnchorStyles.Left) 
   961             | System.Windows.Forms.AnchorStyles.Right)));
   962             this.iTreeViewHarmony.Location = new System.Drawing.Point(87, 49);
   963             this.iTreeViewHarmony.Name = "iTreeViewHarmony";
   964             this.iTreeViewHarmony.Size = new System.Drawing.Size(659, 330);
   965             this.iTreeViewHarmony.TabIndex = 15;
   966             this.iTreeViewHarmony.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.iTreeViewHarmony_NodeMouseDoubleClick);
   967             // 
   968             // label1
   969             // 
   970             this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   971             this.label1.AutoSize = true;
   972             this.label1.Location = new System.Drawing.Point(279, 7);
   973             this.label1.Name = "label1";
   974             this.label1.Size = new System.Drawing.Size(116, 13);
   975             this.label1.TabIndex = 9;
   976             this.label1.Text = "Harmony Hub Address:";
   977             // 
   978             // iTextBoxHarmonyHubAddress
   979             // 
   980             this.iTextBoxHarmonyHubAddress.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   981             this.iTextBoxHarmonyHubAddress.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::SharpDisplayManager.Properties.Settings.Default, "HarmonyHubAddress", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
   982             this.iTextBoxHarmonyHubAddress.Location = new System.Drawing.Point(282, 23);
   983             this.iTextBoxHarmonyHubAddress.Name = "iTextBoxHarmonyHubAddress";
   984             this.iTextBoxHarmonyHubAddress.Size = new System.Drawing.Size(100, 20);
   985             this.iTextBoxHarmonyHubAddress.TabIndex = 8;
   986             this.iTextBoxHarmonyHubAddress.Text = global::SharpDisplayManager.Properties.Settings.Default.HarmonyHubAddress;
   987             // 
   988             // tabPageEvent
   989             // 
   990             this.tabPageEvent.Controls.Add(this.buttonEventEdit);
   991             this.tabPageEvent.Controls.Add(this.buttonEventDelete);
   992             this.tabPageEvent.Controls.Add(this.buttonEventAdd);
   993             this.tabPageEvent.Controls.Add(this.buttonEventTest);
   994             this.tabPageEvent.Controls.Add(this.buttonActionEdit);
   995             this.tabPageEvent.Controls.Add(this.buttonActionMoveUp);
   996             this.tabPageEvent.Controls.Add(this.buttonActionMoveDown);
   997             this.tabPageEvent.Controls.Add(this.buttonActionTest);
   998             this.tabPageEvent.Controls.Add(this.buttonActionDelete);
   999             this.tabPageEvent.Controls.Add(this.buttonActionAdd);
  1000             this.tabPageEvent.Controls.Add(this.iTreeViewEvents);
  1001             this.tabPageEvent.Location = new System.Drawing.Point(4, 22);
  1002             this.tabPageEvent.Name = "tabPageEvent";
  1003             this.tabPageEvent.Padding = new System.Windows.Forms.Padding(3);
  1004             this.tabPageEvent.Size = new System.Drawing.Size(752, 385);
  1005             this.tabPageEvent.TabIndex = 9;
  1006             this.tabPageEvent.Text = "Events";
  1007             this.tabPageEvent.UseVisualStyleBackColor = true;
  1008             // 
  1009             // buttonEventEdit
  1010             // 
  1011             this.buttonEventEdit.Enabled = false;
  1012             this.buttonEventEdit.Location = new System.Drawing.Point(6, 187);
  1013             this.buttonEventEdit.Name = "buttonEventEdit";
  1014             this.buttonEventEdit.Size = new System.Drawing.Size(96, 23);
  1015             this.buttonEventEdit.TabIndex = 29;
  1016             this.buttonEventEdit.Text = "Edit Event";
  1017             this.buttonEventEdit.UseVisualStyleBackColor = true;
  1018             this.buttonEventEdit.Click += new System.EventHandler(this.buttonEventEdit_Click);
  1019             // 
  1020             // buttonEventDelete
  1021             // 
  1022             this.buttonEventDelete.Enabled = false;
  1023             this.buttonEventDelete.Location = new System.Drawing.Point(6, 216);
  1024             this.buttonEventDelete.Name = "buttonEventDelete";
  1025             this.buttonEventDelete.Size = new System.Drawing.Size(96, 23);
  1026             this.buttonEventDelete.TabIndex = 28;
  1027             this.buttonEventDelete.Text = "Delete Event";
  1028             this.buttonEventDelete.UseVisualStyleBackColor = true;
  1029             this.buttonEventDelete.Click += new System.EventHandler(this.buttonEventDelete_Click);
  1030             // 
  1031             // buttonEventAdd
  1032             // 
  1033             this.buttonEventAdd.Location = new System.Drawing.Point(6, 158);
  1034             this.buttonEventAdd.Name = "buttonEventAdd";
  1035             this.buttonEventAdd.Size = new System.Drawing.Size(96, 23);
  1036             this.buttonEventAdd.TabIndex = 27;
  1037             this.buttonEventAdd.Text = "Add Event";
  1038             this.buttonEventAdd.UseVisualStyleBackColor = true;
  1039             this.buttonEventAdd.Click += new System.EventHandler(this.buttonEventAdd_Click);
  1040             // 
  1041             // buttonEventTest
  1042             // 
  1043             this.buttonEventTest.Enabled = false;
  1044             this.buttonEventTest.Location = new System.Drawing.Point(6, 245);
  1045             this.buttonEventTest.Name = "buttonEventTest";
  1046             this.buttonEventTest.Size = new System.Drawing.Size(96, 23);
  1047             this.buttonEventTest.TabIndex = 26;
  1048             this.buttonEventTest.Text = "Test Event";
  1049             this.buttonEventTest.UseVisualStyleBackColor = true;
  1050             this.buttonEventTest.Click += new System.EventHandler(this.buttonEventTest_Click);
  1051             // 
  1052             // buttonActionEdit
  1053             // 
  1054             this.buttonActionEdit.Enabled = false;
  1055             this.buttonActionEdit.Location = new System.Drawing.Point(6, 35);
  1056             this.buttonActionEdit.Name = "buttonActionEdit";
  1057             this.buttonActionEdit.Size = new System.Drawing.Size(96, 23);
  1058             this.buttonActionEdit.TabIndex = 25;
  1059             this.buttonActionEdit.Text = "Edit Action";
  1060             this.buttonActionEdit.UseVisualStyleBackColor = true;
  1061             this.buttonActionEdit.Click += new System.EventHandler(this.buttonActionEdit_Click);
  1062             // 
  1063             // buttonActionMoveUp
  1064             // 
  1065             this.buttonActionMoveUp.Enabled = false;
  1066             this.buttonActionMoveUp.Location = new System.Drawing.Point(6, 327);
  1067             this.buttonActionMoveUp.Name = "buttonActionMoveUp";
  1068             this.buttonActionMoveUp.Size = new System.Drawing.Size(96, 23);
  1069             this.buttonActionMoveUp.TabIndex = 24;
  1070             this.buttonActionMoveUp.Text = "Move Up";
  1071             this.buttonActionMoveUp.UseVisualStyleBackColor = true;
  1072             this.buttonActionMoveUp.Click += new System.EventHandler(this.buttonActionMoveUp_Click);
  1073             // 
  1074             // buttonActionMoveDown
  1075             // 
  1076             this.buttonActionMoveDown.Enabled = false;
  1077             this.buttonActionMoveDown.Location = new System.Drawing.Point(6, 356);
  1078             this.buttonActionMoveDown.Name = "buttonActionMoveDown";
  1079             this.buttonActionMoveDown.Size = new System.Drawing.Size(96, 23);
  1080             this.buttonActionMoveDown.TabIndex = 23;
  1081             this.buttonActionMoveDown.Text = "Move Down";
  1082             this.buttonActionMoveDown.UseVisualStyleBackColor = true;
  1083             this.buttonActionMoveDown.Click += new System.EventHandler(this.buttonActionMoveDown_Click);
  1084             // 
  1085             // buttonActionTest
  1086             // 
  1087             this.buttonActionTest.Enabled = false;
  1088             this.buttonActionTest.Location = new System.Drawing.Point(6, 93);
  1089             this.buttonActionTest.Name = "buttonActionTest";
  1090             this.buttonActionTest.Size = new System.Drawing.Size(96, 23);
  1091             this.buttonActionTest.TabIndex = 22;
  1092             this.buttonActionTest.Text = "Test Action";
  1093             this.buttonActionTest.UseVisualStyleBackColor = true;
  1094             this.buttonActionTest.Click += new System.EventHandler(this.buttonActionTest_Click);
  1095             // 
  1096             // buttonActionDelete
  1097             // 
  1098             this.buttonActionDelete.Enabled = false;
  1099             this.buttonActionDelete.Location = new System.Drawing.Point(6, 64);
  1100             this.buttonActionDelete.Name = "buttonActionDelete";
  1101             this.buttonActionDelete.Size = new System.Drawing.Size(96, 23);
  1102             this.buttonActionDelete.TabIndex = 21;
  1103             this.buttonActionDelete.Text = "Delete Action";
  1104             this.buttonActionDelete.UseVisualStyleBackColor = true;
  1105             this.buttonActionDelete.Click += new System.EventHandler(this.buttonActionDelete_Click);
  1106             // 
  1107             // buttonActionAdd
  1108             // 
  1109             this.buttonActionAdd.Enabled = false;
  1110             this.buttonActionAdd.Location = new System.Drawing.Point(6, 6);
  1111             this.buttonActionAdd.Name = "buttonActionAdd";
  1112             this.buttonActionAdd.Size = new System.Drawing.Size(96, 23);
  1113             this.buttonActionAdd.TabIndex = 20;
  1114             this.buttonActionAdd.Text = "Add Action";
  1115             this.buttonActionAdd.UseVisualStyleBackColor = true;
  1116             this.buttonActionAdd.Click += new System.EventHandler(this.buttonActionAdd_Click);
  1117             // 
  1118             // iTreeViewEvents
  1119             // 
  1120             this.iTreeViewEvents.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
  1121             | System.Windows.Forms.AnchorStyles.Left) 
  1122             | System.Windows.Forms.AnchorStyles.Right)));
  1123             this.iTreeViewEvents.HideSelection = false;
  1124             this.iTreeViewEvents.Location = new System.Drawing.Point(111, 3);
  1125             this.iTreeViewEvents.Name = "iTreeViewEvents";
  1126             this.iTreeViewEvents.Size = new System.Drawing.Size(638, 376);
  1127             this.iTreeViewEvents.TabIndex = 1;
  1128             this.iTreeViewEvents.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.iTreeViewEvents_AfterSelect);
  1129             this.iTreeViewEvents.Leave += new System.EventHandler(this.iTreeViewEvents_Leave);
  1130             // 
  1131             // tabPageApp
  1132             // 
  1133             this.tabPageApp.Controls.Add(this.checkBoxStartMinimized);
  1134             this.tabPageApp.Controls.Add(this.checkBoxMinimizeToTray);
  1135             this.tabPageApp.Controls.Add(this.checkBoxAutoStart);
  1136             this.tabPageApp.Controls.Add(this.buttonUpdate);
  1137             this.tabPageApp.Location = new System.Drawing.Point(4, 22);
  1138             this.tabPageApp.Name = "tabPageApp";
  1139             this.tabPageApp.Padding = new System.Windows.Forms.Padding(3);
  1140             this.tabPageApp.Size = new System.Drawing.Size(752, 385);
  1141             this.tabPageApp.TabIndex = 4;
  1142             this.tabPageApp.Text = "Application";
  1143             this.tabPageApp.UseVisualStyleBackColor = true;
  1144             // 
  1145             // checkBoxStartMinimized
  1146             // 
  1147             this.checkBoxStartMinimized.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1148             this.checkBoxStartMinimized.AutoSize = true;
  1149             this.checkBoxStartMinimized.Checked = global::SharpDisplayManager.Properties.Settings.Default.StartMinimized;
  1150             this.checkBoxStartMinimized.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::SharpDisplayManager.Properties.Settings.Default, "StartMinimized", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  1151             this.checkBoxStartMinimized.Location = new System.Drawing.Point(6, 285);
  1152             this.checkBoxStartMinimized.Name = "checkBoxStartMinimized";
  1153             this.checkBoxStartMinimized.Size = new System.Drawing.Size(96, 17);
  1154             this.checkBoxStartMinimized.TabIndex = 16;
  1155             this.checkBoxStartMinimized.Text = "Start minimized";
  1156             this.checkBoxStartMinimized.UseVisualStyleBackColor = true;
  1157             // 
  1158             // checkBoxMinimizeToTray
  1159             // 
  1160             this.checkBoxMinimizeToTray.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1161             this.checkBoxMinimizeToTray.AutoSize = true;
  1162             this.checkBoxMinimizeToTray.Checked = global::SharpDisplayManager.Properties.Settings.Default.MinimizeToTray;
  1163             this.checkBoxMinimizeToTray.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::SharpDisplayManager.Properties.Settings.Default, "MinimizeToTray", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  1164             this.checkBoxMinimizeToTray.Location = new System.Drawing.Point(6, 308);
  1165             this.checkBoxMinimizeToTray.Name = "checkBoxMinimizeToTray";
  1166             this.checkBoxMinimizeToTray.Size = new System.Drawing.Size(133, 17);
  1167             this.checkBoxMinimizeToTray.TabIndex = 15;
  1168             this.checkBoxMinimizeToTray.Text = "Minimize to system tray";
  1169             this.checkBoxMinimizeToTray.UseVisualStyleBackColor = true;
  1170             // 
  1171             // checkBoxAutoStart
  1172             // 
  1173             this.checkBoxAutoStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1174             this.checkBoxAutoStart.AutoSize = true;
  1175             this.checkBoxAutoStart.Location = new System.Drawing.Point(6, 331);
  1176             this.checkBoxAutoStart.Name = "checkBoxAutoStart";
  1177             this.checkBoxAutoStart.Size = new System.Drawing.Size(143, 17);
  1178             this.checkBoxAutoStart.TabIndex = 14;
  1179             this.checkBoxAutoStart.Text = "Run on Windows startup";
  1180             this.checkBoxAutoStart.UseVisualStyleBackColor = true;
  1181             this.checkBoxAutoStart.CheckedChanged += new System.EventHandler(this.checkBoxAutoStart_CheckedChanged);
  1182             // 
  1183             // buttonUpdate
  1184             // 
  1185             this.buttonUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1186             this.buttonUpdate.Location = new System.Drawing.Point(6, 354);
  1187             this.buttonUpdate.Name = "buttonUpdate";
  1188             this.buttonUpdate.Size = new System.Drawing.Size(75, 23);
  1189             this.buttonUpdate.TabIndex = 0;
  1190             this.buttonUpdate.Text = "Update";
  1191             this.buttonUpdate.UseVisualStyleBackColor = true;
  1192             this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
  1193             // 
  1194             // tabPageLogs
  1195             // 
  1196             this.tabPageLogs.Controls.Add(this.buttonClearLogs);
  1197             this.tabPageLogs.Controls.Add(this.richTextBoxLogs);
  1198             this.tabPageLogs.Location = new System.Drawing.Point(4, 22);
  1199             this.tabPageLogs.Name = "tabPageLogs";
  1200             this.tabPageLogs.Padding = new System.Windows.Forms.Padding(3);
  1201             this.tabPageLogs.Size = new System.Drawing.Size(752, 385);
  1202             this.tabPageLogs.TabIndex = 8;
  1203             this.tabPageLogs.Text = "Logs";
  1204             this.tabPageLogs.UseVisualStyleBackColor = true;
  1205             // 
  1206             // buttonClearLogs
  1207             // 
  1208             this.buttonClearLogs.Location = new System.Drawing.Point(671, 6);
  1209             this.buttonClearLogs.Name = "buttonClearLogs";
  1210             this.buttonClearLogs.Size = new System.Drawing.Size(75, 23);
  1211             this.buttonClearLogs.TabIndex = 2;
  1212             this.buttonClearLogs.Text = "Clear";
  1213             this.buttonClearLogs.UseVisualStyleBackColor = true;
  1214             this.buttonClearLogs.Click += new System.EventHandler(this.buttonClearLogs_Click);
  1215             // 
  1216             // richTextBoxLogs
  1217             // 
  1218             this.richTextBoxLogs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
  1219             | System.Windows.Forms.AnchorStyles.Left) 
  1220             | System.Windows.Forms.AnchorStyles.Right)));
  1221             this.richTextBoxLogs.BorderStyle = System.Windows.Forms.BorderStyle.None;
  1222             this.richTextBoxLogs.DetectUrls = false;
  1223             this.richTextBoxLogs.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1224             this.richTextBoxLogs.Location = new System.Drawing.Point(6, 6);
  1225             this.richTextBoxLogs.Name = "richTextBoxLogs";
  1226             this.richTextBoxLogs.ReadOnly = true;
  1227             this.richTextBoxLogs.Size = new System.Drawing.Size(740, 373);
  1228             this.richTextBoxLogs.TabIndex = 1;
  1229             this.richTextBoxLogs.Text = "";
  1230             this.richTextBoxLogs.WordWrap = false;
  1231             // 
  1232             // labelFontWidth
  1233             // 
  1234             this.labelFontWidth.AutoSize = true;
  1235             this.labelFontWidth.Location = new System.Drawing.Point(13, 29);
  1236             this.labelFontWidth.Name = "labelFontWidth";
  1237             this.labelFontWidth.Size = new System.Drawing.Size(56, 13);
  1238             this.labelFontWidth.TabIndex = 19;
  1239             this.labelFontWidth.Text = "Font width";
  1240             // 
  1241             // labelFontHeight
  1242             // 
  1243             this.labelFontHeight.AutoSize = true;
  1244             this.labelFontHeight.Location = new System.Drawing.Point(13, 46);
  1245             this.labelFontHeight.Name = "labelFontHeight";
  1246             this.labelFontHeight.Size = new System.Drawing.Size(60, 13);
  1247             this.labelFontHeight.TabIndex = 20;
  1248             this.labelFontHeight.Text = "Font height";
  1249             // 
  1250             // openFileDialog
  1251             // 
  1252             this.openFileDialog.Filter = "EXE files (*.exe)|*.exe|All files (*.*)|*.*";
  1253             // 
  1254             // FormMain
  1255             // 
  1256             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  1257             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1258             this.ClientSize = new System.Drawing.Size(784, 562);
  1259             this.Controls.Add(this.labelFontHeight);
  1260             this.Controls.Add(this.labelFontWidth);
  1261             this.Controls.Add(this.labelWarning);
  1262             this.Controls.Add(this.statusStrip);
  1263             this.Controls.Add(this.tabControl);
  1264             this.Controls.Add(this.panelDisplay);
  1265             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1266             this.MinimumSize = new System.Drawing.Size(800, 600);
  1267             this.Name = "FormMain";
  1268             this.Text = "Sharp Display Manager";
  1269             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
  1270             this.Load += new System.EventHandler(this.MainForm_Load);
  1271             this.SizeChanged += new System.EventHandler(this.MainForm_SizeChanged);
  1272             this.Resize += new System.EventHandler(this.MainForm_Resize);
  1273             this.panelDisplay.ResumeLayout(false);
  1274             this.iTableLayoutPanel.ResumeLayout(false);
  1275             this.iTableLayoutPanel.PerformLayout();
  1276             this.statusStrip.ResumeLayout(false);
  1277             this.statusStrip.PerformLayout();
  1278             this.tabPageClients.ResumeLayout(false);
  1279             this.tabPageClients.PerformLayout();
  1280             this.tabPageDisplay.ResumeLayout(false);
  1281             this.tabPageDisplay.PerformLayout();
  1282             ((System.ComponentModel.ISupportInitialize)(this.trackBarBrightness)).EndInit();
  1283             this.tabControl.ResumeLayout(false);
  1284             this.tabPageDesign.ResumeLayout(false);
  1285             this.tabPageDesign.PerformLayout();
  1286             this.tabPageAudio.ResumeLayout(false);
  1287             this.tabPageAudio.PerformLayout();
  1288             ((System.ComponentModel.ISupportInitialize)(this.trackBarMasterVolume)).EndInit();
  1289             this.tabPageCec.ResumeLayout(false);
  1290             this.tabPageCec.PerformLayout();
  1291             this.groupBoxCecLogOptions.ResumeLayout(false);
  1292             this.groupBoxCecLogOptions.PerformLayout();
  1293             this.tabPageHarmony.ResumeLayout(false);
  1294             this.tabPageHarmony.PerformLayout();
  1295             this.tabPageEvent.ResumeLayout(false);
  1296             this.tabPageApp.ResumeLayout(false);
  1297             this.tabPageApp.PerformLayout();
  1298             this.tabPageLogs.ResumeLayout(false);
  1299             this.ResumeLayout(false);
  1300             this.PerformLayout();
  1301 
  1302         }
  1303 
  1304         #endregion
  1305 
  1306         private System.Windows.Forms.FontDialog fontDialog;
  1307         private System.Windows.Forms.Timer iTimerDisplay;
  1308         private System.Windows.Forms.StatusStrip statusStrip;
  1309         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelConnect;
  1310         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelFps;
  1311         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelSpring;
  1312         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelPower;
  1313         private System.Windows.Forms.Panel panelDisplay;
  1314         private System.Windows.Forms.TableLayoutPanel iTableLayoutPanel;
  1315         private MarqueeLabel marqueeLabelTop;
  1316         private MarqueeLabel marqueeLabelBottom;
  1317         private System.Windows.Forms.TabPage tabPageClients;
  1318         private System.Windows.Forms.TreeView iTreeViewClients;
  1319         private System.Windows.Forms.TabPage tabPageDisplay;
  1320         private System.Windows.Forms.CheckBox checkBoxFixedPitchFontOnly;
  1321         private System.Windows.Forms.Button buttonSuspend;
  1322         private System.Windows.Forms.CheckBox checkBoxConnectOnStartup;
  1323         private System.Windows.Forms.CheckBox checkBoxShowBorders;
  1324         private System.Windows.Forms.TrackBar trackBarBrightness;
  1325         private System.Windows.Forms.Button buttonFill;
  1326         private System.Windows.Forms.Button buttonClear;
  1327         private System.Windows.Forms.Button buttonClose;
  1328         private System.Windows.Forms.Button buttonOpen;
  1329         private System.Windows.Forms.Button buttonCapture;
  1330         private System.Windows.Forms.Button buttonFont;
  1331         private System.Windows.Forms.TabControl tabControl;
  1332         private System.Windows.Forms.Button buttonCloseClients;
  1333         private System.Windows.Forms.Button buttonStartClient;
  1334         private System.Windows.Forms.Label labelWarning;
  1335 		private System.Windows.Forms.TabPage tabPageDesign;
  1336 		private System.Windows.Forms.CheckBox checkBoxReverseScreen;
  1337         private System.Windows.Forms.ComboBox comboBoxDisplayType;
  1338         private System.Windows.Forms.MaskedTextBox maskedTextBoxTimerInterval;
  1339         private System.Windows.Forms.Label labelTimerInterval;
  1340         private System.Windows.Forms.Button buttonPowerOff;
  1341         private System.Windows.Forms.Button buttonPowerOn;
  1342         private System.Windows.Forms.Button buttonShowClock;
  1343         private System.Windows.Forms.Button buttonHideClock;
  1344         private System.Windows.Forms.Label labelFontWidth;
  1345         private System.Windows.Forms.Label labelFontHeight;
  1346         private System.Windows.Forms.CheckBox checkBoxInverseColors;
  1347         private System.Windows.Forms.TabPage tabPageApp;
  1348         private System.Windows.Forms.Button buttonUpdate;
  1349 		private System.Windows.Forms.CheckBox checkBoxAutoStart;
  1350 		private System.Windows.Forms.CheckBox checkBoxStartMinimized;
  1351 		private System.Windows.Forms.CheckBox checkBoxMinimizeToTray;
  1352         private System.Windows.Forms.MaskedTextBox maskedTextBoxMinFontSize;
  1353         private System.Windows.Forms.CheckBox checkBoxScaleToFit;
  1354         private System.Windows.Forms.Label labelMinFontSize;
  1355         private System.Windows.Forms.Label labelScrollLoopSeparator;
  1356         private System.Windows.Forms.TextBox textBoxScrollLoopSeparator;
  1357 		private System.Windows.Forms.Label labelScrollingSpeed;
  1358 		private System.Windows.Forms.MaskedTextBox maskedTextBoxScrollingSpeed;
  1359 		private System.Windows.Forms.ToolTip toolTip;
  1360 		private System.Windows.Forms.TabPage tabPageAudio;
  1361 		private System.Windows.Forms.TrackBar trackBarMasterVolume;
  1362 		private System.Windows.Forms.CheckBox checkBoxMute;
  1363 		private System.Windows.Forms.CheckBox checkBoxShowVolumeLabel;
  1364 		private System.Windows.Forms.Label iLabelDefaultAudioDevice;
  1365 		private System.Windows.Forms.OpenFileDialog openFileDialog;
  1366         private System.Windows.Forms.TabPage tabPageCec;
  1367         private System.Windows.Forms.CheckBox iCheckBoxCecEnabled;
  1368         private System.Windows.Forms.Label labelHdmiPort;
  1369         private System.Windows.Forms.ComboBox comboBoxHdmiPort;
  1370         private System.Windows.Forms.Button iButtonStartIdleClient;
  1371         private System.Windows.Forms.CheckBox iCheckBoxStartIdleClient;
  1372         private System.Windows.Forms.TabPage tabPageLogs;
  1373         private System.Windows.Forms.RichTextBox richTextBoxLogs;
  1374         private System.Windows.Forms.Button buttonClearLogs;
  1375         private System.Windows.Forms.GroupBox groupBoxCecLogOptions;
  1376         private System.Windows.Forms.CheckBox checkBoxCecLogWarning;
  1377         private System.Windows.Forms.CheckBox checkBoxCecLogError;
  1378         private System.Windows.Forms.CheckBox checkBoxCecLogDebug;
  1379         private System.Windows.Forms.CheckBox checkBoxCecLogNotice;
  1380         private System.Windows.Forms.CheckBox checkBoxCecLogTraffic;
  1381         private System.Windows.Forms.CheckBox checkBoxCecLogNoPoll;
  1382         private System.Windows.Forms.TabPage tabPageEvent;
  1383         private System.Windows.Forms.TreeView iTreeViewEvents;
  1384         private System.Windows.Forms.Button buttonActionDelete;
  1385         private System.Windows.Forms.Button buttonActionAdd;
  1386         private System.Windows.Forms.Button buttonActionMoveUp;
  1387         private System.Windows.Forms.Button buttonActionMoveDown;
  1388         private System.Windows.Forms.Button buttonActionTest;
  1389         private System.Windows.Forms.Button buttonActionEdit;
  1390         private System.Windows.Forms.Button buttonEventTest;
  1391         private System.Windows.Forms.Button buttonEventDelete;
  1392         private System.Windows.Forms.Button buttonEventAdd;
  1393         private System.Windows.Forms.Button buttonEventEdit;
  1394         private System.Windows.Forms.TabPage tabPageHarmony;
  1395         private System.Windows.Forms.TreeView iTreeViewHarmony;
  1396         private System.Windows.Forms.Label label1;
  1397         private System.Windows.Forms.TextBox iTextBoxHarmonyHubAddress;
  1398         private System.Windows.Forms.CheckBox iCheckBoxHarmonyEnabled;
  1399         private System.Windows.Forms.Button iButtonHarmonyConnect;
  1400     }
  1401 }
  1402