Server/MainForm.Designer.cs
author StephaneLenclud
Sun, 08 Feb 2015 17:27:02 +0100
changeset 112 57b1c6507bd7
parent 110 31e63bd07dfa
child 113 0846e5112dd7
permissions -rw-r--r--
Adding 'Audio' tab.
Volume indicator of MDM16AA display now working.
Adding server side dependency on NAudio.
It was decided to have a server side dependency so that we could implement
new fields control such as:
* Volume indicator
* Mute indicator
* Spectrum visualizer
* Meter visualizer
* Fancy visualizer
     1 namespace SharpDisplayManager
     2 {
     3     partial class MainForm
     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(MainForm));
    42 			this.panelDisplay = new System.Windows.Forms.Panel();
    43 			this.tableLayoutPanel = 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.timer = 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.buttonCloseClients = new System.Windows.Forms.Button();
    55 			this.buttonStartClient = new System.Windows.Forms.Button();
    56 			this.treeViewClients = new System.Windows.Forms.TreeView();
    57 			this.tabPageDisplay = new System.Windows.Forms.TabPage();
    58 			this.buttonShowClock = new System.Windows.Forms.Button();
    59 			this.buttonHideClock = new System.Windows.Forms.Button();
    60 			this.buttonPowerOff = new System.Windows.Forms.Button();
    61 			this.buttonPowerOn = new System.Windows.Forms.Button();
    62 			this.labelTimerInterval = new System.Windows.Forms.Label();
    63 			this.maskedTextBoxTimerInterval = new System.Windows.Forms.MaskedTextBox();
    64 			this.comboBoxDisplayType = new System.Windows.Forms.ComboBox();
    65 			this.buttonSuspend = new System.Windows.Forms.Button();
    66 			this.checkBoxConnectOnStartup = new System.Windows.Forms.CheckBox();
    67 			this.trackBarBrightness = new System.Windows.Forms.TrackBar();
    68 			this.buttonFill = new System.Windows.Forms.Button();
    69 			this.buttonClear = new System.Windows.Forms.Button();
    70 			this.buttonClose = new System.Windows.Forms.Button();
    71 			this.buttonOpen = new System.Windows.Forms.Button();
    72 			this.buttonCapture = new System.Windows.Forms.Button();
    73 			this.labelWarning = new System.Windows.Forms.Label();
    74 			this.checkBoxFixedPitchFontOnly = new System.Windows.Forms.CheckBox();
    75 			this.checkBoxShowBorders = new System.Windows.Forms.CheckBox();
    76 			this.buttonFont = new System.Windows.Forms.Button();
    77 			this.tabControl = new System.Windows.Forms.TabControl();
    78 			this.tabPageDesign = new System.Windows.Forms.TabPage();
    79 			this.labelScrollingSpeed = new System.Windows.Forms.Label();
    80 			this.maskedTextBoxScrollingSpeed = new System.Windows.Forms.MaskedTextBox();
    81 			this.labelScrollLoopSeparator = new System.Windows.Forms.Label();
    82 			this.textBoxScrollLoopSeparator = new System.Windows.Forms.TextBox();
    83 			this.labelMinFontSize = new System.Windows.Forms.Label();
    84 			this.maskedTextBoxMinFontSize = new System.Windows.Forms.MaskedTextBox();
    85 			this.checkBoxScaleToFit = new System.Windows.Forms.CheckBox();
    86 			this.checkBoxInverseColors = new System.Windows.Forms.CheckBox();
    87 			this.checkBoxReverseScreen = new System.Windows.Forms.CheckBox();
    88 			this.tabPageApp = new System.Windows.Forms.TabPage();
    89 			this.checkBoxStartMinimized = new System.Windows.Forms.CheckBox();
    90 			this.checkBoxMinimizeToTray = new System.Windows.Forms.CheckBox();
    91 			this.checkBoxAutoStart = new System.Windows.Forms.CheckBox();
    92 			this.buttonUpdate = new System.Windows.Forms.Button();
    93 			this.tabPageAudio = new System.Windows.Forms.TabPage();
    94 			this.trackBarMasterVolume = new System.Windows.Forms.TrackBar();
    95 			this.labelFontWidth = new System.Windows.Forms.Label();
    96 			this.labelFontHeight = new System.Windows.Forms.Label();
    97 			this.pictureBoxDemo = new System.Windows.Forms.PictureBox();
    98 			this.toolTip = new System.Windows.Forms.ToolTip(this.components);
    99 			this.panelDisplay.SuspendLayout();
   100 			this.tableLayoutPanel.SuspendLayout();
   101 			this.statusStrip.SuspendLayout();
   102 			this.tabPageClients.SuspendLayout();
   103 			this.tabPageDisplay.SuspendLayout();
   104 			((System.ComponentModel.ISupportInitialize)(this.trackBarBrightness)).BeginInit();
   105 			this.tabControl.SuspendLayout();
   106 			this.tabPageDesign.SuspendLayout();
   107 			this.tabPageApp.SuspendLayout();
   108 			this.tabPageAudio.SuspendLayout();
   109 			((System.ComponentModel.ISupportInitialize)(this.trackBarMasterVolume)).BeginInit();
   110 			((System.ComponentModel.ISupportInitialize)(this.pictureBoxDemo)).BeginInit();
   111 			this.SuspendLayout();
   112 			// 
   113 			// panelDisplay
   114 			// 
   115 			this.panelDisplay.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
   116 			this.panelDisplay.Controls.Add(this.tableLayoutPanel);
   117 			this.panelDisplay.Location = new System.Drawing.Point(173, 40);
   118 			this.panelDisplay.Margin = new System.Windows.Forms.Padding(0);
   119 			this.panelDisplay.Name = "panelDisplay";
   120 			this.panelDisplay.Size = new System.Drawing.Size(258, 66);
   121 			this.panelDisplay.TabIndex = 12;
   122 			// 
   123 			// tableLayoutPanel
   124 			// 
   125 			this.tableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   126             | System.Windows.Forms.AnchorStyles.Left) 
   127             | System.Windows.Forms.AnchorStyles.Right)));
   128 			this.tableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
   129 			this.tableLayoutPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
   130 			this.tableLayoutPanel.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
   131 			this.tableLayoutPanel.ColumnCount = 1;
   132 			this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
   133 			this.tableLayoutPanel.Controls.Add(this.marqueeLabelTop, 0, 0);
   134 			this.tableLayoutPanel.Controls.Add(this.marqueeLabelBottom, 0, 1);
   135 			this.tableLayoutPanel.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
   136 			this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
   137 			this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
   138 			this.tableLayoutPanel.Name = "tableLayoutPanel";
   139 			this.tableLayoutPanel.RowCount = 2;
   140 			this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
   141 			this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
   142 			this.tableLayoutPanel.Size = new System.Drawing.Size(256, 64);
   143 			this.tableLayoutPanel.TabIndex = 5;
   144 			this.tableLayoutPanel.SizeChanged += new System.EventHandler(this.tableLayoutPanel_SizeChanged);
   145 			// 
   146 			// marqueeLabelTop
   147 			// 
   148 			this.marqueeLabelTop.AutoEllipsis = true;
   149 			this.marqueeLabelTop.AutoSize = true;
   150 			this.marqueeLabelTop.BackColor = System.Drawing.Color.Transparent;
   151 			this.marqueeLabelTop.Dock = System.Windows.Forms.DockStyle.Fill;
   152 			this.marqueeLabelTop.Location = new System.Drawing.Point(1, 1);
   153 			this.marqueeLabelTop.Margin = new System.Windows.Forms.Padding(0);
   154 			this.marqueeLabelTop.MinFontSize = 15F;
   155 			this.marqueeLabelTop.Name = "marqueeLabelTop";
   156 			this.marqueeLabelTop.OwnTimer = false;
   157 			this.marqueeLabelTop.PixelsPerSecond = 64;
   158 			this.marqueeLabelTop.ScaleToFit = true;
   159 			this.marqueeLabelTop.Separator = "|";
   160 			this.marqueeLabelTop.Size = new System.Drawing.Size(254, 30);
   161 			this.marqueeLabelTop.TabIndex = 2;
   162 			this.marqueeLabelTop.Text = "ABCDEFGHIJKLMNOPQRST-0123456789";
   163 			this.marqueeLabelTop.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   164 			this.marqueeLabelTop.UseCompatibleTextRendering = true;
   165 			// 
   166 			// marqueeLabelBottom
   167 			// 
   168 			this.marqueeLabelBottom.AutoEllipsis = true;
   169 			this.marqueeLabelBottom.AutoSize = true;
   170 			this.marqueeLabelBottom.Dock = System.Windows.Forms.DockStyle.Fill;
   171 			this.marqueeLabelBottom.Location = new System.Drawing.Point(1, 32);
   172 			this.marqueeLabelBottom.Margin = new System.Windows.Forms.Padding(0);
   173 			this.marqueeLabelBottom.MinFontSize = 15F;
   174 			this.marqueeLabelBottom.Name = "marqueeLabelBottom";
   175 			this.marqueeLabelBottom.OwnTimer = false;
   176 			this.marqueeLabelBottom.PixelsPerSecond = 64;
   177 			this.marqueeLabelBottom.ScaleToFit = true;
   178 			this.marqueeLabelBottom.Separator = "|";
   179 			this.marqueeLabelBottom.Size = new System.Drawing.Size(254, 31);
   180 			this.marqueeLabelBottom.TabIndex = 3;
   181 			this.marqueeLabelBottom.Text = "abcdefghijklmnopqrst-0123456789";
   182 			this.marqueeLabelBottom.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   183 			this.marqueeLabelBottom.UseCompatibleTextRendering = true;
   184 			// 
   185 			// timer
   186 			// 
   187 			this.timer.Enabled = true;
   188 			this.timer.Interval = 50;
   189 			this.timer.Tick += new System.EventHandler(this.timer_Tick);
   190 			// 
   191 			// statusStrip
   192 			// 
   193 			this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
   194             this.toolStripStatusLabelConnect,
   195             this.toolStripStatusLabelSpring,
   196             this.toolStripStatusLabelPower,
   197             this.toolStripStatusLabelFps});
   198 			this.statusStrip.Location = new System.Drawing.Point(0, 420);
   199 			this.statusStrip.Name = "statusStrip";
   200 			this.statusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
   201 			this.statusStrip.Size = new System.Drawing.Size(624, 22);
   202 			this.statusStrip.TabIndex = 1;
   203 			this.statusStrip.Text = "statusStrip";
   204 			// 
   205 			// toolStripStatusLabelConnect
   206 			// 
   207 			this.toolStripStatusLabelConnect.Name = "toolStripStatusLabelConnect";
   208 			this.toolStripStatusLabelConnect.Size = new System.Drawing.Size(86, 17);
   209 			this.toolStripStatusLabelConnect.Text = "Not connected";
   210 			// 
   211 			// toolStripStatusLabelSpring
   212 			// 
   213 			this.toolStripStatusLabelSpring.Name = "toolStripStatusLabelSpring";
   214 			this.toolStripStatusLabelSpring.Size = new System.Drawing.Size(473, 17);
   215 			this.toolStripStatusLabelSpring.Spring = true;
   216 			// 
   217 			// toolStripStatusLabelPower
   218 			// 
   219 			this.toolStripStatusLabelPower.Name = "toolStripStatusLabelPower";
   220 			this.toolStripStatusLabelPower.Size = new System.Drawing.Size(24, 17);
   221 			this.toolStripStatusLabelPower.Text = "NA";
   222 			// 
   223 			// toolStripStatusLabelFps
   224 			// 
   225 			this.toolStripStatusLabelFps.Name = "toolStripStatusLabelFps";
   226 			this.toolStripStatusLabelFps.Size = new System.Drawing.Size(26, 17);
   227 			this.toolStripStatusLabelFps.Text = "FPS";
   228 			// 
   229 			// tabPageClients
   230 			// 
   231 			this.tabPageClients.Controls.Add(this.buttonCloseClients);
   232 			this.tabPageClients.Controls.Add(this.buttonStartClient);
   233 			this.tabPageClients.Controls.Add(this.treeViewClients);
   234 			this.tabPageClients.Location = new System.Drawing.Point(4, 22);
   235 			this.tabPageClients.Name = "tabPageClients";
   236 			this.tabPageClients.Padding = new System.Windows.Forms.Padding(3);
   237 			this.tabPageClients.Size = new System.Drawing.Size(592, 242);
   238 			this.tabPageClients.TabIndex = 2;
   239 			this.tabPageClients.Text = "Clients";
   240 			this.tabPageClients.UseVisualStyleBackColor = true;
   241 			// 
   242 			// buttonCloseClients
   243 			// 
   244 			this.buttonCloseClients.Location = new System.Drawing.Point(6, 35);
   245 			this.buttonCloseClients.Name = "buttonCloseClients";
   246 			this.buttonCloseClients.Size = new System.Drawing.Size(75, 23);
   247 			this.buttonCloseClients.TabIndex = 20;
   248 			this.buttonCloseClients.Text = "Close Clients";
   249 			this.buttonCloseClients.UseVisualStyleBackColor = true;
   250 			this.buttonCloseClients.Click += new System.EventHandler(this.buttonCloseClients_Click);
   251 			// 
   252 			// buttonStartClient
   253 			// 
   254 			this.buttonStartClient.Location = new System.Drawing.Point(6, 6);
   255 			this.buttonStartClient.Name = "buttonStartClient";
   256 			this.buttonStartClient.Size = new System.Drawing.Size(75, 23);
   257 			this.buttonStartClient.TabIndex = 19;
   258 			this.buttonStartClient.Text = "Start Client";
   259 			this.buttonStartClient.UseVisualStyleBackColor = true;
   260 			this.buttonStartClient.Click += new System.EventHandler(this.buttonStartClient_Click);
   261 			// 
   262 			// treeViewClients
   263 			// 
   264 			this.treeViewClients.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   265             | System.Windows.Forms.AnchorStyles.Left) 
   266             | System.Windows.Forms.AnchorStyles.Right)));
   267 			this.treeViewClients.Location = new System.Drawing.Point(87, 6);
   268 			this.treeViewClients.Name = "treeViewClients";
   269 			this.treeViewClients.Size = new System.Drawing.Size(499, 233);
   270 			this.treeViewClients.TabIndex = 0;
   271 			this.treeViewClients.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewClients_AfterSelect);
   272 			// 
   273 			// tabPageDisplay
   274 			// 
   275 			this.tabPageDisplay.Controls.Add(this.buttonShowClock);
   276 			this.tabPageDisplay.Controls.Add(this.buttonHideClock);
   277 			this.tabPageDisplay.Controls.Add(this.buttonPowerOff);
   278 			this.tabPageDisplay.Controls.Add(this.buttonPowerOn);
   279 			this.tabPageDisplay.Controls.Add(this.labelTimerInterval);
   280 			this.tabPageDisplay.Controls.Add(this.maskedTextBoxTimerInterval);
   281 			this.tabPageDisplay.Controls.Add(this.comboBoxDisplayType);
   282 			this.tabPageDisplay.Controls.Add(this.buttonSuspend);
   283 			this.tabPageDisplay.Controls.Add(this.checkBoxConnectOnStartup);
   284 			this.tabPageDisplay.Controls.Add(this.trackBarBrightness);
   285 			this.tabPageDisplay.Controls.Add(this.buttonFill);
   286 			this.tabPageDisplay.Controls.Add(this.buttonClear);
   287 			this.tabPageDisplay.Controls.Add(this.buttonClose);
   288 			this.tabPageDisplay.Controls.Add(this.buttonOpen);
   289 			this.tabPageDisplay.Controls.Add(this.buttonCapture);
   290 			this.tabPageDisplay.Location = new System.Drawing.Point(4, 22);
   291 			this.tabPageDisplay.Name = "tabPageDisplay";
   292 			this.tabPageDisplay.Padding = new System.Windows.Forms.Padding(3);
   293 			this.tabPageDisplay.Size = new System.Drawing.Size(592, 242);
   294 			this.tabPageDisplay.TabIndex = 0;
   295 			this.tabPageDisplay.Text = "Display";
   296 			this.tabPageDisplay.UseVisualStyleBackColor = true;
   297 			// 
   298 			// buttonShowClock
   299 			// 
   300 			this.buttonShowClock.Location = new System.Drawing.Point(293, 124);
   301 			this.buttonShowClock.Name = "buttonShowClock";
   302 			this.buttonShowClock.Size = new System.Drawing.Size(75, 23);
   303 			this.buttonShowClock.TabIndex = 23;
   304 			this.buttonShowClock.Text = "Show Clock";
   305 			this.buttonShowClock.UseVisualStyleBackColor = true;
   306 			this.buttonShowClock.Click += new System.EventHandler(this.buttonShowClock_Click);
   307 			// 
   308 			// buttonHideClock
   309 			// 
   310 			this.buttonHideClock.Location = new System.Drawing.Point(293, 153);
   311 			this.buttonHideClock.Name = "buttonHideClock";
   312 			this.buttonHideClock.Size = new System.Drawing.Size(75, 23);
   313 			this.buttonHideClock.TabIndex = 22;
   314 			this.buttonHideClock.Text = "Hide Clock";
   315 			this.buttonHideClock.UseVisualStyleBackColor = true;
   316 			this.buttonHideClock.Click += new System.EventHandler(this.buttonHideClock_Click);
   317 			// 
   318 			// buttonPowerOff
   319 			// 
   320 			this.buttonPowerOff.Location = new System.Drawing.Point(293, 211);
   321 			this.buttonPowerOff.Name = "buttonPowerOff";
   322 			this.buttonPowerOff.Size = new System.Drawing.Size(75, 23);
   323 			this.buttonPowerOff.TabIndex = 21;
   324 			this.buttonPowerOff.Text = "OFF";
   325 			this.buttonPowerOff.UseVisualStyleBackColor = true;
   326 			this.buttonPowerOff.Click += new System.EventHandler(this.buttonPowerOff_Click);
   327 			// 
   328 			// buttonPowerOn
   329 			// 
   330 			this.buttonPowerOn.Location = new System.Drawing.Point(293, 182);
   331 			this.buttonPowerOn.Name = "buttonPowerOn";
   332 			this.buttonPowerOn.Size = new System.Drawing.Size(75, 23);
   333 			this.buttonPowerOn.TabIndex = 20;
   334 			this.buttonPowerOn.Text = "ON";
   335 			this.buttonPowerOn.UseVisualStyleBackColor = true;
   336 			this.buttonPowerOn.Click += new System.EventHandler(this.buttonPowerOn_Click);
   337 			// 
   338 			// labelTimerInterval
   339 			// 
   340 			this.labelTimerInterval.AutoSize = true;
   341 			this.labelTimerInterval.Location = new System.Drawing.Point(184, 45);
   342 			this.labelTimerInterval.Name = "labelTimerInterval";
   343 			this.labelTimerInterval.Size = new System.Drawing.Size(98, 13);
   344 			this.labelTimerInterval.TabIndex = 19;
   345 			this.labelTimerInterval.Text = "Timer interval (ms) :";
   346 			// 
   347 			// maskedTextBoxTimerInterval
   348 			// 
   349 			this.maskedTextBoxTimerInterval.Location = new System.Drawing.Point(288, 42);
   350 			this.maskedTextBoxTimerInterval.Mask = "000";
   351 			this.maskedTextBoxTimerInterval.Name = "maskedTextBoxTimerInterval";
   352 			this.maskedTextBoxTimerInterval.PromptChar = ' ';
   353 			this.maskedTextBoxTimerInterval.Size = new System.Drawing.Size(24, 20);
   354 			this.maskedTextBoxTimerInterval.TabIndex = 18;
   355 			this.maskedTextBoxTimerInterval.TextChanged += new System.EventHandler(this.maskedTextBoxTimerInterval_TextChanged);
   356 			// 
   357 			// comboBoxDisplayType
   358 			// 
   359 			this.comboBoxDisplayType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
   360 			this.comboBoxDisplayType.FormattingEnabled = true;
   361 			this.comboBoxDisplayType.Location = new System.Drawing.Point(187, 9);
   362 			this.comboBoxDisplayType.Name = "comboBoxDisplayType";
   363 			this.comboBoxDisplayType.Size = new System.Drawing.Size(181, 21);
   364 			this.comboBoxDisplayType.TabIndex = 17;
   365 			this.comboBoxDisplayType.SelectedIndexChanged += new System.EventHandler(this.comboBoxDisplayType_SelectedIndexChanged);
   366 			// 
   367 			// buttonSuspend
   368 			// 
   369 			this.buttonSuspend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   370 			this.buttonSuspend.Location = new System.Drawing.Point(6, 184);
   371 			this.buttonSuspend.Name = "buttonSuspend";
   372 			this.buttonSuspend.Size = new System.Drawing.Size(75, 23);
   373 			this.buttonSuspend.TabIndex = 16;
   374 			this.buttonSuspend.Text = "Pause";
   375 			this.buttonSuspend.UseVisualStyleBackColor = true;
   376 			this.buttonSuspend.Click += new System.EventHandler(this.buttonSuspend_Click);
   377 			// 
   378 			// checkBoxConnectOnStartup
   379 			// 
   380 			this.checkBoxConnectOnStartup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   381 			this.checkBoxConnectOnStartup.AutoSize = true;
   382 			this.checkBoxConnectOnStartup.Location = new System.Drawing.Point(113, 217);
   383 			this.checkBoxConnectOnStartup.Name = "checkBoxConnectOnStartup";
   384 			this.checkBoxConnectOnStartup.Size = new System.Drawing.Size(119, 17);
   385 			this.checkBoxConnectOnStartup.TabIndex = 13;
   386 			this.checkBoxConnectOnStartup.Text = "Connect on stratup ";
   387 			this.checkBoxConnectOnStartup.UseVisualStyleBackColor = true;
   388 			this.checkBoxConnectOnStartup.CheckedChanged += new System.EventHandler(this.checkBoxConnectOnStartup_CheckedChanged);
   389 			// 
   390 			// trackBarBrightness
   391 			// 
   392 			this.trackBarBrightness.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   393             | System.Windows.Forms.AnchorStyles.Right)));
   394 			this.trackBarBrightness.BackColor = System.Drawing.SystemColors.Window;
   395 			this.trackBarBrightness.Location = new System.Drawing.Point(544, 9);
   396 			this.trackBarBrightness.Name = "trackBarBrightness";
   397 			this.trackBarBrightness.Orientation = System.Windows.Forms.Orientation.Vertical;
   398 			this.trackBarBrightness.Size = new System.Drawing.Size(45, 225);
   399 			this.trackBarBrightness.TabIndex = 10;
   400 			this.trackBarBrightness.TickStyle = System.Windows.Forms.TickStyle.Both;
   401 			this.toolTip.SetToolTip(this.trackBarBrightness, "Brightness adjustment");
   402 			this.trackBarBrightness.Scroll += new System.EventHandler(this.trackBarBrightness_Scroll);
   403 			// 
   404 			// buttonFill
   405 			// 
   406 			this.buttonFill.Location = new System.Drawing.Point(6, 93);
   407 			this.buttonFill.Name = "buttonFill";
   408 			this.buttonFill.Size = new System.Drawing.Size(75, 23);
   409 			this.buttonFill.TabIndex = 9;
   410 			this.buttonFill.Text = "Fill";
   411 			this.buttonFill.UseVisualStyleBackColor = true;
   412 			this.buttonFill.Click += new System.EventHandler(this.buttonFill_Click);
   413 			// 
   414 			// buttonClear
   415 			// 
   416 			this.buttonClear.Location = new System.Drawing.Point(6, 64);
   417 			this.buttonClear.Name = "buttonClear";
   418 			this.buttonClear.Size = new System.Drawing.Size(75, 23);
   419 			this.buttonClear.TabIndex = 8;
   420 			this.buttonClear.Text = "Clear";
   421 			this.buttonClear.UseVisualStyleBackColor = true;
   422 			this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
   423 			// 
   424 			// buttonClose
   425 			// 
   426 			this.buttonClose.Location = new System.Drawing.Point(6, 35);
   427 			this.buttonClose.Name = "buttonClose";
   428 			this.buttonClose.Size = new System.Drawing.Size(75, 23);
   429 			this.buttonClose.TabIndex = 7;
   430 			this.buttonClose.Text = "Close";
   431 			this.buttonClose.UseVisualStyleBackColor = true;
   432 			this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
   433 			// 
   434 			// buttonOpen
   435 			// 
   436 			this.buttonOpen.Location = new System.Drawing.Point(6, 6);
   437 			this.buttonOpen.Name = "buttonOpen";
   438 			this.buttonOpen.Size = new System.Drawing.Size(75, 23);
   439 			this.buttonOpen.TabIndex = 6;
   440 			this.buttonOpen.Text = "Open";
   441 			this.buttonOpen.UseVisualStyleBackColor = true;
   442 			this.buttonOpen.Click += new System.EventHandler(this.buttonOpen_Click);
   443 			// 
   444 			// buttonCapture
   445 			// 
   446 			this.buttonCapture.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   447 			this.buttonCapture.Location = new System.Drawing.Point(6, 213);
   448 			this.buttonCapture.Name = "buttonCapture";
   449 			this.buttonCapture.Size = new System.Drawing.Size(75, 23);
   450 			this.buttonCapture.TabIndex = 5;
   451 			this.buttonCapture.Text = "Capture";
   452 			this.buttonCapture.UseVisualStyleBackColor = true;
   453 			this.buttonCapture.Click += new System.EventHandler(this.buttonCapture_Click);
   454 			// 
   455 			// labelWarning
   456 			// 
   457 			this.labelWarning.AutoSize = true;
   458 			this.labelWarning.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
   459 			this.labelWarning.ForeColor = System.Drawing.Color.Red;
   460 			this.labelWarning.Location = new System.Drawing.Point(9, 9);
   461 			this.labelWarning.Name = "labelWarning";
   462 			this.labelWarning.Size = new System.Drawing.Size(80, 16);
   463 			this.labelWarning.TabIndex = 18;
   464 			this.labelWarning.Text = "WARNING";
   465 			this.labelWarning.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   466 			this.labelWarning.Visible = false;
   467 			// 
   468 			// checkBoxFixedPitchFontOnly
   469 			// 
   470 			this.checkBoxFixedPitchFontOnly.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   471 			this.checkBoxFixedPitchFontOnly.AutoSize = true;
   472 			this.checkBoxFixedPitchFontOnly.Location = new System.Drawing.Point(87, 217);
   473 			this.checkBoxFixedPitchFontOnly.Name = "checkBoxFixedPitchFontOnly";
   474 			this.checkBoxFixedPitchFontOnly.Size = new System.Drawing.Size(120, 17);
   475 			this.checkBoxFixedPitchFontOnly.TabIndex = 17;
   476 			this.checkBoxFixedPitchFontOnly.Text = "Fixed pitch font only";
   477 			this.checkBoxFixedPitchFontOnly.UseVisualStyleBackColor = true;
   478 			// 
   479 			// checkBoxShowBorders
   480 			// 
   481 			this.checkBoxShowBorders.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   482 			this.checkBoxShowBorders.AutoSize = true;
   483 			this.checkBoxShowBorders.Location = new System.Drawing.Point(485, 29);
   484 			this.checkBoxShowBorders.Name = "checkBoxShowBorders";
   485 			this.checkBoxShowBorders.Size = new System.Drawing.Size(91, 17);
   486 			this.checkBoxShowBorders.TabIndex = 11;
   487 			this.checkBoxShowBorders.Text = "Show borders";
   488 			this.checkBoxShowBorders.UseVisualStyleBackColor = true;
   489 			this.checkBoxShowBorders.CheckedChanged += new System.EventHandler(this.checkBoxShowBorders_CheckedChanged);
   490 			// 
   491 			// buttonFont
   492 			// 
   493 			this.buttonFont.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   494 			this.buttonFont.Location = new System.Drawing.Point(6, 213);
   495 			this.buttonFont.Name = "buttonFont";
   496 			this.buttonFont.Size = new System.Drawing.Size(75, 23);
   497 			this.buttonFont.TabIndex = 0;
   498 			this.buttonFont.Text = "Select Font";
   499 			this.buttonFont.UseVisualStyleBackColor = true;
   500 			this.buttonFont.Click += new System.EventHandler(this.buttonFont_Click);
   501 			// 
   502 			// tabControl
   503 			// 
   504 			this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   505             | System.Windows.Forms.AnchorStyles.Left) 
   506             | System.Windows.Forms.AnchorStyles.Right)));
   507 			this.tabControl.Controls.Add(this.tabPageDisplay);
   508 			this.tabControl.Controls.Add(this.tabPageClients);
   509 			this.tabControl.Controls.Add(this.tabPageDesign);
   510 			this.tabControl.Controls.Add(this.tabPageApp);
   511 			this.tabControl.Controls.Add(this.tabPageAudio);
   512 			this.tabControl.Location = new System.Drawing.Point(12, 139);
   513 			this.tabControl.Name = "tabControl";
   514 			this.tabControl.SelectedIndex = 0;
   515 			this.tabControl.Size = new System.Drawing.Size(600, 268);
   516 			this.tabControl.TabIndex = 0;
   517 			// 
   518 			// tabPageDesign
   519 			// 
   520 			this.tabPageDesign.Controls.Add(this.labelScrollingSpeed);
   521 			this.tabPageDesign.Controls.Add(this.maskedTextBoxScrollingSpeed);
   522 			this.tabPageDesign.Controls.Add(this.labelScrollLoopSeparator);
   523 			this.tabPageDesign.Controls.Add(this.textBoxScrollLoopSeparator);
   524 			this.tabPageDesign.Controls.Add(this.labelMinFontSize);
   525 			this.tabPageDesign.Controls.Add(this.maskedTextBoxMinFontSize);
   526 			this.tabPageDesign.Controls.Add(this.checkBoxScaleToFit);
   527 			this.tabPageDesign.Controls.Add(this.checkBoxInverseColors);
   528 			this.tabPageDesign.Controls.Add(this.checkBoxFixedPitchFontOnly);
   529 			this.tabPageDesign.Controls.Add(this.buttonFont);
   530 			this.tabPageDesign.Controls.Add(this.checkBoxReverseScreen);
   531 			this.tabPageDesign.Controls.Add(this.checkBoxShowBorders);
   532 			this.tabPageDesign.Location = new System.Drawing.Point(4, 22);
   533 			this.tabPageDesign.Name = "tabPageDesign";
   534 			this.tabPageDesign.Padding = new System.Windows.Forms.Padding(3);
   535 			this.tabPageDesign.Size = new System.Drawing.Size(592, 242);
   536 			this.tabPageDesign.TabIndex = 3;
   537 			this.tabPageDesign.Text = "Design";
   538 			this.tabPageDesign.UseVisualStyleBackColor = true;
   539 			// 
   540 			// labelScrollingSpeed
   541 			// 
   542 			this.labelScrollingSpeed.AutoSize = true;
   543 			this.labelScrollingSpeed.Location = new System.Drawing.Point(84, 119);
   544 			this.labelScrollingSpeed.Name = "labelScrollingSpeed";
   545 			this.labelScrollingSpeed.Size = new System.Drawing.Size(115, 13);
   546 			this.labelScrollingSpeed.TabIndex = 28;
   547 			this.labelScrollingSpeed.Text = "Scrolling speed (px/s) :";
   548 			// 
   549 			// maskedTextBoxScrollingSpeed
   550 			// 
   551 			this.maskedTextBoxScrollingSpeed.Location = new System.Drawing.Point(205, 116);
   552 			this.maskedTextBoxScrollingSpeed.Mask = "000";
   553 			this.maskedTextBoxScrollingSpeed.Name = "maskedTextBoxScrollingSpeed";
   554 			this.maskedTextBoxScrollingSpeed.PromptChar = ' ';
   555 			this.maskedTextBoxScrollingSpeed.Size = new System.Drawing.Size(24, 20);
   556 			this.maskedTextBoxScrollingSpeed.TabIndex = 27;
   557 			this.maskedTextBoxScrollingSpeed.TextChanged += new System.EventHandler(this.maskedTextBoxScrollingSpeed_TextChanged);
   558 			// 
   559 			// labelScrollLoopSeparator
   560 			// 
   561 			this.labelScrollLoopSeparator.AutoSize = true;
   562 			this.labelScrollLoopSeparator.Location = new System.Drawing.Point(90, 145);
   563 			this.labelScrollLoopSeparator.Name = "labelScrollLoopSeparator";
   564 			this.labelScrollLoopSeparator.Size = new System.Drawing.Size(109, 13);
   565 			this.labelScrollLoopSeparator.TabIndex = 26;
   566 			this.labelScrollLoopSeparator.Text = "Scroll loop separator :";
   567 			// 
   568 			// textBoxScrollLoopSeparator
   569 			// 
   570 			this.textBoxScrollLoopSeparator.Location = new System.Drawing.Point(205, 142);
   571 			this.textBoxScrollLoopSeparator.Name = "textBoxScrollLoopSeparator";
   572 			this.textBoxScrollLoopSeparator.Size = new System.Drawing.Size(74, 20);
   573 			this.textBoxScrollLoopSeparator.TabIndex = 25;
   574 			this.textBoxScrollLoopSeparator.TextChanged += new System.EventHandler(this.textBoxScrollLoopSeparator_TextChanged);
   575 			// 
   576 			// labelMinFontSize
   577 			// 
   578 			this.labelMinFontSize.AutoSize = true;
   579 			this.labelMinFontSize.Location = new System.Drawing.Point(80, 194);
   580 			this.labelMinFontSize.Name = "labelMinFontSize";
   581 			this.labelMinFontSize.Size = new System.Drawing.Size(119, 13);
   582 			this.labelMinFontSize.TabIndex = 24;
   583 			this.labelMinFontSize.Text = "Minimum font size (pts) :";
   584 			// 
   585 			// maskedTextBoxMinFontSize
   586 			// 
   587 			this.maskedTextBoxMinFontSize.Location = new System.Drawing.Point(205, 191);
   588 			this.maskedTextBoxMinFontSize.Mask = "000";
   589 			this.maskedTextBoxMinFontSize.Name = "maskedTextBoxMinFontSize";
   590 			this.maskedTextBoxMinFontSize.PromptChar = ' ';
   591 			this.maskedTextBoxMinFontSize.Size = new System.Drawing.Size(24, 20);
   592 			this.maskedTextBoxMinFontSize.TabIndex = 23;
   593 			this.maskedTextBoxMinFontSize.TextChanged += new System.EventHandler(this.maskedTextBoxMinFontSize_TextChanged);
   594 			// 
   595 			// checkBoxScaleToFit
   596 			// 
   597 			this.checkBoxScaleToFit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   598 			this.checkBoxScaleToFit.AutoSize = true;
   599 			this.checkBoxScaleToFit.Location = new System.Drawing.Point(87, 168);
   600 			this.checkBoxScaleToFit.Name = "checkBoxScaleToFit";
   601 			this.checkBoxScaleToFit.Size = new System.Drawing.Size(201, 17);
   602 			this.checkBoxScaleToFit.TabIndex = 22;
   603 			this.checkBoxScaleToFit.Text = "Try scale font down to avoid scrolling";
   604 			this.checkBoxScaleToFit.UseVisualStyleBackColor = true;
   605 			this.checkBoxScaleToFit.CheckedChanged += new System.EventHandler(this.checkBoxScaleToFit_CheckedChanged);
   606 			// 
   607 			// checkBoxInverseColors
   608 			// 
   609 			this.checkBoxInverseColors.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   610 			this.checkBoxInverseColors.AutoSize = true;
   611 			this.checkBoxInverseColors.Location = new System.Drawing.Point(485, 52);
   612 			this.checkBoxInverseColors.Name = "checkBoxInverseColors";
   613 			this.checkBoxInverseColors.Size = new System.Drawing.Size(92, 17);
   614 			this.checkBoxInverseColors.TabIndex = 21;
   615 			this.checkBoxInverseColors.Text = "Inverse colors";
   616 			this.checkBoxInverseColors.UseVisualStyleBackColor = true;
   617 			this.checkBoxInverseColors.CheckedChanged += new System.EventHandler(this.checkBoxInverseColors_CheckedChanged);
   618 			// 
   619 			// checkBoxReverseScreen
   620 			// 
   621 			this.checkBoxReverseScreen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   622 			this.checkBoxReverseScreen.AutoSize = true;
   623 			this.checkBoxReverseScreen.Location = new System.Drawing.Point(485, 6);
   624 			this.checkBoxReverseScreen.Name = "checkBoxReverseScreen";
   625 			this.checkBoxReverseScreen.Size = new System.Drawing.Size(101, 17);
   626 			this.checkBoxReverseScreen.TabIndex = 14;
   627 			this.checkBoxReverseScreen.Text = "Reverse screen";
   628 			this.checkBoxReverseScreen.UseVisualStyleBackColor = true;
   629 			this.checkBoxReverseScreen.CheckedChanged += new System.EventHandler(this.checkBoxReverseScreen_CheckedChanged);
   630 			// 
   631 			// tabPageApp
   632 			// 
   633 			this.tabPageApp.Controls.Add(this.checkBoxStartMinimized);
   634 			this.tabPageApp.Controls.Add(this.checkBoxMinimizeToTray);
   635 			this.tabPageApp.Controls.Add(this.checkBoxAutoStart);
   636 			this.tabPageApp.Controls.Add(this.buttonUpdate);
   637 			this.tabPageApp.Location = new System.Drawing.Point(4, 22);
   638 			this.tabPageApp.Name = "tabPageApp";
   639 			this.tabPageApp.Padding = new System.Windows.Forms.Padding(3);
   640 			this.tabPageApp.Size = new System.Drawing.Size(592, 242);
   641 			this.tabPageApp.TabIndex = 4;
   642 			this.tabPageApp.Text = "Application";
   643 			this.tabPageApp.UseVisualStyleBackColor = true;
   644 			// 
   645 			// checkBoxStartMinimized
   646 			// 
   647 			this.checkBoxStartMinimized.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   648 			this.checkBoxStartMinimized.AutoSize = true;
   649 			this.checkBoxStartMinimized.Location = new System.Drawing.Point(8, 144);
   650 			this.checkBoxStartMinimized.Name = "checkBoxStartMinimized";
   651 			this.checkBoxStartMinimized.Size = new System.Drawing.Size(96, 17);
   652 			this.checkBoxStartMinimized.TabIndex = 16;
   653 			this.checkBoxStartMinimized.Text = "Start minimized";
   654 			this.checkBoxStartMinimized.UseVisualStyleBackColor = true;
   655 			this.checkBoxStartMinimized.CheckedChanged += new System.EventHandler(this.checkBoxStartMinimized_CheckedChanged);
   656 			// 
   657 			// checkBoxMinimizeToTray
   658 			// 
   659 			this.checkBoxMinimizeToTray.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   660 			this.checkBoxMinimizeToTray.AutoSize = true;
   661 			this.checkBoxMinimizeToTray.Location = new System.Drawing.Point(8, 167);
   662 			this.checkBoxMinimizeToTray.Name = "checkBoxMinimizeToTray";
   663 			this.checkBoxMinimizeToTray.Size = new System.Drawing.Size(133, 17);
   664 			this.checkBoxMinimizeToTray.TabIndex = 15;
   665 			this.checkBoxMinimizeToTray.Text = "Minimize to system tray";
   666 			this.checkBoxMinimizeToTray.UseVisualStyleBackColor = true;
   667 			this.checkBoxMinimizeToTray.CheckedChanged += new System.EventHandler(this.checkBoxMinimizeToTray_CheckedChanged);
   668 			// 
   669 			// checkBoxAutoStart
   670 			// 
   671 			this.checkBoxAutoStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   672 			this.checkBoxAutoStart.AutoSize = true;
   673 			this.checkBoxAutoStart.Location = new System.Drawing.Point(8, 190);
   674 			this.checkBoxAutoStart.Name = "checkBoxAutoStart";
   675 			this.checkBoxAutoStart.Size = new System.Drawing.Size(143, 17);
   676 			this.checkBoxAutoStart.TabIndex = 14;
   677 			this.checkBoxAutoStart.Text = "Run on Windows startup";
   678 			this.checkBoxAutoStart.UseVisualStyleBackColor = true;
   679 			this.checkBoxAutoStart.CheckedChanged += new System.EventHandler(this.checkBoxAutoStart_CheckedChanged);
   680 			// 
   681 			// buttonUpdate
   682 			// 
   683 			this.buttonUpdate.Location = new System.Drawing.Point(6, 213);
   684 			this.buttonUpdate.Name = "buttonUpdate";
   685 			this.buttonUpdate.Size = new System.Drawing.Size(75, 23);
   686 			this.buttonUpdate.TabIndex = 0;
   687 			this.buttonUpdate.Text = "Update";
   688 			this.buttonUpdate.UseVisualStyleBackColor = true;
   689 			this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
   690 			// 
   691 			// tabPageAudio
   692 			// 
   693 			this.tabPageAudio.Controls.Add(this.trackBarMasterVolume);
   694 			this.tabPageAudio.Location = new System.Drawing.Point(4, 22);
   695 			this.tabPageAudio.Name = "tabPageAudio";
   696 			this.tabPageAudio.Padding = new System.Windows.Forms.Padding(3);
   697 			this.tabPageAudio.Size = new System.Drawing.Size(592, 242);
   698 			this.tabPageAudio.TabIndex = 5;
   699 			this.tabPageAudio.Text = "Audio";
   700 			this.tabPageAudio.UseVisualStyleBackColor = true;
   701 			// 
   702 			// trackBarMasterVolume
   703 			// 
   704 			this.trackBarMasterVolume.BackColor = System.Drawing.SystemColors.Window;
   705 			this.trackBarMasterVolume.Location = new System.Drawing.Point(541, 6);
   706 			this.trackBarMasterVolume.Maximum = 100;
   707 			this.trackBarMasterVolume.Name = "trackBarMasterVolume";
   708 			this.trackBarMasterVolume.Orientation = System.Windows.Forms.Orientation.Vertical;
   709 			this.trackBarMasterVolume.Size = new System.Drawing.Size(45, 230);
   710 			this.trackBarMasterVolume.TabIndex = 0;
   711 			this.trackBarMasterVolume.TickFrequency = 10;
   712 			this.trackBarMasterVolume.TickStyle = System.Windows.Forms.TickStyle.Both;
   713 			this.toolTip.SetToolTip(this.trackBarMasterVolume, "Master Volume");
   714 			this.trackBarMasterVolume.Scroll += new System.EventHandler(this.trackBarMasterVolume_Scroll);
   715 			// 
   716 			// labelFontWidth
   717 			// 
   718 			this.labelFontWidth.AutoSize = true;
   719 			this.labelFontWidth.Location = new System.Drawing.Point(13, 29);
   720 			this.labelFontWidth.Name = "labelFontWidth";
   721 			this.labelFontWidth.Size = new System.Drawing.Size(56, 13);
   722 			this.labelFontWidth.TabIndex = 19;
   723 			this.labelFontWidth.Text = "Font width";
   724 			// 
   725 			// labelFontHeight
   726 			// 
   727 			this.labelFontHeight.AutoSize = true;
   728 			this.labelFontHeight.Location = new System.Drawing.Point(13, 46);
   729 			this.labelFontHeight.Name = "labelFontHeight";
   730 			this.labelFontHeight.Size = new System.Drawing.Size(60, 13);
   731 			this.labelFontHeight.TabIndex = 20;
   732 			this.labelFontHeight.Text = "Font height";
   733 			// 
   734 			// pictureBoxDemo
   735 			// 
   736 			this.pictureBoxDemo.Location = new System.Drawing.Point(478, 54);
   737 			this.pictureBoxDemo.Name = "pictureBoxDemo";
   738 			this.pictureBoxDemo.Size = new System.Drawing.Size(100, 50);
   739 			this.pictureBoxDemo.TabIndex = 21;
   740 			this.pictureBoxDemo.TabStop = false;
   741 			// 
   742 			// MainForm
   743 			// 
   744 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
   745 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
   746 			this.ClientSize = new System.Drawing.Size(624, 442);
   747 			this.Controls.Add(this.pictureBoxDemo);
   748 			this.Controls.Add(this.labelFontHeight);
   749 			this.Controls.Add(this.labelFontWidth);
   750 			this.Controls.Add(this.labelWarning);
   751 			this.Controls.Add(this.statusStrip);
   752 			this.Controls.Add(this.tabControl);
   753 			this.Controls.Add(this.panelDisplay);
   754 			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
   755 			this.MinimumSize = new System.Drawing.Size(640, 480);
   756 			this.Name = "MainForm";
   757 			this.Text = "Sharp Display Manager";
   758 			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
   759 			this.Load += new System.EventHandler(this.MainForm_Load);
   760 			this.SizeChanged += new System.EventHandler(this.MainForm_SizeChanged);
   761 			this.Resize += new System.EventHandler(this.MainForm_Resize);
   762 			this.panelDisplay.ResumeLayout(false);
   763 			this.tableLayoutPanel.ResumeLayout(false);
   764 			this.tableLayoutPanel.PerformLayout();
   765 			this.statusStrip.ResumeLayout(false);
   766 			this.statusStrip.PerformLayout();
   767 			this.tabPageClients.ResumeLayout(false);
   768 			this.tabPageDisplay.ResumeLayout(false);
   769 			this.tabPageDisplay.PerformLayout();
   770 			((System.ComponentModel.ISupportInitialize)(this.trackBarBrightness)).EndInit();
   771 			this.tabControl.ResumeLayout(false);
   772 			this.tabPageDesign.ResumeLayout(false);
   773 			this.tabPageDesign.PerformLayout();
   774 			this.tabPageApp.ResumeLayout(false);
   775 			this.tabPageApp.PerformLayout();
   776 			this.tabPageAudio.ResumeLayout(false);
   777 			this.tabPageAudio.PerformLayout();
   778 			((System.ComponentModel.ISupportInitialize)(this.trackBarMasterVolume)).EndInit();
   779 			((System.ComponentModel.ISupportInitialize)(this.pictureBoxDemo)).EndInit();
   780 			this.ResumeLayout(false);
   781 			this.PerformLayout();
   782 
   783         }
   784 
   785         #endregion
   786 
   787         private System.Windows.Forms.FontDialog fontDialog;
   788         private System.Windows.Forms.Timer timer;
   789         private System.Windows.Forms.StatusStrip statusStrip;
   790         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelConnect;
   791         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelFps;
   792         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelSpring;
   793         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelPower;
   794         private System.Windows.Forms.Panel panelDisplay;
   795         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
   796         private MarqueeLabel marqueeLabelTop;
   797         private MarqueeLabel marqueeLabelBottom;
   798         private System.Windows.Forms.TabPage tabPageClients;
   799         private System.Windows.Forms.TreeView treeViewClients;
   800         private System.Windows.Forms.TabPage tabPageDisplay;
   801         private System.Windows.Forms.CheckBox checkBoxFixedPitchFontOnly;
   802         private System.Windows.Forms.Button buttonSuspend;
   803         private System.Windows.Forms.CheckBox checkBoxConnectOnStartup;
   804         private System.Windows.Forms.CheckBox checkBoxShowBorders;
   805         private System.Windows.Forms.TrackBar trackBarBrightness;
   806         private System.Windows.Forms.Button buttonFill;
   807         private System.Windows.Forms.Button buttonClear;
   808         private System.Windows.Forms.Button buttonClose;
   809         private System.Windows.Forms.Button buttonOpen;
   810         private System.Windows.Forms.Button buttonCapture;
   811         private System.Windows.Forms.Button buttonFont;
   812         private System.Windows.Forms.TabControl tabControl;
   813         private System.Windows.Forms.Button buttonCloseClients;
   814         private System.Windows.Forms.Button buttonStartClient;
   815         private System.Windows.Forms.Label labelWarning;
   816 		private System.Windows.Forms.TabPage tabPageDesign;
   817 		private System.Windows.Forms.CheckBox checkBoxReverseScreen;
   818         private System.Windows.Forms.ComboBox comboBoxDisplayType;
   819         private System.Windows.Forms.MaskedTextBox maskedTextBoxTimerInterval;
   820         private System.Windows.Forms.Label labelTimerInterval;
   821         private System.Windows.Forms.Button buttonPowerOff;
   822         private System.Windows.Forms.Button buttonPowerOn;
   823         private System.Windows.Forms.Button buttonShowClock;
   824         private System.Windows.Forms.Button buttonHideClock;
   825         private System.Windows.Forms.Label labelFontWidth;
   826         private System.Windows.Forms.Label labelFontHeight;
   827         private System.Windows.Forms.CheckBox checkBoxInverseColors;
   828         private System.Windows.Forms.PictureBox pictureBoxDemo;
   829         private System.Windows.Forms.TabPage tabPageApp;
   830         private System.Windows.Forms.Button buttonUpdate;
   831 		private System.Windows.Forms.CheckBox checkBoxAutoStart;
   832 		private System.Windows.Forms.CheckBox checkBoxStartMinimized;
   833 		private System.Windows.Forms.CheckBox checkBoxMinimizeToTray;
   834         private System.Windows.Forms.MaskedTextBox maskedTextBoxMinFontSize;
   835         private System.Windows.Forms.CheckBox checkBoxScaleToFit;
   836         private System.Windows.Forms.Label labelMinFontSize;
   837         private System.Windows.Forms.Label labelScrollLoopSeparator;
   838         private System.Windows.Forms.TextBox textBoxScrollLoopSeparator;
   839 		private System.Windows.Forms.Label labelScrollingSpeed;
   840 		private System.Windows.Forms.MaskedTextBox maskedTextBoxScrollingSpeed;
   841 		private System.Windows.Forms.ToolTip toolTip;
   842 		private System.Windows.Forms.TabPage tabPageAudio;
   843 		private System.Windows.Forms.TrackBar trackBarMasterVolume;
   844     }
   845 }
   846