1 |
namespace xmltv_parser |
2 |
{ |
3 |
partial class main |
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.lstPrograms = new System.Windows.Forms.ListView(); |
32 |
this.colChannel = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
33 |
this.colTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
34 |
this.colSubTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
35 |
this.colDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
36 |
this.ColStart = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
37 |
this.colEnd = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
38 |
this.xmltv_file_chooser = new System.Windows.Forms.OpenFileDialog(); |
39 |
this.menuStrip1 = new System.Windows.Forms.MenuStrip(); |
40 |
this.mnuFile = new System.Windows.Forms.ToolStripMenuItem(); |
41 |
this.mnuItemOpenXMLTVFile = new System.Windows.Forms.ToolStripMenuItem(); |
42 |
this.mnuItemOpenSavedData = new System.Windows.Forms.ToolStripMenuItem(); |
43 |
this.mnuItemSaveData = new System.Windows.Forms.ToolStripMenuItem(); |
44 |
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); |
45 |
this.mnuItemExit = new System.Windows.Forms.ToolStripMenuItem(); |
46 |
this.mnuTools = new System.Windows.Forms.ToolStripMenuItem(); |
47 |
this.mnuItemClearLocalLog = new System.Windows.Forms.ToolStripMenuItem(); |
48 |
this.xmltv_program_data_saver = new System.Windows.Forms.SaveFileDialog(); |
49 |
this.xmltv_program_data_loader = new System.Windows.Forms.OpenFileDialog(); |
50 |
this.statusStrip1 = new System.Windows.Forms.StatusStrip(); |
51 |
this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); |
52 |
this.txtStatus = new System.Windows.Forms.ToolStripStatusLabel(); |
53 |
this.splitContainer1 = new System.Windows.Forms.SplitContainer(); |
54 |
this.txtLog = new System.Windows.Forms.RichTextBox(); |
55 |
this.progress_status = new System.Windows.Forms.ToolStripProgressBar(); |
56 |
this.menuStrip1.SuspendLayout(); |
57 |
this.statusStrip1.SuspendLayout(); |
58 |
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); |
59 |
this.splitContainer1.Panel1.SuspendLayout(); |
60 |
this.splitContainer1.Panel2.SuspendLayout(); |
61 |
this.splitContainer1.SuspendLayout(); |
62 |
this.SuspendLayout(); |
63 |
// |
64 |
// lstPrograms |
65 |
// |
66 |
this.lstPrograms.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { |
67 |
this.colChannel, |
68 |
this.colTitle, |
69 |
this.colSubTitle, |
70 |
this.colDescription, |
71 |
this.ColStart, |
72 |
this.colEnd}); |
73 |
this.lstPrograms.Dock = System.Windows.Forms.DockStyle.Fill; |
74 |
this.lstPrograms.FullRowSelect = true; |
75 |
this.lstPrograms.HideSelection = false; |
76 |
this.lstPrograms.Location = new System.Drawing.Point(0, 0); |
77 |
this.lstPrograms.MultiSelect = false; |
78 |
this.lstPrograms.Name = "lstPrograms"; |
79 |
this.lstPrograms.Size = new System.Drawing.Size(626, 497); |
80 |
this.lstPrograms.TabIndex = 0; |
81 |
this.lstPrograms.UseCompatibleStateImageBehavior = false; |
82 |
this.lstPrograms.View = System.Windows.Forms.View.Details; |
83 |
this.lstPrograms.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lstPrograms_ColumnClick); |
84 |
this.lstPrograms.SelectedIndexChanged += new System.EventHandler(this.lstPrograms_SelectedIndexChanged); |
85 |
// |
86 |
// colChannel |
87 |
// |
88 |
this.colChannel.Text = "Channel:"; |
89 |
// |
90 |
// colTitle |
91 |
// |
92 |
this.colTitle.Text = "Title:"; |
93 |
// |
94 |
// colSubTitle |
95 |
// |
96 |
this.colSubTitle.Text = "Sub-Title:"; |
97 |
// |
98 |
// colDescription |
99 |
// |
100 |
this.colDescription.Text = "Description:"; |
101 |
// |
102 |
// ColStart |
103 |
// |
104 |
this.ColStart.Text = "Start:"; |
105 |
// |
106 |
// colEnd |
107 |
// |
108 |
this.colEnd.Text = "End:"; |
109 |
// |
110 |
// xmltv_file_chooser |
111 |
// |
112 |
this.xmltv_file_chooser.DefaultExt = "xml"; |
113 |
this.xmltv_file_chooser.FileName = "tvguide.xml"; |
114 |
this.xmltv_file_chooser.Filter = "XMLTV Guide|*.xml|All files|*.*"; |
115 |
// |
116 |
// menuStrip1 |
117 |
// |
118 |
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
119 |
this.mnuFile, |
120 |
this.mnuTools}); |
121 |
this.menuStrip1.Location = new System.Drawing.Point(0, 0); |
122 |
this.menuStrip1.Name = "menuStrip1"; |
123 |
this.menuStrip1.Size = new System.Drawing.Size(964, 24); |
124 |
this.menuStrip1.TabIndex = 1; |
125 |
this.menuStrip1.Text = "menuStrip1"; |
126 |
// |
127 |
// mnuFile |
128 |
// |
129 |
this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { |
130 |
this.mnuItemOpenXMLTVFile, |
131 |
this.mnuItemOpenSavedData, |
132 |
this.mnuItemSaveData, |
133 |
this.toolStripSeparator1, |
134 |
this.mnuItemExit}); |
135 |
this.mnuFile.Name = "mnuFile"; |
136 |
this.mnuFile.Size = new System.Drawing.Size(37, 20); |
137 |
this.mnuFile.Text = "&File"; |
138 |
// |
139 |
// mnuItemOpenXMLTVFile |
140 |
// |
141 |
this.mnuItemOpenXMLTVFile.Name = "mnuItemOpenXMLTVFile"; |
142 |
this.mnuItemOpenXMLTVFile.Size = new System.Drawing.Size(165, 22); |
143 |
this.mnuItemOpenXMLTVFile.Text = "Open &XMLTV File"; |
144 |
this.mnuItemOpenXMLTVFile.Click += new System.EventHandler(this.mnuItemOpenXMLTVFile_Click); |
145 |
// |
146 |
// mnuItemOpenSavedData |
147 |
// |
148 |
this.mnuItemOpenSavedData.Name = "mnuItemOpenSavedData"; |
149 |
this.mnuItemOpenSavedData.Size = new System.Drawing.Size(165, 22); |
150 |
this.mnuItemOpenSavedData.Text = "Open &Saved Data"; |
151 |
this.mnuItemOpenSavedData.Click += new System.EventHandler(this.mnuItemOpenSavedData_Click); |
152 |
// |
153 |
// mnuItemSaveData |
154 |
// |
155 |
this.mnuItemSaveData.Name = "mnuItemSaveData"; |
156 |
this.mnuItemSaveData.Size = new System.Drawing.Size(165, 22); |
157 |
this.mnuItemSaveData.Text = "Save &Data"; |
158 |
this.mnuItemSaveData.Click += new System.EventHandler(this.mnuItemSaveData_Click); |
159 |
// |
160 |
// toolStripSeparator1 |
161 |
// |
162 |
this.toolStripSeparator1.Name = "toolStripSeparator1"; |
163 |
this.toolStripSeparator1.Size = new System.Drawing.Size(162, 6); |
164 |
// |
165 |
// mnuItemExit |
166 |
// |
167 |
this.mnuItemExit.Name = "mnuItemExit"; |
168 |
this.mnuItemExit.Size = new System.Drawing.Size(165, 22); |
169 |
this.mnuItemExit.Text = "&Exit"; |
170 |
this.mnuItemExit.Click += new System.EventHandler(this.mnuItemExit_Click); |
171 |
// |
172 |
// mnuTools |
173 |
// |
174 |
this.mnuTools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { |
175 |
this.mnuItemClearLocalLog}); |
176 |
this.mnuTools.Name = "mnuTools"; |
177 |
this.mnuTools.Size = new System.Drawing.Size(48, 20); |
178 |
this.mnuTools.Text = "&Tools"; |
179 |
// |
180 |
// mnuItemClearLocalLog |
181 |
// |
182 |
this.mnuItemClearLocalLog.Name = "mnuItemClearLocalLog"; |
183 |
this.mnuItemClearLocalLog.Size = new System.Drawing.Size(155, 22); |
184 |
this.mnuItemClearLocalLog.Text = "&Clear Local Log"; |
185 |
this.mnuItemClearLocalLog.Click += new System.EventHandler(this.mnuItemClearLocalLog_Click); |
186 |
// |
187 |
// xmltv_program_data_saver |
188 |
// |
189 |
this.xmltv_program_data_saver.DefaultExt = "bin"; |
190 |
this.xmltv_program_data_saver.FileName = "xmltv.bin"; |
191 |
this.xmltv_program_data_saver.Filter = "Binary XMLTV DataXMLTV Guide|*.bin|All files|*.*"; |
192 |
// |
193 |
// xmltv_program_data_loader |
194 |
// |
195 |
this.xmltv_program_data_loader.DefaultExt = "bin"; |
196 |
this.xmltv_program_data_loader.FileName = "xmltv.bin"; |
197 |
this.xmltv_program_data_loader.Filter = "Binary XMLTV Guide Data|*.bin|All files|*.*"; |
198 |
// |
199 |
// statusStrip1 |
200 |
// |
201 |
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
202 |
this.progress_status, |
203 |
this.lblStatus, |
204 |
this.txtStatus}); |
205 |
this.statusStrip1.Location = new System.Drawing.Point(0, 525); |
206 |
this.statusStrip1.Name = "statusStrip1"; |
207 |
this.statusStrip1.Size = new System.Drawing.Size(964, 22); |
208 |
this.statusStrip1.TabIndex = 2; |
209 |
this.statusStrip1.Text = "statusStrip1"; |
210 |
// |
211 |
// lblStatus |
212 |
// |
213 |
this.lblStatus.Name = "lblStatus"; |
214 |
this.lblStatus.Size = new System.Drawing.Size(42, 17); |
215 |
this.lblStatus.Text = "Status:"; |
216 |
// |
217 |
// txtStatus |
218 |
// |
219 |
this.txtStatus.Name = "txtStatus"; |
220 |
this.txtStatus.Size = new System.Drawing.Size(774, 17); |
221 |
this.txtStatus.Spring = true; |
222 |
this.txtStatus.Text = "txtStatus"; |
223 |
// |
224 |
// splitContainer1 |
225 |
// |
226 |
this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
227 |
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; |
228 |
this.splitContainer1.Location = new System.Drawing.Point(0, 24); |
229 |
this.splitContainer1.Name = "splitContainer1"; |
230 |
// |
231 |
// splitContainer1.Panel1 |
232 |
// |
233 |
this.splitContainer1.Panel1.Controls.Add(this.lstPrograms); |
234 |
// |
235 |
// splitContainer1.Panel2 |
236 |
// |
237 |
this.splitContainer1.Panel2.Controls.Add(this.txtLog); |
238 |
this.splitContainer1.Size = new System.Drawing.Size(964, 501); |
239 |
this.splitContainer1.SplitterDistance = 630; |
240 |
this.splitContainer1.TabIndex = 3; |
241 |
// |
242 |
// txtLog |
243 |
// |
244 |
this.txtLog.BackColor = System.Drawing.SystemColors.ControlLight; |
245 |
this.txtLog.Dock = System.Windows.Forms.DockStyle.Fill; |
246 |
this.txtLog.Location = new System.Drawing.Point(0, 0); |
247 |
this.txtLog.Name = "txtLog"; |
248 |
this.txtLog.ReadOnly = true; |
249 |
this.txtLog.Size = new System.Drawing.Size(326, 497); |
250 |
this.txtLog.TabIndex = 0; |
251 |
this.txtLog.Text = ""; |
252 |
this.txtLog.MouseEnter += new System.EventHandler(this.txtLog_MouseEnter); |
253 |
this.txtLog.MouseLeave += new System.EventHandler(this.txtLog_MouseLeave); |
254 |
// |
255 |
// progress_status |
256 |
// |
257 |
this.progress_status.Name = "progress_status"; |
258 |
this.progress_status.Size = new System.Drawing.Size(100, 16); |
259 |
// |
260 |
// main |
261 |
// |
262 |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
263 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
264 |
this.ClientSize = new System.Drawing.Size(964, 547); |
265 |
this.Controls.Add(this.splitContainer1); |
266 |
this.Controls.Add(this.statusStrip1); |
267 |
this.Controls.Add(this.menuStrip1); |
268 |
this.MainMenuStrip = this.menuStrip1; |
269 |
this.Name = "main"; |
270 |
this.Text = "main"; |
271 |
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.main_FormClosing); |
272 |
this.Load += new System.EventHandler(this.main_Load); |
273 |
this.Shown += new System.EventHandler(this.main_Shown); |
274 |
this.menuStrip1.ResumeLayout(false); |
275 |
this.menuStrip1.PerformLayout(); |
276 |
this.statusStrip1.ResumeLayout(false); |
277 |
this.statusStrip1.PerformLayout(); |
278 |
this.splitContainer1.Panel1.ResumeLayout(false); |
279 |
this.splitContainer1.Panel2.ResumeLayout(false); |
280 |
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); |
281 |
this.splitContainer1.ResumeLayout(false); |
282 |
this.ResumeLayout(false); |
283 |
this.PerformLayout(); |
284 |
|
285 |
} |
286 |
|
287 |
#endregion |
288 |
|
289 |
private System.Windows.Forms.ListView lstPrograms; |
290 |
private System.Windows.Forms.ColumnHeader colChannel; |
291 |
private System.Windows.Forms.ColumnHeader colTitle; |
292 |
private System.Windows.Forms.ColumnHeader colSubTitle; |
293 |
private System.Windows.Forms.ColumnHeader colDescription; |
294 |
private System.Windows.Forms.ColumnHeader ColStart; |
295 |
private System.Windows.Forms.ColumnHeader colEnd; |
296 |
private System.Windows.Forms.OpenFileDialog xmltv_file_chooser; |
297 |
private System.Windows.Forms.MenuStrip menuStrip1; |
298 |
private System.Windows.Forms.ToolStripMenuItem mnuFile; |
299 |
private System.Windows.Forms.ToolStripMenuItem mnuItemOpenXMLTVFile; |
300 |
private System.Windows.Forms.ToolStripMenuItem mnuItemOpenSavedData; |
301 |
private System.Windows.Forms.ToolStripMenuItem mnuItemSaveData; |
302 |
private System.Windows.Forms.SaveFileDialog xmltv_program_data_saver; |
303 |
private System.Windows.Forms.OpenFileDialog xmltv_program_data_loader; |
304 |
private System.Windows.Forms.StatusStrip statusStrip1; |
305 |
private System.Windows.Forms.ToolStripStatusLabel lblStatus; |
306 |
private System.Windows.Forms.ToolStripStatusLabel txtStatus; |
307 |
private System.Windows.Forms.SplitContainer splitContainer1; |
308 |
private System.Windows.Forms.RichTextBox txtLog; |
309 |
private System.Windows.Forms.ToolStripMenuItem mnuTools; |
310 |
private System.Windows.Forms.ToolStripMenuItem mnuItemClearLocalLog; |
311 |
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; |
312 |
private System.Windows.Forms.ToolStripMenuItem mnuItemExit; |
313 |
private System.Windows.Forms.ToolStripProgressBar progress_status; |
314 |
} |
315 |
} |
316 |
|