Basic Commit viewer.
[Gitrdone.git] / CommitViewer.Designer.cs
blob70f8044f01201d15ba968779b4c7e159d40a83cd
1 namespace Gitrdone
3 partial class CommitViewer
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
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)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
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()
31 this.m_id = new System.Windows.Forms.TextBox();
32 this.m_author = new System.Windows.Forms.TextBox();
33 this.m_email = new System.Windows.Forms.TextBox();
34 this.m_date = new System.Windows.Forms.TextBox();
35 this.label1 = new System.Windows.Forms.Label();
36 this.label2 = new System.Windows.Forms.Label();
37 this.label3 = new System.Windows.Forms.Label();
38 this.label4 = new System.Windows.Forms.Label();
39 this.m_parents = new System.Windows.Forms.ComboBox();
40 this.label5 = new System.Windows.Forms.Label();
41 this.button1 = new System.Windows.Forms.Button();
42 this.label6 = new System.Windows.Forms.Label();
43 this.m_message = new System.Windows.Forms.TextBox();
44 this.button2 = new System.Windows.Forms.Button();
45 this.SuspendLayout();
46 //
47 // m_id
48 //
49 this.m_id.BackColor = System.Drawing.SystemColors.Window;
50 this.m_id.Location = new System.Drawing.Point(82, 12);
51 this.m_id.Name = "m_id";
52 this.m_id.ReadOnly = true;
53 this.m_id.Size = new System.Drawing.Size(445, 20);
54 this.m_id.TabIndex = 0;
55 //
56 // m_author
57 //
58 this.m_author.BackColor = System.Drawing.SystemColors.Window;
59 this.m_author.Location = new System.Drawing.Point(82, 41);
60 this.m_author.Name = "m_author";
61 this.m_author.ReadOnly = true;
62 this.m_author.Size = new System.Drawing.Size(445, 20);
63 this.m_author.TabIndex = 1;
64 //
65 // m_email
66 //
67 this.m_email.BackColor = System.Drawing.SystemColors.Window;
68 this.m_email.Location = new System.Drawing.Point(82, 70);
69 this.m_email.Name = "m_email";
70 this.m_email.ReadOnly = true;
71 this.m_email.Size = new System.Drawing.Size(445, 20);
72 this.m_email.TabIndex = 2;
73 //
74 // m_date
75 //
76 this.m_date.BackColor = System.Drawing.SystemColors.Window;
77 this.m_date.Location = new System.Drawing.Point(82, 99);
78 this.m_date.Name = "m_date";
79 this.m_date.ReadOnly = true;
80 this.m_date.Size = new System.Drawing.Size(445, 20);
81 this.m_date.TabIndex = 3;
82 //
83 // label1
84 //
85 this.label1.AutoSize = true;
86 this.label1.Location = new System.Drawing.Point(9, 15);
87 this.label1.Name = "label1";
88 this.label1.Size = new System.Drawing.Size(44, 13);
89 this.label1.TabIndex = 4;
90 this.label1.Text = "Commit:";
91 //
92 // label2
93 //
94 this.label2.AutoSize = true;
95 this.label2.Location = new System.Drawing.Point(9, 44);
96 this.label2.Name = "label2";
97 this.label2.Size = new System.Drawing.Size(41, 13);
98 this.label2.TabIndex = 5;
99 this.label2.Text = "Author:";
101 // label3
103 this.label3.AutoSize = true;
104 this.label3.Location = new System.Drawing.Point(9, 73);
105 this.label3.Name = "label3";
106 this.label3.Size = new System.Drawing.Size(35, 13);
107 this.label3.TabIndex = 6;
108 this.label3.Text = "Email:";
110 // label4
112 this.label4.AutoSize = true;
113 this.label4.Location = new System.Drawing.Point(9, 102);
114 this.label4.Name = "label4";
115 this.label4.Size = new System.Drawing.Size(33, 13);
116 this.label4.TabIndex = 7;
117 this.label4.Text = "Date:";
119 // m_parents
121 this.m_parents.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
122 this.m_parents.FormattingEnabled = true;
123 this.m_parents.Location = new System.Drawing.Point(82, 133);
124 this.m_parents.Name = "m_parents";
125 this.m_parents.Size = new System.Drawing.Size(364, 21);
126 this.m_parents.TabIndex = 8;
128 // label5
130 this.label5.AutoSize = true;
131 this.label5.Location = new System.Drawing.Point(9, 138);
132 this.label5.Name = "label5";
133 this.label5.Size = new System.Drawing.Size(46, 13);
134 this.label5.TabIndex = 9;
135 this.label5.Text = "Parents:";
137 // button1
139 this.button1.Location = new System.Drawing.Point(453, 131);
140 this.button1.Name = "button1";
141 this.button1.Size = new System.Drawing.Size(74, 23);
142 this.button1.TabIndex = 10;
143 this.button1.Text = "View";
144 this.button1.UseVisualStyleBackColor = true;
145 this.button1.Click += new System.EventHandler(this.OnShowParent);
147 // label6
149 this.label6.AutoSize = true;
150 this.label6.Location = new System.Drawing.Point(9, 188);
151 this.label6.Name = "label6";
152 this.label6.Size = new System.Drawing.Size(53, 13);
153 this.label6.TabIndex = 11;
154 this.label6.Text = "Message:";
156 // m_message
158 this.m_message.BackColor = System.Drawing.SystemColors.Window;
159 this.m_message.Location = new System.Drawing.Point(12, 221);
160 this.m_message.Multiline = true;
161 this.m_message.Name = "m_message";
162 this.m_message.ReadOnly = true;
163 this.m_message.Size = new System.Drawing.Size(515, 286);
164 this.m_message.TabIndex = 12;
165 this.m_message.WordWrap = false;
167 // button2
169 this.button2.Location = new System.Drawing.Point(451, 513);
170 this.button2.Name = "button2";
171 this.button2.Size = new System.Drawing.Size(75, 23);
172 this.button2.TabIndex = 13;
173 this.button2.Text = "Done";
174 this.button2.UseVisualStyleBackColor = true;
175 this.button2.Click += new System.EventHandler(this.OnDone);
177 // CommitViewer
179 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
180 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
181 this.ClientSize = new System.Drawing.Size(539, 548);
182 this.Controls.Add(this.button2);
183 this.Controls.Add(this.m_message);
184 this.Controls.Add(this.label6);
185 this.Controls.Add(this.button1);
186 this.Controls.Add(this.label5);
187 this.Controls.Add(this.m_parents);
188 this.Controls.Add(this.label4);
189 this.Controls.Add(this.label3);
190 this.Controls.Add(this.label2);
191 this.Controls.Add(this.label1);
192 this.Controls.Add(this.m_date);
193 this.Controls.Add(this.m_email);
194 this.Controls.Add(this.m_author);
195 this.Controls.Add(this.m_id);
196 this.Name = "CommitViewer";
197 this.Text = "CommitViewer";
198 this.ResumeLayout(false);
199 this.PerformLayout();
203 #endregion
205 private System.Windows.Forms.TextBox m_id;
206 private System.Windows.Forms.TextBox m_author;
207 private System.Windows.Forms.TextBox m_email;
208 private System.Windows.Forms.TextBox m_date;
209 private System.Windows.Forms.Label label1;
210 private System.Windows.Forms.Label label2;
211 private System.Windows.Forms.Label label3;
212 private System.Windows.Forms.Label label4;
213 private System.Windows.Forms.ComboBox m_parents;
214 private System.Windows.Forms.Label label5;
215 private System.Windows.Forms.Button button1;
216 private System.Windows.Forms.Label label6;
217 private System.Windows.Forms.TextBox m_message;
218 private System.Windows.Forms.Button button2;