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