Skip to content

Commit

Permalink
added normalizer
Browse files Browse the repository at this point in the history
  • Loading branch information
c0ldw1nter committed Dec 5, 2017
1 parent 37691ff commit 34afe3a
Show file tree
Hide file tree
Showing 15 changed files with 3,952 additions and 44 deletions.
139 changes: 139 additions & 0 deletions Converter.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 62 additions & 0 deletions Converter.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;

namespace Echoes
{
public partial class Converter : Form
{
public List<string> files;
public string outputPath = Path.Combine(Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location), "converted");

public Converter()
{
InitializeComponent();
}

public Converter(List<string> files)
{
InitializeComponent();
this.files = files;
}

void QueueConversion()
{
if (files.Count <= 0) return;


}

private void convertWorker_DoWork(object sender, DoWorkEventArgs e)
{

}

private void convertWorker_ProgressChanged(object sender, ProgressChangedEventArgs e)
{

}

private void convertWorker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{

}

private void outputPathButton_Click(object sender, EventArgs e)
{

}

private void convertButton_Click(object sender, EventArgs e)
{

}
}
}
Loading

0 comments on commit 34afe3a

Please sign in to comment.