/* TitleSpecificScan.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace Handbrake.ToolWindows { using System; using System.Windows.Forms; /// /// Title Specific Scan /// public partial class PreviewOverlay : Form { public PreviewOverlay() { InitializeComponent(); } /// /// Gets the preview frame that the user entered. /// public int Preview { get { int value; int.TryParse(drp_preview.SelectedItem.ToString(), out value); return value; } } /// /// Gets the duration that the user entered. /// public int Duration { get { int value; int.TryParse(drp_preview.SelectedItem.ToString(), out value); return value; } } /// /// Play the video with Quicktime /// /// The Sender /// The EventArgs private void PlayWithQtClick(object sender, EventArgs e) { this.DialogResult = DialogResult.OK; } } }