-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHubEdit.cs
More file actions
108 lines (83 loc) · 3.17 KB
/
HubEdit.cs
File metadata and controls
108 lines (83 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using YoctoVisualisation;
namespace YoctoVisualization
{
public partial class HubEdit : Form
{
bool ok ;
public HubEdit()
{
InitializeComponent();
}
public bool newHub(out Hub h)
{
Text = "New hub connection";
ok = false;
protocolChooser.SelectedIndex = 0; protocolChooser.BackColor = Color.White;
addressChooser.Text = ""; addressChooser.BackColor = Color.White;
portChooser.Text = ""; portChooser.BackColor = Color.White;
pathChooser.Text = ""; pathChooser.BackColor = Color.White;
usernameChooser.Text = ""; usernameChooser.BackColor = Color.White;
passwordChooser.Text = ""; passwordChooser.BackColor = Color.White;
new InputFieldManager(addressChooser, InputFieldManager.dataType.DATA_STRING, false, Double.NaN, Double.NaN, null);
new InputFieldManager(portChooser, InputFieldManager.dataType.DATA_STRICT_POSITIVE_INT, true, Double.NaN, Double.NaN, null);
ShowDialog();
if (ok)
{
h = new Hub(Hub.HubType.REMOTEHUB,
protocolChooser.SelectedIndex == 0 ? "ws" : "http",
usernameChooser.Text, passwordChooser.Text,
addressChooser.Text, portChooser.Text,pathChooser.Text);
} else h = null;
return ok;
}
public bool editHub(ref Hub h)
{
Text = "Edit hub connection";
protocolChooser.SelectedIndex = h.protocol == "ws" ?0:1; protocolChooser.BackColor = Color.White;
addressChooser.Text =h.addr; addressChooser.BackColor = Color.White;
portChooser.Text = h.port; portChooser.BackColor = Color.White;
pathChooser.Text = h.path; pathChooser.BackColor = Color.White;
usernameChooser.Text = h.user; usernameChooser.BackColor = Color.White;
passwordChooser.Text = h.clearPassword; passwordChooser.BackColor = Color.White;
ShowDialog();
if (ok)
{
h = new Hub(Hub.HubType.REMOTEHUB,
protocolChooser.SelectedIndex == 0 ? "ws" : "http",
usernameChooser.Text, passwordChooser.Text,
addressChooser.Text, portChooser.Text, pathChooser.Text);
}
return ok;
}
private void button1_Click(object sender, EventArgs e)
{
if (addressChooser.Text.Trim() =="")
{
MessageBox.Show("Address cannot be empty.");
return;
}
if ((addressChooser.Text.Trim() == "127.0.0.1")
&& (usernameChooser.Text.Trim() == "")
&& (passwordChooser.Text.Trim() == "")
&& (portChooser.Text.Trim() == "")
&& (pathChooser.Text.Trim() == ""))
{
MessageBox.Show("Use the check-box above the connection list to use a local VirtualHub with default parameters.");
return;
}
ok = true; Close();
}
private void button2_Click(object sender, EventArgs e)
{
ok = false; Close();
}
}
}