diff options
author | sr55 <[email protected]> | 2010-01-31 14:40:06 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-01-31 14:40:06 +0000 |
commit | aa24522a3739ba995cb0890004e448c4d741b292 (patch) | |
tree | 87b6d611617f6a3f34c7d960e0dc63ed36d8228c /win/C#/Controls/Subtitles.cs | |
parent | 138ea1180443c3b73b81e47da016a54bf133f133 (diff) |
WinGui:
- More refactoring.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3092 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls/Subtitles.cs')
-rw-r--r-- | win/C#/Controls/Subtitles.cs | 53 |
1 files changed, 16 insertions, 37 deletions
diff --git a/win/C#/Controls/Subtitles.cs b/win/C#/Controls/Subtitles.cs index 4fac297e5..fb179bba2 100644 --- a/win/C#/Controls/Subtitles.cs +++ b/win/C#/Controls/Subtitles.cs @@ -1,8 +1,15 @@ -using System;
+/* Subtitles.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
+
+using System;
using System.Collections.Generic;
using System.IO;
using System.Windows.Forms;
using Handbrake.Functions;
+using Handbrake.Model;
namespace Handbrake.Controls
{
@@ -10,7 +17,7 @@ namespace Handbrake.Controls {
readonly IDictionary<string, string> LangMap = new Dictionary<string, string>();
List<SubtitleInfo> SubList = new List<SubtitleInfo>();
- private int _fileContainer;
+ private int FileContainer;
public Subtitles()
{
@@ -43,17 +50,17 @@ namespace Handbrake.Controls srtLangVal = srt_lang.SelectedItem.ToString();
srtCode = srt_charcode.SelectedItem.ToString();
srtOffsetMs = (int)srt_offset.Value;
- if (defaultSub == "Yes") setNoSrtDefault();
+ if (defaultSub == "Yes") SetNoSrtDefault();
} else
{
if (defaultSub == "Yes") SetNoDefault();
if (burnedVal == "Yes") SetNoBurned();
- if (_fileContainer == 0)
+ if (FileContainer == 0)
burnedVal = "Yes"; // MP4 must have bitmap subs burned in.
}
- if (_fileContainer == 0) // MP4 and M4V file extension
+ if (FileContainer == 0) // MP4 and M4V file extension
{
// Make sure we only have 1 bitmap track.
if (drp_subtitleTracks.SelectedItem != null && drp_subtitleTracks.SelectedItem.ToString().Contains("Bitmap"))
@@ -208,7 +215,7 @@ namespace Handbrake.Controls if (check_default.Checked) // Make sure we only have 1 default track
if (lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[0].Text.Contains(".srt"))
- setNoSrtDefault();
+ SetNoSrtDefault();
else
SetNoDefault();
@@ -305,7 +312,7 @@ namespace Handbrake.Controls }
}
- private void setNoSrtDefault()
+ private void SetNoSrtDefault()
{
int c = 0;
foreach (ListViewItem item in lv_subList.Items)
@@ -411,9 +418,9 @@ namespace Handbrake.Controls }
public void SetContainer(int value)
{
- _fileContainer = value;
+ FileContainer = value;
Boolean trigger = false;
- if (_fileContainer != 1)
+ if (FileContainer != 1)
foreach (ListViewItem item in lv_subList.Items)
{
if (item.SubItems[1].Text.Contains("Bitmap"))
@@ -429,32 +436,4 @@ namespace Handbrake.Controls return SubList;
}
}
-
- public class SubtitleInfo
- {
- public string Track { get; set; }
- public string Forced { get; set; }
- public string Burned { get; set; }
- public string Default { get; set; }
- public string SrtLang { get; set; }
- public string SrtCharCode { get; set; }
- public int SrtOffset { get; set; }
- public string SrtPath { get; set; }
- public string SrtFileName { get; set; }
-
- public ListViewItem ListView
- {
- get
- {
- ListViewItem listTrack = new ListViewItem(Track);
- listTrack.SubItems.Add(Forced);
- listTrack.SubItems.Add(Burned);
- listTrack.SubItems.Add(Default);
- listTrack.SubItems.Add(SrtLang);
- listTrack.SubItems.Add(SrtCharCode);
- listTrack.SubItems.Add(SrtOffset.ToString());
- return listTrack;
- }
- }
- }
}
\ No newline at end of file |