third commit

This commit is contained in:
Wesley Hofman
2025-09-18 14:36:50 +02:00
parent 633885bab9
commit 1232ca80c6
156 changed files with 724100 additions and 0 deletions

View File

@@ -0,0 +1,354 @@
namespace Maser.Feanor.Client
{
partial class FeanorClient
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FeanorClient));
this.lblStatus = new System.Windows.Forms.Label();
this.dgvChambers = new System.Windows.Forms.DataGridView();
this.dgvChambersColMIDS = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dgvChambersColNetwork = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dgvChambersColStatus = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dgvChambersColHTTP = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.timer = new System.Windows.Forms.Timer();
this.cboxShowAll = new System.Windows.Forms.CheckBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip();
this.panel1 = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.panel3 = new System.Windows.Forms.Panel();
this.statusPercentage = new System.Windows.Forms.RichTextBox();
this.PercProgress = new System.Windows.Forms.ProgressBar();
this.errorProvider1 = new System.Windows.Forms.ErrorProvider();
this.LastStartupTimer = new System.Windows.Forms.Timer();
this.UpdateRaspberryTime = new System.Windows.Forms.Timer();
this.pnlNodesOffline = new System.Windows.Forms.Panel();
this.label2 = new System.Windows.Forms.Label();
this.btnDismiss = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.timerSaveStatusPage = new System.Windows.Forms.Timer();
((System.ComponentModel.ISupportInitialize)(this.dgvChambers)).BeginInit();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
this.panel3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
this.pnlNodesOffline.SuspendLayout();
this.SuspendLayout();
//
// lblStatus
//
this.lblStatus.AutoSize = true;
this.lblStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblStatus.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.lblStatus.Location = new System.Drawing.Point(3, 15);
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(56, 20);
this.lblStatus.TabIndex = 0;
this.lblStatus.Text = "Status";
this.lblStatus.Click += new System.EventHandler(this.lblStatus_Click);
//
// dgvChambers
//
this.dgvChambers.AllowUserToAddRows = false;
this.dgvChambers.AllowUserToDeleteRows = false;
this.dgvChambers.AllowUserToResizeColumns = false;
this.dgvChambers.AllowUserToResizeRows = false;
this.dgvChambers.BackgroundColor = System.Drawing.Color.Gray;
this.dgvChambers.BorderStyle = System.Windows.Forms.BorderStyle.None;
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.Gray;
dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgvChambers.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
this.dgvChambers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvChambers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.dgvChambersColMIDS,
this.dgvChambersColNetwork,
this.dgvChambersColStatus,
this.dgvChambersColHTTP});
this.dgvChambers.EnableHeadersVisualStyles = false;
this.dgvChambers.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.dgvChambers.Location = new System.Drawing.Point(12, 73);
this.dgvChambers.MultiSelect = false;
this.dgvChambers.Name = "dgvChambers";
this.dgvChambers.ReadOnly = true;
this.dgvChambers.RowHeadersVisible = false;
this.dgvChambers.RowHeadersWidth = 62;
this.dgvChambers.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.dgvChambers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvChambers.Size = new System.Drawing.Size(651, 414);
this.dgvChambers.TabIndex = 1;
//
// dgvChambersColMIDS
//
this.dgvChambersColMIDS.HeaderText = "MIDS";
this.dgvChambersColMIDS.MinimumWidth = 8;
this.dgvChambersColMIDS.Name = "dgvChambersColMIDS";
this.dgvChambersColMIDS.ReadOnly = true;
this.dgvChambersColMIDS.Width = 150;
//
// dgvChambersColNetwork
//
this.dgvChambersColNetwork.HeaderText = "IP";
this.dgvChambersColNetwork.MinimumWidth = 8;
this.dgvChambersColNetwork.Name = "dgvChambersColNetwork";
this.dgvChambersColNetwork.ReadOnly = true;
this.dgvChambersColNetwork.Width = 150;
//
// dgvChambersColStatus
//
this.dgvChambersColStatus.HeaderText = "Status";
this.dgvChambersColStatus.MinimumWidth = 8;
this.dgvChambersColStatus.Name = "dgvChambersColStatus";
this.dgvChambersColStatus.ReadOnly = true;
this.dgvChambersColStatus.Width = 150;
//
// dgvChambersColHTTP
//
this.dgvChambersColHTTP.HeaderText = "Last HTTP";
this.dgvChambersColHTTP.MinimumWidth = 8;
this.dgvChambersColHTTP.Name = "dgvChambersColHTTP";
this.dgvChambersColHTTP.ReadOnly = true;
this.dgvChambersColHTTP.Width = 200;
//
// timer
//
this.timer.Interval = 1000;
this.timer.Tick += new System.EventHandler(this.timer_Tick);
//
// cboxShowAll
//
this.cboxShowAll.AutoSize = true;
this.cboxShowAll.Checked = true;
this.cboxShowAll.CheckState = System.Windows.Forms.CheckState.Checked;
this.cboxShowAll.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cboxShowAll.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.cboxShowAll.Location = new System.Drawing.Point(16, 14);
this.cboxShowAll.Name = "cboxShowAll";
this.cboxShowAll.Size = new System.Drawing.Size(142, 24);
this.cboxShowAll.TabIndex = 2;
this.cboxShowAll.Text = "Show all servers";
this.cboxShowAll.UseVisualStyleBackColor = true;
this.cboxShowAll.CheckedChanged += new System.EventHandler(this.cboxShowAll_CheckedChanged);
//
// contextMenuStrip1
//
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
// contextMenuStrip2
//
this.contextMenuStrip2.Name = "contextMenuStrip2";
this.contextMenuStrip2.Size = new System.Drawing.Size(61, 4);
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.Gray;
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.lblStatus);
this.panel1.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.panel1.Location = new System.Drawing.Point(12, 12);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(233, 55);
this.panel1.TabIndex = 3;
this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
//
// panel2
//
this.panel2.BackColor = System.Drawing.Color.Gray;
this.panel2.Controls.Add(this.cboxShowAll);
this.panel2.Location = new System.Drawing.Point(251, 12);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(159, 55);
this.panel2.TabIndex = 4;
//
// panel3
//
this.panel3.BackColor = System.Drawing.Color.Gray;
this.panel3.Controls.Add(this.statusPercentage);
this.panel3.Controls.Add(this.PercProgress);
this.panel3.Location = new System.Drawing.Point(416, 12);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(247, 55);
this.panel3.TabIndex = 5;
//
// statusPercentage
//
this.statusPercentage.BackColor = System.Drawing.Color.Gray;
this.statusPercentage.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.statusPercentage.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.statusPercentage.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.statusPercentage.Location = new System.Drawing.Point(177, 14);
this.statusPercentage.Name = "statusPercentage";
this.statusPercentage.Size = new System.Drawing.Size(55, 36);
this.statusPercentage.TabIndex = 0;
this.statusPercentage.Text = "";
//
// PercProgress
//
this.PercProgress.Location = new System.Drawing.Point(12, 16);
this.PercProgress.Name = "PercProgress";
this.PercProgress.Size = new System.Drawing.Size(159, 23);
this.PercProgress.TabIndex = 0;
this.PercProgress.Click += new System.EventHandler(this.PercProgress_Click);
//
// errorProvider1
//
this.errorProvider1.ContainerControl = this;
//
// LastStartupTimer
//
this.LastStartupTimer.Enabled = true;
this.LastStartupTimer.Interval = 600000;
this.LastStartupTimer.Tick += new System.EventHandler(this.LastStartupTimer_Tick);
//
// UpdateRaspberryTime
//
this.UpdateRaspberryTime.Enabled = true;
this.UpdateRaspberryTime.Interval = 60000;
this.UpdateRaspberryTime.Tick += new System.EventHandler(this.UpdateRaspberryTime_Tick);
//
// pnlNodesOffline
//
this.pnlNodesOffline.BackColor = System.Drawing.Color.Silver;
this.pnlNodesOffline.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pnlNodesOffline.Controls.Add(this.label2);
this.pnlNodesOffline.Controls.Add(this.btnDismiss);
this.pnlNodesOffline.Controls.Add(this.label1);
this.pnlNodesOffline.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.pnlNodesOffline.Location = new System.Drawing.Point(104, 164);
this.pnlNodesOffline.Name = "pnlNodesOffline";
this.pnlNodesOffline.Size = new System.Drawing.Size(468, 212);
this.pnlNodesOffline.TabIndex = 4;
this.pnlNodesOffline.Visible = false;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.SystemColors.Highlight;
this.label2.Location = new System.Drawing.Point(4, 120);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(0, 33);
this.label2.TabIndex = 3;
//
// btnDismiss
//
this.btnDismiss.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnDismiss.ForeColor = System.Drawing.SystemColors.Highlight;
this.btnDismiss.Location = new System.Drawing.Point(167, 101);
this.btnDismiss.Name = "btnDismiss";
this.btnDismiss.Size = new System.Drawing.Size(138, 81);
this.btnDismiss.TabIndex = 2;
this.btnDismiss.Text = "Dismiss";
this.btnDismiss.UseVisualStyleBackColor = true;
this.btnDismiss.Click += new System.EventHandler(this.btnDismiss_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.SystemColors.Highlight;
this.label1.Location = new System.Drawing.Point(14, 30);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(440, 33);
this.label1.TabIndex = 1;
this.label1.Text = "Two or more nodes are offline!";
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// timerSaveStatusPage
//
this.timerSaveStatusPage.Enabled = true;
this.timerSaveStatusPage.Interval = 60000;
this.timerSaveStatusPage.Tick += new System.EventHandler(this.timerSaveStatusPage_Tick);
//
// FeanorClient
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.DimGray;
this.ClientSize = new System.Drawing.Size(674, 494);
this.Controls.Add(this.pnlNodesOffline);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.dgvChambers);
this.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
this.HelpButton = true;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FeanorClient";
this.Text = "Feanor - Clients";
this.TransparencyKey = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(61)))), ((int)(((byte)(76)))));
this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FeanorClient_FormClosing);
this.Load += new System.EventHandler(this.FeanorClient_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvChambers)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.panel3.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
this.pnlNodesOffline.ResumeLayout(false);
this.pnlNodesOffline.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label lblStatus;
private System.Windows.Forms.DataGridView dgvChambers;
private System.Windows.Forms.Timer timer;
private System.Windows.Forms.CheckBox cboxShowAll;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip2;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.ProgressBar PercProgress;
private System.Windows.Forms.RichTextBox statusPercentage;
private System.Windows.Forms.ErrorProvider errorProvider1;
public System.Windows.Forms.Timer LastStartupTimer;
private System.Windows.Forms.Timer UpdateRaspberryTime;
private System.Windows.Forms.DataGridViewTextBoxColumn dgvChambersColMIDS;
private System.Windows.Forms.DataGridViewTextBoxColumn dgvChambersColNetwork;
private System.Windows.Forms.DataGridViewTextBoxColumn dgvChambersColStatus;
private System.Windows.Forms.DataGridViewTextBoxColumn dgvChambersColHTTP;
private System.Windows.Forms.Panel pnlNodesOffline;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnDismiss;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Timer timerSaveStatusPage;
}
}