diff options
author | sr55 <[email protected]> | 2007-10-14 16:58:01 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-10-14 16:58:01 +0000 |
commit | 6a429d65ab6a3fd1fddb87b206d410e2004b5411 (patch) | |
tree | 3fff7d210e206d4574573cfa80bddb982b5935d8 /win/C#/frmReadDVD.cs | |
parent | 82ec8fc00a3181c19bc825bf64cf22f6c9e744ca (diff) |
WinGui:
- Change: All windows made sizeable
- Change: Queue / Media Info Windows now have titles + icon and appear correctly in the task bar.
- Change: Minimise box removed in Queue window in favour of the Windows default minimise button.
- Fixed: System requirements checker was not confirming the correct amount of ram.
- Removed: Code to handle CLI Information without text files. This can not work without all data going out via standard output which has been decided against.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1026 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmReadDVD.cs')
-rw-r--r-- | win/C#/frmReadDVD.cs | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/win/C#/frmReadDVD.cs b/win/C#/frmReadDVD.cs index ff5027586..1cf817223 100644 --- a/win/C#/frmReadDVD.cs +++ b/win/C#/frmReadDVD.cs @@ -35,11 +35,7 @@ namespace Handbrake {
try
{
- //btn_skip.Visible = true;
- lbl_progress.Text = "0%";
- //lbl_progress.Visible = true;
lbl_status.Visible = true;
- // throw cli call and parsing on it's own thread
ThreadPool.QueueUserWorkItem(startProc);
}
catch (Exception exc)
@@ -92,9 +88,6 @@ namespace Handbrake private void startProc(object state)
{
- //string query = "-i " + '"' + inputFile + '"' + " -t0";
- // hbProc = process.runCli(this, query, true, true, false, true);
-
try
{
string appPath = Application.StartupPath.ToString()+ "\\";
@@ -124,44 +117,5 @@ namespace Handbrake }
}
-
- //*********************************************************************************************************************************************
- /*
- * This has been temporily disabled due to the stderr issue
- *
- *
- Parsing.Parser readData = new Parsing.Parser(hbProc.StandardError.BaseStream);
- readData.OnScanProgress += Parser_OnScanProgress;
- readData.OnReadLine += dvdInfo.HandleParsedData;
- readData.OnReadToEnd += dvdInfo.HandleParsedData;
-
- // Setup the parser
-
-
- if (cancel != 1)
- {
- updateUIElements();
- process.killCLI();
- process.closeCLI();
- }
- */
- //*********************************************************************************************************************************************
-
-
- /*private void Parser_OnScanProgress(object Sender, int CurrentTitle, int TitleCount)
- {
- if (this.InvokeRequired)
- {
- this.BeginInvoke(new Parsing.ScanProgressEventHandler(Parser_OnScanProgress), new object[] { Sender, CurrentTitle, TitleCount });
- return;
- }
- int progress = Convert.ToInt32(Convert.ToDouble(CurrentTitle) / Convert.ToDouble(TitleCount) * 100) + 1;
- if (progress > 100)
- {
- progress = 100;
- }
- this.lbl_progress.Text = progress.ToString() + "%";
- }*/
-
}
}
\ No newline at end of file |