Korero – Blame information for rev 2

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 
2 using System.Windows.Forms;
3  
4 namespace Korero.Chat
5 {
6 partial class ChatForm
7 {
8 /// <summary>
9 /// Required designer variable.
10 /// </summary>
11 private System.ComponentModel.IContainer components = null;
12  
13 #region Windows Form Designer generated code
14  
15 /// <summary>
16 /// Required method for Designer support - do not modify
17 /// the contents of this method with the code editor.
18 /// </summary>
19 private void InitializeComponent()
20 {
21 this.components = new System.ComponentModel.Container();
22 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChatForm));
23 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
24 this.menuStrip1 = new System.Windows.Forms.MenuStrip();
25 this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
26 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
27 this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
28 this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
29 this.setAutoResponseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
30 this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
31 this.chatsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
32 this.openAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
33 this.closeAllToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
34 this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
35 this.statusStrip1 = new System.Windows.Forms.StatusStrip();
36 this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
37 this.button1 = new System.Windows.Forms.Button();
38 this.typeTextBox = new System.Windows.Forms.TextBox();
39 this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
40 this.splitContainer1 = new System.Windows.Forms.SplitContainer();
41 this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
42 this.chatTextBox = new Korero.Utilities.Controls.ReadOnlyRichTextBox();
43 this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
44 this.searchTextBox = new System.Windows.Forms.TextBox();
45 this.label1 = new System.Windows.Forms.Label();
46 this.chatListBox = new System.Windows.Forms.ListBox();
47 this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
48 this.profileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
49 this.payToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
50 this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
51 this.offerTeleportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
52 this.addToFriendsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
53 this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
54 this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
55 this.tableLayoutPanel1.SuspendLayout();
56 this.menuStrip1.SuspendLayout();
57 this.tableLayoutPanel3.SuspendLayout();
58 this.tableLayoutPanel2.SuspendLayout();
59 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
60 this.splitContainer1.Panel1.SuspendLayout();
61 this.splitContainer1.Panel2.SuspendLayout();
62 this.splitContainer1.SuspendLayout();
63 this.tableLayoutPanel4.SuspendLayout();
64 this.tableLayoutPanel5.SuspendLayout();
65 this.contextMenuStrip1.SuspendLayout();
66 this.SuspendLayout();
67 //
68 // tableLayoutPanel1
69 //
70 this.tableLayoutPanel1.ColumnCount = 1;
71 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
72 this.tableLayoutPanel1.Controls.Add(this.menuStrip1, 0, 0);
73 this.tableLayoutPanel1.Controls.Add(this.statusStrip1, 0, 3);
74 this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 2);
75 this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 1);
76 this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
77 this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
78 this.tableLayoutPanel1.Name = "tableLayoutPanel1";
79 this.tableLayoutPanel1.RowCount = 4;
80 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
81 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
82 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
83 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
84 this.tableLayoutPanel1.Size = new System.Drawing.Size(800, 450);
85 this.tableLayoutPanel1.TabIndex = 0;
86 //
87 // menuStrip1
88 //
89 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
90 this.fileToolStripMenuItem,
91 this.chatsToolStripMenuItem,
92 this.toolStripComboBox2});
93 this.menuStrip1.Location = new System.Drawing.Point(0, 0);
94 this.menuStrip1.Name = "menuStrip1";
95 this.menuStrip1.Size = new System.Drawing.Size(800, 25);
96 this.menuStrip1.TabIndex = 2;
97 this.menuStrip1.Text = "menuStrip1";
98 //
99 // fileToolStripMenuItem
100 //
101 this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
102 this.toolStripSeparator1,
103 this.newToolStripMenuItem,
104 this.toolStripSeparator2,
105 this.setAutoResponseToolStripMenuItem,
106 this.toolStripSeparator3});
107 this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
2 office 108 this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 21);
1 office 109 this.fileToolStripMenuItem.Text = "File";
110 //
111 // toolStripSeparator1
112 //
113 this.toolStripSeparator1.Name = "toolStripSeparator1";
114 this.toolStripSeparator1.Size = new System.Drawing.Size(156, 6);
115 //
116 // newToolStripMenuItem
117 //
118 this.newToolStripMenuItem.Image = global::Korero.Properties.Resources._new;
119 this.newToolStripMenuItem.Name = "newToolStripMenuItem";
120 this.newToolStripMenuItem.Size = new System.Drawing.Size(159, 22);
121 this.newToolStripMenuItem.Text = "New...";
122 this.newToolStripMenuItem.Click += new System.EventHandler(this.NewToolStripMenuItem_Click);
123 //
124 // toolStripSeparator2
125 //
126 this.toolStripSeparator2.Name = "toolStripSeparator2";
127 this.toolStripSeparator2.Size = new System.Drawing.Size(156, 6);
128 //
129 // setAutoResponseToolStripMenuItem
130 //
131 this.setAutoResponseToolStripMenuItem.Image = global::Korero.Properties.Resources.social_responsibility;
132 this.setAutoResponseToolStripMenuItem.Name = "setAutoResponseToolStripMenuItem";
133 this.setAutoResponseToolStripMenuItem.Size = new System.Drawing.Size(159, 22);
134 this.setAutoResponseToolStripMenuItem.Text = "Auto Response...";
135 this.setAutoResponseToolStripMenuItem.Click += new System.EventHandler(this.SetAutoResponseToolStripMenuItem_Click);
136 //
137 // toolStripSeparator3
138 //
139 this.toolStripSeparator3.Name = "toolStripSeparator3";
140 this.toolStripSeparator3.Size = new System.Drawing.Size(156, 6);
141 //
142 // chatsToolStripMenuItem
143 //
144 this.chatsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
145 this.openAllToolStripMenuItem,
146 this.closeAllToolStripMenuItem1});
147 this.chatsToolStripMenuItem.Name = "chatsToolStripMenuItem";
148 this.chatsToolStripMenuItem.Size = new System.Drawing.Size(47, 21);
149 this.chatsToolStripMenuItem.Text = "Chats";
150 //
151 // openAllToolStripMenuItem
152 //
153 this.openAllToolStripMenuItem.Image = global::Korero.Properties.Resources.openfile;
154 this.openAllToolStripMenuItem.Name = "openAllToolStripMenuItem";
2 office 155 this.openAllToolStripMenuItem.Size = new System.Drawing.Size(113, 22);
1 office 156 this.openAllToolStripMenuItem.Text = "Open all";
157 this.openAllToolStripMenuItem.Click += new System.EventHandler(this.OpenAllToolStripMenuItem_Click);
158 //
159 // closeAllToolStripMenuItem1
160 //
161 this.closeAllToolStripMenuItem1.Image = global::Korero.Properties.Resources.closefile;
162 this.closeAllToolStripMenuItem1.Name = "closeAllToolStripMenuItem1";
2 office 163 this.closeAllToolStripMenuItem1.Size = new System.Drawing.Size(113, 22);
1 office 164 this.closeAllToolStripMenuItem1.Text = "Close all";
165 this.closeAllToolStripMenuItem1.Click += new System.EventHandler(this.CloseAllToolStripMenuItem1_Click);
166 //
167 // toolStripComboBox2
168 //
169 this.toolStripComboBox2.AutoCompleteCustomSource.AddRange(new string[] {
170 "Available",
171 "Away"});
172 this.toolStripComboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
173 this.toolStripComboBox2.Items.AddRange(new object[] {
174 "Available",
175 "Away"});
176 this.toolStripComboBox2.Name = "toolStripComboBox2";
177 this.toolStripComboBox2.Size = new System.Drawing.Size(121, 21);
178 this.toolStripComboBox2.Text = global::Korero.Properties.Settings.Default.CurrentStatus;
179 this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.ToolStripComboBox2_SelectedIndexChanged);
180 //
181 // statusStrip1
182 //
183 this.statusStrip1.Location = new System.Drawing.Point(0, 428);
184 this.statusStrip1.Name = "statusStrip1";
185 this.statusStrip1.Size = new System.Drawing.Size(800, 22);
186 this.statusStrip1.TabIndex = 1;
187 this.statusStrip1.Text = "statusStrip1";
188 //
189 // tableLayoutPanel3
190 //
191 this.tableLayoutPanel3.ColumnCount = 2;
192 this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 82.11587F));
193 this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 17.88413F));
194 this.tableLayoutPanel3.Controls.Add(this.button1, 0, 0);
195 this.tableLayoutPanel3.Controls.Add(this.typeTextBox, 0, 0);
196 this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Bottom;
197 this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 399);
198 this.tableLayoutPanel3.Name = "tableLayoutPanel3";
199 this.tableLayoutPanel3.RowCount = 1;
200 this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
201 this.tableLayoutPanel3.Size = new System.Drawing.Size(794, 26);
202 this.tableLayoutPanel3.TabIndex = 3;
203 //
204 // button1
205 //
206 this.button1.Dock = System.Windows.Forms.DockStyle.Fill;
207 this.button1.Location = new System.Drawing.Point(655, 3);
208 this.button1.Name = "button1";
209 this.button1.Size = new System.Drawing.Size(136, 20);
210 this.button1.TabIndex = 2;
211 this.button1.Text = "Send";
212 this.button1.UseVisualStyleBackColor = true;
213 this.button1.Click += new System.EventHandler(this.Button1_Click);
214 //
215 // typeTextBox
216 //
217 this.typeTextBox.BackColor = System.Drawing.Color.White;
218 this.typeTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
219 this.typeTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
220 this.typeTextBox.Location = new System.Drawing.Point(3, 3);
221 this.typeTextBox.MaxLength = 1023;
222 this.typeTextBox.Name = "typeTextBox";
223 this.typeTextBox.Size = new System.Drawing.Size(646, 20);
224 this.typeTextBox.TabIndex = 1;
225 this.typeTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TextBox1_KeyPress);
226 //
227 // tableLayoutPanel2
228 //
229 this.tableLayoutPanel2.ColumnCount = 1;
230 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
231 this.tableLayoutPanel2.Controls.Add(this.splitContainer1, 0, 0);
232 this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
233 this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 28);
234 this.tableLayoutPanel2.Name = "tableLayoutPanel2";
235 this.tableLayoutPanel2.RowCount = 1;
236 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
237 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 366F));
238 this.tableLayoutPanel2.Size = new System.Drawing.Size(794, 365);
239 this.tableLayoutPanel2.TabIndex = 0;
240 //
241 // splitContainer1
242 //
243 this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
244 this.splitContainer1.DataBindings.Add(new System.Windows.Forms.Binding("SplitterDistance", global::Korero.Properties.Settings.Default, "ChatPanelSplitterDistance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
245 this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
246 this.splitContainer1.Location = new System.Drawing.Point(3, 3);
247 this.splitContainer1.Name = "splitContainer1";
248 //
249 // splitContainer1.Panel1
250 //
251 this.splitContainer1.Panel1.Controls.Add(this.tableLayoutPanel4);
252 //
253 // splitContainer1.Panel2
254 //
255 this.splitContainer1.Panel2.Controls.Add(this.chatListBox);
256 this.splitContainer1.Size = new System.Drawing.Size(788, 360);
257 this.splitContainer1.SplitterDistance = global::Korero.Properties.Settings.Default.ChatPanelSplitterDistance;
258 this.splitContainer1.SplitterWidth = 16;
259 this.splitContainer1.TabIndex = 5;
260 this.splitContainer1.Paint += new System.Windows.Forms.PaintEventHandler(this.SplitContainer1_Paint);
261 //
262 // tableLayoutPanel4
263 //
264 this.tableLayoutPanel4.ColumnCount = 1;
265 this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
266 this.tableLayoutPanel4.Controls.Add(this.chatTextBox, 0, 0);
267 this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel5, 0, 1);
268 this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
269 this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
270 this.tableLayoutPanel4.Name = "tableLayoutPanel4";
271 this.tableLayoutPanel4.RowCount = 2;
272 this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 90F));
273 this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
274 this.tableLayoutPanel4.Size = new System.Drawing.Size(628, 358);
275 this.tableLayoutPanel4.TabIndex = 5;
276 //
277 // chatTextBox
278 //
279 this.chatTextBox.BackColor = System.Drawing.Color.White;
280 this.chatTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
281 this.chatTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
282 this.chatTextBox.Location = new System.Drawing.Point(3, 3);
283 this.chatTextBox.MaxLength = 0;
284 this.chatTextBox.Name = "chatTextBox";
285 this.chatTextBox.ReadOnly = true;
286 this.chatTextBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
287 this.chatTextBox.Size = new System.Drawing.Size(622, 316);
288 this.chatTextBox.TabIndex = 4;
289 this.chatTextBox.Text = "";
290 this.chatTextBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.ChatTextBox_LinkClicked);
291 this.chatTextBox.TextChanged += new System.EventHandler(this.ChatTextBox_TextChanged);
292 //
293 // tableLayoutPanel5
294 //
295 this.tableLayoutPanel5.ColumnCount = 2;
296 this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
297 this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
298 this.tableLayoutPanel5.Controls.Add(this.searchTextBox, 1, 0);
299 this.tableLayoutPanel5.Controls.Add(this.label1, 0, 0);
300 this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
301 this.tableLayoutPanel5.Location = new System.Drawing.Point(3, 325);
302 this.tableLayoutPanel5.Name = "tableLayoutPanel5";
303 this.tableLayoutPanel5.RowCount = 1;
304 this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
305 this.tableLayoutPanel5.Size = new System.Drawing.Size(622, 30);
306 this.tableLayoutPanel5.TabIndex = 5;
307 //
308 // searchTextBox
309 //
310 this.searchTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
311 this.searchTextBox.Location = new System.Drawing.Point(50, 3);
312 this.searchTextBox.Name = "searchTextBox";
313 this.searchTextBox.Size = new System.Drawing.Size(569, 20);
314 this.searchTextBox.TabIndex = 6;
315 this.searchTextBox.TextChanged += new System.EventHandler(this.SearchTextBox_TextChanged);
316 //
317 // label1
318 //
319 this.label1.Anchor = System.Windows.Forms.AnchorStyles.Right;
320 this.label1.AutoSize = true;
321 this.label1.Location = new System.Drawing.Point(3, 8);
322 this.label1.Name = "label1";
323 this.label1.Size = new System.Drawing.Size(41, 13);
324 this.label1.TabIndex = 7;
325 this.label1.Text = "Search";
326 //
327 // chatListBox
328 //
329 this.chatListBox.BackColor = System.Drawing.Color.White;
330 this.chatListBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
331 this.chatListBox.ContextMenuStrip = this.contextMenuStrip1;
332 this.chatListBox.DisplayMember = "Name";
333 this.chatListBox.Dock = System.Windows.Forms.DockStyle.Fill;
334 this.chatListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
335 this.chatListBox.FormattingEnabled = true;
336 this.chatListBox.IntegralHeight = false;
337 this.chatListBox.Location = new System.Drawing.Point(0, 0);
338 this.chatListBox.Name = "chatListBox";
339 this.chatListBox.ScrollAlwaysVisible = true;
340 this.chatListBox.Size = new System.Drawing.Size(140, 358);
341 this.chatListBox.TabIndex = 3;
342 this.chatListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.ChatListBox_DrawItem);
343 this.chatListBox.SelectedIndexChanged += new System.EventHandler(this.ListBox1_SelectedIndexChanged);
344 //
345 // contextMenuStrip1
346 //
347 this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
348 this.profileToolStripMenuItem,
349 this.payToolStripMenuItem,
350 this.toolStripSeparator4,
351 this.offerTeleportToolStripMenuItem,
352 this.addToFriendsToolStripMenuItem,
353 this.toolStripSeparator5,
354 this.closeToolStripMenuItem});
355 this.contextMenuStrip1.Name = "contextMenuStrip1";
2 office 356 this.contextMenuStrip1.Size = new System.Drawing.Size(145, 126);
1 office 357 //
358 // profileToolStripMenuItem
359 //
360 this.profileToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("profileToolStripMenuItem.Image")));
361 this.profileToolStripMenuItem.Name = "profileToolStripMenuItem";
2 office 362 this.profileToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
1 office 363 this.profileToolStripMenuItem.Text = "Profile...";
364 this.profileToolStripMenuItem.Click += new System.EventHandler(this.ProfileToolStripMenuItem_Click);
365 //
366 // payToolStripMenuItem
367 //
368 this.payToolStripMenuItem.Image = global::Korero.Properties.Resources.salary;
369 this.payToolStripMenuItem.Name = "payToolStripMenuItem";
2 office 370 this.payToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
1 office 371 this.payToolStripMenuItem.Text = "Pay...";
372 this.payToolStripMenuItem.Click += new System.EventHandler(this.PayToolStripMenuItem_Click);
373 //
374 // toolStripSeparator4
375 //
376 this.toolStripSeparator4.Name = "toolStripSeparator4";
2 office 377 this.toolStripSeparator4.Size = new System.Drawing.Size(141, 6);
1 office 378 //
379 // offerTeleportToolStripMenuItem
380 //
381 this.offerTeleportToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("offerTeleportToolStripMenuItem.Image")));
382 this.offerTeleportToolStripMenuItem.Name = "offerTeleportToolStripMenuItem";
2 office 383 this.offerTeleportToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
1 office 384 this.offerTeleportToolStripMenuItem.Text = "Offer Teleport";
385 this.offerTeleportToolStripMenuItem.Click += new System.EventHandler(this.OfferTeleportToolStripMenuItem_Click);
386 //
387 // addToFriendsToolStripMenuItem
388 //
389 this.addToFriendsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("addToFriendsToolStripMenuItem.Image")));
390 this.addToFriendsToolStripMenuItem.Name = "addToFriendsToolStripMenuItem";
2 office 391 this.addToFriendsToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
1 office 392 this.addToFriendsToolStripMenuItem.Text = "Add to Friends";
393 this.addToFriendsToolStripMenuItem.Click += new System.EventHandler(this.AddToFriendsToolStripMenuItem_Click);
394 //
395 // toolStripSeparator5
396 //
397 this.toolStripSeparator5.Name = "toolStripSeparator5";
2 office 398 this.toolStripSeparator5.Size = new System.Drawing.Size(141, 6);
1 office 399 //
400 // closeToolStripMenuItem
401 //
402 this.closeToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("closeToolStripMenuItem.Image")));
403 this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
2 office 404 this.closeToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
1 office 405 this.closeToolStripMenuItem.Text = "Close";
406 this.closeToolStripMenuItem.Click += new System.EventHandler(this.CloseToolStripMenuItem_Click);
407 //
408 // ChatForm
409 //
410 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
411 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
412 this.ClientSize = new System.Drawing.Size(800, 450);
413 this.Controls.Add(this.tableLayoutPanel1);
414 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
415 this.Name = "ChatForm";
416 this.Text = "Korero: Chat";
417 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ChatForm_FormClosing);
2 office 418 this.Load += new System.EventHandler(this.ChatForm_Load);
1 office 419 this.tableLayoutPanel1.ResumeLayout(false);
420 this.tableLayoutPanel1.PerformLayout();
421 this.menuStrip1.ResumeLayout(false);
422 this.menuStrip1.PerformLayout();
423 this.tableLayoutPanel3.ResumeLayout(false);
424 this.tableLayoutPanel3.PerformLayout();
425 this.tableLayoutPanel2.ResumeLayout(false);
426 this.splitContainer1.Panel1.ResumeLayout(false);
427 this.splitContainer1.Panel2.ResumeLayout(false);
428 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
429 this.splitContainer1.ResumeLayout(false);
430 this.tableLayoutPanel4.ResumeLayout(false);
431 this.tableLayoutPanel5.ResumeLayout(false);
432 this.tableLayoutPanel5.PerformLayout();
433 this.contextMenuStrip1.ResumeLayout(false);
434 this.ResumeLayout(false);
435  
436 }
437  
438 #endregion
439 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
440 private System.Windows.Forms.MenuStrip menuStrip1;
441 private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
442 private System.Windows.Forms.StatusStrip statusStrip1;
443 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
444 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
445 private System.Windows.Forms.Button button1;
446 private System.Windows.Forms.TextBox typeTextBox;
447 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
448 private System.Windows.Forms.ListBox chatListBox;
449 private Korero.Utilities.Controls.ReadOnlyRichTextBox chatTextBox;
450 private System.Windows.Forms.SplitContainer splitContainer1;
451 private System.Windows.Forms.ToolStripMenuItem newToolStripMenuItem;
452 private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
453 private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
454 private System.Windows.Forms.ToolStripMenuItem chatsToolStripMenuItem;
455 private System.Windows.Forms.ToolStripMenuItem openAllToolStripMenuItem;
456 private System.Windows.Forms.ToolStripMenuItem closeAllToolStripMenuItem1;
457 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
458 private TableLayoutPanel tableLayoutPanel5;
459 private TextBox searchTextBox;
460 private Label label1;
461 private ToolStripMenuItem profileToolStripMenuItem;
462 private ToolStripMenuItem addToFriendsToolStripMenuItem;
463 private ToolStripMenuItem setAutoResponseToolStripMenuItem;
464 private ToolStripSeparator toolStripSeparator2;
465 private ToolStripSeparator toolStripSeparator3;
466 private ToolStripComboBox toolStripComboBox2;
467 private ToolStripSeparator toolStripSeparator4;
468 private ToolStripMenuItem offerTeleportToolStripMenuItem;
469 private ToolStripSeparator toolStripSeparator5;
470 private ToolStripMenuItem payToolStripMenuItem;
471 }
472 }
473