mirror of
https://github.com/Ylianst/MeshCentralRouter
synced 2025-12-15 07:43:38 +00:00
Moved source files and updated readme file.
This commit is contained in:
98
src/ServerUserControl.cs
Normal file
98
src/ServerUserControl.cs
Normal file
@@ -0,0 +1,98 @@
|
||||
/*
|
||||
Copyright 2009-2022 Intel Corporation
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace MeshCentralRouter
|
||||
{
|
||||
public partial class ServerUserControl : UserControl
|
||||
{
|
||||
private MainForm parent;
|
||||
public string key;
|
||||
public string name;
|
||||
public string info;
|
||||
public string url;
|
||||
public DateTime lastUpdate;
|
||||
private Color xbackColor;
|
||||
|
||||
public ServerUserControl(MainForm parent, string key, string name, string info, string url)
|
||||
{
|
||||
this.parent = parent;
|
||||
this.key = key;
|
||||
this.name = name;
|
||||
this.info = info;
|
||||
this.url = url;
|
||||
this.lastUpdate = DateTime.Now;
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void ServerUserControl_Load(object sender, EventArgs e)
|
||||
{
|
||||
serverNameLabel.Text = this.name;
|
||||
serverInfoLabel.Text = this.info;
|
||||
xbackColor = BackColor;
|
||||
BackColor = Color.Wheat;
|
||||
backTimer.Enabled = true;
|
||||
}
|
||||
|
||||
public bool Update(string name, string info, string url)
|
||||
{
|
||||
this.lastUpdate = DateTime.Now;
|
||||
|
||||
// Fix the name
|
||||
if (name == null) { name = this.name; }
|
||||
if (name == null) { name = Translate.T(Properties.Resources.MeshCentralTitle); }
|
||||
|
||||
// Don't replace a IPv4 address with a IPv6 one, or remove information
|
||||
if ((this.url.IndexOf("://[") == -1) && (url.IndexOf("://[") >= 0)) return false;
|
||||
if ((this.info != null) && (info == null)) return false;
|
||||
|
||||
// If any changes need to be made, make them now
|
||||
if ((this.name != name) || (this.info != info) || (this.url != url))
|
||||
{
|
||||
this.name = name;
|
||||
this.info = info;
|
||||
this.url = url;
|
||||
serverNameLabel.Text = this.name;
|
||||
if (this.info != null) { serverInfoLabel.Text = this.info; } else { serverInfoLabel.Text = url; }
|
||||
BackColor = Color.Wheat;
|
||||
backTimer.Enabled = true;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private void serverButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
//MouseEventArgs me = (MouseEventArgs)e;
|
||||
//if (me.Button == MouseButtons.Left) { parent.serverClick(this); }
|
||||
}
|
||||
|
||||
private void infoToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
//ServerInfoForm form = new ServerInfoForm(name, url, info, key);
|
||||
//form.ShowDialog(this);
|
||||
}
|
||||
|
||||
private void backTime_Tick(object sender, EventArgs e)
|
||||
{
|
||||
BackColor = xbackColor;
|
||||
backTimer.Enabled = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user