TimelineEditDialog.Designer.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. using BeatLyrics.Tool.UserControls;
  2. namespace BeatLyrics.Tool.Dialogs
  3. {
  4. partial class TimelineEditForm
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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. #region Windows 窗体设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. this.PlayPosTrackBar = new System.Windows.Forms.TrackBar();
  31. this.TextLabel1 = new System.Windows.Forms.Label();
  32. this.PlayButton = new System.Windows.Forms.Button();
  33. this.PosLabel = new System.Windows.Forms.Label();
  34. this.TextLabel2 = new System.Windows.Forms.Label();
  35. this.UpdateTimer = new System.Windows.Forms.Timer(this.components);
  36. this.EditorControl2 = new BeatLyrics.Tool.UserControls.EditorUserControl();
  37. this.EditorControl1 = new BeatLyrics.Tool.UserControls.EditorUserControl();
  38. this.ScaleTrackBar = new System.Windows.Forms.TrackBar();
  39. this.ScaleLabel = new System.Windows.Forms.Label();
  40. this.SaveAndCloseButton = new System.Windows.Forms.Button();
  41. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  42. this.FreqRangeBar = new BeatLyrics.Tool.UserControls.ZzzzRangeBar();
  43. this.ValueRangeBar = new BeatLyrics.Tool.UserControls.ZzzzRangeBar();
  44. this.ViewSpectrumButton = new System.Windows.Forms.Button();
  45. this.ReSpectrumButton = new System.Windows.Forms.Button();
  46. this.SaMsUpDown = new System.Windows.Forms.NumericUpDown();
  47. this.SaWindoeTypeComboBox = new System.Windows.Forms.ComboBox();
  48. ((System.ComponentModel.ISupportInitialize)(this.PlayPosTrackBar)).BeginInit();
  49. ((System.ComponentModel.ISupportInitialize)(this.ScaleTrackBar)).BeginInit();
  50. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  51. this.splitContainer1.Panel1.SuspendLayout();
  52. this.splitContainer1.Panel2.SuspendLayout();
  53. this.splitContainer1.SuspendLayout();
  54. ((System.ComponentModel.ISupportInitialize)(this.SaMsUpDown)).BeginInit();
  55. this.SuspendLayout();
  56. //
  57. // PlayPosTrackBar
  58. //
  59. this.PlayPosTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  60. | System.Windows.Forms.AnchorStyles.Right)));
  61. this.PlayPosTrackBar.Location = new System.Drawing.Point(12, 12);
  62. this.PlayPosTrackBar.Maximum = 300000;
  63. this.PlayPosTrackBar.Name = "PlayPosTrackBar";
  64. this.PlayPosTrackBar.Size = new System.Drawing.Size(1264, 45);
  65. this.PlayPosTrackBar.TabIndex = 1;
  66. this.PlayPosTrackBar.TickFrequency = 10000;
  67. this.PlayPosTrackBar.TickStyle = System.Windows.Forms.TickStyle.Both;
  68. this.PlayPosTrackBar.Value = 50;
  69. this.PlayPosTrackBar.Scroll += new System.EventHandler(this.PlayPosTrackBar_Scroll);
  70. this.PlayPosTrackBar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PlayPosTrackBar_MouseDown);
  71. this.PlayPosTrackBar.MouseUp += new System.Windows.Forms.MouseEventHandler(this.PlayPosTrackBar_MouseUp);
  72. //
  73. // TextLabel1
  74. //
  75. this.TextLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  76. | System.Windows.Forms.AnchorStyles.Right)));
  77. this.TextLabel1.Location = new System.Drawing.Point(118, 66);
  78. this.TextLabel1.Name = "TextLabel1";
  79. this.TextLabel1.Size = new System.Drawing.Size(1011, 17);
  80. this.TextLabel1.TabIndex = 2;
  81. this.TextLabel1.Text = "此处应有歌词";
  82. this.TextLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  83. //
  84. // PlayButton
  85. //
  86. this.PlayButton.Location = new System.Drawing.Point(12, 63);
  87. this.PlayButton.Name = "PlayButton";
  88. this.PlayButton.Size = new System.Drawing.Size(41, 23);
  89. this.PlayButton.TabIndex = 3;
  90. this.PlayButton.Text = "▶/■";
  91. this.PlayButton.UseVisualStyleBackColor = true;
  92. this.PlayButton.Click += new System.EventHandler(this.PlayButton_Click);
  93. //
  94. // PosLabel
  95. //
  96. this.PosLabel.AutoSize = true;
  97. this.PosLabel.Location = new System.Drawing.Point(59, 68);
  98. this.PosLabel.Name = "PosLabel";
  99. this.PosLabel.Size = new System.Drawing.Size(53, 12);
  100. this.PosLabel.TabIndex = 2;
  101. this.PosLabel.Text = "00:00.00";
  102. //
  103. // TextLabel2
  104. //
  105. this.TextLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  106. | System.Windows.Forms.AnchorStyles.Right)));
  107. this.TextLabel2.Location = new System.Drawing.Point(118, 88);
  108. this.TextLabel2.Name = "TextLabel2";
  109. this.TextLabel2.Size = new System.Drawing.Size(1011, 17);
  110. this.TextLabel2.TabIndex = 2;
  111. this.TextLabel2.Text = "此处应有翻译";
  112. this.TextLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  113. //
  114. // UpdateTimer
  115. //
  116. this.UpdateTimer.Interval = 50;
  117. this.UpdateTimer.Tick += new System.EventHandler(this.UpdateTimer_Tick);
  118. //
  119. // EditorControl2
  120. //
  121. this.EditorControl2.DisplayScale = 0.1F;
  122. this.EditorControl2.Dock = System.Windows.Forms.DockStyle.Fill;
  123. this.EditorControl2.Location = new System.Drawing.Point(0, 0);
  124. this.EditorControl2.LockDown = false;
  125. this.EditorControl2.MaxSaFreq = 0D;
  126. this.EditorControl2.MaxSaValue = 0D;
  127. this.EditorControl2.MinSaFreq = 0D;
  128. this.EditorControl2.MinSaValue = 0D;
  129. this.EditorControl2.Name = "EditorControl2";
  130. this.EditorControl2.PlayPos = 0;
  131. this.EditorControl2.Size = new System.Drawing.Size(1117, 230);
  132. this.EditorControl2.TabIndex = 0;
  133. this.EditorControl2.PosChangeBegin += new System.EventHandler(this.EditorControl_PosChangeBegin);
  134. this.EditorControl2.PosChange += new System.EventHandler<int>(this.EditorControl_PosChange);
  135. this.EditorControl2.PosChangeEnd += new System.EventHandler(this.EditorControl_PosChangeEnd);
  136. //
  137. // EditorControl1
  138. //
  139. this.EditorControl1.DisplayScale = 0.1F;
  140. this.EditorControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  141. this.EditorControl1.Location = new System.Drawing.Point(0, 0);
  142. this.EditorControl1.LockDown = false;
  143. this.EditorControl1.MaxSaFreq = 0D;
  144. this.EditorControl1.MaxSaValue = 0D;
  145. this.EditorControl1.MinSaFreq = 0D;
  146. this.EditorControl1.MinSaValue = 0D;
  147. this.EditorControl1.Name = "EditorControl1";
  148. this.EditorControl1.PlayPos = 0;
  149. this.EditorControl1.Size = new System.Drawing.Size(1117, 229);
  150. this.EditorControl1.TabIndex = 0;
  151. this.EditorControl1.PosChangeBegin += new System.EventHandler(this.EditorControl_PosChangeBegin);
  152. this.EditorControl1.PosChange += new System.EventHandler<int>(this.EditorControl_PosChange);
  153. this.EditorControl1.PosChangeEnd += new System.EventHandler(this.EditorControl_PosChangeEnd);
  154. //
  155. // ScaleTrackBar
  156. //
  157. this.ScaleTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  158. this.ScaleTrackBar.Location = new System.Drawing.Point(1135, 80);
  159. this.ScaleTrackBar.Maximum = 1000;
  160. this.ScaleTrackBar.Minimum = 1;
  161. this.ScaleTrackBar.Name = "ScaleTrackBar";
  162. this.ScaleTrackBar.Size = new System.Drawing.Size(135, 45);
  163. this.ScaleTrackBar.TabIndex = 4;
  164. this.ScaleTrackBar.TickFrequency = 100;
  165. this.ScaleTrackBar.Value = 100;
  166. this.ScaleTrackBar.Scroll += new System.EventHandler(this.ScaleTrackBar_Scroll);
  167. //
  168. // ScaleLabel
  169. //
  170. this.ScaleLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  171. this.ScaleLabel.AutoSize = true;
  172. this.ScaleLabel.Location = new System.Drawing.Point(1133, 65);
  173. this.ScaleLabel.Name = "ScaleLabel";
  174. this.ScaleLabel.Size = new System.Drawing.Size(23, 12);
  175. this.ScaleLabel.TabIndex = 2;
  176. this.ScaleLabel.Text = "0.1";
  177. //
  178. // SaveAndCloseButton
  179. //
  180. this.SaveAndCloseButton.Location = new System.Drawing.Point(12, 92);
  181. this.SaveAndCloseButton.Name = "SaveAndCloseButton";
  182. this.SaveAndCloseButton.Size = new System.Drawing.Size(100, 23);
  183. this.SaveAndCloseButton.TabIndex = 5;
  184. this.SaveAndCloseButton.Text = "Save and Close";
  185. this.SaveAndCloseButton.UseVisualStyleBackColor = true;
  186. this.SaveAndCloseButton.Click += new System.EventHandler(this.SaveAndCloseButton_Click);
  187. //
  188. // splitContainer1
  189. //
  190. this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  191. | System.Windows.Forms.AnchorStyles.Left)
  192. | System.Windows.Forms.AnchorStyles.Right)));
  193. this.splitContainer1.Location = new System.Drawing.Point(12, 131);
  194. this.splitContainer1.Name = "splitContainer1";
  195. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  196. //
  197. // splitContainer1.Panel1
  198. //
  199. this.splitContainer1.Panel1.Controls.Add(this.EditorControl1);
  200. //
  201. // splitContainer1.Panel2
  202. //
  203. this.splitContainer1.Panel2.Controls.Add(this.EditorControl2);
  204. this.splitContainer1.Size = new System.Drawing.Size(1117, 463);
  205. this.splitContainer1.SplitterDistance = 229;
  206. this.splitContainer1.TabIndex = 6;
  207. //
  208. // FreqRangeBar
  209. //
  210. this.FreqRangeBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  211. | System.Windows.Forms.AnchorStyles.Right)));
  212. this.FreqRangeBar.DivisionNum = 10;
  213. this.FreqRangeBar.HeightOfBar = 8;
  214. this.FreqRangeBar.HeightOfMark = 24;
  215. this.FreqRangeBar.HeightOfTick = 6;
  216. this.FreqRangeBar.InnerColor = System.Drawing.Color.LightGreen;
  217. this.FreqRangeBar.Location = new System.Drawing.Point(1095, 220);
  218. this.FreqRangeBar.Name = "FreqRangeBar";
  219. this.FreqRangeBar.Orientation = BeatLyrics.Tool.UserControls.ZzzzRangeBar.RangeBarOrientation.vertical;
  220. this.FreqRangeBar.RangeMaximum = 10;
  221. this.FreqRangeBar.RangeMinimum = 10;
  222. this.FreqRangeBar.ScaleOrientation = BeatLyrics.Tool.UserControls.ZzzzRangeBar.TopBottomOrientation.bottom;
  223. this.FreqRangeBar.Size = new System.Drawing.Size(108, 374);
  224. this.FreqRangeBar.TabIndex = 1;
  225. this.FreqRangeBar.TotalMaximum = 2400000;
  226. this.FreqRangeBar.TotalMinimum = 1;
  227. this.FreqRangeBar.RangeChanging += new BeatLyrics.Tool.UserControls.ZzzzRangeBar.RangeChangedEventHandler(this.RangeBar_RangeChanging);
  228. //
  229. // ValueRangeBar
  230. //
  231. this.ValueRangeBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  232. | System.Windows.Forms.AnchorStyles.Right)));
  233. this.ValueRangeBar.DivisionNum = 10;
  234. this.ValueRangeBar.HeightOfBar = 8;
  235. this.ValueRangeBar.HeightOfMark = 24;
  236. this.ValueRangeBar.HeightOfTick = 6;
  237. this.ValueRangeBar.InnerColor = System.Drawing.Color.LightGreen;
  238. this.ValueRangeBar.Location = new System.Drawing.Point(1178, 220);
  239. this.ValueRangeBar.Name = "ValueRangeBar";
  240. this.ValueRangeBar.Orientation = BeatLyrics.Tool.UserControls.ZzzzRangeBar.RangeBarOrientation.vertical;
  241. this.ValueRangeBar.RangeMaximum = 0;
  242. this.ValueRangeBar.RangeMinimum = 0;
  243. this.ValueRangeBar.ScaleOrientation = BeatLyrics.Tool.UserControls.ZzzzRangeBar.TopBottomOrientation.bottom;
  244. this.ValueRangeBar.Size = new System.Drawing.Size(98, 374);
  245. this.ValueRangeBar.TabIndex = 1;
  246. this.ValueRangeBar.TotalMaximum = 0;
  247. this.ValueRangeBar.TotalMinimum = -200;
  248. this.ValueRangeBar.RangeChanging += new BeatLyrics.Tool.UserControls.ZzzzRangeBar.RangeChangedEventHandler(this.RangeBar_RangeChanging);
  249. //
  250. // ViewSpectrumButton
  251. //
  252. this.ViewSpectrumButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  253. this.ViewSpectrumButton.Enabled = false;
  254. this.ViewSpectrumButton.Location = new System.Drawing.Point(1135, 191);
  255. this.ViewSpectrumButton.Name = "ViewSpectrumButton";
  256. this.ViewSpectrumButton.Size = new System.Drawing.Size(141, 23);
  257. this.ViewSpectrumButton.TabIndex = 7;
  258. this.ViewSpectrumButton.Text = "View Spectrum";
  259. this.ViewSpectrumButton.UseVisualStyleBackColor = true;
  260. this.ViewSpectrumButton.Click += new System.EventHandler(this.ViewSpectrumButton_Click);
  261. //
  262. // ReSpectrumButton
  263. //
  264. this.ReSpectrumButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  265. this.ReSpectrumButton.Enabled = false;
  266. this.ReSpectrumButton.Location = new System.Drawing.Point(1135, 162);
  267. this.ReSpectrumButton.Name = "ReSpectrumButton";
  268. this.ReSpectrumButton.Size = new System.Drawing.Size(141, 23);
  269. this.ReSpectrumButton.TabIndex = 7;
  270. this.ReSpectrumButton.Text = "Re Spectrum (MS)";
  271. this.ReSpectrumButton.UseVisualStyleBackColor = true;
  272. this.ReSpectrumButton.Click += new System.EventHandler(this.ReSpectrumButton_Click);
  273. //
  274. // SaMsUpDown
  275. //
  276. this.SaMsUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  277. this.SaMsUpDown.Location = new System.Drawing.Point(1135, 131);
  278. this.SaMsUpDown.Maximum = new decimal(new int[] {
  279. 1000,
  280. 0,
  281. 0,
  282. 0});
  283. this.SaMsUpDown.Minimum = new decimal(new int[] {
  284. 10,
  285. 0,
  286. 0,
  287. 0});
  288. this.SaMsUpDown.Name = "SaMsUpDown";
  289. this.SaMsUpDown.Size = new System.Drawing.Size(56, 21);
  290. this.SaMsUpDown.TabIndex = 8;
  291. this.SaMsUpDown.Value = new decimal(new int[] {
  292. 50,
  293. 0,
  294. 0,
  295. 0});
  296. //
  297. // SaWindoeTypeComboBox
  298. //
  299. this.SaWindoeTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  300. this.SaWindoeTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  301. this.SaWindoeTypeComboBox.FormattingEnabled = true;
  302. this.SaWindoeTypeComboBox.Location = new System.Drawing.Point(1197, 130);
  303. this.SaWindoeTypeComboBox.Name = "SaWindoeTypeComboBox";
  304. this.SaWindoeTypeComboBox.Size = new System.Drawing.Size(79, 20);
  305. this.SaWindoeTypeComboBox.TabIndex = 9;
  306. this.SaWindoeTypeComboBox.SelectedValueChanged += new System.EventHandler(this.SaWindoeTypeComboBox_SelectedValueChanged);
  307. //
  308. // TimelineEditForm
  309. //
  310. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  311. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  312. this.ClientSize = new System.Drawing.Size(1288, 606);
  313. this.Controls.Add(this.SaWindoeTypeComboBox);
  314. this.Controls.Add(this.SaMsUpDown);
  315. this.Controls.Add(this.splitContainer1);
  316. this.Controls.Add(this.FreqRangeBar);
  317. this.Controls.Add(this.ReSpectrumButton);
  318. this.Controls.Add(this.ViewSpectrumButton);
  319. this.Controls.Add(this.ValueRangeBar);
  320. this.Controls.Add(this.SaveAndCloseButton);
  321. this.Controls.Add(this.ScaleTrackBar);
  322. this.Controls.Add(this.PlayButton);
  323. this.Controls.Add(this.ScaleLabel);
  324. this.Controls.Add(this.PosLabel);
  325. this.Controls.Add(this.TextLabel2);
  326. this.Controls.Add(this.TextLabel1);
  327. this.Controls.Add(this.PlayPosTrackBar);
  328. this.KeyPreview = true;
  329. this.MinimizeBox = false;
  330. this.Name = "TimelineEditForm";
  331. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  332. this.Text = "BeatLyrics Timeline Editor";
  333. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.EditForm_FormClosed);
  334. this.Shown += new System.EventHandler(this.EditForm_Shown);
  335. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.EditForm_KeyDown);
  336. ((System.ComponentModel.ISupportInitialize)(this.PlayPosTrackBar)).EndInit();
  337. ((System.ComponentModel.ISupportInitialize)(this.ScaleTrackBar)).EndInit();
  338. this.splitContainer1.Panel1.ResumeLayout(false);
  339. this.splitContainer1.Panel2.ResumeLayout(false);
  340. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  341. this.splitContainer1.ResumeLayout(false);
  342. ((System.ComponentModel.ISupportInitialize)(this.SaMsUpDown)).EndInit();
  343. this.ResumeLayout(false);
  344. this.PerformLayout();
  345. }
  346. #endregion
  347. private EditorUserControl EditorControl1;
  348. private System.Windows.Forms.TrackBar PlayPosTrackBar;
  349. private System.Windows.Forms.Label TextLabel1;
  350. private System.Windows.Forms.Button PlayButton;
  351. private System.Windows.Forms.Label PosLabel;
  352. private EditorUserControl EditorControl2;
  353. private System.Windows.Forms.Label TextLabel2;
  354. private System.Windows.Forms.Timer UpdateTimer;
  355. private System.Windows.Forms.TrackBar ScaleTrackBar;
  356. private System.Windows.Forms.Label ScaleLabel;
  357. private System.Windows.Forms.Button SaveAndCloseButton;
  358. private System.Windows.Forms.SplitContainer splitContainer1;
  359. private ZzzzRangeBar FreqRangeBar;
  360. private ZzzzRangeBar ValueRangeBar;
  361. private System.Windows.Forms.Button ViewSpectrumButton;
  362. private System.Windows.Forms.Button ReSpectrumButton;
  363. private System.Windows.Forms.NumericUpDown SaMsUpDown;
  364. private System.Windows.Forms.ComboBox SaWindoeTypeComboBox;
  365. }
  366. }