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