This commit is contained in:
STAM 2023-01-15 12:13:27 +03:00
parent 000000009e
commit 41d4f8d5a3
Signed by: stam
GPG Key ID: 4F57E51F9C45F8CD
2 changed files with 50 additions and 42 deletions

View File

@ -1,2 +1,6 @@
# Retime-Phoneme-Uti-GUI # Retime Phoneme Util: GUI
.NET 7 GUI for Retime Phoneme Util [![dotnet](https://img.shields.io/github/actions/workflow/status/AntinomyCollective/Retime-Phoneme-Util-GUI/dotnet.yml?style=flat-square)](https://github.com/AntinomyCollective/Retime-Phoneme-Util-GUI/actions/workflows/dotnet.yml) [![Download](https://img.shields.io/github/v/release/AntinomyCollective/Retime-Phoneme-Util-GUI?style=flat-square)](https://github.com/AntinomyCollective/Retime-Phoneme-Util-GUI/releases/latest) [![Activity](https://img.shields.io/github/commit-activity/w/AntinomyCollective/Retime-Phoneme-Util-GUI?style=flat-square)](https://github.com/AntinomyCollective/Retime-Phoneme-Util-GUI/tree/feature/add-logic) [![Issues](https://img.shields.io/github/issues/AntinomyCollective/Retime-Phoneme-Util-GUI?style=flat-square)](http://isitmaintained.com/project/AntinomyCollective/Retime-Phoneme-Util-GUI "Percentage of issues still open") [![License: MIT](https://img.shields.io/github/license/AntinomyCollective/Retime-Phoneme-Util-GUI?style=flat-square)](LICENSE.md) <img align="right" src="https://raw.githubusercontent.com/AntinomyCollective/Retime-Phoneme-Util-GUI/feature/add-logic/src/kru.gui/favicon.png" alt="Retime Phoneme Util: GUI" width="64" />
## What is this?
This is a useful graphical user interface written by EpicMorg Team in C# (.NET 7) for original console tool named as "Retime Phoneme Util" developed by [wowks](https://forum.csmania.ru/memberlist.php?mode=viewprofile&u=59383) at forum [CSMania](https://forum.csmania.ru/viewtopic.php?t=43274).

View File

@ -55,9 +55,10 @@ partial class FrmMain
// //
this.txtInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.txtInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.txtInput.Location = new System.Drawing.Point(7, 35); this.txtInput.Location = new System.Drawing.Point(5, 21);
this.txtInput.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.txtInput.Name = "txtInput"; this.txtInput.Name = "txtInput";
this.txtInput.Size = new System.Drawing.Size(415, 31); this.txtInput.Size = new System.Drawing.Size(292, 23);
this.txtInput.TabIndex = 1; this.txtInput.TabIndex = 1;
this.txtInput.TextChanged += new System.EventHandler(this.TxtInputTextChanged); this.txtInput.TextChanged += new System.EventHandler(this.TxtInputTextChanged);
// //
@ -65,18 +66,20 @@ partial class FrmMain
// //
this.txtOutput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.txtOutput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.txtOutput.Location = new System.Drawing.Point(7, 35); this.txtOutput.Location = new System.Drawing.Point(5, 21);
this.txtOutput.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.txtOutput.Name = "txtOutput"; this.txtOutput.Name = "txtOutput";
this.txtOutput.Size = new System.Drawing.Size(415, 31); this.txtOutput.Size = new System.Drawing.Size(292, 23);
this.txtOutput.TabIndex = 3; this.txtOutput.TabIndex = 3;
this.txtOutput.TextChanged += new System.EventHandler(this.TxtOutputTextChanged); this.txtOutput.TextChanged += new System.EventHandler(this.TxtOutputTextChanged);
// //
// btnBrowseInput // btnBrowseInput
// //
this.btnBrowseInput.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnBrowseInput.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnBrowseInput.Location = new System.Drawing.Point(430, 35); this.btnBrowseInput.Location = new System.Drawing.Point(301, 21);
this.btnBrowseInput.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnBrowseInput.Name = "btnBrowseInput"; this.btnBrowseInput.Name = "btnBrowseInput";
this.btnBrowseInput.Size = new System.Drawing.Size(107, 31); this.btnBrowseInput.Size = new System.Drawing.Size(75, 23);
this.btnBrowseInput.TabIndex = 4; this.btnBrowseInput.TabIndex = 4;
this.btnBrowseInput.Text = "Browse"; this.btnBrowseInput.Text = "Browse";
this.btnBrowseInput.UseVisualStyleBackColor = true; this.btnBrowseInput.UseVisualStyleBackColor = true;
@ -85,9 +88,10 @@ partial class FrmMain
// btnBrowseOutput // btnBrowseOutput
// //
this.btnBrowseOutput.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnBrowseOutput.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnBrowseOutput.Location = new System.Drawing.Point(430, 35); this.btnBrowseOutput.Location = new System.Drawing.Point(301, 21);
this.btnBrowseOutput.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnBrowseOutput.Name = "btnBrowseOutput"; this.btnBrowseOutput.Name = "btnBrowseOutput";
this.btnBrowseOutput.Size = new System.Drawing.Size(107, 31); this.btnBrowseOutput.Size = new System.Drawing.Size(75, 23);
this.btnBrowseOutput.TabIndex = 5; this.btnBrowseOutput.TabIndex = 5;
this.btnBrowseOutput.Text = "Browse"; this.btnBrowseOutput.Text = "Browse";
this.btnBrowseOutput.UseVisualStyleBackColor = true; this.btnBrowseOutput.UseVisualStyleBackColor = true;
@ -97,9 +101,10 @@ partial class FrmMain
// //
this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnSave.Enabled = false; this.btnSave.Enabled = false;
this.btnSave.Location = new System.Drawing.Point(341, 388); this.btnSave.Location = new System.Drawing.Point(239, 233);
this.btnSave.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnSave.Name = "btnSave"; this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(107, 38); this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 6; this.btnSave.TabIndex = 6;
this.btnSave.Text = "Save batch"; this.btnSave.Text = "Save batch";
this.btnSave.UseVisualStyleBackColor = true; this.btnSave.UseVisualStyleBackColor = true;
@ -109,9 +114,10 @@ partial class FrmMain
// //
this.btnStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnStart.Enabled = false; this.btnStart.Enabled = false;
this.btnStart.Location = new System.Drawing.Point(454, 388); this.btnStart.Location = new System.Drawing.Point(318, 233);
this.btnStart.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnStart.Name = "btnStart"; this.btnStart.Name = "btnStart";
this.btnStart.Size = new System.Drawing.Size(107, 38); this.btnStart.Size = new System.Drawing.Size(75, 23);
this.btnStart.TabIndex = 7; this.btnStart.TabIndex = 7;
this.btnStart.Text = "Start"; this.btnStart.Text = "Start";
this.btnStart.UseVisualStyleBackColor = true; this.btnStart.UseVisualStyleBackColor = true;
@ -127,9 +133,10 @@ partial class FrmMain
this.chkSaveLogs.AutoSize = true; this.chkSaveLogs.AutoSize = true;
this.chkSaveLogs.Checked = true; this.chkSaveLogs.Checked = true;
this.chkSaveLogs.CheckState = System.Windows.Forms.CheckState.Checked; this.chkSaveLogs.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkSaveLogs.Location = new System.Drawing.Point(131, 396); this.chkSaveLogs.Location = new System.Drawing.Point(92, 236);
this.chkSaveLogs.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.chkSaveLogs.Name = "chkSaveLogs"; this.chkSaveLogs.Name = "chkSaveLogs";
this.chkSaveLogs.Size = new System.Drawing.Size(114, 29); this.chkSaveLogs.Size = new System.Drawing.Size(75, 19);
this.chkSaveLogs.TabIndex = 9; this.chkSaveLogs.TabIndex = 9;
this.chkSaveLogs.Text = "Save logs"; this.chkSaveLogs.Text = "Save logs";
this.chkSaveLogs.UseVisualStyleBackColor = true; this.chkSaveLogs.UseVisualStyleBackColor = true;
@ -140,11 +147,9 @@ partial class FrmMain
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxInput.Controls.Add(this.txtInput); this.groupBoxInput.Controls.Add(this.txtInput);
this.groupBoxInput.Controls.Add(this.btnBrowseInput); this.groupBoxInput.Controls.Add(this.btnBrowseInput);
this.groupBoxInput.Location = new System.Drawing.Point(17, 20); this.groupBoxInput.Location = new System.Drawing.Point(12, 12);
this.groupBoxInput.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBoxInput.Name = "groupBoxInput"; this.groupBoxInput.Name = "groupBoxInput";
this.groupBoxInput.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); this.groupBoxInput.Size = new System.Drawing.Size(381, 63);
this.groupBoxInput.Size = new System.Drawing.Size(544, 105);
this.groupBoxInput.TabIndex = 10; this.groupBoxInput.TabIndex = 10;
this.groupBoxInput.TabStop = false; this.groupBoxInput.TabStop = false;
this.groupBoxInput.Text = "Input folder:"; this.groupBoxInput.Text = "Input folder:";
@ -155,11 +160,9 @@ partial class FrmMain
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxOutput.Controls.Add(this.txtOutput); this.groupBoxOutput.Controls.Add(this.txtOutput);
this.groupBoxOutput.Controls.Add(this.btnBrowseOutput); this.groupBoxOutput.Controls.Add(this.btnBrowseOutput);
this.groupBoxOutput.Location = new System.Drawing.Point(17, 135); this.groupBoxOutput.Location = new System.Drawing.Point(12, 81);
this.groupBoxOutput.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBoxOutput.Name = "groupBoxOutput"; this.groupBoxOutput.Name = "groupBoxOutput";
this.groupBoxOutput.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); this.groupBoxOutput.Size = new System.Drawing.Size(381, 63);
this.groupBoxOutput.Size = new System.Drawing.Size(544, 105);
this.groupBoxOutput.TabIndex = 11; this.groupBoxOutput.TabIndex = 11;
this.groupBoxOutput.TabStop = false; this.groupBoxOutput.TabStop = false;
this.groupBoxOutput.Text = "Output folder:"; this.groupBoxOutput.Text = "Output folder:";
@ -168,9 +171,10 @@ partial class FrmMain
// //
this.chkClean.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.chkClean.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.chkClean.AutoSize = true; this.chkClean.AutoSize = true;
this.chkClean.Location = new System.Drawing.Point(7, 86); this.chkClean.Location = new System.Drawing.Point(5, 50);
this.chkClean.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.chkClean.Name = "chkClean"; this.chkClean.Name = "chkClean";
this.chkClean.Size = new System.Drawing.Size(167, 29); this.chkClean.Size = new System.Drawing.Size(112, 19);
this.chkClean.TabIndex = 9; this.chkClean.TabIndex = 9;
this.chkClean.Text = "Save Clean copy"; this.chkClean.Text = "Save Clean copy";
this.chkClean.UseVisualStyleBackColor = true; this.chkClean.UseVisualStyleBackColor = true;
@ -183,11 +187,9 @@ partial class FrmMain
this.groupBox1.Controls.Add(this.txtOutputClean); this.groupBox1.Controls.Add(this.txtOutputClean);
this.groupBox1.Controls.Add(this.btnBrowseOutputClean); this.groupBox1.Controls.Add(this.btnBrowseOutputClean);
this.groupBox1.Controls.Add(this.chkClean); this.groupBox1.Controls.Add(this.chkClean);
this.groupBox1.Location = new System.Drawing.Point(17, 250); this.groupBox1.Location = new System.Drawing.Point(12, 150);
this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox1.Name = "groupBox1"; this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); this.groupBox1.Size = new System.Drawing.Size(381, 74);
this.groupBox1.Size = new System.Drawing.Size(544, 123);
this.groupBox1.TabIndex = 11; this.groupBox1.TabIndex = 11;
this.groupBox1.TabStop = false; this.groupBox1.TabStop = false;
this.groupBox1.Text = "Output folder for clean files (Optional):"; this.groupBox1.Text = "Output folder for clean files (Optional):";
@ -197,9 +199,10 @@ partial class FrmMain
this.txtOutputClean.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.txtOutputClean.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.txtOutputClean.Enabled = false; this.txtOutputClean.Enabled = false;
this.txtOutputClean.Location = new System.Drawing.Point(7, 35); this.txtOutputClean.Location = new System.Drawing.Point(5, 21);
this.txtOutputClean.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.txtOutputClean.Name = "txtOutputClean"; this.txtOutputClean.Name = "txtOutputClean";
this.txtOutputClean.Size = new System.Drawing.Size(415, 31); this.txtOutputClean.Size = new System.Drawing.Size(292, 23);
this.txtOutputClean.TabIndex = 3; this.txtOutputClean.TabIndex = 3;
this.txtOutputClean.TextChanged += new System.EventHandler(this.TxtOutputTextChanged); this.txtOutputClean.TextChanged += new System.EventHandler(this.TxtOutputTextChanged);
// //
@ -207,9 +210,10 @@ partial class FrmMain
// //
this.btnBrowseOutputClean.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnBrowseOutputClean.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnBrowseOutputClean.Enabled = false; this.btnBrowseOutputClean.Enabled = false;
this.btnBrowseOutputClean.Location = new System.Drawing.Point(430, 35); this.btnBrowseOutputClean.Location = new System.Drawing.Point(301, 21);
this.btnBrowseOutputClean.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnBrowseOutputClean.Name = "btnBrowseOutputClean"; this.btnBrowseOutputClean.Name = "btnBrowseOutputClean";
this.btnBrowseOutputClean.Size = new System.Drawing.Size(107, 31); this.btnBrowseOutputClean.Size = new System.Drawing.Size(75, 23);
this.btnBrowseOutputClean.TabIndex = 5; this.btnBrowseOutputClean.TabIndex = 5;
this.btnBrowseOutputClean.Text = "Browse"; this.btnBrowseOutputClean.Text = "Browse";
this.btnBrowseOutputClean.UseVisualStyleBackColor = true; this.btnBrowseOutputClean.UseVisualStyleBackColor = true;
@ -218,20 +222,19 @@ partial class FrmMain
// buttonAbout // buttonAbout
// //
this.buttonAbout.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.buttonAbout.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.buttonAbout.Location = new System.Drawing.Point(17, 388); this.buttonAbout.Location = new System.Drawing.Point(12, 233);
this.buttonAbout.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.buttonAbout.Name = "buttonAbout"; this.buttonAbout.Name = "buttonAbout";
this.buttonAbout.Size = new System.Drawing.Size(107, 38); this.buttonAbout.Size = new System.Drawing.Size(75, 23);
this.buttonAbout.TabIndex = 12; this.buttonAbout.TabIndex = 12;
this.buttonAbout.Text = "About"; this.buttonAbout.Text = "About";
this.buttonAbout.UseVisualStyleBackColor = true; this.buttonAbout.UseVisualStyleBackColor = true;
this.buttonAbout.Click += new System.EventHandler(this.buttonAbout_Click); this.buttonAbout.Click += new System.EventHandler(this.buttonAbout_Click);
// //
// frmMain // FrmMain
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(577, 445); this.ClientSize = new System.Drawing.Size(404, 267);
this.Controls.Add(this.buttonAbout); this.Controls.Add(this.buttonAbout);
this.Controls.Add(this.groupBox1); this.Controls.Add(this.groupBox1);
this.Controls.Add(this.chkSaveLogs); this.Controls.Add(this.chkSaveLogs);
@ -241,8 +244,9 @@ partial class FrmMain
this.Controls.Add(this.btnSave); this.Controls.Add(this.btnSave);
this.HelpButton = true; this.HelpButton = true;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimumSize = new System.Drawing.Size(591, 473); this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.Name = "frmMain"; this.MinimumSize = new System.Drawing.Size(418, 299);
this.Name = "FrmMain";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "appName"; this.Text = "appName";
this.Load += new System.EventHandler(this.frmMain_Load); this.Load += new System.EventHandler(this.frmMain_Load);