Rename AVI/WAV to A/V

resolves #4070
This commit is contained in:
CasualPokePlayer 2024-10-08 17:39:59 -07:00
parent a28b169890
commit ab081f7363
3 changed files with 31 additions and 31 deletions

View File

@ -99,7 +99,7 @@ namespace BizHawk.Client.EmuHawk
this.AVSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RecordAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ConfigAndRecordAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.StopAVIMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.StopAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator19 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.CaptureOSDMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CaptureLuaMenuItem = new System.Windows.Forms.ToolStripMenuItem();
@ -315,7 +315,7 @@ namespace BizHawk.Client.EmuHawk
this.PlayRecordStatusButton = new System.Windows.Forms.ToolStripDropDownButton();
this.PauseStatusButton = new System.Windows.Forms.ToolStripDropDownButton();
this.RebootStatusBarIcon = new BizHawk.WinForms.Controls.StatusLabelEx();
this.AVIStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx();
this.AVStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx();
this.LedLightStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx();
this.SaveSlotsStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx();
this.Slot1StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx();
@ -836,28 +836,28 @@ namespace BizHawk.Client.EmuHawk
this.AVSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.RecordAVMenuItem,
this.ConfigAndRecordAVMenuItem,
this.StopAVIMenuItem,
this.StopAVMenuItem,
this.toolStripSeparator19,
this.CaptureOSDMenuItem,
this.CaptureLuaMenuItem,
this.SynclessRecordingMenuItem});
this.AVSubMenu.Text = "&AVI/WAV";
this.AVSubMenu.Text = "&A/V Writer";
this.AVSubMenu.DropDownOpened += new System.EventHandler(this.AVSubMenu_DropDownOpened);
//
// RecordAVMenuItem
//
this.RecordAVMenuItem.Text = "&Record AVI/WAV";
this.RecordAVMenuItem.Text = "&Record A/V";
this.RecordAVMenuItem.Click += new System.EventHandler(this.RecordAVMenuItem_Click);
//
// ConfigAndRecordAVMenuItem
//
this.ConfigAndRecordAVMenuItem.Text = "Config and Record AVI/WAV...";
this.ConfigAndRecordAVMenuItem.Text = "Config and Record A/V...";
this.ConfigAndRecordAVMenuItem.Click += new System.EventHandler(this.ConfigAndRecordAVMenuItem_Click);
//
// StopAVIMenuItem
// StopAVMenuItem
//
this.StopAVIMenuItem.Text = "&Stop AVI/WAV";
this.StopAVIMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click);
this.StopAVMenuItem.Text = "&Stop A/V Writer";
this.StopAVMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click);
//
// CaptureOSDMenuItem
//
@ -1989,7 +1989,7 @@ namespace BizHawk.Client.EmuHawk
this.PlayRecordStatusButton,
this.PauseStatusButton,
this.RebootStatusBarIcon,
this.AVIStatusLabel,
this.AVStatusLabel,
this.LedLightStatusLabel,
this.SaveSlotsStatusLabel,
this.Slot1StatusButton,
@ -2053,10 +2053,10 @@ namespace BizHawk.Client.EmuHawk
this.RebootStatusBarIcon.ToolTipText = "A reboot of the core is needed for a setting change to take effect";
this.RebootStatusBarIcon.Click += new System.EventHandler(this.PowerMenuItem_Click);
//
// AVIStatusLabel
// AVStatusLabel
//
this.AVIStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.AVIStatusLabel.Text = "AVI Capture";
this.AVStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.AVStatusLabel.Text = "A/V Capture";
//
// LedLightStatusLabel
//
@ -2211,7 +2211,7 @@ namespace BizHawk.Client.EmuHawk
//
// StopAVContextMenuItem
//
this.StopAVContextMenuItem.Text = "Stop AVI/WAV";
this.StopAVContextMenuItem.Text = "Stop A/V Writer";
this.StopAVContextMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click);
//
// RecordMovieContextMenuItem
@ -2585,8 +2585,8 @@ namespace BizHawk.Client.EmuHawk
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DisplaySubtitlesMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AVSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ConfigAndRecordAVMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx StopAVIMenuItem;
private BizHawk.WinForms.Controls.StatusLabelEx AVIStatusLabel;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx StopAVMenuItem;
private BizHawk.WinForms.Controls.StatusLabelEx AVStatusLabel;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RestartMovieContextMenuItem;
private BizHawk.WinForms.Controls.StatusLabelEx CheatStatusButton;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutofireMenuItem;

View File

@ -195,7 +195,7 @@ namespace BizHawk.Client.EmuHawk
private void AVSubMenu_DropDownOpened(object sender, EventArgs e)
{
ConfigAndRecordAVMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Record A/V"];
StopAVIMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Stop A/V"];
StopAVMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Stop A/V"];
CaptureOSDMenuItem.Checked = Config.AviCaptureOsd;
CaptureLuaMenuItem.Checked = Config.AviCaptureLua || Config.AviCaptureOsd; // or with osd is for better compatibility with old config files
@ -204,12 +204,12 @@ namespace BizHawk.Client.EmuHawk
if (_currAviWriter == null)
{
ConfigAndRecordAVMenuItem.Enabled = true;
StopAVIMenuItem.Enabled = false;
StopAVMenuItem.Enabled = false;
}
else
{
ConfigAndRecordAVMenuItem.Enabled = false;
StopAVIMenuItem.Enabled = true;
StopAVMenuItem.Enabled = true;
}
}

View File

@ -168,7 +168,7 @@ namespace BizHawk.Client.EmuHawk
// Hide Status bar icons and general StatusBar prep
MainStatusBar.Padding = new Padding(MainStatusBar.Padding.Left, MainStatusBar.Padding.Top, MainStatusBar.Padding.Left, MainStatusBar.Padding.Bottom); // Workaround to remove extra padding on right
PlayRecordStatusButton.Visible = false;
AVIStatusLabel.Visible = false;
AVStatusLabel.Visible = false;
SetPauseStatusBarIcon();
Tools.UpdateCheatRelatedTools(null, null);
RebootStatusBarIcon.Visible = false;
@ -283,7 +283,7 @@ namespace BizHawk.Client.EmuHawk
StopMovieWithoutSavingMenuItem.Image = Properties.Resources.Stop;
RecordAVMenuItem.Image = Properties.Resources.Record;
ConfigAndRecordAVMenuItem.Image = Properties.Resources.Avi;
StopAVIMenuItem.Image = Properties.Resources.Stop;
StopAVMenuItem.Image = Properties.Resources.Stop;
ScreenshotMenuItem.Image = Properties.Resources.Camera;
PauseMenuItem.Image = Properties.Resources.Pause;
RebootCoreMenuItem.Image = Properties.Resources.Reboot;
@ -350,7 +350,7 @@ namespace BizHawk.Client.EmuHawk
PlayRecordStatusButton.Image = Properties.Resources.Blank;
PauseStatusButton.Image = Properties.Resources.Blank;
RebootStatusBarIcon.Image = Properties.Resources.Reboot;
AVIStatusLabel.Image = Properties.Resources.Blank;
AVStatusLabel.Image = Properties.Resources.Blank;
LedLightStatusLabel.Image = Properties.Resources.LightOff;
KeyPriorityStatusLabel.Image = Properties.Resources.Both;
CoreNameStatusBarButton.Image = Properties.Resources.CorpHawkSmall;
@ -3305,9 +3305,9 @@ namespace BizHawk.Client.EmuHawk
// commit the avi writing last, in case there were any errors earlier
_currAviWriter = aw;
AddOnScreenMessage("A/V capture started");
AVIStatusLabel.Image = Properties.Resources.Avi;
AVIStatusLabel.ToolTipText = "A/V capture in progress";
AVIStatusLabel.Visible = true;
AVStatusLabel.Image = Properties.Resources.Avi;
AVStatusLabel.ToolTipText = "A/V capture in progress";
AVStatusLabel.Visible = true;
}
catch
{
@ -3350,9 +3350,9 @@ namespace BizHawk.Client.EmuHawk
_currAviWriter.Dispose();
_currAviWriter = null;
AddOnScreenMessage("A/V capture aborted");
AVIStatusLabel.Image = Properties.Resources.Blank;
AVIStatusLabel.ToolTipText = "";
AVIStatusLabel.Visible = false;
AVStatusLabel.Image = Properties.Resources.Blank;
AVStatusLabel.ToolTipText = "";
AVStatusLabel.Visible = false;
_aviSoundInputAsync = null;
_dumpProxy = null; // return to normal sound output
RewireSound();
@ -3371,9 +3371,9 @@ namespace BizHawk.Client.EmuHawk
_currAviWriter.Dispose();
_currAviWriter = null;
AddOnScreenMessage("A/V capture stopped");
AVIStatusLabel.Image = Properties.Resources.Blank;
AVIStatusLabel.ToolTipText = "";
AVIStatusLabel.Visible = false;
AVStatusLabel.Image = Properties.Resources.Blank;
AVStatusLabel.ToolTipText = "";
AVStatusLabel.Visible = false;
_aviSoundInputAsync = null;
_dumpProxy = null; // return to normal sound output
RewireSound();