ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.ScratchPad/ScratchPadDocument.Designer.cs
Revision: 776
Committed: Thu Jun 20 23:07:32 2013 UTC (9 years, 11 months ago) by william
File size: 7806 byte(s)
Log Message:

File Contents

# Content
1 namespace RomCheater.ScratchPad
2 {
3 partial class ScratchPadDocument
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>
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>
29 private void InitializeComponent()
30 {
31 this.components = new System.ComponentModel.Container();
32 Fireball.Windows.Forms.LineMarginRender lineMarginRender1 = new Fireball.Windows.Forms.LineMarginRender();
33 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ScratchPadDocument));
34 this.txtEditor = new Fireball.Windows.Forms.CodeEditorControl();
35 this.syntaxDocument1 = new Fireball.Syntax.SyntaxDocument(this.components);
36 this.toolStrip1 = new System.Windows.Forms.ToolStrip();
37 this.mnuItemOpen = new System.Windows.Forms.ToolStripButton();
38 this.mnuItemSave = new System.Windows.Forms.ToolStripButton();
39 this.mnuItemClose = new System.Windows.Forms.ToolStripButton();
40 this.FileLoader = new System.Windows.Forms.OpenFileDialog();
41 this.FileSaver = new System.Windows.Forms.SaveFileDialog();
42 this.toolStrip1.SuspendLayout();
43 this.SuspendLayout();
44 //
45 // txtEditor
46 //
47 this.txtEditor.ActiveView = Fireball.Windows.Forms.CodeEditor.ActiveView.BottomRight;
48 this.txtEditor.AutoListPosition = null;
49 this.txtEditor.AutoListSelectedText = "a123";
50 this.txtEditor.AutoListVisible = false;
51 this.txtEditor.CopyAsRTF = false;
52 this.txtEditor.Dock = System.Windows.Forms.DockStyle.Fill;
53 this.txtEditor.Document = this.syntaxDocument1;
54 this.txtEditor.InfoTipCount = 1;
55 this.txtEditor.InfoTipPosition = null;
56 this.txtEditor.InfoTipSelectedIndex = 1;
57 this.txtEditor.InfoTipVisible = false;
58 lineMarginRender1.Bounds = new System.Drawing.Rectangle(19, 0, 19, 16);
59 this.txtEditor.LineMarginRender = lineMarginRender1;
60 this.txtEditor.Location = new System.Drawing.Point(0, 25);
61 this.txtEditor.LockCursorUpdate = false;
62 this.txtEditor.Name = "txtEditor";
63 this.txtEditor.Saved = false;
64 this.txtEditor.ShowScopeIndicator = false;
65 this.txtEditor.Size = new System.Drawing.Size(913, 521);
66 this.txtEditor.SmoothScroll = false;
67 this.txtEditor.SplitviewH = -4;
68 this.txtEditor.SplitviewV = -4;
69 this.txtEditor.TabGuideColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(233)))), ((int)(((byte)(233)))));
70 this.txtEditor.TabIndex = 0;
71 this.txtEditor.Text = "codeEditorControl1";
72 this.txtEditor.WhitespaceColor = System.Drawing.SystemColors.ControlDark;
73 this.txtEditor.TextChanged += new System.EventHandler(this.txtEditor_TextChanged);
74 //
75 // syntaxDocument1
76 //
77 this.syntaxDocument1.Lines = new string[] {
78 ""};
79 this.syntaxDocument1.MaxUndoBufferSize = 1000;
80 this.syntaxDocument1.Modified = false;
81 this.syntaxDocument1.UndoStep = 0;
82 //
83 // toolStrip1
84 //
85 this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
86 this.mnuItemOpen,
87 this.mnuItemSave,
88 this.mnuItemClose});
89 this.toolStrip1.Location = new System.Drawing.Point(0, 0);
90 this.toolStrip1.Name = "toolStrip1";
91 this.toolStrip1.Size = new System.Drawing.Size(913, 25);
92 this.toolStrip1.TabIndex = 1;
93 this.toolStrip1.Text = "toolStrip1";
94 //
95 // mnuItemOpen
96 //
97 this.mnuItemOpen.Image = ((System.Drawing.Image)(resources.GetObject("mnuItemOpen.Image")));
98 this.mnuItemOpen.ImageTransparentColor = System.Drawing.Color.Magenta;
99 this.mnuItemOpen.Name = "mnuItemOpen";
100 this.mnuItemOpen.Size = new System.Drawing.Size(56, 22);
101 this.mnuItemOpen.Text = "&Open";
102 this.mnuItemOpen.Click += new System.EventHandler(this.mnuItemOpen_Click);
103 //
104 // mnuItemSave
105 //
106 this.mnuItemSave.Image = ((System.Drawing.Image)(resources.GetObject("mnuItemSave.Image")));
107 this.mnuItemSave.ImageTransparentColor = System.Drawing.Color.Magenta;
108 this.mnuItemSave.Name = "mnuItemSave";
109 this.mnuItemSave.Size = new System.Drawing.Size(51, 22);
110 this.mnuItemSave.Text = "&Save";
111 this.mnuItemSave.Click += new System.EventHandler(this.mnuItemSave_Click);
112 //
113 // mnuItemClose
114 //
115 this.mnuItemClose.Image = ((System.Drawing.Image)(resources.GetObject("mnuItemClose.Image")));
116 this.mnuItemClose.ImageTransparentColor = System.Drawing.Color.Magenta;
117 this.mnuItemClose.Name = "mnuItemClose";
118 this.mnuItemClose.Size = new System.Drawing.Size(56, 22);
119 this.mnuItemClose.Text = "&Close";
120 this.mnuItemClose.Click += new System.EventHandler(this.mnuItemClose_Click);
121 //
122 // FileLoader
123 //
124 this.FileLoader.Filter = "All files|*.*";
125 this.FileLoader.SupportMultiDottedExtensions = true;
126 this.FileLoader.Title = "Please choose the file to open";
127 //
128 // FileSaver
129 //
130 this.FileSaver.Filter = "All files|*.*";
131 this.FileSaver.SupportMultiDottedExtensions = true;
132 this.FileSaver.Title = "Please choose the file to save";
133 //
134 // ScratchPadDocument
135 //
136 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
137 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
138 this.Controls.Add(this.txtEditor);
139 this.Controls.Add(this.toolStrip1);
140 this.Name = "ScratchPadDocument";
141 this.Size = new System.Drawing.Size(913, 546);
142 this.toolStrip1.ResumeLayout(false);
143 this.toolStrip1.PerformLayout();
144 this.ResumeLayout(false);
145 this.PerformLayout();
146
147 }
148
149 #endregion
150
151 private Fireball.Windows.Forms.CodeEditorControl txtEditor;
152 private Fireball.Syntax.SyntaxDocument syntaxDocument1;
153 private System.Windows.Forms.ToolStrip toolStrip1;
154 private System.Windows.Forms.ToolStripButton mnuItemOpen;
155 private System.Windows.Forms.ToolStripButton mnuItemSave;
156 private System.Windows.Forms.ToolStripButton mnuItemClose;
157 private System.Windows.Forms.OpenFileDialog FileLoader;
158 private System.Windows.Forms.SaveFileDialog FileSaver;
159 }
160 }