3 partial class RevisionChooser
6 /// Required designer variable.
8 private System
.ComponentModel
.IContainer components
= null;
11 /// Clean up any resources being used.
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))
20 base.Dispose(disposing
);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
29 private void InitializeComponent()
31 this.groupBox1
= new System
.Windows
.Forms
.GroupBox();
32 this.m_statusTable
= new Widgit
.CommitTable();
33 this.m_branches
= new System
.Windows
.Forms
.ComboBox();
34 this.m_tags
= new System
.Windows
.Forms
.ComboBox();
35 this.button1
= new System
.Windows
.Forms
.Button();
36 this.button2
= new System
.Windows
.Forms
.Button();
37 this.label1
= new System
.Windows
.Forms
.Label();
38 this.label2
= new System
.Windows
.Forms
.Label();
39 this.groupBox1
.SuspendLayout();
44 this.groupBox1
.Controls
.Add(this.label2
);
45 this.groupBox1
.Controls
.Add(this.label1
);
46 this.groupBox1
.Controls
.Add(this.m_statusTable
);
47 this.groupBox1
.Controls
.Add(this.m_branches
);
48 this.groupBox1
.Controls
.Add(this.m_tags
);
49 this.groupBox1
.Location
= new System
.Drawing
.Point(12, 12);
50 this.groupBox1
.Name
= "groupBox1";
51 this.groupBox1
.Size
= new System
.Drawing
.Size(520, 276);
52 this.groupBox1
.TabIndex
= 0;
53 this.groupBox1
.TabStop
= false;
54 this.groupBox1
.Text
= "Choose Revision";
58 this.m_statusTable
.Location
= new System
.Drawing
.Point(6, 88);
59 this.m_statusTable
.Name
= "m_statusTable";
60 this.m_statusTable
.Size
= new System
.Drawing
.Size(508, 182);
61 this.m_statusTable
.TabIndex
= 5;
65 this.m_branches
.FormattingEnabled
= true;
66 this.m_branches
.Location
= new System
.Drawing
.Point(116, 61);
67 this.m_branches
.Name
= "m_branches";
68 this.m_branches
.Size
= new System
.Drawing
.Size(121, 21);
69 this.m_branches
.TabIndex
= 4;
70 this.m_branches
.SelectionChangeCommitted
+= new System
.EventHandler(this.OnBranchSelected
);
74 this.m_tags
.FormattingEnabled
= true;
75 this.m_tags
.Location
= new System
.Drawing
.Point(116, 18);
76 this.m_tags
.Name
= "m_tags";
77 this.m_tags
.Size
= new System
.Drawing
.Size(121, 21);
78 this.m_tags
.TabIndex
= 3;
79 this.m_tags
.SelectionChangeCommitted
+= new System
.EventHandler(this.OnTagSelected
);
83 this.button1
.DialogResult
= System
.Windows
.Forms
.DialogResult
.OK
;
84 this.button1
.Location
= new System
.Drawing
.Point(456, 313);
85 this.button1
.Name
= "button1";
86 this.button1
.Size
= new System
.Drawing
.Size(75, 23);
87 this.button1
.TabIndex
= 1;
88 this.button1
.Text
= "OK";
89 this.button1
.UseVisualStyleBackColor
= true;
93 this.button2
.DialogResult
= System
.Windows
.Forms
.DialogResult
.Cancel
;
94 this.button2
.Location
= new System
.Drawing
.Point(375, 313);
95 this.button2
.Name
= "button2";
96 this.button2
.Size
= new System
.Drawing
.Size(75, 23);
97 this.button2
.TabIndex
= 2;
98 this.button2
.Text
= "Cancel";
99 this.button2
.UseVisualStyleBackColor
= true;
103 this.label1
.AutoSize
= true;
104 this.label1
.Location
= new System
.Drawing
.Point(6, 21);
105 this.label1
.Name
= "label1";
106 this.label1
.Size
= new System
.Drawing
.Size(34, 13);
107 this.label1
.TabIndex
= 6;
108 this.label1
.Text
= "Tags:";
112 this.label2
.AutoSize
= true;
113 this.label2
.Location
= new System
.Drawing
.Point(6, 64);
114 this.label2
.Name
= "label2";
115 this.label2
.Size
= new System
.Drawing
.Size(55, 13);
116 this.label2
.TabIndex
= 7;
117 this.label2
.Text
= "Branches:";
121 this.AutoScaleDimensions
= new System
.Drawing
.SizeF(6F
, 13F
);
122 this.AutoScaleMode
= System
.Windows
.Forms
.AutoScaleMode
.Font
;
123 this.ClientSize
= new System
.Drawing
.Size(544, 348);
124 this.Controls
.Add(this.button2
);
125 this.Controls
.Add(this.button1
);
126 this.Controls
.Add(this.groupBox1
);
127 this.Name
= "RevisionChooser";
128 this.Text
= "RevisionChooser";
129 this.groupBox1
.ResumeLayout(false);
130 this.groupBox1
.PerformLayout();
131 this.ResumeLayout(false);
137 private System
.Windows
.Forms
.GroupBox groupBox1
;
138 private System
.Windows
.Forms
.ComboBox m_tags
;
139 private System
.Windows
.Forms
.Button button1
;
140 private System
.Windows
.Forms
.Button button2
;
141 private System
.Windows
.Forms
.ComboBox m_branches
;
142 private CommitTable m_statusTable
;
143 private System
.Windows
.Forms
.Label label2
;
144 private System
.Windows
.Forms
.Label label1
;