blob: 7d58cb14669dbb52400057058d629b316a8fd99b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Handbrake
{
public partial class frmDvdInfo : Form
{
/// <summary>
/// This window should be used to display the RAW output of the handbrake CLI which is produced during the scan.
/// </summary>
public frmDvdInfo()
{
InitializeComponent();
Parsing.Parser.OnReadLine += HandleParsedData;
Parsing.Parser.OnReadToEnd += HandleParsedData;
this.rtf_dvdInfo.Text = string.Empty;
}
private void HandleParsedData(object Sender, string Data)
{
if (this.InvokeRequired)
{
this.BeginInvoke(new Parsing.DataReadEventHandler(HandleParsedData), new object[] { Sender, Data });
return;
}
this.rtf_dvdInfo.AppendText(Data + System.Environment.NewLine);
}
private void btn_close_Click(object sender, EventArgs e)
{
this.Close();
}
protected override void OnClosing(CancelEventArgs e)
{
e.Cancel = true;
this.Hide();
base.OnClosing(e);
}
}
}
|