1 namespace KeePass.Forms
2 {
3 	partial class DataEditorForm
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 			{
18 				components.Dispose();
19 			}
20 			base.Dispose(disposing);
21 		}
22 
23 		#region Windows Form Designer generated code
24 
25 		/// <summary>
26 		/// Required method for Designer support - do not modify
27 		/// the contents of this method with the code editor.
28 		/// </summary>
InitializeComponent()29 		private void InitializeComponent()
30 		{
31 			this.m_menuMain = new KeePass.UI.CustomMenuStripEx();
32 			this.m_menuFile = new System.Windows.Forms.ToolStripMenuItem();
33 			this.m_menuFileSave = new System.Windows.Forms.ToolStripMenuItem();
34 			this.m_menuFileSep0 = new System.Windows.Forms.ToolStripSeparator();
35 			this.m_menuFileExit = new System.Windows.Forms.ToolStripMenuItem();
36 			this.m_menuEdit = new System.Windows.Forms.ToolStripMenuItem();
37 			this.m_menuEditUndo = new System.Windows.Forms.ToolStripMenuItem();
38 			this.m_menuEditRedo = new System.Windows.Forms.ToolStripMenuItem();
39 			this.m_menuEditSep0 = new System.Windows.Forms.ToolStripSeparator();
40 			this.m_menuEditCut = new System.Windows.Forms.ToolStripMenuItem();
41 			this.m_menuEditCopy = new System.Windows.Forms.ToolStripMenuItem();
42 			this.m_menuEditPaste = new System.Windows.Forms.ToolStripMenuItem();
43 			this.m_menuEditDelete = new System.Windows.Forms.ToolStripMenuItem();
44 			this.m_menuEditSep1 = new System.Windows.Forms.ToolStripSeparator();
45 			this.m_menuEditSelectAll = new System.Windows.Forms.ToolStripMenuItem();
46 			this.m_menuEditSep2 = new System.Windows.Forms.ToolStripSeparator();
47 			this.m_menuEditFind = new System.Windows.Forms.ToolStripMenuItem();
48 			this.m_menuView = new System.Windows.Forms.ToolStripMenuItem();
49 			this.m_menuViewFont = new System.Windows.Forms.ToolStripMenuItem();
50 			this.m_menuViewSep0 = new System.Windows.Forms.ToolStripSeparator();
51 			this.m_menuViewWordWrap = new System.Windows.Forms.ToolStripMenuItem();
52 			this.m_toolFile = new KeePass.UI.CustomToolStripEx();
53 			this.m_tbFileSave = new System.Windows.Forms.ToolStripButton();
54 			this.m_tbFileSep0 = new System.Windows.Forms.ToolStripSeparator();
55 			this.m_tbEditCut = new System.Windows.Forms.ToolStripButton();
56 			this.m_tbEditCopy = new System.Windows.Forms.ToolStripButton();
57 			this.m_tbEditPaste = new System.Windows.Forms.ToolStripButton();
58 			this.m_tbFileSep1 = new System.Windows.Forms.ToolStripSeparator();
59 			this.m_tbEditUndo = new System.Windows.Forms.ToolStripButton();
60 			this.m_tbEditRedo = new System.Windows.Forms.ToolStripButton();
61 			this.m_tbFileSep2 = new System.Windows.Forms.ToolStripSeparator();
62 			this.m_tbFind = new System.Windows.Forms.ToolStripTextBox();
63 			this.m_toolFormat = new KeePass.UI.CustomToolStripEx();
64 			this.m_tbFontCombo = new System.Windows.Forms.ToolStripComboBox();
65 			this.m_tbFontSizeCombo = new System.Windows.Forms.ToolStripComboBox();
66 			this.m_tbFormatSep0 = new System.Windows.Forms.ToolStripSeparator();
67 			this.m_tbFormatBold = new System.Windows.Forms.ToolStripButton();
68 			this.m_tbFormatItalic = new System.Windows.Forms.ToolStripButton();
69 			this.m_tbFormatUnderline = new System.Windows.Forms.ToolStripButton();
70 			this.m_tbFormatStrikeout = new System.Windows.Forms.ToolStripButton();
71 			this.m_tbFormatSep1 = new System.Windows.Forms.ToolStripSeparator();
72 			this.m_tbColorForeground = new System.Windows.Forms.ToolStripButton();
73 			this.m_tbColorBackground = new System.Windows.Forms.ToolStripButton();
74 			this.m_tbFormatSep2 = new System.Windows.Forms.ToolStripSeparator();
75 			this.m_tbAlignLeft = new System.Windows.Forms.ToolStripButton();
76 			this.m_tbAlignCenter = new System.Windows.Forms.ToolStripButton();
77 			this.m_tbAlignRight = new System.Windows.Forms.ToolStripButton();
78 			this.m_statusMain = new System.Windows.Forms.StatusStrip();
79 			this.m_tssStatusMain = new System.Windows.Forms.ToolStripStatusLabel();
80 			this.m_rtbText = new KeePass.UI.CustomRichTextBoxEx();
81 			this.m_menuMain.SuspendLayout();
82 			this.m_toolFile.SuspendLayout();
83 			this.m_toolFormat.SuspendLayout();
84 			this.m_statusMain.SuspendLayout();
85 			this.SuspendLayout();
86 			//
87 			// m_menuMain
88 			//
89 			this.m_menuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
90             this.m_menuFile,
91             this.m_menuEdit,
92             this.m_menuView});
93 			this.m_menuMain.Location = new System.Drawing.Point(0, 0);
94 			this.m_menuMain.Name = "m_menuMain";
95 			this.m_menuMain.Size = new System.Drawing.Size(608, 24);
96 			this.m_menuMain.TabIndex = 2;
97 			//
98 			// m_menuFile
99 			//
100 			this.m_menuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
101             this.m_menuFileSave,
102             this.m_menuFileSep0,
103             this.m_menuFileExit});
104 			this.m_menuFile.Name = "m_menuFile";
105 			this.m_menuFile.Size = new System.Drawing.Size(37, 20);
106 			this.m_menuFile.Text = "&File";
107 			//
108 			// m_menuFileSave
109 			//
110 			this.m_menuFileSave.Image = global::KeePass.Properties.Resources.B16x16_FileSave;
111 			this.m_menuFileSave.Name = "m_menuFileSave";
112 			this.m_menuFileSave.Size = new System.Drawing.Size(103, 22);
113 			this.m_menuFileSave.Text = "&Save";
114 			this.m_menuFileSave.Click += new System.EventHandler(this.OnFileSave);
115 			//
116 			// m_menuFileSep0
117 			//
118 			this.m_menuFileSep0.Name = "m_menuFileSep0";
119 			this.m_menuFileSep0.Size = new System.Drawing.Size(100, 6);
120 			//
121 			// m_menuFileExit
122 			//
123 			this.m_menuFileExit.Image = global::KeePass.Properties.Resources.B16x16_Exit;
124 			this.m_menuFileExit.Name = "m_menuFileExit";
125 			this.m_menuFileExit.Size = new System.Drawing.Size(103, 22);
126 			this.m_menuFileExit.Text = "&Close";
127 			this.m_menuFileExit.Click += new System.EventHandler(this.OnFileExit);
128 			//
129 			// m_menuEdit
130 			//
131 			this.m_menuEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
132             this.m_menuEditUndo,
133             this.m_menuEditRedo,
134             this.m_menuEditSep0,
135             this.m_menuEditCut,
136             this.m_menuEditCopy,
137             this.m_menuEditPaste,
138             this.m_menuEditDelete,
139             this.m_menuEditSep1,
140             this.m_menuEditSelectAll,
141             this.m_menuEditSep2,
142             this.m_menuEditFind});
143 			this.m_menuEdit.Name = "m_menuEdit";
144 			this.m_menuEdit.Size = new System.Drawing.Size(39, 20);
145 			this.m_menuEdit.Text = "&Edit";
146 			//
147 			// m_menuEditUndo
148 			//
149 			this.m_menuEditUndo.Image = global::KeePass.Properties.Resources.B16x16_Undo;
150 			this.m_menuEditUndo.Name = "m_menuEditUndo";
151 			this.m_menuEditUndo.Size = new System.Drawing.Size(122, 22);
152 			this.m_menuEditUndo.Text = "&Undo";
153 			this.m_menuEditUndo.Click += new System.EventHandler(this.OnEditUndo);
154 			//
155 			// m_menuEditRedo
156 			//
157 			this.m_menuEditRedo.Image = global::KeePass.Properties.Resources.B16x16_Redo;
158 			this.m_menuEditRedo.Name = "m_menuEditRedo";
159 			this.m_menuEditRedo.Size = new System.Drawing.Size(122, 22);
160 			this.m_menuEditRedo.Text = "&Redo";
161 			this.m_menuEditRedo.Click += new System.EventHandler(this.OnEditRedo);
162 			//
163 			// m_menuEditSep0
164 			//
165 			this.m_menuEditSep0.Name = "m_menuEditSep0";
166 			this.m_menuEditSep0.Size = new System.Drawing.Size(119, 6);
167 			//
168 			// m_menuEditCut
169 			//
170 			this.m_menuEditCut.Image = global::KeePass.Properties.Resources.B16x16_Cut;
171 			this.m_menuEditCut.Name = "m_menuEditCut";
172 			this.m_menuEditCut.Size = new System.Drawing.Size(122, 22);
173 			this.m_menuEditCut.Text = "Cu&t";
174 			this.m_menuEditCut.Click += new System.EventHandler(this.OnEditCut);
175 			//
176 			// m_menuEditCopy
177 			//
178 			this.m_menuEditCopy.Image = global::KeePass.Properties.Resources.B16x16_EditCopy;
179 			this.m_menuEditCopy.Name = "m_menuEditCopy";
180 			this.m_menuEditCopy.Size = new System.Drawing.Size(122, 22);
181 			this.m_menuEditCopy.Text = "&Copy";
182 			this.m_menuEditCopy.Click += new System.EventHandler(this.OnEditCopy);
183 			//
184 			// m_menuEditPaste
185 			//
186 			this.m_menuEditPaste.Image = global::KeePass.Properties.Resources.B16x16_EditPaste;
187 			this.m_menuEditPaste.Name = "m_menuEditPaste";
188 			this.m_menuEditPaste.Size = new System.Drawing.Size(122, 22);
189 			this.m_menuEditPaste.Text = "&Paste";
190 			this.m_menuEditPaste.Click += new System.EventHandler(this.OnEditPaste);
191 			//
192 			// m_menuEditDelete
193 			//
194 			this.m_menuEditDelete.Image = global::KeePass.Properties.Resources.B16x16_EditDelete;
195 			this.m_menuEditDelete.Name = "m_menuEditDelete";
196 			this.m_menuEditDelete.Size = new System.Drawing.Size(122, 22);
197 			this.m_menuEditDelete.Text = "&Delete";
198 			this.m_menuEditDelete.Click += new System.EventHandler(this.OnEditDelete);
199 			//
200 			// m_menuEditSep1
201 			//
202 			this.m_menuEditSep1.Name = "m_menuEditSep1";
203 			this.m_menuEditSep1.Size = new System.Drawing.Size(119, 6);
204 			//
205 			// m_menuEditSelectAll
206 			//
207 			this.m_menuEditSelectAll.Name = "m_menuEditSelectAll";
208 			this.m_menuEditSelectAll.Size = new System.Drawing.Size(122, 22);
209 			this.m_menuEditSelectAll.Text = "Select &All";
210 			this.m_menuEditSelectAll.Click += new System.EventHandler(this.OnEditSelectAll);
211 			//
212 			// m_menuEditSep2
213 			//
214 			this.m_menuEditSep2.Name = "m_menuEditSep2";
215 			this.m_menuEditSep2.Size = new System.Drawing.Size(119, 6);
216 			//
217 			// m_menuEditFind
218 			//
219 			this.m_menuEditFind.Image = global::KeePass.Properties.Resources.B16x16_XMag;
220 			this.m_menuEditFind.Name = "m_menuEditFind";
221 			this.m_menuEditFind.Size = new System.Drawing.Size(122, 22);
222 			this.m_menuEditFind.Text = "&Find...";
223 			this.m_menuEditFind.Click += new System.EventHandler(this.OnEditFind);
224 			//
225 			// m_menuView
226 			//
227 			this.m_menuView.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
228             this.m_menuViewFont,
229             this.m_menuViewSep0,
230             this.m_menuViewWordWrap});
231 			this.m_menuView.Name = "m_menuView";
232 			this.m_menuView.Size = new System.Drawing.Size(44, 20);
233 			this.m_menuView.Text = "&View";
234 			//
235 			// m_menuViewFont
236 			//
237 			this.m_menuViewFont.Name = "m_menuViewFont";
238 			this.m_menuViewFont.Size = new System.Drawing.Size(134, 22);
239 			this.m_menuViewFont.Text = "&Font...";
240 			this.m_menuViewFont.Click += new System.EventHandler(this.OnViewFont);
241 			//
242 			// m_menuViewSep0
243 			//
244 			this.m_menuViewSep0.Name = "m_menuViewSep0";
245 			this.m_menuViewSep0.Size = new System.Drawing.Size(131, 6);
246 			//
247 			// m_menuViewWordWrap
248 			//
249 			this.m_menuViewWordWrap.Name = "m_menuViewWordWrap";
250 			this.m_menuViewWordWrap.Size = new System.Drawing.Size(134, 22);
251 			this.m_menuViewWordWrap.Text = "&Word Wrap";
252 			this.m_menuViewWordWrap.Click += new System.EventHandler(this.OnViewWordWrap);
253 			//
254 			// m_toolFile
255 			//
256 			this.m_toolFile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
257             this.m_tbFileSave,
258             this.m_tbFileSep0,
259             this.m_tbEditCut,
260             this.m_tbEditCopy,
261             this.m_tbEditPaste,
262             this.m_tbFileSep1,
263             this.m_tbEditUndo,
264             this.m_tbEditRedo,
265             this.m_tbFileSep2,
266             this.m_tbFind});
267 			this.m_toolFile.Location = new System.Drawing.Point(0, 24);
268 			this.m_toolFile.Name = "m_toolFile";
269 			this.m_toolFile.Size = new System.Drawing.Size(608, 25);
270 			this.m_toolFile.TabIndex = 3;
271 			//
272 			// m_tbFileSave
273 			//
274 			this.m_tbFileSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
275 			this.m_tbFileSave.Image = global::KeePass.Properties.Resources.B16x16_FileSave;
276 			this.m_tbFileSave.ImageTransparentColor = System.Drawing.Color.Magenta;
277 			this.m_tbFileSave.Name = "m_tbFileSave";
278 			this.m_tbFileSave.Size = new System.Drawing.Size(23, 22);
279 			this.m_tbFileSave.Click += new System.EventHandler(this.OnFileSave);
280 			//
281 			// m_tbFileSep0
282 			//
283 			this.m_tbFileSep0.Name = "m_tbFileSep0";
284 			this.m_tbFileSep0.Size = new System.Drawing.Size(6, 25);
285 			//
286 			// m_tbEditCut
287 			//
288 			this.m_tbEditCut.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
289 			this.m_tbEditCut.Image = global::KeePass.Properties.Resources.B16x16_Cut;
290 			this.m_tbEditCut.ImageTransparentColor = System.Drawing.Color.Magenta;
291 			this.m_tbEditCut.Name = "m_tbEditCut";
292 			this.m_tbEditCut.Size = new System.Drawing.Size(23, 22);
293 			this.m_tbEditCut.Click += new System.EventHandler(this.OnEditCut);
294 			//
295 			// m_tbEditCopy
296 			//
297 			this.m_tbEditCopy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
298 			this.m_tbEditCopy.Image = global::KeePass.Properties.Resources.B16x16_EditCopy;
299 			this.m_tbEditCopy.ImageTransparentColor = System.Drawing.Color.Magenta;
300 			this.m_tbEditCopy.Name = "m_tbEditCopy";
301 			this.m_tbEditCopy.Size = new System.Drawing.Size(23, 22);
302 			this.m_tbEditCopy.Click += new System.EventHandler(this.OnEditCopy);
303 			//
304 			// m_tbEditPaste
305 			//
306 			this.m_tbEditPaste.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
307 			this.m_tbEditPaste.Image = global::KeePass.Properties.Resources.B16x16_EditPaste;
308 			this.m_tbEditPaste.ImageTransparentColor = System.Drawing.Color.Magenta;
309 			this.m_tbEditPaste.Name = "m_tbEditPaste";
310 			this.m_tbEditPaste.Size = new System.Drawing.Size(23, 22);
311 			this.m_tbEditPaste.Click += new System.EventHandler(this.OnEditPaste);
312 			//
313 			// m_tbFileSep1
314 			//
315 			this.m_tbFileSep1.Name = "m_tbFileSep1";
316 			this.m_tbFileSep1.Size = new System.Drawing.Size(6, 25);
317 			//
318 			// m_tbEditUndo
319 			//
320 			this.m_tbEditUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
321 			this.m_tbEditUndo.Image = global::KeePass.Properties.Resources.B16x16_Undo;
322 			this.m_tbEditUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
323 			this.m_tbEditUndo.Name = "m_tbEditUndo";
324 			this.m_tbEditUndo.RightToLeftAutoMirrorImage = true;
325 			this.m_tbEditUndo.Size = new System.Drawing.Size(23, 22);
326 			this.m_tbEditUndo.Click += new System.EventHandler(this.OnEditUndo);
327 			//
328 			// m_tbEditRedo
329 			//
330 			this.m_tbEditRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
331 			this.m_tbEditRedo.Image = global::KeePass.Properties.Resources.B16x16_Redo;
332 			this.m_tbEditRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
333 			this.m_tbEditRedo.Name = "m_tbEditRedo";
334 			this.m_tbEditRedo.RightToLeftAutoMirrorImage = true;
335 			this.m_tbEditRedo.Size = new System.Drawing.Size(23, 22);
336 			this.m_tbEditRedo.Click += new System.EventHandler(this.OnEditRedo);
337 			//
338 			// m_tbFileSep2
339 			//
340 			this.m_tbFileSep2.Name = "m_tbFileSep2";
341 			this.m_tbFileSep2.Size = new System.Drawing.Size(6, 25);
342 			//
343 			// m_tbFind
344 			//
345 			this.m_tbFind.AcceptsReturn = true;
346 			this.m_tbFind.Name = "m_tbFind";
347 			this.m_tbFind.Size = new System.Drawing.Size(121, 25);
348 			this.m_tbFind.KeyDown += new System.Windows.Forms.KeyEventHandler(this.OnTextFindKeyDown);
349 			this.m_tbFind.KeyUp += new System.Windows.Forms.KeyEventHandler(this.OnTextFindKeyUp);
350 			//
351 			// m_toolFormat
352 			//
353 			this.m_toolFormat.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
354             this.m_tbFontCombo,
355             this.m_tbFontSizeCombo,
356             this.m_tbFormatSep0,
357             this.m_tbFormatBold,
358             this.m_tbFormatItalic,
359             this.m_tbFormatUnderline,
360             this.m_tbFormatStrikeout,
361             this.m_tbFormatSep1,
362             this.m_tbColorForeground,
363             this.m_tbColorBackground,
364             this.m_tbFormatSep2,
365             this.m_tbAlignLeft,
366             this.m_tbAlignCenter,
367             this.m_tbAlignRight});
368 			this.m_toolFormat.Location = new System.Drawing.Point(0, 49);
369 			this.m_toolFormat.Name = "m_toolFormat";
370 			this.m_toolFormat.Size = new System.Drawing.Size(608, 25);
371 			this.m_toolFormat.TabIndex = 4;
372 			//
373 			// m_tbFontCombo
374 			//
375 			this.m_tbFontCombo.Name = "m_tbFontCombo";
376 			this.m_tbFontCombo.Size = new System.Drawing.Size(160, 25);
377 			this.m_tbFontCombo.SelectedIndexChanged += new System.EventHandler(this.OnFontComboSelectedIndexChanged);
378 			this.m_tbFontCombo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.OnFontComboKeyDown);
379 			//
380 			// m_tbFontSizeCombo
381 			//
382 			this.m_tbFontSizeCombo.Name = "m_tbFontSizeCombo";
383 			this.m_tbFontSizeCombo.Size = new System.Drawing.Size(75, 25);
384 			this.m_tbFontSizeCombo.SelectedIndexChanged += new System.EventHandler(this.OnFontSizeComboSelectedIndexChanged);
385 			this.m_tbFontSizeCombo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.OnFontSizeComboKeyDown);
386 			//
387 			// m_tbFormatSep0
388 			//
389 			this.m_tbFormatSep0.Name = "m_tbFormatSep0";
390 			this.m_tbFormatSep0.Size = new System.Drawing.Size(6, 25);
391 			//
392 			// m_tbFormatBold
393 			//
394 			this.m_tbFormatBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
395 			this.m_tbFormatBold.Image = global::KeePass.Properties.Resources.B16x16_FontBold;
396 			this.m_tbFormatBold.ImageTransparentColor = System.Drawing.Color.Magenta;
397 			this.m_tbFormatBold.Name = "m_tbFormatBold";
398 			this.m_tbFormatBold.Size = new System.Drawing.Size(23, 22);
399 			this.m_tbFormatBold.Click += new System.EventHandler(this.OnFormatBoldClicked);
400 			//
401 			// m_tbFormatItalic
402 			//
403 			this.m_tbFormatItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
404 			this.m_tbFormatItalic.Image = global::KeePass.Properties.Resources.B16x16_FontItalic;
405 			this.m_tbFormatItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
406 			this.m_tbFormatItalic.Name = "m_tbFormatItalic";
407 			this.m_tbFormatItalic.Size = new System.Drawing.Size(23, 22);
408 			this.m_tbFormatItalic.Click += new System.EventHandler(this.OnFormatItalicClicked);
409 			//
410 			// m_tbFormatUnderline
411 			//
412 			this.m_tbFormatUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
413 			this.m_tbFormatUnderline.Image = global::KeePass.Properties.Resources.B16x16_FontUnderline;
414 			this.m_tbFormatUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
415 			this.m_tbFormatUnderline.Name = "m_tbFormatUnderline";
416 			this.m_tbFormatUnderline.Size = new System.Drawing.Size(23, 22);
417 			this.m_tbFormatUnderline.Click += new System.EventHandler(this.OnFormatUnderlineClicked);
418 			//
419 			// m_tbFormatStrikeout
420 			//
421 			this.m_tbFormatStrikeout.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
422 			this.m_tbFormatStrikeout.Image = global::KeePass.Properties.Resources.B16x16_FontStrikeout;
423 			this.m_tbFormatStrikeout.ImageTransparentColor = System.Drawing.Color.Magenta;
424 			this.m_tbFormatStrikeout.Name = "m_tbFormatStrikeout";
425 			this.m_tbFormatStrikeout.Size = new System.Drawing.Size(23, 22);
426 			this.m_tbFormatStrikeout.Click += new System.EventHandler(this.OnFormatStrikeoutClicked);
427 			//
428 			// m_tbFormatSep1
429 			//
430 			this.m_tbFormatSep1.Name = "m_tbFormatSep1";
431 			this.m_tbFormatSep1.Size = new System.Drawing.Size(6, 25);
432 			//
433 			// m_tbColorForeground
434 			//
435 			this.m_tbColorForeground.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
436 			this.m_tbColorForeground.Image = global::KeePass.Properties.Resources.B16x16_Colorize;
437 			this.m_tbColorForeground.ImageTransparentColor = System.Drawing.Color.Magenta;
438 			this.m_tbColorForeground.Name = "m_tbColorForeground";
439 			this.m_tbColorForeground.Size = new System.Drawing.Size(23, 22);
440 			this.m_tbColorForeground.Click += new System.EventHandler(this.OnColorForegroundClicked);
441 			//
442 			// m_tbColorBackground
443 			//
444 			this.m_tbColorBackground.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
445 			this.m_tbColorBackground.Image = global::KeePass.Properties.Resources.B16x16_Color_Fill;
446 			this.m_tbColorBackground.ImageTransparentColor = System.Drawing.Color.Magenta;
447 			this.m_tbColorBackground.Name = "m_tbColorBackground";
448 			this.m_tbColorBackground.Size = new System.Drawing.Size(23, 22);
449 			this.m_tbColorBackground.Click += new System.EventHandler(this.OnColorBackgroundClicked);
450 			//
451 			// m_tbFormatSep2
452 			//
453 			this.m_tbFormatSep2.Name = "m_tbFormatSep2";
454 			this.m_tbFormatSep2.Size = new System.Drawing.Size(6, 25);
455 			//
456 			// m_tbAlignLeft
457 			//
458 			this.m_tbAlignLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
459 			this.m_tbAlignLeft.Image = global::KeePass.Properties.Resources.B16x16_TextAlignLeft;
460 			this.m_tbAlignLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
461 			this.m_tbAlignLeft.Name = "m_tbAlignLeft";
462 			this.m_tbAlignLeft.Size = new System.Drawing.Size(23, 22);
463 			this.m_tbAlignLeft.Click += new System.EventHandler(this.OnAlignLeftClicked);
464 			//
465 			// m_tbAlignCenter
466 			//
467 			this.m_tbAlignCenter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
468 			this.m_tbAlignCenter.Image = global::KeePass.Properties.Resources.B16x16_TextAlignCenter;
469 			this.m_tbAlignCenter.ImageTransparentColor = System.Drawing.Color.Magenta;
470 			this.m_tbAlignCenter.Name = "m_tbAlignCenter";
471 			this.m_tbAlignCenter.Size = new System.Drawing.Size(23, 22);
472 			this.m_tbAlignCenter.Click += new System.EventHandler(this.OnAlignCenterClicked);
473 			//
474 			// m_tbAlignRight
475 			//
476 			this.m_tbAlignRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
477 			this.m_tbAlignRight.Image = global::KeePass.Properties.Resources.B16x16_TextAlignRight;
478 			this.m_tbAlignRight.ImageTransparentColor = System.Drawing.Color.Magenta;
479 			this.m_tbAlignRight.Name = "m_tbAlignRight";
480 			this.m_tbAlignRight.Size = new System.Drawing.Size(23, 22);
481 			this.m_tbAlignRight.Click += new System.EventHandler(this.OnAlignRightClicked);
482 			//
483 			// m_statusMain
484 			//
485 			this.m_statusMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
486             this.m_tssStatusMain});
487 			this.m_statusMain.Location = new System.Drawing.Point(0, 394);
488 			this.m_statusMain.Name = "m_statusMain";
489 			this.m_statusMain.Size = new System.Drawing.Size(608, 22);
490 			this.m_statusMain.TabIndex = 1;
491 			//
492 			// m_tssStatusMain
493 			//
494 			this.m_tssStatusMain.Name = "m_tssStatusMain";
495 			this.m_tssStatusMain.Size = new System.Drawing.Size(593, 17);
496 			this.m_tssStatusMain.Spring = true;
497 			this.m_tssStatusMain.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
498 			//
499 			// m_rtbText
500 			//
501 			this.m_rtbText.AcceptsTab = true;
502 			this.m_rtbText.Dock = System.Windows.Forms.DockStyle.Fill;
503 			this.m_rtbText.HideSelection = false;
504 			this.m_rtbText.Location = new System.Drawing.Point(0, 74);
505 			this.m_rtbText.Name = "m_rtbText";
506 			this.m_rtbText.Size = new System.Drawing.Size(608, 320);
507 			this.m_rtbText.TabIndex = 0;
508 			this.m_rtbText.Text = "";
509 			this.m_rtbText.SelectionChanged += new System.EventHandler(this.OnTextSelectionChanged);
510 			this.m_rtbText.TextChanged += new System.EventHandler(this.OnTextTextChanged);
511 			//
512 			// DataEditorForm
513 			//
514 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
515 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
516 			this.ClientSize = new System.Drawing.Size(608, 416);
517 			this.Controls.Add(this.m_rtbText);
518 			this.Controls.Add(this.m_statusMain);
519 			this.Controls.Add(this.m_toolFormat);
520 			this.Controls.Add(this.m_toolFile);
521 			this.Controls.Add(this.m_menuMain);
522 			this.MainMenuStrip = this.m_menuMain;
523 			this.MinimizeBox = false;
524 			this.Name = "DataEditorForm";
525 			this.ShowInTaskbar = false;
526 			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
527 			this.Text = "<>";
528 			this.Load += new System.EventHandler(this.OnFormLoad);
529 			this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
530 			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
531 			this.m_menuMain.ResumeLayout(false);
532 			this.m_menuMain.PerformLayout();
533 			this.m_toolFile.ResumeLayout(false);
534 			this.m_toolFile.PerformLayout();
535 			this.m_toolFormat.ResumeLayout(false);
536 			this.m_toolFormat.PerformLayout();
537 			this.m_statusMain.ResumeLayout(false);
538 			this.m_statusMain.PerformLayout();
539 			this.ResumeLayout(false);
540 			this.PerformLayout();
541 
542 		}
543 
544 		#endregion
545 
546 		private KeePass.UI.CustomRichTextBoxEx m_rtbText;
547 		private KeePass.UI.CustomMenuStripEx m_menuMain;
548 		private System.Windows.Forms.ToolStripMenuItem m_menuFile;
549 		private System.Windows.Forms.ToolStripMenuItem m_menuFileSave;
550 		private System.Windows.Forms.ToolStripSeparator m_menuFileSep0;
551 		private System.Windows.Forms.ToolStripMenuItem m_menuFileExit;
552 		private KeePass.UI.CustomToolStripEx m_toolFile;
553 		private System.Windows.Forms.ToolStripButton m_tbFileSave;
554 		private KeePass.UI.CustomToolStripEx m_toolFormat;
555 		private System.Windows.Forms.ToolStripComboBox m_tbFontCombo;
556 		private System.Windows.Forms.StatusStrip m_statusMain;
557 		private System.Windows.Forms.ToolStripComboBox m_tbFontSizeCombo;
558 		private System.Windows.Forms.ToolStripSeparator m_tbFormatSep0;
559 		private System.Windows.Forms.ToolStripButton m_tbFormatBold;
560 		private System.Windows.Forms.ToolStripButton m_tbFormatItalic;
561 		private System.Windows.Forms.ToolStripButton m_tbFormatUnderline;
562 		private System.Windows.Forms.ToolStripButton m_tbFormatStrikeout;
563 		private System.Windows.Forms.ToolStripButton m_tbColorForeground;
564 		private System.Windows.Forms.ToolStripButton m_tbColorBackground;
565 		private System.Windows.Forms.ToolStripSeparator m_tbFormatSep1;
566 		private System.Windows.Forms.ToolStripSeparator m_tbFormatSep2;
567 		private System.Windows.Forms.ToolStripButton m_tbAlignLeft;
568 		private System.Windows.Forms.ToolStripButton m_tbAlignCenter;
569 		private System.Windows.Forms.ToolStripButton m_tbAlignRight;
570 		private System.Windows.Forms.ToolStripSeparator m_tbFileSep0;
571 		private System.Windows.Forms.ToolStripButton m_tbEditCut;
572 		private System.Windows.Forms.ToolStripButton m_tbEditCopy;
573 		private System.Windows.Forms.ToolStripButton m_tbEditPaste;
574 		private System.Windows.Forms.ToolStripSeparator m_tbFileSep1;
575 		private System.Windows.Forms.ToolStripButton m_tbEditUndo;
576 		private System.Windows.Forms.ToolStripButton m_tbEditRedo;
577 		private System.Windows.Forms.ToolStripMenuItem m_menuView;
578 		private System.Windows.Forms.ToolStripMenuItem m_menuViewFont;
579 		private System.Windows.Forms.ToolStripSeparator m_menuViewSep0;
580 		private System.Windows.Forms.ToolStripMenuItem m_menuViewWordWrap;
581 		private System.Windows.Forms.ToolStripStatusLabel m_tssStatusMain;
582 		private System.Windows.Forms.ToolStripSeparator m_tbFileSep2;
583 		private System.Windows.Forms.ToolStripTextBox m_tbFind;
584 		private System.Windows.Forms.ToolStripMenuItem m_menuEdit;
585 		private System.Windows.Forms.ToolStripMenuItem m_menuEditUndo;
586 		private System.Windows.Forms.ToolStripMenuItem m_menuEditRedo;
587 		private System.Windows.Forms.ToolStripSeparator m_menuEditSep0;
588 		private System.Windows.Forms.ToolStripMenuItem m_menuEditCut;
589 		private System.Windows.Forms.ToolStripMenuItem m_menuEditCopy;
590 		private System.Windows.Forms.ToolStripMenuItem m_menuEditPaste;
591 		private System.Windows.Forms.ToolStripSeparator m_menuEditSep1;
592 		private System.Windows.Forms.ToolStripMenuItem m_menuEditSelectAll;
593 		private System.Windows.Forms.ToolStripSeparator m_menuEditSep2;
594 		private System.Windows.Forms.ToolStripMenuItem m_menuEditFind;
595 		private System.Windows.Forms.ToolStripMenuItem m_menuEditDelete;
596 	}
597 }