1 namespace Icinga
2 {
3 	partial class EndpointInputBox
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>
Dispose(bool disposing)14 		protected override void Dispose(bool disposing)
15 		{
16 			if (disposing && (components != null)) {
17 				components.Dispose();
18 			}
19 			base.Dispose(disposing);
20 		}
21 
22 		#region Windows Form Designer generated code
23 
24 		/// <summary>
25 		/// Required method for Designer support - do not modify
26 		/// the contents of this method with the code editor.
27 		/// </summary>
InitializeComponent()28 		private void InitializeComponent()
29 		{
30 			this.btnOK = new System.Windows.Forms.Button();
31 			this.btnCancel = new System.Windows.Forms.Button();
32 			this.txtHost = new System.Windows.Forms.TextBox();
33 			this.txtPort = new System.Windows.Forms.TextBox();
34 			this.label1 = new System.Windows.Forms.Label();
35 			this.lblHost = new System.Windows.Forms.Label();
36 			this.lblPort = new System.Windows.Forms.Label();
37 			this.lblInstanceName = new System.Windows.Forms.Label();
38 			this.txtInstanceName = new System.Windows.Forms.TextBox();
39 			this.chkConnect = new System.Windows.Forms.CheckBox();
40 			this.SuspendLayout();
41 			//
42 			// btnOK
43 			//
44 			this.btnOK.Location = new System.Drawing.Point(196, 171);
45 			this.btnOK.Name = "btnOK";
46 			this.btnOK.Size = new System.Drawing.Size(75, 23);
47 			this.btnOK.TabIndex = 4;
48 			this.btnOK.Text = "OK";
49 			this.btnOK.UseVisualStyleBackColor = true;
50 			this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
51 			//
52 			// btnCancel
53 			//
54 			this.btnCancel.CausesValidation = false;
55 			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
56 			this.btnCancel.Location = new System.Drawing.Point(277, 171);
57 			this.btnCancel.Name = "btnCancel";
58 			this.btnCancel.Size = new System.Drawing.Size(75, 23);
59 			this.btnCancel.TabIndex = 5;
60 			this.btnCancel.Text = "Cancel";
61 			this.btnCancel.UseVisualStyleBackColor = true;
62 			//
63 			// txtHost
64 			//
65 			this.txtHost.Location = new System.Drawing.Point(101, 103);
66 			this.txtHost.Name = "txtHost";
67 			this.txtHost.Size = new System.Drawing.Size(251, 20);
68 			this.txtHost.TabIndex = 2;
69 			//
70 			// txtPort
71 			//
72 			this.txtPort.Location = new System.Drawing.Point(101, 134);
73 			this.txtPort.Name = "txtPort";
74 			this.txtPort.Size = new System.Drawing.Size(100, 20);
75 			this.txtPort.TabIndex = 3;
76 			this.txtPort.Text = "5665";
77 			//
78 			// label1
79 			//
80 			this.label1.AutoSize = true;
81 			this.label1.Location = new System.Drawing.Point(12, 9);
82 			this.label1.Name = "label1";
83 			this.label1.Size = new System.Drawing.Size(276, 13);
84 			this.label1.TabIndex = 4;
85 			this.label1.Text = "Please enter the connection details for the new endpoint:";
86 			//
87 			// lblHost
88 			//
89 			this.lblHost.AutoSize = true;
90 			this.lblHost.Location = new System.Drawing.Point(15, 106);
91 			this.lblHost.Name = "lblHost";
92 			this.lblHost.Size = new System.Drawing.Size(32, 13);
93 			this.lblHost.TabIndex = 5;
94 			this.lblHost.Text = "Host:";
95 			//
96 			// lblPort
97 			//
98 			this.lblPort.AutoSize = true;
99 			this.lblPort.Location = new System.Drawing.Point(15, 137);
100 			this.lblPort.Name = "lblPort";
101 			this.lblPort.Size = new System.Drawing.Size(29, 13);
102 			this.lblPort.TabIndex = 6;
103 			this.lblPort.Text = "Port:";
104 			//
105 			// lblInstanceName
106 			//
107 			this.lblInstanceName.AutoSize = true;
108 			this.lblInstanceName.Location = new System.Drawing.Point(15, 41);
109 			this.lblInstanceName.Name = "lblInstanceName";
110 			this.lblInstanceName.Size = new System.Drawing.Size(82, 13);
111 			this.lblInstanceName.TabIndex = 7;
112 			this.lblInstanceName.Text = "Instance Name:";
113 			//
114 			// txtInstanceName
115 			//
116 			this.txtInstanceName.Location = new System.Drawing.Point(101, 37);
117 			this.txtInstanceName.Name = "txtInstanceName";
118 			this.txtInstanceName.Size = new System.Drawing.Size(251, 20);
119 			this.txtInstanceName.TabIndex = 0;
120 			//
121 			// chkConnect
122 			//
123 			this.chkConnect.AutoSize = true;
124 			this.chkConnect.Checked = true;
125 			this.chkConnect.CheckState = System.Windows.Forms.CheckState.Checked;
126 			this.chkConnect.Location = new System.Drawing.Point(18, 73);
127 			this.chkConnect.Name = "chkConnect";
128 			this.chkConnect.Size = new System.Drawing.Size(141, 17);
129 			this.chkConnect.TabIndex = 1;
130 			this.chkConnect.Text = "Connect to this endpoint";
131 			this.chkConnect.UseVisualStyleBackColor = true;
132 			this.chkConnect.CheckedChanged += new System.EventHandler(this.chkConnect_CheckedChanged);
133 			//
134 			// EndpointInputBox
135 			//
136 			this.AcceptButton = this.btnOK;
137 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
138 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
139 			this.CancelButton = this.btnCancel;
140 			this.ClientSize = new System.Drawing.Size(360, 202);
141 			this.Controls.Add(this.chkConnect);
142 			this.Controls.Add(this.txtInstanceName);
143 			this.Controls.Add(this.lblInstanceName);
144 			this.Controls.Add(this.lblPort);
145 			this.Controls.Add(this.lblHost);
146 			this.Controls.Add(this.label1);
147 			this.Controls.Add(this.txtPort);
148 			this.Controls.Add(this.txtHost);
149 			this.Controls.Add(this.btnCancel);
150 			this.Controls.Add(this.btnOK);
151 			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
152 			this.MaximizeBox = false;
153 			this.MinimizeBox = false;
154 			this.Name = "EndpointInputBox";
155 			this.ShowIcon = false;
156 			this.ShowInTaskbar = false;
157 			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
158 			this.Text = "Add Endpoint";
159 			this.ResumeLayout(false);
160 			this.PerformLayout();
161 
162 		}
163 
164 		#endregion
165 
166 		private System.Windows.Forms.Button btnOK;
167 		private System.Windows.Forms.Button btnCancel;
168 		private System.Windows.Forms.Label label1;
169 		private System.Windows.Forms.Label lblHost;
170 		private System.Windows.Forms.Label lblPort;
171 		public System.Windows.Forms.TextBox txtHost;
172 		public System.Windows.Forms.TextBox txtPort;
173 		public System.Windows.Forms.TextBox txtInstanceName;
174 		private System.Windows.Forms.Label lblInstanceName;
175 		public System.Windows.Forms.CheckBox chkConnect;
176 	}
177 }