mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2025-02-01 05:21:40 +01:00
Add a few new shortcuts - thx Milenko :)
"Set end and pause" + "Export to PAC" + "Toggle box" (EBU STL)
This commit is contained in:
parent
3f6f3e9e64
commit
0590f7d804
@ -2003,6 +2003,7 @@ can edit in same subtitle file (collaboration)</Information>
|
||||
<AdjustViaEndAutoStart>Adjust via end position</AdjustViaEndAutoStart>
|
||||
<AdjustViaEndAutoStartAndGoToNext>Adjust via end position and go to next</AdjustViaEndAutoStartAndGoToNext>
|
||||
<AdjustSetEndTimeAndGoToNext>Set end and go to next</AdjustSetEndTimeAndGoToNext>
|
||||
<AdjustSetEndTimeAndPause>Set end and pause</AdjustSetEndTimeAndPause>
|
||||
<AdjustSetStartAutoDurationAndGoToNext>Set start, auto duration and go to next</AdjustSetStartAutoDurationAndGoToNext>
|
||||
<AdjustSetEndNextStartAndGoToNext>Set end, next start and go to next</AdjustSetEndNextStartAndGoToNext>
|
||||
<AdjustStartDownEndUpAndGoToNext>Key down=set start, Key up=set end and go to next</AdjustStartDownEndUpAndGoToNext>
|
||||
|
@ -2297,6 +2297,7 @@ can edit in same subtitle file (collaboration)",
|
||||
AdjustViaEndAutoStart = "Adjust via end position",
|
||||
AdjustViaEndAutoStartAndGoToNext = "Adjust via end position and go to next",
|
||||
AdjustSetEndTimeAndGoToNext = "Set end and go to next",
|
||||
AdjustSetEndTimeAndPause = "Set end and pause",
|
||||
AdjustSetStartAutoDurationAndGoToNext = "Set start, auto duration and go to next",
|
||||
AdjustSetEndNextStartAndGoToNext = "Set end, next start and go to next",
|
||||
AdjustStartDownEndUpAndGoToNext = "Key down=set start, Key up=set end and go to next",
|
||||
|
@ -5431,6 +5431,9 @@ namespace Nikse.SubtitleEdit.Core
|
||||
case "Settings/AdjustSetEndTimeAndGoToNext":
|
||||
language.Settings.AdjustSetEndTimeAndGoToNext = reader.Value;
|
||||
break;
|
||||
case "Settings/AdjustSetEndTimeAndPause":
|
||||
language.Settings.AdjustSetEndTimeAndPause = reader.Value;
|
||||
break;
|
||||
case "Settings/AdjustSetStartAutoDurationAndGoToNext":
|
||||
language.Settings.AdjustSetStartAutoDurationAndGoToNext = reader.Value;
|
||||
break;
|
||||
|
@ -2168,6 +2168,7 @@
|
||||
public string AdjustViaEndAutoStart { get; set; }
|
||||
public string AdjustViaEndAutoStartAndGoToNext { get; set; }
|
||||
public string AdjustSetEndTimeAndGoToNext { get; set; }
|
||||
public string AdjustSetEndTimeAndPause { get; set; }
|
||||
public string AdjustSetStartAutoDurationAndGoToNext { get; set; }
|
||||
public string AdjustSetEndNextStartAndGoToNext { get; set; }
|
||||
public string AdjustStartDownEndUpAndGoToNext { get; set; }
|
||||
|
@ -1760,6 +1760,7 @@ $HorzAlign = Center
|
||||
public string MainFileImportPlainText { get; set; }
|
||||
public string MainFileImportTimeCodes { get; set; }
|
||||
public string MainFileExportEbu { get; set; }
|
||||
public string MainFileExportPac { get; set; }
|
||||
public string MainFileExportPlainText { get; set; }
|
||||
public string MainEditUndo { get; set; }
|
||||
public string MainEditRedo { get; set; }
|
||||
@ -1833,6 +1834,7 @@ $HorzAlign = Center
|
||||
public string MainListViewItalic { get; set; }
|
||||
public string MainListViewBold { get; set; }
|
||||
public string MainListViewUnderline { get; set; }
|
||||
public string MainListViewBox { get; set; }
|
||||
public string MainListViewSplit { get; set; }
|
||||
public string MainListViewToggleDashes { get; set; }
|
||||
public string MainListViewToggleMusicSymbols { get; set; }
|
||||
@ -1875,6 +1877,7 @@ $HorzAlign = Center
|
||||
public string MainCreateInsertSubAtVideoPosNoTextBoxFocus { get; set; }
|
||||
public string MainCreateSetStart { get; set; }
|
||||
public string MainCreateSetEnd { get; set; }
|
||||
public string MainAdjustSetEndAndPause { get; set; }
|
||||
public string MainCreateSetEndAddNewAndGoToNew { get; set; }
|
||||
public string MainCreateStartDownEndUp { get; set; }
|
||||
public string MainAdjustSetStartAndOffsetTheRest { get; set; }
|
||||
@ -1964,7 +1967,6 @@ $HorzAlign = Center
|
||||
MainFileSaveOriginalAs = string.Empty;
|
||||
MainFileSaveAs = string.Empty;
|
||||
MainFileSaveAll = string.Empty;
|
||||
MainFileExportEbu = string.Empty;
|
||||
MainEditUndo = "Control+Z";
|
||||
MainEditRedo = "Control+Y";
|
||||
MainEditFind = "Control+F";
|
||||
@ -5957,6 +5959,12 @@ $HorzAlign = Center
|
||||
settings.Shortcuts.MainFileExportEbu = subNode.InnerText;
|
||||
}
|
||||
|
||||
subNode = node.SelectSingleNode("MainFileExportPac");
|
||||
if (subNode != null)
|
||||
{
|
||||
settings.Shortcuts.MainFileExportPac = subNode.InnerText;
|
||||
}
|
||||
|
||||
subNode = node.SelectSingleNode("MainFileExportPlainText");
|
||||
if (subNode != null)
|
||||
{
|
||||
@ -6383,6 +6391,12 @@ $HorzAlign = Center
|
||||
settings.Shortcuts.MainListViewUnderline = subNode.InnerText;
|
||||
}
|
||||
|
||||
subNode = node.SelectSingleNode("MainListViewBox");
|
||||
if (subNode != null)
|
||||
{
|
||||
settings.Shortcuts.MainListViewBox = subNode.InnerText;
|
||||
}
|
||||
|
||||
subNode = node.SelectSingleNode("MainListViewSplit");
|
||||
if (subNode != null)
|
||||
{
|
||||
@ -6647,6 +6661,12 @@ $HorzAlign = Center
|
||||
settings.Shortcuts.MainCreateSetEnd = subNode.InnerText;
|
||||
}
|
||||
|
||||
subNode = node.SelectSingleNode("MainAdjustSetEndAndPause");
|
||||
if (subNode != null)
|
||||
{
|
||||
settings.Shortcuts.MainAdjustSetEndAndPause = subNode.InnerText;
|
||||
}
|
||||
|
||||
subNode = node.SelectSingleNode("MainCreateSetEndAddNewAndGoToNew");
|
||||
if (subNode != null)
|
||||
{
|
||||
@ -7924,6 +7944,7 @@ $HorzAlign = Center
|
||||
textWriter.WriteElementString("MainFileImportTimeCodes", settings.Shortcuts.MainFileImportTimeCodes);
|
||||
textWriter.WriteElementString("MainFileExportPlainText", settings.Shortcuts.MainFileExportPlainText);
|
||||
textWriter.WriteElementString("MainFileExportEbu", settings.Shortcuts.MainFileExportEbu);
|
||||
textWriter.WriteElementString("MainFileExportPac", settings.Shortcuts.MainFileExportPac);
|
||||
textWriter.WriteElementString("MainEditUndo", settings.Shortcuts.MainEditUndo);
|
||||
textWriter.WriteElementString("MainEditRedo", settings.Shortcuts.MainEditRedo);
|
||||
textWriter.WriteElementString("MainEditFind", settings.Shortcuts.MainEditFind);
|
||||
@ -7994,6 +8015,7 @@ $HorzAlign = Center
|
||||
textWriter.WriteElementString("MainListViewItalic", settings.Shortcuts.MainListViewItalic);
|
||||
textWriter.WriteElementString("MainListViewBold", settings.Shortcuts.MainListViewBold);
|
||||
textWriter.WriteElementString("MainListViewUnderline", settings.Shortcuts.MainListViewUnderline);
|
||||
textWriter.WriteElementString("MainListViewBox", settings.Shortcuts.MainListViewBox);
|
||||
textWriter.WriteElementString("MainListViewSplit", settings.Shortcuts.MainListViewSplit);
|
||||
textWriter.WriteElementString("MainListViewToggleDashes", settings.Shortcuts.MainListViewToggleDashes);
|
||||
textWriter.WriteElementString("MainListViewToggleMusicSymbols", settings.Shortcuts.MainListViewToggleMusicSymbols);
|
||||
@ -8037,6 +8059,7 @@ $HorzAlign = Center
|
||||
textWriter.WriteElementString("MainCreateInsertSubAtVideoPosNoTextBoxFocus", settings.Shortcuts.MainCreateInsertSubAtVideoPosNoTextBoxFocus);
|
||||
textWriter.WriteElementString("MainCreateSetStart", settings.Shortcuts.MainCreateSetStart);
|
||||
textWriter.WriteElementString("MainCreateSetEnd", settings.Shortcuts.MainCreateSetEnd);
|
||||
textWriter.WriteElementString("MainAdjustSetEndAndPause", settings.Shortcuts.MainAdjustSetEndAndPause);
|
||||
textWriter.WriteElementString("MainCreateSetEndAddNewAndGoToNew", settings.Shortcuts.MainCreateSetEndAddNewAndGoToNew);
|
||||
textWriter.WriteElementString("MainCreateStartDownEndUp", settings.Shortcuts.MainCreateStartDownEndUp);
|
||||
textWriter.WriteElementString("MainAdjustSetStartAndOffsetTheRest", settings.Shortcuts.MainAdjustSetStartAndOffsetTheRest);
|
||||
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
using Nikse.SubtitleEdit.Core;
|
||||
using Nikse.SubtitleEdit.Core;
|
||||
using Nikse.SubtitleEdit.Logic;
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Nikse.SubtitleEdit.Forms
|
||||
{
|
||||
@ -10,12 +10,24 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
|
||||
public string Color { get; private set; }
|
||||
|
||||
public EbuColorPicker()
|
||||
public EbuColorPicker(bool showBlack)
|
||||
{
|
||||
UiUtil.PreInitialize(this);
|
||||
InitializeComponent();
|
||||
UiUtil.FixFonts(this);
|
||||
Text = Configuration.Settings.Language.ColorChooser.Title;
|
||||
if (!showBlack)
|
||||
{
|
||||
buttonBlack.Visible = false;
|
||||
buttonBlue.Top -= buttonBlue.Height;
|
||||
buttonCyan .Top -= buttonBlue.Height;
|
||||
buttonGreen.Top -= buttonBlue.Height;
|
||||
buttonMagenta.Top -= buttonBlue.Height;
|
||||
buttonRed.Top -= buttonBlue.Height;
|
||||
buttonWhite.Top -= buttonBlue.Height;
|
||||
buttonYellow.Top -= buttonBlue.Height;
|
||||
Height -= buttonBlue.Height;
|
||||
}
|
||||
}
|
||||
|
||||
private void EbuColorPicker_KeyDown(object sender, KeyEventArgs e)
|
||||
|
450
src/Forms/Main.Designer.cs
generated
450
src/Forms/Main.Designer.cs
generated
@ -38,9 +38,9 @@
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
|
||||
Nikse.SubtitleEdit.Core.TimeCode timeCode3 = new Nikse.SubtitleEdit.Core.TimeCode();
|
||||
Nikse.SubtitleEdit.Core.TimeCode timeCode1 = new Nikse.SubtitleEdit.Core.TimeCode();
|
||||
Nikse.SubtitleEdit.Core.TimeCode timeCode2 = new Nikse.SubtitleEdit.Core.TimeCode();
|
||||
Nikse.SubtitleEdit.Core.TimeCode timeCode3 = new Nikse.SubtitleEdit.Core.TimeCode();
|
||||
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
||||
this.labelStatus = new System.Windows.Forms.ToolStripStatusLabel();
|
||||
this.toolStripSelected = new System.Windows.Forms.ToolStripStatusLabel();
|
||||
@ -329,7 +329,6 @@
|
||||
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
|
||||
this.groupBoxVideo = new System.Windows.Forms.GroupBox();
|
||||
this.labelNextWord = new System.Windows.Forms.Label();
|
||||
this.audioVisualizer = new Nikse.SubtitleEdit.Controls.AudioVisualizer();
|
||||
this.checkBoxSyncListViewWithVideoWhilePlaying = new System.Windows.Forms.CheckBox();
|
||||
this.labelVideoInfo = new System.Windows.Forms.Label();
|
||||
this.trackBarWaveformPosition = new System.Windows.Forms.TrackBar();
|
||||
@ -365,7 +364,6 @@
|
||||
this.buttonPlayCurrent = new System.Windows.Forms.Button();
|
||||
this.buttonPlayNext = new System.Windows.Forms.Button();
|
||||
this.tabPageCreate = new System.Windows.Forms.TabPage();
|
||||
this.timeUpDownVideoPosition = new Nikse.SubtitleEdit.Controls.TimeUpDown();
|
||||
this.buttonGotoSub = new System.Windows.Forms.Button();
|
||||
this.buttonBeforeText = new System.Windows.Forms.Button();
|
||||
this.buttonSetEnd = new System.Windows.Forms.Button();
|
||||
@ -383,7 +381,6 @@
|
||||
this.labelVideoPosition = new System.Windows.Forms.Label();
|
||||
this.buttonSecBack1 = new System.Windows.Forms.Button();
|
||||
this.tabPageAdjust = new System.Windows.Forms.TabPage();
|
||||
this.timeUpDownVideoPositionAdjust = new Nikse.SubtitleEdit.Controls.TimeUpDown();
|
||||
this.buttonAdjustSetEndTime = new System.Windows.Forms.Button();
|
||||
this.buttonSetEndAndGoToNext = new System.Windows.Forms.Button();
|
||||
this.buttonSetStartAndOffsetRest = new System.Windows.Forms.Button();
|
||||
@ -437,7 +434,6 @@
|
||||
this.tabControlSubtitle = new System.Windows.Forms.TabControl();
|
||||
this.tabPage1 = new System.Windows.Forms.TabPage();
|
||||
this.splitContainerListViewAndText = new System.Windows.Forms.SplitContainer();
|
||||
this.SubtitleListview1 = new Nikse.SubtitleEdit.Controls.SubtitleListView();
|
||||
this.imageListBookmarks = new System.Windows.Forms.ImageList(this.components);
|
||||
this.groupBoxEdit = new System.Windows.Forms.GroupBox();
|
||||
this.labelAlternateSingleLinePixels = new System.Windows.Forms.Label();
|
||||
@ -455,7 +451,6 @@
|
||||
this.labelTextAlternateLineLengths = new System.Windows.Forms.Label();
|
||||
this.labelAlternateText = new System.Windows.Forms.Label();
|
||||
this.labelText = new System.Windows.Forms.Label();
|
||||
this.textBoxListViewTextAlternate = new Nikse.SubtitleEdit.Controls.SETextBox();
|
||||
this.contextMenuStripTextBoxListView = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.toolStripMenuItemWebVttVoice = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparatorWebVTT = new System.Windows.Forms.ToolStripSeparator();
|
||||
@ -503,23 +498,29 @@
|
||||
this.labelTextLineTotal = new System.Windows.Forms.Label();
|
||||
this.labelCharactersPerSecond = new System.Windows.Forms.Label();
|
||||
this.buttonUnBreak = new System.Windows.Forms.Button();
|
||||
this.timeUpDownStartTime = new Nikse.SubtitleEdit.Controls.TimeUpDown();
|
||||
this.numericUpDownDuration = new System.Windows.Forms.NumericUpDown();
|
||||
this.buttonPrevious = new System.Windows.Forms.Button();
|
||||
this.buttonNext = new System.Windows.Forms.Button();
|
||||
this.labelStartTime = new System.Windows.Forms.Label();
|
||||
this.textBoxListViewText = new Nikse.SubtitleEdit.Controls.SETextBox();
|
||||
this.labelDuration = new System.Windows.Forms.Label();
|
||||
this.labelAutoDuration = new System.Windows.Forms.Label();
|
||||
this.tabPage2 = new System.Windows.Forms.TabPage();
|
||||
this.textBoxSource = new System.Windows.Forms.TextBox();
|
||||
this.panelVideoPlayer = new System.Windows.Forms.Panel();
|
||||
this.mediaPlayer = new Nikse.SubtitleEdit.Controls.VideoPlayerContainer();
|
||||
this.contextMenuStripEmpty = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.insertLineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.imageListPlayRate = new System.Windows.Forms.ImageList(this.components);
|
||||
this.timerTextUndo = new System.Windows.Forms.Timer(this.components);
|
||||
this.timerAlternateTextUndo = new System.Windows.Forms.Timer(this.components);
|
||||
this.boxToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.SubtitleListview1 = new Nikse.SubtitleEdit.Controls.SubtitleListView();
|
||||
this.textBoxListViewTextAlternate = new Nikse.SubtitleEdit.Controls.SETextBox();
|
||||
this.timeUpDownStartTime = new Nikse.SubtitleEdit.Controls.TimeUpDown();
|
||||
this.textBoxListViewText = new Nikse.SubtitleEdit.Controls.SETextBox();
|
||||
this.mediaPlayer = new Nikse.SubtitleEdit.Controls.VideoPlayerContainer();
|
||||
this.audioVisualizer = new Nikse.SubtitleEdit.Controls.AudioVisualizer();
|
||||
this.timeUpDownVideoPosition = new Nikse.SubtitleEdit.Controls.TimeUpDown();
|
||||
this.timeUpDownVideoPositionAdjust = new Nikse.SubtitleEdit.Controls.TimeUpDown();
|
||||
this.statusStrip1.SuspendLayout();
|
||||
this.toolStrip1.SuspendLayout();
|
||||
this.menuStrip1.SuspendLayout();
|
||||
@ -2456,7 +2457,7 @@
|
||||
this.changeCasingForSelectedLinesToolStripMenuItem,
|
||||
this.toolStripMenuItemSaveSelectedLines});
|
||||
this.contextMenuStripListview.Name = "contextMenuStripListview";
|
||||
this.contextMenuStripListview.Size = new System.Drawing.Size(285, 964);
|
||||
this.contextMenuStripListview.Size = new System.Drawing.Size(285, 942);
|
||||
this.contextMenuStripListview.Closed += new System.Windows.Forms.ToolStripDropDownClosedEventHandler(this.MenuClosed);
|
||||
this.contextMenuStripListview.Opening += new System.ComponentModel.CancelEventHandler(this.ContextMenuStripListviewOpening);
|
||||
this.contextMenuStripListview.Opened += new System.EventHandler(this.MenuOpened);
|
||||
@ -2960,52 +2961,6 @@
|
||||
this.labelNextWord.Text = "Next: xxx";
|
||||
this.labelNextWord.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||
//
|
||||
// audioVisualizer
|
||||
//
|
||||
this.audioVisualizer.AllowDrop = true;
|
||||
this.audioVisualizer.AllowNewSelection = true;
|
||||
this.audioVisualizer.AllowOverlap = false;
|
||||
this.audioVisualizer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.audioVisualizer.BackColor = System.Drawing.Color.Black;
|
||||
this.audioVisualizer.BackgroundColor = System.Drawing.Color.Black;
|
||||
this.audioVisualizer.ClosenessForBorderSelection = 15;
|
||||
this.audioVisualizer.Color = System.Drawing.Color.GreenYellow;
|
||||
this.audioVisualizer.CursorColor = System.Drawing.Color.Empty;
|
||||
this.audioVisualizer.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
|
||||
this.audioVisualizer.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(18)))));
|
||||
this.audioVisualizer.InsertAtVideoPositionShortcut = System.Windows.Forms.Keys.Insert;
|
||||
this.audioVisualizer.Location = new System.Drawing.Point(472, 32);
|
||||
this.audioVisualizer.Margin = new System.Windows.Forms.Padding(0);
|
||||
this.audioVisualizer.MouseWheelScrollUpIsForward = true;
|
||||
this.audioVisualizer.Move100MsLeft = System.Windows.Forms.Keys.None;
|
||||
this.audioVisualizer.Move100MsRight = System.Windows.Forms.Keys.None;
|
||||
this.audioVisualizer.MoveOneSecondLeft = System.Windows.Forms.Keys.None;
|
||||
this.audioVisualizer.MoveOneSecondRight = System.Windows.Forms.Keys.None;
|
||||
this.audioVisualizer.Name = "audioVisualizer";
|
||||
this.audioVisualizer.NewSelectionParagraph = null;
|
||||
this.audioVisualizer.ParagraphColor = System.Drawing.Color.LimeGreen;
|
||||
this.audioVisualizer.SceneChanges = ((System.Collections.Generic.List<double>)(resources.GetObject("audioVisualizer.SceneChanges")));
|
||||
this.audioVisualizer.SelectedColor = System.Drawing.Color.Red;
|
||||
this.audioVisualizer.ShowGridLines = true;
|
||||
this.audioVisualizer.ShowSpectrogram = false;
|
||||
this.audioVisualizer.ShowWaveform = true;
|
||||
this.audioVisualizer.Size = new System.Drawing.Size(499, 229);
|
||||
this.audioVisualizer.StartPositionSeconds = 0D;
|
||||
this.audioVisualizer.TabIndex = 6;
|
||||
this.audioVisualizer.TextBold = true;
|
||||
this.audioVisualizer.TextColor = System.Drawing.Color.Gray;
|
||||
this.audioVisualizer.TextSize = 9F;
|
||||
this.audioVisualizer.VerticalZoomFactor = 1D;
|
||||
this.audioVisualizer.WaveformNotLoadedText = "Click to add waveform";
|
||||
this.audioVisualizer.WavePeaks = null;
|
||||
this.audioVisualizer.ZoomFactor = 1D;
|
||||
this.audioVisualizer.Click += new System.EventHandler(this.AudioWaveform_Click);
|
||||
this.audioVisualizer.DragDrop += new System.Windows.Forms.DragEventHandler(this.AudioWaveformDragDrop);
|
||||
this.audioVisualizer.DragEnter += new System.Windows.Forms.DragEventHandler(this.AudioWaveformDragEnter);
|
||||
this.audioVisualizer.MouseEnter += new System.EventHandler(this.audioVisualizer_MouseEnter);
|
||||
//
|
||||
// checkBoxSyncListViewWithVideoWhilePlaying
|
||||
//
|
||||
this.checkBoxSyncListViewWithVideoWhilePlaying.AutoSize = true;
|
||||
@ -3431,26 +3386,6 @@
|
||||
this.tabPageCreate.Text = "Create";
|
||||
this.tabPageCreate.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// timeUpDownVideoPosition
|
||||
//
|
||||
this.timeUpDownVideoPosition.AutoSize = true;
|
||||
this.timeUpDownVideoPosition.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.timeUpDownVideoPosition.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
|
||||
this.timeUpDownVideoPosition.Location = new System.Drawing.Point(96, 191);
|
||||
this.timeUpDownVideoPosition.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.timeUpDownVideoPosition.Name = "timeUpDownVideoPosition";
|
||||
this.timeUpDownVideoPosition.Size = new System.Drawing.Size(111, 27);
|
||||
this.timeUpDownVideoPosition.TabIndex = 12;
|
||||
timeCode1.Hours = 0;
|
||||
timeCode1.Milliseconds = 0;
|
||||
timeCode1.Minutes = 0;
|
||||
timeCode1.Seconds = 0;
|
||||
timeCode1.TimeSpan = System.TimeSpan.Parse("00:00:00");
|
||||
timeCode1.TotalMilliseconds = 0D;
|
||||
timeCode1.TotalSeconds = 0D;
|
||||
this.timeUpDownVideoPosition.TimeCode = timeCode1;
|
||||
this.timeUpDownVideoPosition.UseVideoOffset = false;
|
||||
//
|
||||
// buttonGotoSub
|
||||
//
|
||||
this.buttonGotoSub.Location = new System.Drawing.Point(6, 58);
|
||||
@ -3671,26 +3606,6 @@
|
||||
this.tabPageAdjust.Text = "Adjust";
|
||||
this.tabPageAdjust.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// timeUpDownVideoPositionAdjust
|
||||
//
|
||||
this.timeUpDownVideoPositionAdjust.AutoSize = true;
|
||||
this.timeUpDownVideoPositionAdjust.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.timeUpDownVideoPositionAdjust.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
|
||||
this.timeUpDownVideoPositionAdjust.Location = new System.Drawing.Point(96, 213);
|
||||
this.timeUpDownVideoPositionAdjust.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.timeUpDownVideoPositionAdjust.Name = "timeUpDownVideoPositionAdjust";
|
||||
this.timeUpDownVideoPositionAdjust.Size = new System.Drawing.Size(111, 27);
|
||||
this.timeUpDownVideoPositionAdjust.TabIndex = 13;
|
||||
timeCode2.Hours = 0;
|
||||
timeCode2.Milliseconds = 0;
|
||||
timeCode2.Minutes = 0;
|
||||
timeCode2.Seconds = 0;
|
||||
timeCode2.TimeSpan = System.TimeSpan.Parse("00:00:00");
|
||||
timeCode2.TotalMilliseconds = 0D;
|
||||
timeCode2.TotalSeconds = 0D;
|
||||
this.timeUpDownVideoPositionAdjust.TimeCode = timeCode2;
|
||||
this.timeUpDownVideoPositionAdjust.UseVideoOffset = false;
|
||||
//
|
||||
// buttonAdjustSetEndTime
|
||||
//
|
||||
this.buttonAdjustSetEndTime.Location = new System.Drawing.Point(6, 84);
|
||||
@ -4205,37 +4120,6 @@
|
||||
this.splitContainerListViewAndText.SplitterDistance = 91;
|
||||
this.splitContainerListViewAndText.TabIndex = 2;
|
||||
//
|
||||
// SubtitleListview1
|
||||
//
|
||||
this.SubtitleListview1.AllowColumnReorder = true;
|
||||
this.SubtitleListview1.AllowDrop = true;
|
||||
this.SubtitleListview1.ContextMenuStrip = this.contextMenuStripListview;
|
||||
this.SubtitleListview1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.SubtitleListview1.FirstVisibleIndex = -1;
|
||||
this.SubtitleListview1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.SubtitleListview1.FullRowSelect = true;
|
||||
this.SubtitleListview1.GridLines = true;
|
||||
this.SubtitleListview1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
||||
this.SubtitleListview1.HideSelection = false;
|
||||
this.SubtitleListview1.Location = new System.Drawing.Point(0, 0);
|
||||
this.SubtitleListview1.Name = "SubtitleListview1";
|
||||
this.SubtitleListview1.OwnerDraw = true;
|
||||
this.SubtitleListview1.Size = new System.Drawing.Size(724, 91);
|
||||
this.SubtitleListview1.StateImageList = this.imageListBookmarks;
|
||||
this.SubtitleListview1.SubtitleFontBold = false;
|
||||
this.SubtitleListview1.SubtitleFontName = "Tahoma";
|
||||
this.SubtitleListview1.SubtitleFontSize = 8;
|
||||
this.SubtitleListview1.TabIndex = 0;
|
||||
this.SubtitleListview1.UseCompatibleStateImageBehavior = false;
|
||||
this.SubtitleListview1.UseSyntaxColoring = true;
|
||||
this.SubtitleListview1.View = System.Windows.Forms.View.Details;
|
||||
this.SubtitleListview1.SelectedIndexChanged += new System.EventHandler(this.SubtitleListview1_SelectedIndexChanged);
|
||||
this.SubtitleListview1.DragDrop += new System.Windows.Forms.DragEventHandler(this.SubtitleListview1_DragDrop);
|
||||
this.SubtitleListview1.DragEnter += new System.Windows.Forms.DragEventHandler(this.SubtitleListview1_DragEnter);
|
||||
this.SubtitleListview1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SubtitleListview1KeyDown);
|
||||
this.SubtitleListview1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.SubtitleListview1_MouseDoubleClick);
|
||||
this.SubtitleListview1.MouseEnter += new System.EventHandler(this.SubtitleListview1_MouseEnter);
|
||||
//
|
||||
// imageListBookmarks
|
||||
//
|
||||
this.imageListBookmarks.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
||||
@ -4433,28 +4317,6 @@
|
||||
this.labelText.TabIndex = 5;
|
||||
this.labelText.Text = "Text";
|
||||
//
|
||||
// textBoxListViewTextAlternate
|
||||
//
|
||||
this.textBoxListViewTextAlternate.AllowDrop = true;
|
||||
this.textBoxListViewTextAlternate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.textBoxListViewTextAlternate.ContextMenuStrip = this.contextMenuStripTextBoxListView;
|
||||
this.textBoxListViewTextAlternate.Enabled = false;
|
||||
this.textBoxListViewTextAlternate.HideSelection = false;
|
||||
this.textBoxListViewTextAlternate.Location = new System.Drawing.Point(946, 28);
|
||||
this.textBoxListViewTextAlternate.Multiline = true;
|
||||
this.textBoxListViewTextAlternate.Name = "textBoxListViewTextAlternate";
|
||||
this.textBoxListViewTextAlternate.Size = new System.Drawing.Size(0, 63);
|
||||
this.textBoxListViewTextAlternate.TabIndex = 33;
|
||||
this.textBoxListViewTextAlternate.Visible = false;
|
||||
this.textBoxListViewTextAlternate.MouseClick += new System.Windows.Forms.MouseEventHandler(this.TextBoxListViewTextAlternateMouseClick);
|
||||
this.textBoxListViewTextAlternate.TextChanged += new System.EventHandler(this.textBoxListViewTextAlternate_TextChanged);
|
||||
this.textBoxListViewTextAlternate.Enter += new System.EventHandler(this.TextBoxListViewTextAlternateEnter);
|
||||
this.textBoxListViewTextAlternate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBoxListViewTextAlternateKeyDown);
|
||||
this.textBoxListViewTextAlternate.KeyUp += new System.Windows.Forms.KeyEventHandler(this.TextBoxListViewTextAlternateKeyUp);
|
||||
this.textBoxListViewTextAlternate.MouseMove += new System.Windows.Forms.MouseEventHandler(this.TextBoxListViewTextAlternateMouseMove);
|
||||
//
|
||||
// contextMenuStripTextBoxListView
|
||||
//
|
||||
this.contextMenuStripTextBoxListView.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
@ -4472,6 +4334,7 @@
|
||||
this.normalToolStripMenuItem1,
|
||||
this.boldToolStripMenuItem1,
|
||||
this.italicToolStripMenuItem1,
|
||||
this.boxToolStripMenuItem1,
|
||||
this.underlineToolStripMenuItem1,
|
||||
this.colorToolStripMenuItem1,
|
||||
this.toolStripMenuItemHorizontalDigits,
|
||||
@ -4484,7 +4347,7 @@
|
||||
this.superscriptToolStripMenuItem,
|
||||
this.subscriptToolStripMenuItem});
|
||||
this.contextMenuStripTextBoxListView.Name = "contextMenuStripTextBoxListView";
|
||||
this.contextMenuStripTextBoxListView.Size = new System.Drawing.Size(274, 490);
|
||||
this.contextMenuStripTextBoxListView.Size = new System.Drawing.Size(274, 534);
|
||||
this.contextMenuStripTextBoxListView.Closed += new System.Windows.Forms.ToolStripDropDownClosedEventHandler(this.MenuClosed);
|
||||
this.contextMenuStripTextBoxListView.Opening += new System.ComponentModel.CancelEventHandler(this.ContextMenuStripTextBoxListViewOpening);
|
||||
this.contextMenuStripTextBoxListView.Opened += new System.EventHandler(this.MenuOpened);
|
||||
@ -4839,26 +4702,6 @@
|
||||
this.buttonUnBreak.UseVisualStyleBackColor = true;
|
||||
this.buttonUnBreak.Click += new System.EventHandler(this.ButtonUnBreakClick);
|
||||
//
|
||||
// timeUpDownStartTime
|
||||
//
|
||||
this.timeUpDownStartTime.AutoSize = true;
|
||||
this.timeUpDownStartTime.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.timeUpDownStartTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
|
||||
this.timeUpDownStartTime.Location = new System.Drawing.Point(8, 26);
|
||||
this.timeUpDownStartTime.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.timeUpDownStartTime.Name = "timeUpDownStartTime";
|
||||
this.timeUpDownStartTime.Size = new System.Drawing.Size(111, 27);
|
||||
this.timeUpDownStartTime.TabIndex = 0;
|
||||
timeCode3.Hours = 0;
|
||||
timeCode3.Milliseconds = 0;
|
||||
timeCode3.Minutes = 0;
|
||||
timeCode3.Seconds = 0;
|
||||
timeCode3.TimeSpan = System.TimeSpan.Parse("00:00:00");
|
||||
timeCode3.TotalMilliseconds = 0D;
|
||||
timeCode3.TotalSeconds = 0D;
|
||||
this.timeUpDownStartTime.TimeCode = timeCode3;
|
||||
this.timeUpDownStartTime.UseVideoOffset = false;
|
||||
//
|
||||
// numericUpDownDuration
|
||||
//
|
||||
this.numericUpDownDuration.DecimalPlaces = 3;
|
||||
@ -4912,28 +4755,6 @@
|
||||
this.labelStartTime.TabIndex = 3;
|
||||
this.labelStartTime.Text = "Start time";
|
||||
//
|
||||
// textBoxListViewText
|
||||
//
|
||||
this.textBoxListViewText.AllowDrop = true;
|
||||
this.textBoxListViewText.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.textBoxListViewText.ContextMenuStrip = this.contextMenuStripTextBoxListView;
|
||||
this.textBoxListViewText.Enabled = false;
|
||||
this.textBoxListViewText.HideSelection = false;
|
||||
this.textBoxListViewText.Location = new System.Drawing.Point(236, 28);
|
||||
this.textBoxListViewText.Multiline = true;
|
||||
this.textBoxListViewText.Name = "textBoxListViewText";
|
||||
this.textBoxListViewText.Size = new System.Drawing.Size(362, 63);
|
||||
this.textBoxListViewText.TabIndex = 5;
|
||||
this.textBoxListViewText.MouseClick += new System.Windows.Forms.MouseEventHandler(this.TextBoxListViewTextMouseClick);
|
||||
this.textBoxListViewText.TextChanged += new System.EventHandler(this.TextBoxListViewTextTextChanged);
|
||||
this.textBoxListViewText.Enter += new System.EventHandler(this.TextBoxListViewTextEnter);
|
||||
this.textBoxListViewText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBoxListViewTextKeyDown);
|
||||
this.textBoxListViewText.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxListViewText_KeyUp);
|
||||
this.textBoxListViewText.Leave += new System.EventHandler(this.textBoxListViewText_Leave);
|
||||
this.textBoxListViewText.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textBoxListViewText_MouseMove);
|
||||
//
|
||||
// labelDuration
|
||||
//
|
||||
this.labelDuration.AutoSize = true;
|
||||
@ -4995,34 +4816,6 @@
|
||||
this.panelVideoPlayer.Size = new System.Drawing.Size(220, 246);
|
||||
this.panelVideoPlayer.TabIndex = 5;
|
||||
//
|
||||
// mediaPlayer
|
||||
//
|
||||
this.mediaPlayer.AllowDrop = true;
|
||||
this.mediaPlayer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.mediaPlayer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(18)))), ((int)(((byte)(18)))));
|
||||
this.mediaPlayer.CurrentPosition = 0D;
|
||||
this.mediaPlayer.FontSizeFactor = 1F;
|
||||
this.mediaPlayer.LastParagraph = null;
|
||||
this.mediaPlayer.Location = new System.Drawing.Point(0, 0);
|
||||
this.mediaPlayer.Margin = new System.Windows.Forms.Padding(0);
|
||||
this.mediaPlayer.Name = "mediaPlayer";
|
||||
this.mediaPlayer.ShowFullscreenButton = true;
|
||||
this.mediaPlayer.ShowMuteButton = true;
|
||||
this.mediaPlayer.ShowStopButton = true;
|
||||
this.mediaPlayer.Size = new System.Drawing.Size(219, 246);
|
||||
this.mediaPlayer.SmpteMode = false;
|
||||
this.mediaPlayer.SubtitleText = "";
|
||||
this.mediaPlayer.TabIndex = 5;
|
||||
this.mediaPlayer.TextRightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.mediaPlayer.VideoHeight = 0;
|
||||
this.mediaPlayer.VideoPlayer = null;
|
||||
this.mediaPlayer.VideoWidth = 0;
|
||||
this.mediaPlayer.Volume = 0D;
|
||||
this.mediaPlayer.DragDrop += new System.Windows.Forms.DragEventHandler(this.mediaPlayer_DragDrop);
|
||||
this.mediaPlayer.DragEnter += new System.Windows.Forms.DragEventHandler(this.mediaPlayer_DragEnter);
|
||||
//
|
||||
// contextMenuStripEmpty
|
||||
//
|
||||
this.contextMenuStripEmpty.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
@ -5054,6 +4847,222 @@
|
||||
this.timerAlternateTextUndo.Interval = 700;
|
||||
this.timerAlternateTextUndo.Tick += new System.EventHandler(this.TimerAlternateTextUndoTick);
|
||||
//
|
||||
// boxToolStripMenuItem1
|
||||
//
|
||||
this.boxToolStripMenuItem1.Name = "boxToolStripMenuItem1";
|
||||
this.boxToolStripMenuItem1.Size = new System.Drawing.Size(273, 22);
|
||||
this.boxToolStripMenuItem1.Text = "Box";
|
||||
this.boxToolStripMenuItem1.Click += new System.EventHandler(this.boxToolStripMenuItem1_Click);
|
||||
//
|
||||
// SubtitleListview1
|
||||
//
|
||||
this.SubtitleListview1.AllowColumnReorder = true;
|
||||
this.SubtitleListview1.AllowDrop = true;
|
||||
this.SubtitleListview1.ContextMenuStrip = this.contextMenuStripListview;
|
||||
this.SubtitleListview1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.SubtitleListview1.FirstVisibleIndex = -1;
|
||||
this.SubtitleListview1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.SubtitleListview1.FullRowSelect = true;
|
||||
this.SubtitleListview1.GridLines = true;
|
||||
this.SubtitleListview1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
||||
this.SubtitleListview1.HideSelection = false;
|
||||
this.SubtitleListview1.Location = new System.Drawing.Point(0, 0);
|
||||
this.SubtitleListview1.Name = "SubtitleListview1";
|
||||
this.SubtitleListview1.OwnerDraw = true;
|
||||
this.SubtitleListview1.Size = new System.Drawing.Size(724, 91);
|
||||
this.SubtitleListview1.StateImageList = this.imageListBookmarks;
|
||||
this.SubtitleListview1.SubtitleFontBold = false;
|
||||
this.SubtitleListview1.SubtitleFontName = "Tahoma";
|
||||
this.SubtitleListview1.SubtitleFontSize = 8;
|
||||
this.SubtitleListview1.TabIndex = 0;
|
||||
this.SubtitleListview1.UseCompatibleStateImageBehavior = false;
|
||||
this.SubtitleListview1.UseSyntaxColoring = true;
|
||||
this.SubtitleListview1.View = System.Windows.Forms.View.Details;
|
||||
this.SubtitleListview1.SelectedIndexChanged += new System.EventHandler(this.SubtitleListview1_SelectedIndexChanged);
|
||||
this.SubtitleListview1.DragDrop += new System.Windows.Forms.DragEventHandler(this.SubtitleListview1_DragDrop);
|
||||
this.SubtitleListview1.DragEnter += new System.Windows.Forms.DragEventHandler(this.SubtitleListview1_DragEnter);
|
||||
this.SubtitleListview1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SubtitleListview1KeyDown);
|
||||
this.SubtitleListview1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.SubtitleListview1_MouseDoubleClick);
|
||||
this.SubtitleListview1.MouseEnter += new System.EventHandler(this.SubtitleListview1_MouseEnter);
|
||||
//
|
||||
// textBoxListViewTextAlternate
|
||||
//
|
||||
this.textBoxListViewTextAlternate.AllowDrop = true;
|
||||
this.textBoxListViewTextAlternate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.textBoxListViewTextAlternate.ContextMenuStrip = this.contextMenuStripTextBoxListView;
|
||||
this.textBoxListViewTextAlternate.Enabled = false;
|
||||
this.textBoxListViewTextAlternate.HideSelection = false;
|
||||
this.textBoxListViewTextAlternate.Location = new System.Drawing.Point(946, 28);
|
||||
this.textBoxListViewTextAlternate.Multiline = true;
|
||||
this.textBoxListViewTextAlternate.Name = "textBoxListViewTextAlternate";
|
||||
this.textBoxListViewTextAlternate.Size = new System.Drawing.Size(0, 63);
|
||||
this.textBoxListViewTextAlternate.TabIndex = 33;
|
||||
this.textBoxListViewTextAlternate.Visible = false;
|
||||
this.textBoxListViewTextAlternate.MouseClick += new System.Windows.Forms.MouseEventHandler(this.TextBoxListViewTextAlternateMouseClick);
|
||||
this.textBoxListViewTextAlternate.TextChanged += new System.EventHandler(this.textBoxListViewTextAlternate_TextChanged);
|
||||
this.textBoxListViewTextAlternate.Enter += new System.EventHandler(this.TextBoxListViewTextAlternateEnter);
|
||||
this.textBoxListViewTextAlternate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBoxListViewTextAlternateKeyDown);
|
||||
this.textBoxListViewTextAlternate.KeyUp += new System.Windows.Forms.KeyEventHandler(this.TextBoxListViewTextAlternateKeyUp);
|
||||
this.textBoxListViewTextAlternate.MouseMove += new System.Windows.Forms.MouseEventHandler(this.TextBoxListViewTextAlternateMouseMove);
|
||||
//
|
||||
// timeUpDownStartTime
|
||||
//
|
||||
this.timeUpDownStartTime.AutoSize = true;
|
||||
this.timeUpDownStartTime.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.timeUpDownStartTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
|
||||
this.timeUpDownStartTime.Location = new System.Drawing.Point(8, 26);
|
||||
this.timeUpDownStartTime.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.timeUpDownStartTime.Name = "timeUpDownStartTime";
|
||||
this.timeUpDownStartTime.Size = new System.Drawing.Size(111, 27);
|
||||
this.timeUpDownStartTime.TabIndex = 0;
|
||||
timeCode3.Hours = 0;
|
||||
timeCode3.Milliseconds = 0;
|
||||
timeCode3.Minutes = 0;
|
||||
timeCode3.Seconds = 0;
|
||||
timeCode3.TimeSpan = System.TimeSpan.Parse("00:00:00");
|
||||
timeCode3.TotalMilliseconds = 0D;
|
||||
timeCode3.TotalSeconds = 0D;
|
||||
this.timeUpDownStartTime.TimeCode = timeCode3;
|
||||
this.timeUpDownStartTime.UseVideoOffset = false;
|
||||
//
|
||||
// textBoxListViewText
|
||||
//
|
||||
this.textBoxListViewText.AllowDrop = true;
|
||||
this.textBoxListViewText.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.textBoxListViewText.ContextMenuStrip = this.contextMenuStripTextBoxListView;
|
||||
this.textBoxListViewText.Enabled = false;
|
||||
this.textBoxListViewText.HideSelection = false;
|
||||
this.textBoxListViewText.Location = new System.Drawing.Point(236, 28);
|
||||
this.textBoxListViewText.Multiline = true;
|
||||
this.textBoxListViewText.Name = "textBoxListViewText";
|
||||
this.textBoxListViewText.Size = new System.Drawing.Size(362, 63);
|
||||
this.textBoxListViewText.TabIndex = 5;
|
||||
this.textBoxListViewText.MouseClick += new System.Windows.Forms.MouseEventHandler(this.TextBoxListViewTextMouseClick);
|
||||
this.textBoxListViewText.TextChanged += new System.EventHandler(this.TextBoxListViewTextTextChanged);
|
||||
this.textBoxListViewText.Enter += new System.EventHandler(this.TextBoxListViewTextEnter);
|
||||
this.textBoxListViewText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBoxListViewTextKeyDown);
|
||||
this.textBoxListViewText.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxListViewText_KeyUp);
|
||||
this.textBoxListViewText.Leave += new System.EventHandler(this.textBoxListViewText_Leave);
|
||||
this.textBoxListViewText.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textBoxListViewText_MouseMove);
|
||||
//
|
||||
// mediaPlayer
|
||||
//
|
||||
this.mediaPlayer.AllowDrop = true;
|
||||
this.mediaPlayer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.mediaPlayer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(18)))), ((int)(((byte)(18)))));
|
||||
this.mediaPlayer.CurrentPosition = 0D;
|
||||
this.mediaPlayer.FontSizeFactor = 1F;
|
||||
this.mediaPlayer.LastParagraph = null;
|
||||
this.mediaPlayer.Location = new System.Drawing.Point(0, 0);
|
||||
this.mediaPlayer.Margin = new System.Windows.Forms.Padding(0);
|
||||
this.mediaPlayer.Name = "mediaPlayer";
|
||||
this.mediaPlayer.ShowFullscreenButton = true;
|
||||
this.mediaPlayer.ShowMuteButton = true;
|
||||
this.mediaPlayer.ShowStopButton = true;
|
||||
this.mediaPlayer.Size = new System.Drawing.Size(219, 246);
|
||||
this.mediaPlayer.SmpteMode = false;
|
||||
this.mediaPlayer.SubtitleText = "";
|
||||
this.mediaPlayer.TabIndex = 5;
|
||||
this.mediaPlayer.TextRightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.mediaPlayer.VideoHeight = 0;
|
||||
this.mediaPlayer.VideoPlayer = null;
|
||||
this.mediaPlayer.VideoWidth = 0;
|
||||
this.mediaPlayer.Volume = 0D;
|
||||
this.mediaPlayer.DragDrop += new System.Windows.Forms.DragEventHandler(this.mediaPlayer_DragDrop);
|
||||
this.mediaPlayer.DragEnter += new System.Windows.Forms.DragEventHandler(this.mediaPlayer_DragEnter);
|
||||
//
|
||||
// audioVisualizer
|
||||
//
|
||||
this.audioVisualizer.AllowDrop = true;
|
||||
this.audioVisualizer.AllowNewSelection = true;
|
||||
this.audioVisualizer.AllowOverlap = false;
|
||||
this.audioVisualizer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.audioVisualizer.BackColor = System.Drawing.Color.Black;
|
||||
this.audioVisualizer.BackgroundColor = System.Drawing.Color.Black;
|
||||
this.audioVisualizer.ClosenessForBorderSelection = 15;
|
||||
this.audioVisualizer.Color = System.Drawing.Color.GreenYellow;
|
||||
this.audioVisualizer.CursorColor = System.Drawing.Color.Empty;
|
||||
this.audioVisualizer.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
|
||||
this.audioVisualizer.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(18)))));
|
||||
this.audioVisualizer.InsertAtVideoPositionShortcut = System.Windows.Forms.Keys.Insert;
|
||||
this.audioVisualizer.Location = new System.Drawing.Point(472, 32);
|
||||
this.audioVisualizer.Margin = new System.Windows.Forms.Padding(0);
|
||||
this.audioVisualizer.MouseWheelScrollUpIsForward = true;
|
||||
this.audioVisualizer.Move100MsLeft = System.Windows.Forms.Keys.None;
|
||||
this.audioVisualizer.Move100MsRight = System.Windows.Forms.Keys.None;
|
||||
this.audioVisualizer.MoveOneSecondLeft = System.Windows.Forms.Keys.None;
|
||||
this.audioVisualizer.MoveOneSecondRight = System.Windows.Forms.Keys.None;
|
||||
this.audioVisualizer.Name = "audioVisualizer";
|
||||
this.audioVisualizer.NewSelectionParagraph = null;
|
||||
this.audioVisualizer.ParagraphColor = System.Drawing.Color.LimeGreen;
|
||||
this.audioVisualizer.SceneChanges = ((System.Collections.Generic.List<double>)(resources.GetObject("audioVisualizer.SceneChanges")));
|
||||
this.audioVisualizer.SelectedColor = System.Drawing.Color.Red;
|
||||
this.audioVisualizer.ShowGridLines = true;
|
||||
this.audioVisualizer.ShowSpectrogram = false;
|
||||
this.audioVisualizer.ShowWaveform = true;
|
||||
this.audioVisualizer.Size = new System.Drawing.Size(499, 229);
|
||||
this.audioVisualizer.StartPositionSeconds = 0D;
|
||||
this.audioVisualizer.TabIndex = 6;
|
||||
this.audioVisualizer.TextBold = true;
|
||||
this.audioVisualizer.TextColor = System.Drawing.Color.Gray;
|
||||
this.audioVisualizer.TextSize = 9F;
|
||||
this.audioVisualizer.VerticalZoomFactor = 1D;
|
||||
this.audioVisualizer.WaveformNotLoadedText = "Click to add waveform";
|
||||
this.audioVisualizer.WavePeaks = null;
|
||||
this.audioVisualizer.ZoomFactor = 1D;
|
||||
this.audioVisualizer.Click += new System.EventHandler(this.AudioWaveform_Click);
|
||||
this.audioVisualizer.DragDrop += new System.Windows.Forms.DragEventHandler(this.AudioWaveformDragDrop);
|
||||
this.audioVisualizer.DragEnter += new System.Windows.Forms.DragEventHandler(this.AudioWaveformDragEnter);
|
||||
this.audioVisualizer.MouseEnter += new System.EventHandler(this.audioVisualizer_MouseEnter);
|
||||
//
|
||||
// timeUpDownVideoPosition
|
||||
//
|
||||
this.timeUpDownVideoPosition.AutoSize = true;
|
||||
this.timeUpDownVideoPosition.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.timeUpDownVideoPosition.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
|
||||
this.timeUpDownVideoPosition.Location = new System.Drawing.Point(96, 191);
|
||||
this.timeUpDownVideoPosition.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.timeUpDownVideoPosition.Name = "timeUpDownVideoPosition";
|
||||
this.timeUpDownVideoPosition.Size = new System.Drawing.Size(111, 27);
|
||||
this.timeUpDownVideoPosition.TabIndex = 12;
|
||||
timeCode1.Hours = 0;
|
||||
timeCode1.Milliseconds = 0;
|
||||
timeCode1.Minutes = 0;
|
||||
timeCode1.Seconds = 0;
|
||||
timeCode1.TimeSpan = System.TimeSpan.Parse("00:00:00");
|
||||
timeCode1.TotalMilliseconds = 0D;
|
||||
timeCode1.TotalSeconds = 0D;
|
||||
this.timeUpDownVideoPosition.TimeCode = timeCode1;
|
||||
this.timeUpDownVideoPosition.UseVideoOffset = false;
|
||||
//
|
||||
// timeUpDownVideoPositionAdjust
|
||||
//
|
||||
this.timeUpDownVideoPositionAdjust.AutoSize = true;
|
||||
this.timeUpDownVideoPositionAdjust.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.timeUpDownVideoPositionAdjust.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
|
||||
this.timeUpDownVideoPositionAdjust.Location = new System.Drawing.Point(96, 213);
|
||||
this.timeUpDownVideoPositionAdjust.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.timeUpDownVideoPositionAdjust.Name = "timeUpDownVideoPositionAdjust";
|
||||
this.timeUpDownVideoPositionAdjust.Size = new System.Drawing.Size(111, 27);
|
||||
this.timeUpDownVideoPositionAdjust.TabIndex = 13;
|
||||
timeCode2.Hours = 0;
|
||||
timeCode2.Milliseconds = 0;
|
||||
timeCode2.Minutes = 0;
|
||||
timeCode2.Seconds = 0;
|
||||
timeCode2.TimeSpan = System.TimeSpan.Parse("00:00:00");
|
||||
timeCode2.TotalMilliseconds = 0D;
|
||||
timeCode2.TotalSeconds = 0D;
|
||||
this.timeUpDownVideoPositionAdjust.TimeCode = timeCode2;
|
||||
this.timeUpDownVideoPositionAdjust.UseVideoOffset = false;
|
||||
//
|
||||
// Main
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
@ -5619,5 +5628,6 @@
|
||||
private System.Windows.Forms.ToolStripMenuItem goToPreviousSubtitleStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem goToNextSubtitleStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem dCinemaSMPTE2014ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem boxToolStripMenuItem1;
|
||||
}
|
||||
}
|
@ -3879,8 +3879,8 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
currentEncoding = Encoding.Unicode;
|
||||
}
|
||||
|
||||
if (Configuration.Settings.General.ShowFormatRequiresUtf8Warning && !currentEncoding.Equals(Encoding.UTF8) &&
|
||||
(formatType == typeof(DCinemaInterop) || formatType == typeof(DCinemaSmpte2007) ||
|
||||
if (Configuration.Settings.General.ShowFormatRequiresUtf8Warning && !currentEncoding.Equals(Encoding.UTF8) &&
|
||||
(formatType == typeof(DCinemaInterop) || formatType == typeof(DCinemaSmpte2007) ||
|
||||
formatType == typeof(DCinemaSmpte2010) || formatType == typeof(DCinemaSmpte2014)))
|
||||
{
|
||||
using (var form = new DialogDoNotShowAgain(Title, string.Format(_language.FormatXShouldUseUft8, GetCurrentSubtitleFormat().FriendlyName)))
|
||||
@ -11545,9 +11545,22 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
{
|
||||
|
||||
string color;
|
||||
if (GetCurrentSubtitleFormat().GetType() == typeof(Ebu))
|
||||
var formatType = GetCurrentSubtitleFormat().GetType();
|
||||
if (formatType == typeof(Ebu))
|
||||
{
|
||||
using (var form = new EbuColorPicker())
|
||||
using (var form = new EbuColorPicker(true))
|
||||
{
|
||||
if (form.ShowDialog(this) != DialogResult.OK)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
color = form.Color;
|
||||
}
|
||||
}
|
||||
else if (formatType == typeof(ScenaristClosedCaptions) || formatType == typeof(ScenaristClosedCaptionsDropFrame))
|
||||
{
|
||||
using (var form = new EbuColorPicker(false))
|
||||
{
|
||||
if (form.ShowDialog(this) != DialogResult.OK)
|
||||
{
|
||||
@ -14756,6 +14769,13 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
ButtonSetEndClick(null, null);
|
||||
e.SuppressKeyPress = true;
|
||||
}
|
||||
else if (_shortcuts.MainAdjustSetEndAndPause == e.KeyData)
|
||||
{
|
||||
StopAutoDuration();
|
||||
mediaPlayer.Pause();
|
||||
ButtonSetEndClick(null, null);
|
||||
e.SuppressKeyPress = true;
|
||||
}
|
||||
else if (_shortcuts.MainCreateSetEndAddNewAndGoToNew == e.KeyData)
|
||||
{
|
||||
StopAutoDuration();
|
||||
@ -20162,6 +20182,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
toolStripMenuItemImportText.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainFileImportPlainText);
|
||||
toolStripMenuItemImportTimeCodes.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainFileImportTimeCodes);
|
||||
eBUSTLToolStripMenuItem.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainFileExportEbu);
|
||||
pACScreenElectronicsToolStripMenuItem.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainFileExportPac);
|
||||
plainTextToolStripMenuItem.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainFileExportPlainText);
|
||||
|
||||
toolStripMenuItemUndo.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainEditUndo);
|
||||
@ -20215,6 +20236,8 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
boldToolStripMenuItem1.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainListViewBold);
|
||||
underlineToolStripMenuItem1.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainListViewUnderline);
|
||||
underlineToolStripMenuItem.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainListViewUnderline);
|
||||
boxToolStripMenuItem.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainListViewBox);
|
||||
boxToolStripMenuItem1.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainListViewBox);
|
||||
splitLineToolStripMenuItem.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainListViewSplit);
|
||||
toolStripMenuItemSurroundWithMusicSymbols.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainListViewToggleMusicSymbols);
|
||||
toolStripMenuItemAlignment.ShortcutKeys = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainListViewAlignment);
|
||||
@ -21750,9 +21773,22 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
int selectionStart = tb.SelectionStart;
|
||||
|
||||
string color;
|
||||
if (GetCurrentSubtitleFormat().GetType() == typeof(Ebu))
|
||||
var formatType = GetCurrentSubtitleFormat().GetType();
|
||||
if (formatType == typeof(Ebu))
|
||||
{
|
||||
using (var form = new EbuColorPicker())
|
||||
using (var form = new EbuColorPicker(true))
|
||||
{
|
||||
if (form.ShowDialog(this) != DialogResult.OK)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
color = form.Color;
|
||||
}
|
||||
}
|
||||
else if (formatType == typeof(ScenaristClosedCaptions) || formatType == typeof(ScenaristClosedCaptionsDropFrame))
|
||||
{
|
||||
using (var form = new EbuColorPicker(false))
|
||||
{
|
||||
if (form.ShowDialog(this) != DialogResult.OK)
|
||||
{
|
||||
@ -23650,8 +23686,24 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
toolStripMenuItemRuby.Visible = true;
|
||||
}
|
||||
}
|
||||
else if (formatType == typeof(Ebu))
|
||||
{
|
||||
Ebu.EbuGeneralSubtitleInformation header;
|
||||
if (_subtitle != null && _subtitle.Header != null && (_subtitle.Header.Contains("STL2") || _subtitle.Header.Contains("STL3")))
|
||||
{
|
||||
header = Ebu.ReadHeader(Encoding.UTF8.GetBytes(_subtitle.Header));
|
||||
}
|
||||
else
|
||||
{
|
||||
header = new Ebu.EbuGeneralSubtitleInformation();
|
||||
}
|
||||
|
||||
var open = header.DisplayStandardCode != "1" && header.DisplayStandardCode != "2";
|
||||
boxToolStripMenuItem.Visible = open;
|
||||
}
|
||||
else
|
||||
{
|
||||
boxToolStripMenuItem1.Visible = false;
|
||||
boldToolStripMenuItem1.Visible = true;
|
||||
underlineToolStripMenuItem1.Visible = true;
|
||||
colorToolStripMenuItem1.Visible = true;
|
||||
@ -27736,5 +27788,11 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
{
|
||||
ShowButtonShortcut(Configuration.Settings.Shortcuts.MainCreateSetEnd);
|
||||
}
|
||||
|
||||
private void boxToolStripMenuItem1_Click(object sender, EventArgs e)
|
||||
{
|
||||
var tb = GetFocusedTextBox();
|
||||
tb.Text = HtmlUtil.ToggleTag(tb.Text, "box");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -338,35 +338,35 @@
|
||||
<data name="toolStripButtonFixCommonErrors.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
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
|
||||
</value>
|
||||
</data>
|
||||
<data name="toolStripButtonRemoveTextForHi.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
@ -704,7 +704,7 @@
|
||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
|
||||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAD2
|
||||
CAAAAk1TRnQBSQFMAgEBAgEAAXgBJwF4AScBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||
CAAAAk1TRnQBSQFMAgEBAgEAAYgBJwGIAScBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
||||
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
||||
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
||||
|
@ -1142,6 +1142,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
AddNode(fileNode, Configuration.Settings.Language.Main.Menu.File.ImportText, nameof(Configuration.Settings.Shortcuts.MainFileImportPlainText), true);
|
||||
AddNode(fileNode, Configuration.Settings.Language.Main.Menu.File.ImportTimecodes, nameof(Configuration.Settings.Shortcuts.MainFileImportTimeCodes), true);
|
||||
AddNode(fileNode, Configuration.Settings.Language.Main.Menu.File.Export + " -> " + Configuration.Settings.Language.Main.Menu.File.ExportEbu, nameof(Configuration.Settings.Shortcuts.MainFileExportEbu), true);
|
||||
AddNode(fileNode, Configuration.Settings.Language.Main.Menu.File.Export + " -> " + Configuration.Settings.Language.Main.Menu.File.ExportPac, nameof(Configuration.Settings.Shortcuts.MainFileExportPac), true);
|
||||
AddNode(fileNode, Configuration.Settings.Language.Main.Menu.File.Export + " -> " + Configuration.Settings.Language.Main.Menu.File.ExportPlainText, nameof(Configuration.Settings.Shortcuts.MainFileExportPlainText), true);
|
||||
if (fileNode.Nodes.Count > 0)
|
||||
{
|
||||
@ -1250,6 +1251,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
AddNode(listViewAndTextBoxNode, Configuration.Settings.Language.General.Italic, nameof(Configuration.Settings.Shortcuts.MainListViewItalic), true);
|
||||
AddNode(listViewAndTextBoxNode, Configuration.Settings.Language.General.Bold, nameof(Configuration.Settings.Shortcuts.MainListViewBold), true);
|
||||
AddNode(listViewAndTextBoxNode, Configuration.Settings.Language.General.Underline, nameof(Configuration.Settings.Shortcuts.MainListViewUnderline), true);
|
||||
AddNode(listViewAndTextBoxNode, Configuration.Settings.Language.Main.Menu.ContextMenu.Box, nameof(Configuration.Settings.Shortcuts.MainListViewBox), true);
|
||||
AddNode(listViewAndTextBoxNode, Configuration.Settings.Language.General.SplitLine.Replace("!", string.Empty), nameof(Configuration.Settings.Shortcuts.MainListViewSplit), true);
|
||||
AddNode(listViewAndTextBoxNode, language.ToggleMusicSymbols, nameof(Configuration.Settings.Shortcuts.MainListViewToggleMusicSymbols), true);
|
||||
AddNode(listViewAndTextBoxNode, language.AlignmentN1, nameof(Configuration.Settings.Shortcuts.MainListViewAlignmentN1));
|
||||
@ -1334,6 +1336,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
AddNode(createAndAdjustNode, language.AdjustSetStartAutoDurationAndGoToNext, nameof(Configuration.Settings.Shortcuts.MainAdjustSetStartAutoDurationAndGoToNext));
|
||||
AddNode(createAndAdjustNode, language.AdjustStartDownEndUpAndGoToNext, nameof(Configuration.Settings.Shortcuts.MainAdjustStartDownEndUpAndGoToNext));
|
||||
AddNode(createAndAdjustNode, Configuration.Settings.Language.Main.VideoControls.SetEndTime, nameof(Configuration.Settings.Shortcuts.MainCreateSetEnd));
|
||||
AddNode(createAndAdjustNode, language.AdjustSetEndTimeAndPause, nameof(Configuration.Settings.Shortcuts.MainAdjustSetEndAndPause));
|
||||
AddNode(createAndAdjustNode, language.CreateSetEndAddNewAndGoToNew, nameof(Configuration.Settings.Shortcuts.MainCreateSetEndAddNewAndGoToNew));
|
||||
AddNode(createAndAdjustNode, language.AdjustSetEndTimeAndGoToNext, nameof(Configuration.Settings.Shortcuts.MainAdjustSetEndAndGotoNext));
|
||||
AddNode(createAndAdjustNode, language.AdjustSetEndAndOffsetTheRest, nameof(Configuration.Settings.Shortcuts.MainAdjustSetEndAndOffsetTheRest));
|
||||
|
@ -81,6 +81,7 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
public Keys MainCreateInsertSubAtVideoPosNoTextBoxFocus { get; set; }
|
||||
public Keys MainCreateSetStart { get; set; }
|
||||
public Keys MainCreateSetEnd { get; set; }
|
||||
public Keys MainAdjustSetEndAndPause { get; set; }
|
||||
public Keys MainCreateStartDownEndUp { get; set; }
|
||||
public Keys MainCreateSetEndAddNewAndGoToNew { get; set; }
|
||||
public Keys MainAdjustSetStartAndOffsetTheRest { get; set; }
|
||||
@ -257,6 +258,7 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
MainCreateInsertSubAtVideoPosNoTextBoxFocus = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainCreateInsertSubAtVideoPosNoTextBoxFocus);
|
||||
MainCreateSetStart = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainCreateSetStart);
|
||||
MainCreateSetEnd = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainCreateSetEnd);
|
||||
MainAdjustSetEndAndPause = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainAdjustSetEndAndPause);
|
||||
MainCreateStartDownEndUp = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainCreateStartDownEndUp);
|
||||
MainCreateSetEndAddNewAndGoToNew = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainCreateSetEndAddNewAndGoToNew);
|
||||
MainAdjustSetStartAndOffsetTheRest = UiUtil.GetKeys(Configuration.Settings.Shortcuts.MainAdjustSetStartAndOffsetTheRest);
|
||||
|
Loading…
x
Reference in New Issue
Block a user