diff --git a/BizHawk.Client.Common/BizHawk.Client.Common.csproj b/BizHawk.Client.Common/BizHawk.Client.Common.csproj index aec3f95879..0cc66d3acb 100644 --- a/BizHawk.Client.Common/BizHawk.Client.Common.csproj +++ b/BizHawk.Client.Common/BizHawk.Client.Common.csproj @@ -120,6 +120,7 @@ + diff --git a/BizHawk.Client.Common/movie/IMovie.cs b/BizHawk.Client.Common/movie/IMovie.cs new file mode 100644 index 0000000000..e3e01c78ed --- /dev/null +++ b/BizHawk.Client.Common/movie/IMovie.cs @@ -0,0 +1,75 @@ +using System.IO; +using BizHawk.Emulation.Common; + +namespace BizHawk.Client.Common +{ + public interface IMovie + { + + int Rerecords { get; set; } + + string Filename { get; set; } + + bool IsCountingRerecords { get; set; } + + bool IsActive { get; } + bool IsPlaying { get; } + bool IsRecording { get; } + bool IsFinished { get; } + + bool LoadMovie(); + void WriteBackup(); + + #region Editing API + void ClearFrame(int frame); + void ModifyFrame(string record, int frame); + void AppendFrame(string record); + void InsertFrame(string record, int frame); + void InsertBlankFrame(int frame); + void DeleteFrame(int frame); + void TruncateMovie(int frame); + #endregion + + #region Dubious, should reconsider + bool Loaded { get; } //Who needs to know it is loaded or not? The movie should decide what to do based on being loaded or not + bool IsText { get; } //remove until needed Make a get set, consider an Enum of FileTypeMode or something, + bool HasChanges { get; } //Rename to changes + void CommitFrame(int frameNum, IController source); //why pass in frameNum? Calling api + void PokeFrame(int frameNum, string input); //Why does this exist as something different than Commit Frame? + void CaptureState(); //Movie code should manage wheter it needs to capture a state + LoadStateResult CheckTimeLines(TextReader reader, bool onlyGuid, bool ignoreGuidMismatch, out string errorMessage); //No need to return a status, no reason to have hacky flags, no need to pass a textreader + string GetTime(bool preLoad); //Rename to simply: Time, and make it a DateTime + void DumpLogIntoSavestateText(TextWriter writer); //Why pass a Textwriter, just make a string property that is the inputlog as text + void LoadLogFromSavestateText(TextReader reader, bool isMultitracking); //Pass in the text? do we need to care if it is multitracking, and can't hte movie already know that? + int? Frames { get; } //Nullable is a hack, also why does calling code need to know the number of frames, can that be minimized? + int RawFrames { get; } //Hacky to need two different frame properties + + void Finish(); //Why isn't the movie in charge of this? + void StartRecording(bool truncate = true); //Why do we need to truncate or not truncate? Why isn't the object in charge of this decision? + void Stop(bool abortchanges = false); //Refactor to have a bool saveChanges instead + + void StartPlayback(); //Poorly named for what it does, SetToPlay() perhaps? Also, this seems like too much power to give the calling code + void SwitchToRecord(); //Ditto + void SwitchToPlay(); //Dubious that it is needed + + void WriteMovie(); //Rename to Write() + + bool FrameLagged(int frame); //SHould be a property of a Record object + byte[] GetState(int frame); //Should be a property of a Record object + string GetInput(int frame); //Should be a property of a Record object + byte[] InitState { get; } //Should be a record object? + + bool StartsFromSavestate { get; set; } //Why is this settable!!! + + MovieHeader Header { get; } //Don't expose this!!! + MovieLog LogDump { get; } //Don't expose this!!! + SubtitleList Subtitles { get; } //Don't expose this!!! + + int StateFirstIndex { get; } + int StateLastIndex { get; } + #endregion + } +} + +//TODO: delete this and refactor code that uses it! +public enum LoadStateResult { Pass, GuidMismatch, TimeLineError, FutureEventError, NotInRecording, EmptyLog, MissingFrameNumber } \ No newline at end of file diff --git a/BizHawk.Client.Common/movie/Movie.cs b/BizHawk.Client.Common/movie/Movie.cs index 7ebda35be7..f64b036786 100644 --- a/BizHawk.Client.Common/movie/Movie.cs +++ b/BizHawk.Client.Common/movie/Movie.cs @@ -7,7 +7,7 @@ using System.Collections.Generic; namespace BizHawk.Client.Common { - public class Movie + public class Movie : IMovie { #region Constructors @@ -22,6 +22,7 @@ namespace BizHawk.Client.Common public Movie() { Header = new MovieHeader(); + Subtitles = new SubtitleList(); Filename = String.Empty; _preloadFramecount = 0; StartsFromSavestate = false; @@ -34,8 +35,8 @@ namespace BizHawk.Client.Common #endregion #region Properties - public MovieHeader Header; - public SubtitleList Subtitles = new SubtitleList(); + public MovieHeader Header { get; private set; } + public SubtitleList Subtitles { get; private set; } public bool MakeBackup { get; set; } public string Filename { get; set; } @@ -641,8 +642,6 @@ namespace BizHawk.Client.Common return time; } - public enum LoadStateResult { Pass, GuidMismatch, TimeLineError, FutureEventError, NotInRecording, EmptyLog, MissingFrameNumber } - public LoadStateResult CheckTimeLines(TextReader reader, bool onlyGuid, bool ignoreGuidMismatch, out string errorMessage) { //This function will compare the movie data to the savestate movie data to see if they match diff --git a/BizHawk.Client.Common/movie/MovieSession.cs b/BizHawk.Client.Common/movie/MovieSession.cs index 16375bfb85..cf6b527cd6 100644 --- a/BizHawk.Client.Common/movie/MovieSession.cs +++ b/BizHawk.Client.Common/movie/MovieSession.cs @@ -8,7 +8,7 @@ namespace BizHawk.Client.Common public class MovieSession { public MultitrackRecording MultiTrack = new MultitrackRecording(); - public Movie Movie; + public IMovie Movie; public MovieControllerAdapter MovieControllerAdapter = new MovieControllerAdapter(); public bool EditorMode { get; set; } public Action MessageCallback; //Not Required @@ -216,7 +216,7 @@ namespace BizHawk.Client.Common if (Global.ReadOnly) { var result = Movie.CheckTimeLines(reader, onlyGuid: false, ignoreGuidMismatch: false, errorMessage: out ErrorMSG); - if (result == Movie.LoadStateResult.Pass) + if (result == LoadStateResult.Pass) { Movie.WriteMovie(); Movie.SwitchToPlay(); @@ -225,12 +225,12 @@ namespace BizHawk.Client.Common } else { - if (result == Movie.LoadStateResult.GuidMismatch) + if (result == LoadStateResult.GuidMismatch) { if (HandleGuidError()) { var newresult = Movie.CheckTimeLines(reader, onlyGuid: false, ignoreGuidMismatch: true, errorMessage: out ErrorMSG); - if (newresult == Movie.LoadStateResult.Pass) + if (newresult == LoadStateResult.Pass) { Movie.WriteMovie(); Movie.SwitchToPlay(); @@ -257,7 +257,7 @@ namespace BizHawk.Client.Common else { var result = Movie.CheckTimeLines(reader, onlyGuid: true, ignoreGuidMismatch: false, errorMessage: out ErrorMSG); - if (result == Movie.LoadStateResult.Pass) + if (result == LoadStateResult.Pass) { reader.BaseStream.Position = 0; reader.DiscardBufferedData(); @@ -265,12 +265,12 @@ namespace BizHawk.Client.Common } else { - if (result == Movie.LoadStateResult.GuidMismatch) + if (result == LoadStateResult.GuidMismatch) { if (HandleGuidError()) { var newresult = Movie.CheckTimeLines(reader, onlyGuid: false, ignoreGuidMismatch: true, errorMessage: out ErrorMSG); - if (newresult == Movie.LoadStateResult.Pass) + if (newresult == LoadStateResult.Pass) { reader.BaseStream.Position = 0; reader.DiscardBufferedData(); @@ -302,19 +302,19 @@ namespace BizHawk.Client.Common if (Global.ReadOnly) { var result = Movie.CheckTimeLines(reader, onlyGuid: !Global.ReadOnly, ignoreGuidMismatch: false, errorMessage: out ErrorMSG); - if (result == Movie.LoadStateResult.Pass) + if (result == LoadStateResult.Pass) { //Frame loop automatically handles the rewinding effect based on Global.Emulator.Frame so nothing else is needed here return true; } else { - if (result == Movie.LoadStateResult.GuidMismatch) + if (result == LoadStateResult.GuidMismatch) { if (HandleGuidError()) { var newresult = Movie.CheckTimeLines(reader, onlyGuid: !Global.ReadOnly, ignoreGuidMismatch: true, errorMessage: out ErrorMSG); - if (newresult == Movie.LoadStateResult.Pass) + if (newresult == LoadStateResult.Pass) { return true; } @@ -339,7 +339,7 @@ namespace BizHawk.Client.Common else { var result = Movie.CheckTimeLines(reader, onlyGuid: !Global.ReadOnly, ignoreGuidMismatch: false, errorMessage: out ErrorMSG); - if (result == Movie.LoadStateResult.Pass) + if (result == LoadStateResult.Pass) { Movie.SwitchToRecord(); reader.BaseStream.Position = 0; @@ -349,12 +349,12 @@ namespace BizHawk.Client.Common } else { - if (result == Movie.LoadStateResult.GuidMismatch) + if (result == LoadStateResult.GuidMismatch) { if (HandleGuidError()) { var newresult = Movie.CheckTimeLines(reader, onlyGuid: !Global.ReadOnly, ignoreGuidMismatch: true, errorMessage: out ErrorMSG); - if (newresult == Movie.LoadStateResult.Pass) + if (newresult == LoadStateResult.Pass) { Movie.SwitchToRecord(); reader.BaseStream.Position = 0; @@ -386,14 +386,14 @@ namespace BizHawk.Client.Common if (Global.ReadOnly) { var result = Movie.CheckTimeLines(reader, onlyGuid: false, ignoreGuidMismatch: false, errorMessage: out ErrorMSG); - if (result != Movie.LoadStateResult.Pass) + if (result != LoadStateResult.Pass) { - if (result == Movie.LoadStateResult.GuidMismatch) + if (result == LoadStateResult.GuidMismatch) { if (HandleGuidError()) { var newresult = Movie.CheckTimeLines(reader, onlyGuid: true, ignoreGuidMismatch: true, errorMessage: out ErrorMSG); - if (newresult == Movie.LoadStateResult.Pass) + if (newresult == LoadStateResult.Pass) { Movie.SwitchToPlay(); return true; @@ -427,7 +427,7 @@ namespace BizHawk.Client.Common else { var result = Movie.CheckTimeLines(reader, onlyGuid: !Global.ReadOnly, ignoreGuidMismatch: false, errorMessage: out ErrorMSG); - if (result == Movie.LoadStateResult.Pass) + if (result == LoadStateResult.Pass) { Global.Emulator.ClearSaveRam(); Movie.StartRecording(); @@ -438,12 +438,12 @@ namespace BizHawk.Client.Common } else { - if (result == Movie.LoadStateResult.GuidMismatch) + if (result == LoadStateResult.GuidMismatch) { if (HandleGuidError()) { var newresult = Movie.CheckTimeLines(reader, onlyGuid: !Global.ReadOnly, ignoreGuidMismatch: true, errorMessage: out ErrorMSG); - if (newresult == Movie.LoadStateResult.Pass) + if (newresult == LoadStateResult.Pass) { Global.Emulator.ClearSaveRam(); Movie.StartRecording(); diff --git a/BizHawk.Client.EmuHawk/MainForm.Designer.cs b/BizHawk.Client.EmuHawk/MainForm.Designer.cs index c152dd32b2..e7edc9a811 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Designer.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Designer.cs @@ -17,344 +17,344 @@ /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); - this.MainformMenu = new MenuStripEx(); - this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.OpenRomMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.RecentRomSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); - this.CloseRomMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); - this.SaveStateSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveState1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveState2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveState3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveState4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveState5MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveState6MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveState7MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveState8MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveState9MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveState0MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); - this.SaveNamedStateMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadStateSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadState1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadState2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadState3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadState4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadState5MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadState6MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadState7MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadState8MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadState9MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadState0MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); - this.LoadNamedStateMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator21 = new System.Windows.Forms.ToolStripSeparator(); - this.AutoloadLastSlotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveSlotSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.SelectSlot0MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SelectSlot1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SelectSlot2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SelectSlot3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SelectSlot4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SelectSlot5MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SelectSlot6MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SelectSlot7MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SelectSlot8MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SelectSlot9MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PreviousSlotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NextSlotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); - this.SaveToCurrentSlotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadCurrentSlotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator(); - this.MovieSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.ReadonlyMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator(); - this.RecentMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator(); - this.RecordMovieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PlayMovieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.StopMovieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PlayFromBeginningMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ImportMoviesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveMovieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.StopMovieWithoutSavingMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator(); - this.BindSavestatesToMoviesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AutomaticallyBackupMoviesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.FullMovieLoadstatesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AVSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.RecordAVMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.StopAVIMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator(); - this.CaptureOSDMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ScreenshotSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.ScreenshotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ScreenshotAsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ScreenshotClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator20 = new System.Windows.Forms.ToolStripSeparator(); - this.ScreenshotCaptureOSDMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); - this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.EmulationSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.PauseMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.RebootCoreMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); - this.SoftResetMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HardResetMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ViewSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.DisplayFilterSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.DisplayFilterNoneMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.x2SAIMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SuperX2SAIMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SuperEagleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.WindowSizeSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.x1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.x2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.x3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.x4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.x5MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.mzMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SwitchToFullscreenMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); - this.DisplayFPSMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DisplayFrameCounterMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DisplayLagCounterMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DisplayInputMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DisplayRerecordCountMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DisplaySubtitlesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator(); - this.DisplayStatusBarMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DisplayLogWindowMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ConfigSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.ControllersMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HotkeysMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.MessagesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PathsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SoundMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AutofireMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.RewindOptionsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.FirmwaresMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator(); - this.ConfigEnableSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.EnableContextMenuMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.BackupSavestatesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AutoSavestatesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveScreenshotInSavestatesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.FrameAdvanceSkipLagMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.BackupSaveramMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.GuiSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.PauseWhenMenuActivatedMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.StartPausedMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator(); - this.SaveWindowPositionMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ForceGDIMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.UseBilinearMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SuppressGuiLayerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ShowMenuInFullScreenMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.RunInBackgroundMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.BackgroundInputMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SingleInstanceModeMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DontAskToSaveChangesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator23 = new System.Windows.Forms.ToolStripSeparator(); - this.LogWindowAsConsoleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SpeedSkipSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.ClickThrottleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AudioThrottleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.VsyncThrottleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator27 = new System.Windows.Forms.ToolStripSeparator(); - this.VsyncEnabledMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator(); - this.MinimizeSkippingMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NeverSkipMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Frameskip1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Frameskip2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Frameskip3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Frameskip4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Frameskip5MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Frameskip6MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Frameskip7MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Frameskip8MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Frameskip9MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator(); - this.Speed50MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Speed75MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Speed100MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Speed150MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.Speed200MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.KeyPrioritySubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.BothHkAndControllerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.InputOverHkMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HkOverInputMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SavestateTypeSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.SavestateTypeDefaultMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SavestateBinaryMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SavestateTextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); - this.SaveConfigMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadConfigMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ToolBoxMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator(); - this.RamWatchMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.RamSearchMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HexEditorMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.TraceLoggerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.TAStudioMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.VirtualPadMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator(); - this.CheatsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LuaConsoleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator29 = new System.Windows.Forms.ToolStripSeparator(); - this.CreateDualGbXmlMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NESSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.NESDebuggerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NESPPUViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NESNametableViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NESGameGenieCodesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator(); - this.NESGraphicSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NESSoundChannelsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NESSpecialControlsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PCESubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.PCEBGViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator(); - this.PCEAlwaysPerformSpriteLimitMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PCEAlwaysEqualizeVolumesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PCEArcadeCardRewindEnableMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PCEGraphicsSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SMSSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.SMSEnableFMChipMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SMSOverclockMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SMSForceStereoMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SMSSpriteLimitMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ShowClippedRegionsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HighlightActiveDisplayRegionMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator24 = new System.Windows.Forms.ToolStripSeparator(); - this.SMSGraphicsSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.GGGameGenieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.TI83SubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.KeypadMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator(); - this.AutoloadKeypadMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadTIFileMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AtariSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.AtariBWMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AtariLeftDifficultyMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AtariRightDifficultyMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator26 = new System.Windows.Forms.ToolStripSeparator(); - this.AtariShowBGMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AtariShowPlayfieldMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ShowPlayer1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ShowPlayer2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ShowMissle1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ShowMissle2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ShowBallMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.GBSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.GBForceDMGMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.GBAInCGBModeMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.GBMulticartCompatibilityMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadGBInSGBMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator28 = new System.Windows.Forms.ToolStripSeparator(); - this.GBPaletteConfigMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.GBGPUViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.GBGameGenieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.GBASubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.GbaGpuViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SNESSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.SNESDisplayMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesBg1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesBg2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesBg3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesBg4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesObj1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesObj2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesObj3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesObj4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator(); - this.SnesGfxDebuggerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesGBInSGBMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesGameGenieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SnesOptionsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ColecoSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.ColecoSkipBiosMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.N64SubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.N64PluginSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaturnSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.SaturnPreferencesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HelpSubMenu = new System.Windows.Forms.ToolStripMenuItem(); - this.OnlineHelpMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ForumsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AboutMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.MainStatusBar = new System.Windows.Forms.StatusStrip(); - this.DumpStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); - this.EmuStatus = new System.Windows.Forms.ToolStripStatusLabel(); - this.PlayRecordStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); - this.PauseStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); - this.RebootStatusBarIcon = new System.Windows.Forms.ToolStripStatusLabel(); - this.AVIStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); - this.LedLightStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); - this.SaveSlotsStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); - this.Slot1StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.Slot2StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.Slot3StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.Slot4StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.Slot5StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.Slot6StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.Slot7StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.Slot8StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.Slot9StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.Slot0StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.CheatStatusButton = new System.Windows.Forms.ToolStripStatusLabel(); - this.KeyPriorityStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); - this.MainFormContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); - this.OpenRomContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadLastRomContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ContextSeparator_AfterROM = new System.Windows.Forms.ToolStripSeparator(); - this.RecordMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PlayMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.RestartMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.StopMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.LoadLastMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.BackupMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.StopNoSaveContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ViewSubtitlesContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AddSubtitleContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ViewCommentsContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ContextSeparator_AfterMovie = new System.Windows.Forms.ToolStripSeparator(); - this.UndoSavestateContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ContextSeparator_AfterUndo = new System.Windows.Forms.ToolStripSeparator(); - this.ConfigContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.controllersToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.hotkeysToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.messagesToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.pathsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.soundToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.autofireToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.rewindToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.firmwaresToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator30 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); - this.ScreenshotContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.CloseRomContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ClearSRAMContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ShowMenuContextMenuSeparator = new System.Windows.Forms.ToolStripSeparator(); - this.ShowMenuContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.MainformMenu.SuspendLayout(); - this.MainStatusBar.SuspendLayout(); - this.MainFormContextMenu.SuspendLayout(); - this.SuspendLayout(); - // - // MainformMenu - // - this.MainformMenu.ClickThrough = true; - this.MainformMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); + this.MainformMenu = new MenuStripEx(); + this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.OpenRomMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.RecentRomSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); + this.CloseRomMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); + this.SaveStateSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveState1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveState2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveState3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveState4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveState5MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveState6MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveState7MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveState8MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveState9MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveState0MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); + this.SaveNamedStateMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadStateSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadState1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadState2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadState3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadState4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadState5MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadState6MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadState7MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadState8MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadState9MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadState0MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); + this.LoadNamedStateMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator21 = new System.Windows.Forms.ToolStripSeparator(); + this.AutoloadLastSlotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveSlotSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.SelectSlot0MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SelectSlot1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SelectSlot2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SelectSlot3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SelectSlot4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SelectSlot5MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SelectSlot6MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SelectSlot7MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SelectSlot8MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SelectSlot9MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PreviousSlotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.NextSlotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); + this.SaveToCurrentSlotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadCurrentSlotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator(); + this.MovieSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.ReadonlyMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator(); + this.RecentMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator(); + this.RecordMovieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PlayMovieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.StopMovieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PlayFromBeginningMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ImportMoviesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveMovieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.StopMovieWithoutSavingMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator(); + this.BindSavestatesToMoviesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AutomaticallyBackupMoviesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.FullMovieLoadstatesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AVSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.RecordAVMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.StopAVIMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator(); + this.CaptureOSDMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ScreenshotSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.ScreenshotMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ScreenshotAsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ScreenshotClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator20 = new System.Windows.Forms.ToolStripSeparator(); + this.ScreenshotCaptureOSDMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); + this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.EmulationSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.PauseMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.RebootCoreMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.SoftResetMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HardResetMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ViewSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.DisplayFilterSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.DisplayFilterNoneMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.x2SAIMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SuperX2SAIMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SuperEagleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.WindowSizeSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.x1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.x2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.x3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.x4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.x5MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.mzMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SwitchToFullscreenMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); + this.DisplayFPSMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.DisplayFrameCounterMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.DisplayLagCounterMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.DisplayInputMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.DisplayRerecordCountMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.DisplaySubtitlesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator(); + this.DisplayStatusBarMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.DisplayLogWindowMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ConfigSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.ControllersMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HotkeysMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.MessagesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PathsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SoundMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AutofireMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.RewindOptionsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.FirmwaresMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator(); + this.ConfigEnableSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.EnableContextMenuMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.BackupSavestatesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AutoSavestatesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveScreenshotInSavestatesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.FrameAdvanceSkipLagMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.BackupSaveramMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.GuiSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.PauseWhenMenuActivatedMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.StartPausedMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator(); + this.SaveWindowPositionMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ForceGDIMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.UseBilinearMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SuppressGuiLayerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ShowMenuInFullScreenMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.RunInBackgroundMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.BackgroundInputMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SingleInstanceModeMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.DontAskToSaveChangesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator23 = new System.Windows.Forms.ToolStripSeparator(); + this.LogWindowAsConsoleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SpeedSkipSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.ClickThrottleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AudioThrottleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.VsyncThrottleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator27 = new System.Windows.Forms.ToolStripSeparator(); + this.VsyncEnabledMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator(); + this.MinimizeSkippingMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.NeverSkipMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Frameskip1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Frameskip2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Frameskip3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Frameskip4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Frameskip5MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Frameskip6MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Frameskip7MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Frameskip8MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Frameskip9MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator(); + this.Speed50MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Speed75MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Speed100MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Speed150MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.Speed200MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.KeyPrioritySubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.BothHkAndControllerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.InputOverHkMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HkOverInputMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SavestateTypeSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.SavestateTypeDefaultMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SavestateBinaryMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SavestateTextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); + this.SaveConfigMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadConfigMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolBoxMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator(); + this.RamWatchMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.RamSearchMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HexEditorMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.TraceLoggerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.TAStudioMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.VirtualPadMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator(); + this.CheatsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LuaConsoleMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator29 = new System.Windows.Forms.ToolStripSeparator(); + this.CreateDualGbXmlMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.NESSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.NESDebuggerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.NESPPUViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.NESNametableViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.NESGameGenieCodesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator(); + this.NESGraphicSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.NESSoundChannelsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.NESSpecialControlsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PCESubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.PCEBGViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator(); + this.PCEAlwaysPerformSpriteLimitMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PCEAlwaysEqualizeVolumesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PCEArcadeCardRewindEnableMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PCEGraphicsSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SMSSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.SMSEnableFMChipMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SMSOverclockMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SMSForceStereoMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SMSSpriteLimitMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ShowClippedRegionsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HighlightActiveDisplayRegionMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator24 = new System.Windows.Forms.ToolStripSeparator(); + this.SMSGraphicsSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.GGGameGenieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.TI83SubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.KeypadMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator(); + this.AutoloadKeypadMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadTIFileMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AtariSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.AtariBWMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AtariLeftDifficultyMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AtariRightDifficultyMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator26 = new System.Windows.Forms.ToolStripSeparator(); + this.AtariShowBGMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AtariShowPlayfieldMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ShowPlayer1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ShowPlayer2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ShowMissle1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ShowMissle2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ShowBallMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.GBSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.GBForceDMGMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.GBAInCGBModeMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.GBMulticartCompatibilityMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadGBInSGBMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator28 = new System.Windows.Forms.ToolStripSeparator(); + this.GBPaletteConfigMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.GBGPUViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.GBGameGenieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.GBASubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.GbaGpuViewerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SNESSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.SNESDisplayMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesBg1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesBg2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesBg3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesBg4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesObj1MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesObj2MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesObj3MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesObj4MenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator(); + this.SnesGfxDebuggerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesGBInSGBMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesGameGenieMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SnesOptionsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ColecoSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.ColecoSkipBiosMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.N64SubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.N64PluginSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaturnSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.SaturnPreferencesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HelpSubMenu = new System.Windows.Forms.ToolStripMenuItem(); + this.OnlineHelpMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ForumsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AboutMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.MainStatusBar = new System.Windows.Forms.StatusStrip(); + this.DumpStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); + this.EmuStatus = new System.Windows.Forms.ToolStripStatusLabel(); + this.PlayRecordStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); + this.PauseStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); + this.RebootStatusBarIcon = new System.Windows.Forms.ToolStripStatusLabel(); + this.AVIStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); + this.LedLightStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); + this.SaveSlotsStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); + this.Slot1StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.Slot2StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.Slot3StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.Slot4StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.Slot5StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.Slot6StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.Slot7StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.Slot8StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.Slot9StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.Slot0StatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.CheatStatusButton = new System.Windows.Forms.ToolStripStatusLabel(); + this.KeyPriorityStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); + this.MainFormContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); + this.OpenRomContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadLastRomContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ContextSeparator_AfterROM = new System.Windows.Forms.ToolStripSeparator(); + this.RecordMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PlayMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.RestartMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.StopMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.LoadLastMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.BackupMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.StopNoSaveContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ViewSubtitlesContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AddSubtitleContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ViewCommentsContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveMovieContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ContextSeparator_AfterMovie = new System.Windows.Forms.ToolStripSeparator(); + this.UndoSavestateContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ContextSeparator_AfterUndo = new System.Windows.Forms.ToolStripSeparator(); + this.ConfigContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.controllersToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.hotkeysToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.messagesToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.pathsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.soundToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.autofireToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.rewindToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.firmwaresToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator30 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); + this.ScreenshotContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.CloseRomContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ClearSRAMContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ShowMenuContextMenuSeparator = new System.Windows.Forms.ToolStripSeparator(); + this.ShowMenuContextMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.MainformMenu.SuspendLayout(); + this.MainStatusBar.SuspendLayout(); + this.MainFormContextMenu.SuspendLayout(); + this.SuspendLayout(); + // + // MainformMenu + // + this.MainformMenu.ClickThrough = true; + this.MainformMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileSubMenu, this.EmulationSubMenu, this.ViewSubMenu, @@ -372,19 +372,19 @@ this.N64SubMenu, this.SaturnSubMenu, this.HelpSubMenu}); - this.MainformMenu.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow; - this.MainformMenu.Location = new System.Drawing.Point(0, 0); - this.MainformMenu.Name = "MainformMenu"; - this.MainformMenu.Size = new System.Drawing.Size(470, 42); - this.MainformMenu.TabIndex = 0; - this.MainformMenu.Text = "menuStrip1"; - this.MainformMenu.MenuActivate += new System.EventHandler(this.MainformMenu_MenuActivate); - this.MainformMenu.MenuDeactivate += new System.EventHandler(this.MainformMenu_MenuDeactivate); - this.MainformMenu.Leave += new System.EventHandler(this.MainformMenu_Leave); - // - // FileSubMenu - // - this.FileSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MainformMenu.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow; + this.MainformMenu.Location = new System.Drawing.Point(0, 0); + this.MainformMenu.Name = "MainformMenu"; + this.MainformMenu.Size = new System.Drawing.Size(470, 42); + this.MainformMenu.TabIndex = 0; + this.MainformMenu.Text = "menuStrip1"; + this.MainformMenu.MenuActivate += new System.EventHandler(this.MainformMenu_MenuActivate); + this.MainformMenu.MenuDeactivate += new System.EventHandler(this.MainformMenu_MenuDeactivate); + this.MainformMenu.Leave += new System.EventHandler(this.MainformMenu_Leave); + // + // FileSubMenu + // + this.FileSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.OpenRomMenuItem, this.RecentRomSubMenu, this.CloseRomMenuItem, @@ -398,50 +398,50 @@ this.ScreenshotSubMenu, this.toolStripSeparator4, this.ExitMenuItem}); - this.FileSubMenu.Name = "FileSubMenu"; - this.FileSubMenu.Size = new System.Drawing.Size(37, 19); - this.FileSubMenu.Text = "&File"; - this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened); - // - // OpenRomMenuItem - // - this.OpenRomMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.OpenFile; - this.OpenRomMenuItem.Name = "OpenRomMenuItem"; - this.OpenRomMenuItem.Size = new System.Drawing.Size(152, 22); - this.OpenRomMenuItem.Text = "Open ROM"; - this.OpenRomMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); - // - // RecentRomSubMenu - // - this.RecentRomSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.FileSubMenu.Name = "FileSubMenu"; + this.FileSubMenu.Size = new System.Drawing.Size(37, 19); + this.FileSubMenu.Text = "&File"; + this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened); + // + // OpenRomMenuItem + // + this.OpenRomMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.OpenFile; + this.OpenRomMenuItem.Name = "OpenRomMenuItem"; + this.OpenRomMenuItem.Size = new System.Drawing.Size(140, 22); + this.OpenRomMenuItem.Text = "Open ROM"; + this.OpenRomMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); + // + // RecentRomSubMenu + // + this.RecentRomSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator3}); - this.RecentRomSubMenu.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Recent; - this.RecentRomSubMenu.Name = "RecentRomSubMenu"; - this.RecentRomSubMenu.Size = new System.Drawing.Size(152, 22); - this.RecentRomSubMenu.Text = "Recent ROM"; - this.RecentRomSubMenu.DropDownOpened += new System.EventHandler(this.RecentRomMenuItem_DropDownOpened); - // - // toolStripSeparator3 - // - this.toolStripSeparator3.Name = "toolStripSeparator3"; - this.toolStripSeparator3.Size = new System.Drawing.Size(57, 6); - // - // CloseRomMenuItem - // - this.CloseRomMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Close; - this.CloseRomMenuItem.Name = "CloseRomMenuItem"; - this.CloseRomMenuItem.Size = new System.Drawing.Size(152, 22); - this.CloseRomMenuItem.Text = "&Close ROM"; - this.CloseRomMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); - // - // toolStripMenuItem1 - // - this.toolStripMenuItem1.Name = "toolStripMenuItem1"; - this.toolStripMenuItem1.Size = new System.Drawing.Size(149, 6); - // - // SaveStateSubMenu - // - this.SaveStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.RecentRomSubMenu.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Recent; + this.RecentRomSubMenu.Name = "RecentRomSubMenu"; + this.RecentRomSubMenu.Size = new System.Drawing.Size(140, 22); + this.RecentRomSubMenu.Text = "Recent ROM"; + this.RecentRomSubMenu.DropDownOpened += new System.EventHandler(this.RecentRomMenuItem_DropDownOpened); + // + // toolStripSeparator3 + // + this.toolStripSeparator3.Name = "toolStripSeparator3"; + this.toolStripSeparator3.Size = new System.Drawing.Size(57, 6); + // + // CloseRomMenuItem + // + this.CloseRomMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Close; + this.CloseRomMenuItem.Name = "CloseRomMenuItem"; + this.CloseRomMenuItem.Size = new System.Drawing.Size(140, 22); + this.CloseRomMenuItem.Text = "&Close ROM"; + this.CloseRomMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); + // + // toolStripMenuItem1 + // + this.toolStripMenuItem1.Name = "toolStripMenuItem1"; + this.toolStripMenuItem1.Size = new System.Drawing.Size(137, 6); + // + // SaveStateSubMenu + // + this.SaveStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SaveState1MenuItem, this.SaveState2MenuItem, this.SaveState3MenuItem, @@ -454,96 +454,96 @@ this.SaveState0MenuItem, this.toolStripSeparator6, this.SaveNamedStateMenuItem}); - this.SaveStateSubMenu.Name = "SaveStateSubMenu"; - this.SaveStateSubMenu.Size = new System.Drawing.Size(152, 22); - this.SaveStateSubMenu.Text = "Save State"; - this.SaveStateSubMenu.DropDownOpened += new System.EventHandler(this.SaveStateSubMenu_DropDownOpened); - // - // SaveState1MenuItem - // - this.SaveState1MenuItem.Name = "SaveState1MenuItem"; - this.SaveState1MenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveState1MenuItem.Text = "1"; - this.SaveState1MenuItem.Click += new System.EventHandler(this.Savestate1MenuItem_Click); - // - // SaveState2MenuItem - // - this.SaveState2MenuItem.Name = "SaveState2MenuItem"; - this.SaveState2MenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveState2MenuItem.Text = "2"; - this.SaveState2MenuItem.Click += new System.EventHandler(this.Savestate2MenuItem_Click); - // - // SaveState3MenuItem - // - this.SaveState3MenuItem.Name = "SaveState3MenuItem"; - this.SaveState3MenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveState3MenuItem.Text = "3"; - this.SaveState3MenuItem.Click += new System.EventHandler(this.Savestate3MenuItem_Click); - // - // SaveState4MenuItem - // - this.SaveState4MenuItem.Name = "SaveState4MenuItem"; - this.SaveState4MenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveState4MenuItem.Text = "4"; - this.SaveState4MenuItem.Click += new System.EventHandler(this.Savestate4MenuItem_Click); - // - // SaveState5MenuItem - // - this.SaveState5MenuItem.Name = "SaveState5MenuItem"; - this.SaveState5MenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveState5MenuItem.Text = "5"; - this.SaveState5MenuItem.Click += new System.EventHandler(this.Savestate5MenuItem_Click); - // - // SaveState6MenuItem - // - this.SaveState6MenuItem.Name = "SaveState6MenuItem"; - this.SaveState6MenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveState6MenuItem.Text = "6"; - this.SaveState6MenuItem.Click += new System.EventHandler(this.Savestate6MenuItem_Click); - // - // SaveState7MenuItem - // - this.SaveState7MenuItem.Name = "SaveState7MenuItem"; - this.SaveState7MenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveState7MenuItem.Text = "7"; - this.SaveState7MenuItem.Click += new System.EventHandler(this.Savestate7MenuItem_Click); - // - // SaveState8MenuItem - // - this.SaveState8MenuItem.Name = "SaveState8MenuItem"; - this.SaveState8MenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveState8MenuItem.Text = "8"; - this.SaveState8MenuItem.Click += new System.EventHandler(this.Savestate8MenuItem_Click); - // - // SaveState9MenuItem - // - this.SaveState9MenuItem.Name = "SaveState9MenuItem"; - this.SaveState9MenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveState9MenuItem.Text = "9"; - this.SaveState9MenuItem.Click += new System.EventHandler(this.Savestate9MenuItem_Click); - // - // SaveState0MenuItem - // - this.SaveState0MenuItem.Name = "SaveState0MenuItem"; - this.SaveState0MenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveState0MenuItem.Text = "0"; - this.SaveState0MenuItem.Click += new System.EventHandler(this.Savestate0MenuItem_Click); - // - // toolStripSeparator6 - // - this.toolStripSeparator6.Name = "toolStripSeparator6"; - this.toolStripSeparator6.Size = new System.Drawing.Size(175, 6); - // - // SaveNamedStateMenuItem - // - this.SaveNamedStateMenuItem.Name = "SaveNamedStateMenuItem"; - this.SaveNamedStateMenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveNamedStateMenuItem.Text = "Save Named State..."; - this.SaveNamedStateMenuItem.Click += new System.EventHandler(this.SaveNamedStateMenuItem_Click); - // - // LoadStateSubMenu - // - this.LoadStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SaveStateSubMenu.Name = "SaveStateSubMenu"; + this.SaveStateSubMenu.Size = new System.Drawing.Size(140, 22); + this.SaveStateSubMenu.Text = "Save State"; + this.SaveStateSubMenu.DropDownOpened += new System.EventHandler(this.SaveStateSubMenu_DropDownOpened); + // + // SaveState1MenuItem + // + this.SaveState1MenuItem.Name = "SaveState1MenuItem"; + this.SaveState1MenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveState1MenuItem.Text = "1"; + this.SaveState1MenuItem.Click += new System.EventHandler(this.Savestate1MenuItem_Click); + // + // SaveState2MenuItem + // + this.SaveState2MenuItem.Name = "SaveState2MenuItem"; + this.SaveState2MenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveState2MenuItem.Text = "2"; + this.SaveState2MenuItem.Click += new System.EventHandler(this.Savestate2MenuItem_Click); + // + // SaveState3MenuItem + // + this.SaveState3MenuItem.Name = "SaveState3MenuItem"; + this.SaveState3MenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveState3MenuItem.Text = "3"; + this.SaveState3MenuItem.Click += new System.EventHandler(this.Savestate3MenuItem_Click); + // + // SaveState4MenuItem + // + this.SaveState4MenuItem.Name = "SaveState4MenuItem"; + this.SaveState4MenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveState4MenuItem.Text = "4"; + this.SaveState4MenuItem.Click += new System.EventHandler(this.Savestate4MenuItem_Click); + // + // SaveState5MenuItem + // + this.SaveState5MenuItem.Name = "SaveState5MenuItem"; + this.SaveState5MenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveState5MenuItem.Text = "5"; + this.SaveState5MenuItem.Click += new System.EventHandler(this.Savestate5MenuItem_Click); + // + // SaveState6MenuItem + // + this.SaveState6MenuItem.Name = "SaveState6MenuItem"; + this.SaveState6MenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveState6MenuItem.Text = "6"; + this.SaveState6MenuItem.Click += new System.EventHandler(this.Savestate6MenuItem_Click); + // + // SaveState7MenuItem + // + this.SaveState7MenuItem.Name = "SaveState7MenuItem"; + this.SaveState7MenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveState7MenuItem.Text = "7"; + this.SaveState7MenuItem.Click += new System.EventHandler(this.Savestate7MenuItem_Click); + // + // SaveState8MenuItem + // + this.SaveState8MenuItem.Name = "SaveState8MenuItem"; + this.SaveState8MenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveState8MenuItem.Text = "8"; + this.SaveState8MenuItem.Click += new System.EventHandler(this.Savestate8MenuItem_Click); + // + // SaveState9MenuItem + // + this.SaveState9MenuItem.Name = "SaveState9MenuItem"; + this.SaveState9MenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveState9MenuItem.Text = "9"; + this.SaveState9MenuItem.Click += new System.EventHandler(this.Savestate9MenuItem_Click); + // + // SaveState0MenuItem + // + this.SaveState0MenuItem.Name = "SaveState0MenuItem"; + this.SaveState0MenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveState0MenuItem.Text = "0"; + this.SaveState0MenuItem.Click += new System.EventHandler(this.Savestate0MenuItem_Click); + // + // toolStripSeparator6 + // + this.toolStripSeparator6.Name = "toolStripSeparator6"; + this.toolStripSeparator6.Size = new System.Drawing.Size(175, 6); + // + // SaveNamedStateMenuItem + // + this.SaveNamedStateMenuItem.Name = "SaveNamedStateMenuItem"; + this.SaveNamedStateMenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveNamedStateMenuItem.Text = "Save Named State..."; + this.SaveNamedStateMenuItem.Click += new System.EventHandler(this.SaveNamedStateMenuItem_Click); + // + // LoadStateSubMenu + // + this.LoadStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.LoadState1MenuItem, this.LoadState2MenuItem, this.LoadState3MenuItem, @@ -558,108 +558,108 @@ this.LoadNamedStateMenuItem, this.toolStripSeparator21, this.AutoloadLastSlotMenuItem}); - this.LoadStateSubMenu.Name = "LoadStateSubMenu"; - this.LoadStateSubMenu.Size = new System.Drawing.Size(152, 22); - this.LoadStateSubMenu.Text = "Load State"; - this.LoadStateSubMenu.DropDownOpened += new System.EventHandler(this.LoadStateSubMenu_DropDownOpened); - // - // LoadState1MenuItem - // - this.LoadState1MenuItem.Name = "LoadState1MenuItem"; - this.LoadState1MenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadState1MenuItem.Text = "1"; - this.LoadState1MenuItem.Click += new System.EventHandler(this.Loadstate1MenuItem_Click); - // - // LoadState2MenuItem - // - this.LoadState2MenuItem.Name = "LoadState2MenuItem"; - this.LoadState2MenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadState2MenuItem.Text = "2"; - this.LoadState2MenuItem.Click += new System.EventHandler(this.Loadstate2MenuItem_Click); - // - // LoadState3MenuItem - // - this.LoadState3MenuItem.Name = "LoadState3MenuItem"; - this.LoadState3MenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadState3MenuItem.Text = "3"; - this.LoadState3MenuItem.Click += new System.EventHandler(this.Loadstate3MenuItem_Click); - // - // LoadState4MenuItem - // - this.LoadState4MenuItem.Name = "LoadState4MenuItem"; - this.LoadState4MenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadState4MenuItem.Text = "4"; - this.LoadState4MenuItem.Click += new System.EventHandler(this.Loadstate4MenuItem_Click); - // - // LoadState5MenuItem - // - this.LoadState5MenuItem.Name = "LoadState5MenuItem"; - this.LoadState5MenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadState5MenuItem.Text = "5"; - this.LoadState5MenuItem.Click += new System.EventHandler(this.Loadstate5MenuItem_Click); - // - // LoadState6MenuItem - // - this.LoadState6MenuItem.Name = "LoadState6MenuItem"; - this.LoadState6MenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadState6MenuItem.Text = "6"; - this.LoadState6MenuItem.Click += new System.EventHandler(this.Loadstate6MenuItem_Click); - // - // LoadState7MenuItem - // - this.LoadState7MenuItem.Name = "LoadState7MenuItem"; - this.LoadState7MenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadState7MenuItem.Text = "7"; - this.LoadState7MenuItem.Click += new System.EventHandler(this.Loadstate7MenuItem_Click); - // - // LoadState8MenuItem - // - this.LoadState8MenuItem.Name = "LoadState8MenuItem"; - this.LoadState8MenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadState8MenuItem.Text = "8"; - this.LoadState8MenuItem.Click += new System.EventHandler(this.Loadstate8MenuItem_Click); - // - // LoadState9MenuItem - // - this.LoadState9MenuItem.Name = "LoadState9MenuItem"; - this.LoadState9MenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadState9MenuItem.Text = "9"; - this.LoadState9MenuItem.Click += new System.EventHandler(this.Loadstate9MenuItem_Click); - // - // LoadState0MenuItem - // - this.LoadState0MenuItem.Name = "LoadState0MenuItem"; - this.LoadState0MenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadState0MenuItem.Text = "0"; - this.LoadState0MenuItem.Click += new System.EventHandler(this.Loadstate0MenuItem_Click); - // - // toolStripSeparator7 - // - this.toolStripSeparator7.Name = "toolStripSeparator7"; - this.toolStripSeparator7.Size = new System.Drawing.Size(177, 6); - // - // LoadNamedStateMenuItem - // - this.LoadNamedStateMenuItem.Name = "LoadNamedStateMenuItem"; - this.LoadNamedStateMenuItem.Size = new System.Drawing.Size(180, 22); - this.LoadNamedStateMenuItem.Text = "Load Named State..."; - this.LoadNamedStateMenuItem.Click += new System.EventHandler(this.LoadNamedStateMenuItem_Click); - // - // toolStripSeparator21 - // - this.toolStripSeparator21.Name = "toolStripSeparator21"; - this.toolStripSeparator21.Size = new System.Drawing.Size(177, 6); - // - // AutoloadLastSlotMenuItem - // - this.AutoloadLastSlotMenuItem.Name = "AutoloadLastSlotMenuItem"; - this.AutoloadLastSlotMenuItem.Size = new System.Drawing.Size(180, 22); - this.AutoloadLastSlotMenuItem.Text = "Autoload last Slot"; - this.AutoloadLastSlotMenuItem.Click += new System.EventHandler(this.AutoloadLastSlotMenuItem_Click); - // - // SaveSlotSubMenu - // - this.SaveSlotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.LoadStateSubMenu.Name = "LoadStateSubMenu"; + this.LoadStateSubMenu.Size = new System.Drawing.Size(140, 22); + this.LoadStateSubMenu.Text = "Load State"; + this.LoadStateSubMenu.DropDownOpened += new System.EventHandler(this.LoadStateSubMenu_DropDownOpened); + // + // LoadState1MenuItem + // + this.LoadState1MenuItem.Name = "LoadState1MenuItem"; + this.LoadState1MenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadState1MenuItem.Text = "1"; + this.LoadState1MenuItem.Click += new System.EventHandler(this.Loadstate1MenuItem_Click); + // + // LoadState2MenuItem + // + this.LoadState2MenuItem.Name = "LoadState2MenuItem"; + this.LoadState2MenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadState2MenuItem.Text = "2"; + this.LoadState2MenuItem.Click += new System.EventHandler(this.Loadstate2MenuItem_Click); + // + // LoadState3MenuItem + // + this.LoadState3MenuItem.Name = "LoadState3MenuItem"; + this.LoadState3MenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadState3MenuItem.Text = "3"; + this.LoadState3MenuItem.Click += new System.EventHandler(this.Loadstate3MenuItem_Click); + // + // LoadState4MenuItem + // + this.LoadState4MenuItem.Name = "LoadState4MenuItem"; + this.LoadState4MenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadState4MenuItem.Text = "4"; + this.LoadState4MenuItem.Click += new System.EventHandler(this.Loadstate4MenuItem_Click); + // + // LoadState5MenuItem + // + this.LoadState5MenuItem.Name = "LoadState5MenuItem"; + this.LoadState5MenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadState5MenuItem.Text = "5"; + this.LoadState5MenuItem.Click += new System.EventHandler(this.Loadstate5MenuItem_Click); + // + // LoadState6MenuItem + // + this.LoadState6MenuItem.Name = "LoadState6MenuItem"; + this.LoadState6MenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadState6MenuItem.Text = "6"; + this.LoadState6MenuItem.Click += new System.EventHandler(this.Loadstate6MenuItem_Click); + // + // LoadState7MenuItem + // + this.LoadState7MenuItem.Name = "LoadState7MenuItem"; + this.LoadState7MenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadState7MenuItem.Text = "7"; + this.LoadState7MenuItem.Click += new System.EventHandler(this.Loadstate7MenuItem_Click); + // + // LoadState8MenuItem + // + this.LoadState8MenuItem.Name = "LoadState8MenuItem"; + this.LoadState8MenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadState8MenuItem.Text = "8"; + this.LoadState8MenuItem.Click += new System.EventHandler(this.Loadstate8MenuItem_Click); + // + // LoadState9MenuItem + // + this.LoadState9MenuItem.Name = "LoadState9MenuItem"; + this.LoadState9MenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadState9MenuItem.Text = "9"; + this.LoadState9MenuItem.Click += new System.EventHandler(this.Loadstate9MenuItem_Click); + // + // LoadState0MenuItem + // + this.LoadState0MenuItem.Name = "LoadState0MenuItem"; + this.LoadState0MenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadState0MenuItem.Text = "0"; + this.LoadState0MenuItem.Click += new System.EventHandler(this.Loadstate0MenuItem_Click); + // + // toolStripSeparator7 + // + this.toolStripSeparator7.Name = "toolStripSeparator7"; + this.toolStripSeparator7.Size = new System.Drawing.Size(177, 6); + // + // LoadNamedStateMenuItem + // + this.LoadNamedStateMenuItem.Name = "LoadNamedStateMenuItem"; + this.LoadNamedStateMenuItem.Size = new System.Drawing.Size(180, 22); + this.LoadNamedStateMenuItem.Text = "Load Named State..."; + this.LoadNamedStateMenuItem.Click += new System.EventHandler(this.LoadNamedStateMenuItem_Click); + // + // toolStripSeparator21 + // + this.toolStripSeparator21.Name = "toolStripSeparator21"; + this.toolStripSeparator21.Size = new System.Drawing.Size(177, 6); + // + // AutoloadLastSlotMenuItem + // + this.AutoloadLastSlotMenuItem.Name = "AutoloadLastSlotMenuItem"; + this.AutoloadLastSlotMenuItem.Size = new System.Drawing.Size(180, 22); + this.AutoloadLastSlotMenuItem.Text = "Autoload last Slot"; + this.AutoloadLastSlotMenuItem.Click += new System.EventHandler(this.AutoloadLastSlotMenuItem_Click); + // + // SaveSlotSubMenu + // + this.SaveSlotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SelectSlot0MenuItem, this.SelectSlot1MenuItem, this.SelectSlot2MenuItem, @@ -675,124 +675,124 @@ this.toolStripSeparator5, this.SaveToCurrentSlotMenuItem, this.LoadCurrentSlotMenuItem}); - this.SaveSlotSubMenu.Name = "SaveSlotSubMenu"; - this.SaveSlotSubMenu.Size = new System.Drawing.Size(152, 22); - this.SaveSlotSubMenu.Text = "SaveSlot"; - this.SaveSlotSubMenu.DropDownOpened += new System.EventHandler(this.SaveSlotSubMenu_DropDownOpened); - // - // SelectSlot0MenuItem - // - this.SelectSlot0MenuItem.Name = "SelectSlot0MenuItem"; - this.SelectSlot0MenuItem.Size = new System.Drawing.Size(178, 22); - this.SelectSlot0MenuItem.Text = "Select Slot 0"; - this.SelectSlot0MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot1MenuItem - // - this.SelectSlot1MenuItem.Name = "SelectSlot1MenuItem"; - this.SelectSlot1MenuItem.Size = new System.Drawing.Size(178, 22); - this.SelectSlot1MenuItem.Text = "Select Slot 1"; - this.SelectSlot1MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot2MenuItem - // - this.SelectSlot2MenuItem.Name = "SelectSlot2MenuItem"; - this.SelectSlot2MenuItem.Size = new System.Drawing.Size(178, 22); - this.SelectSlot2MenuItem.Text = "Select Slot 2"; - this.SelectSlot2MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot3MenuItem - // - this.SelectSlot3MenuItem.Name = "SelectSlot3MenuItem"; - this.SelectSlot3MenuItem.Size = new System.Drawing.Size(178, 22); - this.SelectSlot3MenuItem.Text = "Select Slot 3"; - this.SelectSlot3MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot4MenuItem - // - this.SelectSlot4MenuItem.Name = "SelectSlot4MenuItem"; - this.SelectSlot4MenuItem.Size = new System.Drawing.Size(178, 22); - this.SelectSlot4MenuItem.Text = "Select Slot 4"; - this.SelectSlot4MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot5MenuItem - // - this.SelectSlot5MenuItem.Name = "SelectSlot5MenuItem"; - this.SelectSlot5MenuItem.Size = new System.Drawing.Size(178, 22); - this.SelectSlot5MenuItem.Text = "Select Slot 5"; - this.SelectSlot5MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot6MenuItem - // - this.SelectSlot6MenuItem.Name = "SelectSlot6MenuItem"; - this.SelectSlot6MenuItem.Size = new System.Drawing.Size(178, 22); - this.SelectSlot6MenuItem.Text = "Select Slot 6"; - this.SelectSlot6MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot7MenuItem - // - this.SelectSlot7MenuItem.Name = "SelectSlot7MenuItem"; - this.SelectSlot7MenuItem.Size = new System.Drawing.Size(178, 22); - this.SelectSlot7MenuItem.Text = "Select Slot 7"; - this.SelectSlot7MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot8MenuItem - // - this.SelectSlot8MenuItem.Name = "SelectSlot8MenuItem"; - this.SelectSlot8MenuItem.Size = new System.Drawing.Size(178, 22); - this.SelectSlot8MenuItem.Text = "Select Slot 8"; - this.SelectSlot8MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot9MenuItem - // - this.SelectSlot9MenuItem.Name = "SelectSlot9MenuItem"; - this.SelectSlot9MenuItem.Size = new System.Drawing.Size(178, 22); - this.SelectSlot9MenuItem.Text = "Select Slot 9"; - this.SelectSlot9MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // PreviousSlotMenuItem - // - this.PreviousSlotMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.MoveLeft; - this.PreviousSlotMenuItem.Name = "PreviousSlotMenuItem"; - this.PreviousSlotMenuItem.Size = new System.Drawing.Size(178, 22); - this.PreviousSlotMenuItem.Text = "Previous Slot"; - this.PreviousSlotMenuItem.Click += new System.EventHandler(this.PreviousSlotMenuItem_Click); - // - // NextSlotMenuItem - // - this.NextSlotMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.MoveRight; - this.NextSlotMenuItem.Name = "NextSlotMenuItem"; - this.NextSlotMenuItem.Size = new System.Drawing.Size(178, 22); - this.NextSlotMenuItem.Text = "Next Slot"; - this.NextSlotMenuItem.Click += new System.EventHandler(this.NextSlotMenuItem_Click); - // - // toolStripSeparator5 - // - this.toolStripSeparator5.Name = "toolStripSeparator5"; - this.toolStripSeparator5.Size = new System.Drawing.Size(175, 6); - // - // SaveToCurrentSlotMenuItem - // - this.SaveToCurrentSlotMenuItem.Name = "SaveToCurrentSlotMenuItem"; - this.SaveToCurrentSlotMenuItem.Size = new System.Drawing.Size(178, 22); - this.SaveToCurrentSlotMenuItem.Text = "Save to Current Slot"; - this.SaveToCurrentSlotMenuItem.Click += new System.EventHandler(this.SaveToCurrentSlotMenuItem_Click); - // - // LoadCurrentSlotMenuItem - // - this.LoadCurrentSlotMenuItem.Name = "LoadCurrentSlotMenuItem"; - this.LoadCurrentSlotMenuItem.Size = new System.Drawing.Size(178, 22); - this.LoadCurrentSlotMenuItem.Text = "Load Current Slot"; - this.LoadCurrentSlotMenuItem.Click += new System.EventHandler(this.LoadCurrentSlotMenuItem_Click); - // - // toolStripMenuItem2 - // - this.toolStripMenuItem2.Name = "toolStripMenuItem2"; - this.toolStripMenuItem2.Size = new System.Drawing.Size(149, 6); - // - // MovieSubMenu - // - this.MovieSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SaveSlotSubMenu.Name = "SaveSlotSubMenu"; + this.SaveSlotSubMenu.Size = new System.Drawing.Size(140, 22); + this.SaveSlotSubMenu.Text = "SaveSlot"; + this.SaveSlotSubMenu.DropDownOpened += new System.EventHandler(this.SaveSlotSubMenu_DropDownOpened); + // + // SelectSlot0MenuItem + // + this.SelectSlot0MenuItem.Name = "SelectSlot0MenuItem"; + this.SelectSlot0MenuItem.Size = new System.Drawing.Size(178, 22); + this.SelectSlot0MenuItem.Text = "Select Slot 0"; + this.SelectSlot0MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot1MenuItem + // + this.SelectSlot1MenuItem.Name = "SelectSlot1MenuItem"; + this.SelectSlot1MenuItem.Size = new System.Drawing.Size(178, 22); + this.SelectSlot1MenuItem.Text = "Select Slot 1"; + this.SelectSlot1MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot2MenuItem + // + this.SelectSlot2MenuItem.Name = "SelectSlot2MenuItem"; + this.SelectSlot2MenuItem.Size = new System.Drawing.Size(178, 22); + this.SelectSlot2MenuItem.Text = "Select Slot 2"; + this.SelectSlot2MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot3MenuItem + // + this.SelectSlot3MenuItem.Name = "SelectSlot3MenuItem"; + this.SelectSlot3MenuItem.Size = new System.Drawing.Size(178, 22); + this.SelectSlot3MenuItem.Text = "Select Slot 3"; + this.SelectSlot3MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot4MenuItem + // + this.SelectSlot4MenuItem.Name = "SelectSlot4MenuItem"; + this.SelectSlot4MenuItem.Size = new System.Drawing.Size(178, 22); + this.SelectSlot4MenuItem.Text = "Select Slot 4"; + this.SelectSlot4MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot5MenuItem + // + this.SelectSlot5MenuItem.Name = "SelectSlot5MenuItem"; + this.SelectSlot5MenuItem.Size = new System.Drawing.Size(178, 22); + this.SelectSlot5MenuItem.Text = "Select Slot 5"; + this.SelectSlot5MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot6MenuItem + // + this.SelectSlot6MenuItem.Name = "SelectSlot6MenuItem"; + this.SelectSlot6MenuItem.Size = new System.Drawing.Size(178, 22); + this.SelectSlot6MenuItem.Text = "Select Slot 6"; + this.SelectSlot6MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot7MenuItem + // + this.SelectSlot7MenuItem.Name = "SelectSlot7MenuItem"; + this.SelectSlot7MenuItem.Size = new System.Drawing.Size(178, 22); + this.SelectSlot7MenuItem.Text = "Select Slot 7"; + this.SelectSlot7MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot8MenuItem + // + this.SelectSlot8MenuItem.Name = "SelectSlot8MenuItem"; + this.SelectSlot8MenuItem.Size = new System.Drawing.Size(178, 22); + this.SelectSlot8MenuItem.Text = "Select Slot 8"; + this.SelectSlot8MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot9MenuItem + // + this.SelectSlot9MenuItem.Name = "SelectSlot9MenuItem"; + this.SelectSlot9MenuItem.Size = new System.Drawing.Size(178, 22); + this.SelectSlot9MenuItem.Text = "Select Slot 9"; + this.SelectSlot9MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // PreviousSlotMenuItem + // + this.PreviousSlotMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.MoveLeft; + this.PreviousSlotMenuItem.Name = "PreviousSlotMenuItem"; + this.PreviousSlotMenuItem.Size = new System.Drawing.Size(178, 22); + this.PreviousSlotMenuItem.Text = "Previous Slot"; + this.PreviousSlotMenuItem.Click += new System.EventHandler(this.PreviousSlotMenuItem_Click); + // + // NextSlotMenuItem + // + this.NextSlotMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.MoveRight; + this.NextSlotMenuItem.Name = "NextSlotMenuItem"; + this.NextSlotMenuItem.Size = new System.Drawing.Size(178, 22); + this.NextSlotMenuItem.Text = "Next Slot"; + this.NextSlotMenuItem.Click += new System.EventHandler(this.NextSlotMenuItem_Click); + // + // toolStripSeparator5 + // + this.toolStripSeparator5.Name = "toolStripSeparator5"; + this.toolStripSeparator5.Size = new System.Drawing.Size(175, 6); + // + // SaveToCurrentSlotMenuItem + // + this.SaveToCurrentSlotMenuItem.Name = "SaveToCurrentSlotMenuItem"; + this.SaveToCurrentSlotMenuItem.Size = new System.Drawing.Size(178, 22); + this.SaveToCurrentSlotMenuItem.Text = "Save to Current Slot"; + this.SaveToCurrentSlotMenuItem.Click += new System.EventHandler(this.SaveToCurrentSlotMenuItem_Click); + // + // LoadCurrentSlotMenuItem + // + this.LoadCurrentSlotMenuItem.Name = "LoadCurrentSlotMenuItem"; + this.LoadCurrentSlotMenuItem.Size = new System.Drawing.Size(178, 22); + this.LoadCurrentSlotMenuItem.Text = "Load Current Slot"; + this.LoadCurrentSlotMenuItem.Click += new System.EventHandler(this.LoadCurrentSlotMenuItem_Click); + // + // toolStripMenuItem2 + // + this.toolStripMenuItem2.Name = "toolStripMenuItem2"; + this.toolStripMenuItem2.Size = new System.Drawing.Size(137, 6); + // + // MovieSubMenu + // + this.MovieSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ReadonlyMenuItem, this.toolStripSeparator15, this.RecentMenuItem, @@ -807,273 +807,273 @@ this.BindSavestatesToMoviesMenuItem, this.AutomaticallyBackupMoviesMenuItem, this.FullMovieLoadstatesMenuItem}); - this.MovieSubMenu.Name = "MovieSubMenu"; - this.MovieSubMenu.Size = new System.Drawing.Size(152, 22); - this.MovieSubMenu.Text = "Movie"; - this.MovieSubMenu.DropDownOpened += new System.EventHandler(this.MovieSubMenu_DropDownOpened); - // - // ReadonlyMenuItem - // - this.ReadonlyMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.ReadOnly; - this.ReadonlyMenuItem.Name = "ReadonlyMenuItem"; - this.ReadonlyMenuItem.Size = new System.Drawing.Size(231, 22); - this.ReadonlyMenuItem.Text = "Read-only"; - this.ReadonlyMenuItem.Click += new System.EventHandler(this.ReadonlyMenuItem_Click); - // - // toolStripSeparator15 - // - this.toolStripSeparator15.Name = "toolStripSeparator15"; - this.toolStripSeparator15.Size = new System.Drawing.Size(228, 6); - // - // RecentMenuItem - // - this.RecentMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MovieSubMenu.Name = "MovieSubMenu"; + this.MovieSubMenu.Size = new System.Drawing.Size(140, 22); + this.MovieSubMenu.Text = "Movie"; + this.MovieSubMenu.DropDownOpened += new System.EventHandler(this.MovieSubMenu_DropDownOpened); + // + // ReadonlyMenuItem + // + this.ReadonlyMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.ReadOnly; + this.ReadonlyMenuItem.Name = "ReadonlyMenuItem"; + this.ReadonlyMenuItem.Size = new System.Drawing.Size(231, 22); + this.ReadonlyMenuItem.Text = "Read-only"; + this.ReadonlyMenuItem.Click += new System.EventHandler(this.ReadonlyMenuItem_Click); + // + // toolStripSeparator15 + // + this.toolStripSeparator15.Name = "toolStripSeparator15"; + this.toolStripSeparator15.Size = new System.Drawing.Size(228, 6); + // + // RecentMenuItem + // + this.RecentMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator16}); - this.RecentMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Recent; - this.RecentMenuItem.Name = "RecentMenuItem"; - this.RecentMenuItem.Size = new System.Drawing.Size(231, 22); - this.RecentMenuItem.Text = "Recent"; - this.RecentMenuItem.DropDownOpened += new System.EventHandler(this.RecentMovieSubMenu_DropDownOpened); - // - // toolStripSeparator16 - // - this.toolStripSeparator16.Name = "toolStripSeparator16"; - this.toolStripSeparator16.Size = new System.Drawing.Size(149, 6); - // - // RecordMovieMenuItem - // - this.RecordMovieMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.RecordHS; - this.RecordMovieMenuItem.Name = "RecordMovieMenuItem"; - this.RecordMovieMenuItem.Size = new System.Drawing.Size(231, 22); - this.RecordMovieMenuItem.Text = "&Record Movie..."; - this.RecordMovieMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); - // - // PlayMovieMenuItem - // - this.PlayMovieMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Play; - this.PlayMovieMenuItem.Name = "PlayMovieMenuItem"; - this.PlayMovieMenuItem.Size = new System.Drawing.Size(231, 22); - this.PlayMovieMenuItem.Text = "&Play Movie..."; - this.PlayMovieMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); - // - // StopMovieMenuItem - // - this.StopMovieMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Stop; - this.StopMovieMenuItem.Name = "StopMovieMenuItem"; - this.StopMovieMenuItem.Size = new System.Drawing.Size(231, 22); - this.StopMovieMenuItem.Text = "Stop Movie"; - this.StopMovieMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); - // - // PlayFromBeginningMenuItem - // - this.PlayFromBeginningMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.restart; - this.PlayFromBeginningMenuItem.Name = "PlayFromBeginningMenuItem"; - this.PlayFromBeginningMenuItem.Size = new System.Drawing.Size(231, 22); - this.PlayFromBeginningMenuItem.Text = "Play from Beginning"; - this.PlayFromBeginningMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); - // - // ImportMoviesMenuItem - // - this.ImportMoviesMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Import; - this.ImportMoviesMenuItem.Name = "ImportMoviesMenuItem"; - this.ImportMoviesMenuItem.Size = new System.Drawing.Size(231, 22); - this.ImportMoviesMenuItem.Text = "Import Movies..."; - this.ImportMoviesMenuItem.Click += new System.EventHandler(this.ImportMovieMenuItem_Click); - // - // SaveMovieMenuItem - // - this.SaveMovieMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.SaveAs; - this.SaveMovieMenuItem.Name = "SaveMovieMenuItem"; - this.SaveMovieMenuItem.Size = new System.Drawing.Size(231, 22); - this.SaveMovieMenuItem.Text = "&Save Movie"; - this.SaveMovieMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); - // - // StopMovieWithoutSavingMenuItem - // - this.StopMovieWithoutSavingMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Stop; - this.StopMovieWithoutSavingMenuItem.Name = "StopMovieWithoutSavingMenuItem"; - this.StopMovieWithoutSavingMenuItem.Size = new System.Drawing.Size(231, 22); - this.StopMovieWithoutSavingMenuItem.Text = "Stop Movie without Saving"; - this.StopMovieWithoutSavingMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); - // - // toolStripSeparator14 - // - this.toolStripSeparator14.Name = "toolStripSeparator14"; - this.toolStripSeparator14.Size = new System.Drawing.Size(228, 6); - // - // BindSavestatesToMoviesMenuItem - // - this.BindSavestatesToMoviesMenuItem.Name = "BindSavestatesToMoviesMenuItem"; - this.BindSavestatesToMoviesMenuItem.Size = new System.Drawing.Size(231, 22); - this.BindSavestatesToMoviesMenuItem.Text = "Bind Savestates to Movies"; - this.BindSavestatesToMoviesMenuItem.Click += new System.EventHandler(this.BindSavestatesToMoviesMenuItem_Click); - // - // AutomaticallyBackupMoviesMenuItem - // - this.AutomaticallyBackupMoviesMenuItem.Name = "AutomaticallyBackupMoviesMenuItem"; - this.AutomaticallyBackupMoviesMenuItem.Size = new System.Drawing.Size(231, 22); - this.AutomaticallyBackupMoviesMenuItem.Text = "Automatically Backup Movies"; - this.AutomaticallyBackupMoviesMenuItem.Click += new System.EventHandler(this.AutomaticMovieBackupMenuItem_Click); - // - // FullMovieLoadstatesMenuItem - // - this.FullMovieLoadstatesMenuItem.Name = "FullMovieLoadstatesMenuItem"; - this.FullMovieLoadstatesMenuItem.Size = new System.Drawing.Size(231, 22); - this.FullMovieLoadstatesMenuItem.Text = "Full Movie Loadstates"; - this.FullMovieLoadstatesMenuItem.Click += new System.EventHandler(this.FullMovieLoadstatesMenuItem_Click); - // - // AVSubMenu - // - this.AVSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.RecentMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Recent; + this.RecentMenuItem.Name = "RecentMenuItem"; + this.RecentMenuItem.Size = new System.Drawing.Size(231, 22); + this.RecentMenuItem.Text = "Recent"; + this.RecentMenuItem.DropDownOpened += new System.EventHandler(this.RecentMovieSubMenu_DropDownOpened); + // + // toolStripSeparator16 + // + this.toolStripSeparator16.Name = "toolStripSeparator16"; + this.toolStripSeparator16.Size = new System.Drawing.Size(57, 6); + // + // RecordMovieMenuItem + // + this.RecordMovieMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.RecordHS; + this.RecordMovieMenuItem.Name = "RecordMovieMenuItem"; + this.RecordMovieMenuItem.Size = new System.Drawing.Size(231, 22); + this.RecordMovieMenuItem.Text = "&Record Movie..."; + this.RecordMovieMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); + // + // PlayMovieMenuItem + // + this.PlayMovieMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Play; + this.PlayMovieMenuItem.Name = "PlayMovieMenuItem"; + this.PlayMovieMenuItem.Size = new System.Drawing.Size(231, 22); + this.PlayMovieMenuItem.Text = "&Play Movie..."; + this.PlayMovieMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); + // + // StopMovieMenuItem + // + this.StopMovieMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Stop; + this.StopMovieMenuItem.Name = "StopMovieMenuItem"; + this.StopMovieMenuItem.Size = new System.Drawing.Size(231, 22); + this.StopMovieMenuItem.Text = "Stop Movie"; + this.StopMovieMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); + // + // PlayFromBeginningMenuItem + // + this.PlayFromBeginningMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.restart; + this.PlayFromBeginningMenuItem.Name = "PlayFromBeginningMenuItem"; + this.PlayFromBeginningMenuItem.Size = new System.Drawing.Size(231, 22); + this.PlayFromBeginningMenuItem.Text = "Play from Beginning"; + this.PlayFromBeginningMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); + // + // ImportMoviesMenuItem + // + this.ImportMoviesMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Import; + this.ImportMoviesMenuItem.Name = "ImportMoviesMenuItem"; + this.ImportMoviesMenuItem.Size = new System.Drawing.Size(231, 22); + this.ImportMoviesMenuItem.Text = "Import Movies..."; + this.ImportMoviesMenuItem.Click += new System.EventHandler(this.ImportMovieMenuItem_Click); + // + // SaveMovieMenuItem + // + this.SaveMovieMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.SaveAs; + this.SaveMovieMenuItem.Name = "SaveMovieMenuItem"; + this.SaveMovieMenuItem.Size = new System.Drawing.Size(231, 22); + this.SaveMovieMenuItem.Text = "&Save Movie"; + this.SaveMovieMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); + // + // StopMovieWithoutSavingMenuItem + // + this.StopMovieWithoutSavingMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Stop; + this.StopMovieWithoutSavingMenuItem.Name = "StopMovieWithoutSavingMenuItem"; + this.StopMovieWithoutSavingMenuItem.Size = new System.Drawing.Size(231, 22); + this.StopMovieWithoutSavingMenuItem.Text = "Stop Movie without Saving"; + this.StopMovieWithoutSavingMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); + // + // toolStripSeparator14 + // + this.toolStripSeparator14.Name = "toolStripSeparator14"; + this.toolStripSeparator14.Size = new System.Drawing.Size(228, 6); + // + // BindSavestatesToMoviesMenuItem + // + this.BindSavestatesToMoviesMenuItem.Name = "BindSavestatesToMoviesMenuItem"; + this.BindSavestatesToMoviesMenuItem.Size = new System.Drawing.Size(231, 22); + this.BindSavestatesToMoviesMenuItem.Text = "Bind Savestates to Movies"; + this.BindSavestatesToMoviesMenuItem.Click += new System.EventHandler(this.BindSavestatesToMoviesMenuItem_Click); + // + // AutomaticallyBackupMoviesMenuItem + // + this.AutomaticallyBackupMoviesMenuItem.Name = "AutomaticallyBackupMoviesMenuItem"; + this.AutomaticallyBackupMoviesMenuItem.Size = new System.Drawing.Size(231, 22); + this.AutomaticallyBackupMoviesMenuItem.Text = "Automatically Backup Movies"; + this.AutomaticallyBackupMoviesMenuItem.Click += new System.EventHandler(this.AutomaticMovieBackupMenuItem_Click); + // + // FullMovieLoadstatesMenuItem + // + this.FullMovieLoadstatesMenuItem.Name = "FullMovieLoadstatesMenuItem"; + this.FullMovieLoadstatesMenuItem.Size = new System.Drawing.Size(231, 22); + this.FullMovieLoadstatesMenuItem.Text = "Full Movie Loadstates"; + this.FullMovieLoadstatesMenuItem.Click += new System.EventHandler(this.FullMovieLoadstatesMenuItem_Click); + // + // AVSubMenu + // + this.AVSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.RecordAVMenuItem, this.StopAVIMenuItem, this.toolStripSeparator19, this.CaptureOSDMenuItem}); - this.AVSubMenu.Name = "AVSubMenu"; - this.AVSubMenu.Size = new System.Drawing.Size(152, 22); - this.AVSubMenu.Text = "AVI/WAV"; - this.AVSubMenu.DropDownOpened += new System.EventHandler(this.AVSubMenu_DropDownOpened); - // - // RecordAVMenuItem - // - this.RecordAVMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.AVI; - this.RecordAVMenuItem.Name = "RecordAVMenuItem"; - this.RecordAVMenuItem.Size = new System.Drawing.Size(163, 22); - this.RecordAVMenuItem.Text = "Record AVI/WAV"; - this.RecordAVMenuItem.Click += new System.EventHandler(this.RecordAVMenuItem_Click); - // - // StopAVIMenuItem - // - this.StopAVIMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Stop; - this.StopAVIMenuItem.Name = "StopAVIMenuItem"; - this.StopAVIMenuItem.Size = new System.Drawing.Size(163, 22); - this.StopAVIMenuItem.Text = "Stop AVI/WAV"; - this.StopAVIMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click); - // - // toolStripSeparator19 - // - this.toolStripSeparator19.Name = "toolStripSeparator19"; - this.toolStripSeparator19.Size = new System.Drawing.Size(160, 6); - // - // CaptureOSDMenuItem - // - this.CaptureOSDMenuItem.Name = "CaptureOSDMenuItem"; - this.CaptureOSDMenuItem.Size = new System.Drawing.Size(163, 22); - this.CaptureOSDMenuItem.Text = "Capture OSD"; - this.CaptureOSDMenuItem.Click += new System.EventHandler(this.CaptureOSDMenuItem_Click); - // - // ScreenshotSubMenu - // - this.ScreenshotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AVSubMenu.Name = "AVSubMenu"; + this.AVSubMenu.Size = new System.Drawing.Size(140, 22); + this.AVSubMenu.Text = "AVI/WAV"; + this.AVSubMenu.DropDownOpened += new System.EventHandler(this.AVSubMenu_DropDownOpened); + // + // RecordAVMenuItem + // + this.RecordAVMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.AVI; + this.RecordAVMenuItem.Name = "RecordAVMenuItem"; + this.RecordAVMenuItem.Size = new System.Drawing.Size(163, 22); + this.RecordAVMenuItem.Text = "Record AVI/WAV"; + this.RecordAVMenuItem.Click += new System.EventHandler(this.RecordAVMenuItem_Click); + // + // StopAVIMenuItem + // + this.StopAVIMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Stop; + this.StopAVIMenuItem.Name = "StopAVIMenuItem"; + this.StopAVIMenuItem.Size = new System.Drawing.Size(163, 22); + this.StopAVIMenuItem.Text = "Stop AVI/WAV"; + this.StopAVIMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click); + // + // toolStripSeparator19 + // + this.toolStripSeparator19.Name = "toolStripSeparator19"; + this.toolStripSeparator19.Size = new System.Drawing.Size(160, 6); + // + // CaptureOSDMenuItem + // + this.CaptureOSDMenuItem.Name = "CaptureOSDMenuItem"; + this.CaptureOSDMenuItem.Size = new System.Drawing.Size(163, 22); + this.CaptureOSDMenuItem.Text = "Capture OSD"; + this.CaptureOSDMenuItem.Click += new System.EventHandler(this.CaptureOSDMenuItem_Click); + // + // ScreenshotSubMenu + // + this.ScreenshotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ScreenshotMenuItem, this.ScreenshotAsMenuItem, this.ScreenshotClipboardMenuItem, this.toolStripSeparator20, this.ScreenshotCaptureOSDMenuItem1}); - this.ScreenshotSubMenu.Name = "ScreenshotSubMenu"; - this.ScreenshotSubMenu.Size = new System.Drawing.Size(152, 22); - this.ScreenshotSubMenu.Text = "Screenshot"; - this.ScreenshotSubMenu.DropDownOpening += new System.EventHandler(this.ScreenshotSubMenu_DropDownOpening); - // - // ScreenshotMenuItem - // - this.ScreenshotMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.camera; - this.ScreenshotMenuItem.Name = "ScreenshotMenuItem"; - this.ScreenshotMenuItem.Size = new System.Drawing.Size(245, 22); - this.ScreenshotMenuItem.Text = "Screenshot"; - this.ScreenshotMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); - // - // ScreenshotAsMenuItem - // - this.ScreenshotAsMenuItem.Name = "ScreenshotAsMenuItem"; - this.ScreenshotAsMenuItem.Size = new System.Drawing.Size(245, 22); - this.ScreenshotAsMenuItem.Text = "Screenshot As..."; - this.ScreenshotAsMenuItem.Click += new System.EventHandler(this.ScreenshotAsMenuItem_Click); - // - // ScreenshotClipboardMenuItem - // - this.ScreenshotClipboardMenuItem.Name = "ScreenshotClipboardMenuItem"; - this.ScreenshotClipboardMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); - this.ScreenshotClipboardMenuItem.Size = new System.Drawing.Size(245, 22); - this.ScreenshotClipboardMenuItem.Text = "Screenshot -> Clipboard"; - this.ScreenshotClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotClipboardMenuItem_Click); - // - // toolStripSeparator20 - // - this.toolStripSeparator20.Name = "toolStripSeparator20"; - this.toolStripSeparator20.Size = new System.Drawing.Size(242, 6); - // - // ScreenshotCaptureOSDMenuItem1 - // - this.ScreenshotCaptureOSDMenuItem1.Name = "ScreenshotCaptureOSDMenuItem1"; - this.ScreenshotCaptureOSDMenuItem1.Size = new System.Drawing.Size(245, 22); - this.ScreenshotCaptureOSDMenuItem1.Text = "Capture OSD"; - this.ScreenshotCaptureOSDMenuItem1.Click += new System.EventHandler(this.ScreenshotCaptureOSDMenuItem_Click); - // - // toolStripSeparator4 - // - this.toolStripSeparator4.Name = "toolStripSeparator4"; - this.toolStripSeparator4.Size = new System.Drawing.Size(149, 6); - // - // ExitMenuItem - // - this.ExitMenuItem.Name = "ExitMenuItem"; - this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4))); - this.ExitMenuItem.Size = new System.Drawing.Size(152, 22); - this.ExitMenuItem.Text = "Exit"; - this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click); - // - // EmulationSubMenu - // - this.EmulationSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ScreenshotSubMenu.Name = "ScreenshotSubMenu"; + this.ScreenshotSubMenu.Size = new System.Drawing.Size(140, 22); + this.ScreenshotSubMenu.Text = "Screenshot"; + this.ScreenshotSubMenu.DropDownOpening += new System.EventHandler(this.ScreenshotSubMenu_DropDownOpening); + // + // ScreenshotMenuItem + // + this.ScreenshotMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.camera; + this.ScreenshotMenuItem.Name = "ScreenshotMenuItem"; + this.ScreenshotMenuItem.Size = new System.Drawing.Size(245, 22); + this.ScreenshotMenuItem.Text = "Screenshot"; + this.ScreenshotMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); + // + // ScreenshotAsMenuItem + // + this.ScreenshotAsMenuItem.Name = "ScreenshotAsMenuItem"; + this.ScreenshotAsMenuItem.Size = new System.Drawing.Size(245, 22); + this.ScreenshotAsMenuItem.Text = "Screenshot As..."; + this.ScreenshotAsMenuItem.Click += new System.EventHandler(this.ScreenshotAsMenuItem_Click); + // + // ScreenshotClipboardMenuItem + // + this.ScreenshotClipboardMenuItem.Name = "ScreenshotClipboardMenuItem"; + this.ScreenshotClipboardMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); + this.ScreenshotClipboardMenuItem.Size = new System.Drawing.Size(245, 22); + this.ScreenshotClipboardMenuItem.Text = "Screenshot -> Clipboard"; + this.ScreenshotClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotClipboardMenuItem_Click); + // + // toolStripSeparator20 + // + this.toolStripSeparator20.Name = "toolStripSeparator20"; + this.toolStripSeparator20.Size = new System.Drawing.Size(242, 6); + // + // ScreenshotCaptureOSDMenuItem1 + // + this.ScreenshotCaptureOSDMenuItem1.Name = "ScreenshotCaptureOSDMenuItem1"; + this.ScreenshotCaptureOSDMenuItem1.Size = new System.Drawing.Size(245, 22); + this.ScreenshotCaptureOSDMenuItem1.Text = "Capture OSD"; + this.ScreenshotCaptureOSDMenuItem1.Click += new System.EventHandler(this.ScreenshotCaptureOSDMenuItem_Click); + // + // toolStripSeparator4 + // + this.toolStripSeparator4.Name = "toolStripSeparator4"; + this.toolStripSeparator4.Size = new System.Drawing.Size(137, 6); + // + // ExitMenuItem + // + this.ExitMenuItem.Name = "ExitMenuItem"; + this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4))); + this.ExitMenuItem.Size = new System.Drawing.Size(140, 22); + this.ExitMenuItem.Text = "Exit"; + this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click); + // + // EmulationSubMenu + // + this.EmulationSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.PauseMenuItem, this.RebootCoreMenuItem, this.toolStripSeparator1, this.SoftResetMenuItem, this.HardResetMenuItem}); - this.EmulationSubMenu.Name = "EmulationSubMenu"; - this.EmulationSubMenu.Size = new System.Drawing.Size(73, 19); - this.EmulationSubMenu.Text = "&Emulation"; - this.EmulationSubMenu.DropDownOpened += new System.EventHandler(this.emulationToolStripMenuItem_DropDownOpened); - // - // PauseMenuItem - // - this.PauseMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Pause; - this.PauseMenuItem.Name = "PauseMenuItem"; - this.PauseMenuItem.Size = new System.Drawing.Size(140, 22); - this.PauseMenuItem.Text = "&Pause"; - this.PauseMenuItem.Click += new System.EventHandler(this.PauseMenuItem_Click); - // - // RebootCoreMenuItem - // - this.RebootCoreMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.reboot; - this.RebootCoreMenuItem.Name = "RebootCoreMenuItem"; - this.RebootCoreMenuItem.Size = new System.Drawing.Size(140, 22); - this.RebootCoreMenuItem.Text = "&Reboot Core"; - this.RebootCoreMenuItem.Click += new System.EventHandler(this.PowerMenuItem_Click); - // - // toolStripSeparator1 - // - this.toolStripSeparator1.Name = "toolStripSeparator1"; - this.toolStripSeparator1.Size = new System.Drawing.Size(137, 6); - // - // SoftResetMenuItem - // - this.SoftResetMenuItem.Name = "SoftResetMenuItem"; - this.SoftResetMenuItem.Size = new System.Drawing.Size(140, 22); - this.SoftResetMenuItem.Text = "&Soft Reset"; - this.SoftResetMenuItem.Click += new System.EventHandler(this.SoftResetMenuItem_Click); - // - // HardResetMenuItem - // - this.HardResetMenuItem.Name = "HardResetMenuItem"; - this.HardResetMenuItem.Size = new System.Drawing.Size(140, 22); - this.HardResetMenuItem.Text = "&Hard Reset"; - this.HardResetMenuItem.Click += new System.EventHandler(this.HardResetMenuItem_Click); - // - // ViewSubMenu - // - this.ViewSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.EmulationSubMenu.Name = "EmulationSubMenu"; + this.EmulationSubMenu.Size = new System.Drawing.Size(73, 19); + this.EmulationSubMenu.Text = "&Emulation"; + this.EmulationSubMenu.DropDownOpened += new System.EventHandler(this.emulationToolStripMenuItem_DropDownOpened); + // + // PauseMenuItem + // + this.PauseMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Pause; + this.PauseMenuItem.Name = "PauseMenuItem"; + this.PauseMenuItem.Size = new System.Drawing.Size(140, 22); + this.PauseMenuItem.Text = "&Pause"; + this.PauseMenuItem.Click += new System.EventHandler(this.PauseMenuItem_Click); + // + // RebootCoreMenuItem + // + this.RebootCoreMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.reboot; + this.RebootCoreMenuItem.Name = "RebootCoreMenuItem"; + this.RebootCoreMenuItem.Size = new System.Drawing.Size(140, 22); + this.RebootCoreMenuItem.Text = "&Reboot Core"; + this.RebootCoreMenuItem.Click += new System.EventHandler(this.PowerMenuItem_Click); + // + // toolStripSeparator1 + // + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(137, 6); + // + // SoftResetMenuItem + // + this.SoftResetMenuItem.Name = "SoftResetMenuItem"; + this.SoftResetMenuItem.Size = new System.Drawing.Size(140, 22); + this.SoftResetMenuItem.Text = "&Soft Reset"; + this.SoftResetMenuItem.Click += new System.EventHandler(this.SoftResetMenuItem_Click); + // + // HardResetMenuItem + // + this.HardResetMenuItem.Name = "HardResetMenuItem"; + this.HardResetMenuItem.Size = new System.Drawing.Size(140, 22); + this.HardResetMenuItem.Text = "&Hard Reset"; + this.HardResetMenuItem.Click += new System.EventHandler(this.HardResetMenuItem_Click); + // + // ViewSubMenu + // + this.ViewSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.DisplayFilterSubMenu, this.WindowSizeSubMenu, this.SwitchToFullscreenMenuItem, @@ -1087,184 +1087,184 @@ this.toolStripMenuItem4, this.DisplayStatusBarMenuItem, this.DisplayLogWindowMenuItem}); - this.ViewSubMenu.Name = "ViewSubMenu"; - this.ViewSubMenu.Size = new System.Drawing.Size(44, 19); - this.ViewSubMenu.Text = "&View"; - this.ViewSubMenu.DropDownOpened += new System.EventHandler(this.ViewSubMenu_DropDownOpened); - // - // DisplayFilterSubMenu - // - this.DisplayFilterSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ViewSubMenu.Name = "ViewSubMenu"; + this.ViewSubMenu.Size = new System.Drawing.Size(44, 19); + this.ViewSubMenu.Text = "&View"; + this.ViewSubMenu.DropDownOpened += new System.EventHandler(this.ViewSubMenu_DropDownOpened); + // + // DisplayFilterSubMenu + // + this.DisplayFilterSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.DisplayFilterNoneMenuItem, this.x2SAIMenuItem, this.SuperX2SAIMenuItem, this.SuperEagleMenuItem}); - this.DisplayFilterSubMenu.Name = "DisplayFilterSubMenu"; - this.DisplayFilterSubMenu.Size = new System.Drawing.Size(198, 22); - this.DisplayFilterSubMenu.Text = "Display Filter"; - this.DisplayFilterSubMenu.DropDownOpened += new System.EventHandler(this.DisplayFilterSubMenu_DropDownOpened); - // - // DisplayFilterNoneMenuItem - // - this.DisplayFilterNoneMenuItem.Name = "DisplayFilterNoneMenuItem"; - this.DisplayFilterNoneMenuItem.Size = new System.Drawing.Size(135, 22); - this.DisplayFilterNoneMenuItem.Text = "None"; - this.DisplayFilterNoneMenuItem.Click += new System.EventHandler(this.DisplayFilterMenuItem_Click); - // - // x2SAIMenuItem - // - this.x2SAIMenuItem.Name = "x2SAIMenuItem"; - this.x2SAIMenuItem.Size = new System.Drawing.Size(135, 22); - this.x2SAIMenuItem.Text = "2xSAI"; - this.x2SAIMenuItem.Click += new System.EventHandler(this.DisplayFilterMenuItem_Click); - // - // SuperX2SAIMenuItem - // - this.SuperX2SAIMenuItem.Name = "SuperX2SAIMenuItem"; - this.SuperX2SAIMenuItem.Size = new System.Drawing.Size(135, 22); - this.SuperX2SAIMenuItem.Text = "Super 2xSAI"; - this.SuperX2SAIMenuItem.Click += new System.EventHandler(this.DisplayFilterMenuItem_Click); - // - // SuperEagleMenuItem - // - this.SuperEagleMenuItem.Name = "SuperEagleMenuItem"; - this.SuperEagleMenuItem.Size = new System.Drawing.Size(135, 22); - this.SuperEagleMenuItem.Text = "Super Eagle"; - this.SuperEagleMenuItem.Click += new System.EventHandler(this.DisplayFilterMenuItem_Click); - // - // WindowSizeSubMenu - // - this.WindowSizeSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.DisplayFilterSubMenu.Name = "DisplayFilterSubMenu"; + this.DisplayFilterSubMenu.Size = new System.Drawing.Size(198, 22); + this.DisplayFilterSubMenu.Text = "Display Filter"; + this.DisplayFilterSubMenu.DropDownOpened += new System.EventHandler(this.DisplayFilterSubMenu_DropDownOpened); + // + // DisplayFilterNoneMenuItem + // + this.DisplayFilterNoneMenuItem.Name = "DisplayFilterNoneMenuItem"; + this.DisplayFilterNoneMenuItem.Size = new System.Drawing.Size(135, 22); + this.DisplayFilterNoneMenuItem.Text = "None"; + this.DisplayFilterNoneMenuItem.Click += new System.EventHandler(this.DisplayFilterMenuItem_Click); + // + // x2SAIMenuItem + // + this.x2SAIMenuItem.Name = "x2SAIMenuItem"; + this.x2SAIMenuItem.Size = new System.Drawing.Size(135, 22); + this.x2SAIMenuItem.Text = "2xSAI"; + this.x2SAIMenuItem.Click += new System.EventHandler(this.DisplayFilterMenuItem_Click); + // + // SuperX2SAIMenuItem + // + this.SuperX2SAIMenuItem.Name = "SuperX2SAIMenuItem"; + this.SuperX2SAIMenuItem.Size = new System.Drawing.Size(135, 22); + this.SuperX2SAIMenuItem.Text = "Super 2xSAI"; + this.SuperX2SAIMenuItem.Click += new System.EventHandler(this.DisplayFilterMenuItem_Click); + // + // SuperEagleMenuItem + // + this.SuperEagleMenuItem.Name = "SuperEagleMenuItem"; + this.SuperEagleMenuItem.Size = new System.Drawing.Size(135, 22); + this.SuperEagleMenuItem.Text = "Super Eagle"; + this.SuperEagleMenuItem.Click += new System.EventHandler(this.DisplayFilterMenuItem_Click); + // + // WindowSizeSubMenu + // + this.WindowSizeSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.x1MenuItem, this.x2MenuItem, this.x3MenuItem, this.x4MenuItem, this.x5MenuItem, this.mzMenuItem}); - this.WindowSizeSubMenu.Name = "WindowSizeSubMenu"; - this.WindowSizeSubMenu.Size = new System.Drawing.Size(198, 22); - this.WindowSizeSubMenu.Text = "&Window Size"; - this.WindowSizeSubMenu.DropDownOpened += new System.EventHandler(this.WindowSizeSubMenu_DropDownOpened); - // - // x1MenuItem - // - this.x1MenuItem.Name = "x1MenuItem"; - this.x1MenuItem.Size = new System.Drawing.Size(96, 22); - this.x1MenuItem.Text = "&1x"; - this.x1MenuItem.Click += new System.EventHandler(this.WindowSize_Click); - // - // x2MenuItem - // - this.x2MenuItem.Name = "x2MenuItem"; - this.x2MenuItem.Size = new System.Drawing.Size(96, 22); - this.x2MenuItem.Text = "&2x"; - this.x2MenuItem.Click += new System.EventHandler(this.WindowSize_Click); - // - // x3MenuItem - // - this.x3MenuItem.Name = "x3MenuItem"; - this.x3MenuItem.Size = new System.Drawing.Size(96, 22); - this.x3MenuItem.Text = "&3x"; - this.x3MenuItem.Click += new System.EventHandler(this.WindowSize_Click); - // - // x4MenuItem - // - this.x4MenuItem.Name = "x4MenuItem"; - this.x4MenuItem.Size = new System.Drawing.Size(96, 22); - this.x4MenuItem.Text = "&4x"; - this.x4MenuItem.Click += new System.EventHandler(this.WindowSize_Click); - // - // x5MenuItem - // - this.x5MenuItem.Name = "x5MenuItem"; - this.x5MenuItem.Size = new System.Drawing.Size(96, 22); - this.x5MenuItem.Text = "&5x"; - this.x5MenuItem.Click += new System.EventHandler(this.WindowSize_Click); - // - // mzMenuItem - // - this.mzMenuItem.Name = "mzMenuItem"; - this.mzMenuItem.Size = new System.Drawing.Size(96, 22); - this.mzMenuItem.Text = "&Max"; - this.mzMenuItem.Click += new System.EventHandler(this.WindowSize_Click); - // - // SwitchToFullscreenMenuItem - // - this.SwitchToFullscreenMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Fullscreen; - this.SwitchToFullscreenMenuItem.Name = "SwitchToFullscreenMenuItem"; - this.SwitchToFullscreenMenuItem.Size = new System.Drawing.Size(198, 22); - this.SwitchToFullscreenMenuItem.Text = "Switch to Fullscreen"; - this.SwitchToFullscreenMenuItem.Click += new System.EventHandler(this.SwitchToFullscreenMenuItem_Click); - // - // toolStripSeparator2 - // - this.toolStripSeparator2.Name = "toolStripSeparator2"; - this.toolStripSeparator2.Size = new System.Drawing.Size(195, 6); - // - // DisplayFPSMenuItem - // - this.DisplayFPSMenuItem.Name = "DisplayFPSMenuItem"; - this.DisplayFPSMenuItem.Size = new System.Drawing.Size(198, 22); - this.DisplayFPSMenuItem.Text = "Display FPS"; - this.DisplayFPSMenuItem.Click += new System.EventHandler(this.DisplayFPSMenuItem_Click); - // - // DisplayFrameCounterMenuItem - // - this.DisplayFrameCounterMenuItem.Name = "DisplayFrameCounterMenuItem"; - this.DisplayFrameCounterMenuItem.Size = new System.Drawing.Size(198, 22); - this.DisplayFrameCounterMenuItem.Text = "Display FrameCounter"; - this.DisplayFrameCounterMenuItem.Click += new System.EventHandler(this.DisplayFrameCounterMenuItem_Click); - // - // DisplayLagCounterMenuItem - // - this.DisplayLagCounterMenuItem.Name = "DisplayLagCounterMenuItem"; - this.DisplayLagCounterMenuItem.Size = new System.Drawing.Size(198, 22); - this.DisplayLagCounterMenuItem.Text = "Display Lag Counter"; - this.DisplayLagCounterMenuItem.Click += new System.EventHandler(this.DisplayLagCounterMenuItem_Click); - // - // DisplayInputMenuItem - // - this.DisplayInputMenuItem.Name = "DisplayInputMenuItem"; - this.DisplayInputMenuItem.Size = new System.Drawing.Size(198, 22); - this.DisplayInputMenuItem.Text = "Display Input"; - this.DisplayInputMenuItem.Click += new System.EventHandler(this.DisplayInputMenuItem_Click); - // - // DisplayRerecordCountMenuItem - // - this.DisplayRerecordCountMenuItem.Name = "DisplayRerecordCountMenuItem"; - this.DisplayRerecordCountMenuItem.Size = new System.Drawing.Size(198, 22); - this.DisplayRerecordCountMenuItem.Text = "Display Rerecord Count"; - this.DisplayRerecordCountMenuItem.Click += new System.EventHandler(this.DisplayRerecordsMenuItem_Click); - // - // DisplaySubtitlesMenuItem - // - this.DisplaySubtitlesMenuItem.Name = "DisplaySubtitlesMenuItem"; - this.DisplaySubtitlesMenuItem.Size = new System.Drawing.Size(198, 22); - this.DisplaySubtitlesMenuItem.Text = "Display Subtitles"; - this.DisplaySubtitlesMenuItem.Click += new System.EventHandler(this.DisplaySubtitlesMenuItem_Click); - // - // toolStripMenuItem4 - // - this.toolStripMenuItem4.Name = "toolStripMenuItem4"; - this.toolStripMenuItem4.Size = new System.Drawing.Size(195, 6); - // - // DisplayStatusBarMenuItem - // - this.DisplayStatusBarMenuItem.Name = "DisplayStatusBarMenuItem"; - this.DisplayStatusBarMenuItem.Size = new System.Drawing.Size(198, 22); - this.DisplayStatusBarMenuItem.Text = "Display Status Bar"; - this.DisplayStatusBarMenuItem.Click += new System.EventHandler(this.DisplayStatusBarMenuItem_Click); - // - // DisplayLogWindowMenuItem - // - this.DisplayLogWindowMenuItem.Name = "DisplayLogWindowMenuItem"; - this.DisplayLogWindowMenuItem.Size = new System.Drawing.Size(198, 22); - this.DisplayLogWindowMenuItem.Text = "Display Log Window"; - this.DisplayLogWindowMenuItem.Click += new System.EventHandler(this.DisplayLogWindowMenuItem_Click); - // - // ConfigSubMenu - // - this.ConfigSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.WindowSizeSubMenu.Name = "WindowSizeSubMenu"; + this.WindowSizeSubMenu.Size = new System.Drawing.Size(198, 22); + this.WindowSizeSubMenu.Text = "&Window Size"; + this.WindowSizeSubMenu.DropDownOpened += new System.EventHandler(this.WindowSizeSubMenu_DropDownOpened); + // + // x1MenuItem + // + this.x1MenuItem.Name = "x1MenuItem"; + this.x1MenuItem.Size = new System.Drawing.Size(96, 22); + this.x1MenuItem.Text = "&1x"; + this.x1MenuItem.Click += new System.EventHandler(this.WindowSize_Click); + // + // x2MenuItem + // + this.x2MenuItem.Name = "x2MenuItem"; + this.x2MenuItem.Size = new System.Drawing.Size(96, 22); + this.x2MenuItem.Text = "&2x"; + this.x2MenuItem.Click += new System.EventHandler(this.WindowSize_Click); + // + // x3MenuItem + // + this.x3MenuItem.Name = "x3MenuItem"; + this.x3MenuItem.Size = new System.Drawing.Size(96, 22); + this.x3MenuItem.Text = "&3x"; + this.x3MenuItem.Click += new System.EventHandler(this.WindowSize_Click); + // + // x4MenuItem + // + this.x4MenuItem.Name = "x4MenuItem"; + this.x4MenuItem.Size = new System.Drawing.Size(96, 22); + this.x4MenuItem.Text = "&4x"; + this.x4MenuItem.Click += new System.EventHandler(this.WindowSize_Click); + // + // x5MenuItem + // + this.x5MenuItem.Name = "x5MenuItem"; + this.x5MenuItem.Size = new System.Drawing.Size(96, 22); + this.x5MenuItem.Text = "&5x"; + this.x5MenuItem.Click += new System.EventHandler(this.WindowSize_Click); + // + // mzMenuItem + // + this.mzMenuItem.Name = "mzMenuItem"; + this.mzMenuItem.Size = new System.Drawing.Size(96, 22); + this.mzMenuItem.Text = "&Max"; + this.mzMenuItem.Click += new System.EventHandler(this.WindowSize_Click); + // + // SwitchToFullscreenMenuItem + // + this.SwitchToFullscreenMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Fullscreen; + this.SwitchToFullscreenMenuItem.Name = "SwitchToFullscreenMenuItem"; + this.SwitchToFullscreenMenuItem.Size = new System.Drawing.Size(198, 22); + this.SwitchToFullscreenMenuItem.Text = "Switch to Fullscreen"; + this.SwitchToFullscreenMenuItem.Click += new System.EventHandler(this.SwitchToFullscreenMenuItem_Click); + // + // toolStripSeparator2 + // + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(195, 6); + // + // DisplayFPSMenuItem + // + this.DisplayFPSMenuItem.Name = "DisplayFPSMenuItem"; + this.DisplayFPSMenuItem.Size = new System.Drawing.Size(198, 22); + this.DisplayFPSMenuItem.Text = "Display FPS"; + this.DisplayFPSMenuItem.Click += new System.EventHandler(this.DisplayFPSMenuItem_Click); + // + // DisplayFrameCounterMenuItem + // + this.DisplayFrameCounterMenuItem.Name = "DisplayFrameCounterMenuItem"; + this.DisplayFrameCounterMenuItem.Size = new System.Drawing.Size(198, 22); + this.DisplayFrameCounterMenuItem.Text = "Display FrameCounter"; + this.DisplayFrameCounterMenuItem.Click += new System.EventHandler(this.DisplayFrameCounterMenuItem_Click); + // + // DisplayLagCounterMenuItem + // + this.DisplayLagCounterMenuItem.Name = "DisplayLagCounterMenuItem"; + this.DisplayLagCounterMenuItem.Size = new System.Drawing.Size(198, 22); + this.DisplayLagCounterMenuItem.Text = "Display Lag Counter"; + this.DisplayLagCounterMenuItem.Click += new System.EventHandler(this.DisplayLagCounterMenuItem_Click); + // + // DisplayInputMenuItem + // + this.DisplayInputMenuItem.Name = "DisplayInputMenuItem"; + this.DisplayInputMenuItem.Size = new System.Drawing.Size(198, 22); + this.DisplayInputMenuItem.Text = "Display Input"; + this.DisplayInputMenuItem.Click += new System.EventHandler(this.DisplayInputMenuItem_Click); + // + // DisplayRerecordCountMenuItem + // + this.DisplayRerecordCountMenuItem.Name = "DisplayRerecordCountMenuItem"; + this.DisplayRerecordCountMenuItem.Size = new System.Drawing.Size(198, 22); + this.DisplayRerecordCountMenuItem.Text = "Display Rerecord Count"; + this.DisplayRerecordCountMenuItem.Click += new System.EventHandler(this.DisplayRerecordsMenuItem_Click); + // + // DisplaySubtitlesMenuItem + // + this.DisplaySubtitlesMenuItem.Name = "DisplaySubtitlesMenuItem"; + this.DisplaySubtitlesMenuItem.Size = new System.Drawing.Size(198, 22); + this.DisplaySubtitlesMenuItem.Text = "Display Subtitles"; + this.DisplaySubtitlesMenuItem.Click += new System.EventHandler(this.DisplaySubtitlesMenuItem_Click); + // + // toolStripMenuItem4 + // + this.toolStripMenuItem4.Name = "toolStripMenuItem4"; + this.toolStripMenuItem4.Size = new System.Drawing.Size(195, 6); + // + // DisplayStatusBarMenuItem + // + this.DisplayStatusBarMenuItem.Name = "DisplayStatusBarMenuItem"; + this.DisplayStatusBarMenuItem.Size = new System.Drawing.Size(198, 22); + this.DisplayStatusBarMenuItem.Text = "Display Status Bar"; + this.DisplayStatusBarMenuItem.Click += new System.EventHandler(this.DisplayStatusBarMenuItem_Click); + // + // DisplayLogWindowMenuItem + // + this.DisplayLogWindowMenuItem.Name = "DisplayLogWindowMenuItem"; + this.DisplayLogWindowMenuItem.Size = new System.Drawing.Size(198, 22); + this.DisplayLogWindowMenuItem.Text = "Display Log Window"; + this.DisplayLogWindowMenuItem.Click += new System.EventHandler(this.DisplayLogWindowMenuItem_Click); + // + // ConfigSubMenu + // + this.ConfigSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ControllersMenuItem, this.HotkeysMenuItem, this.MessagesMenuItem, @@ -1282,138 +1282,138 @@ this.toolStripSeparator10, this.SaveConfigMenuItem, this.LoadConfigMenuItem}); - this.ConfigSubMenu.Name = "ConfigSubMenu"; - this.ConfigSubMenu.Size = new System.Drawing.Size(55, 19); - this.ConfigSubMenu.Text = "&Config"; - this.ConfigSubMenu.DropDownOpened += new System.EventHandler(this.ConfigSubMenu_DropDownOpened); - // - // ControllersMenuItem - // - this.ControllersMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.GameController; - this.ControllersMenuItem.Name = "ControllersMenuItem"; - this.ControllersMenuItem.Size = new System.Drawing.Size(152, 22); - this.ControllersMenuItem.Text = "&Controllers..."; - this.ControllersMenuItem.Click += new System.EventHandler(this.ControllersMenuItem_Click); - // - // HotkeysMenuItem - // - this.HotkeysMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.HotKeys; - this.HotkeysMenuItem.Name = "HotkeysMenuItem"; - this.HotkeysMenuItem.Size = new System.Drawing.Size(152, 22); - this.HotkeysMenuItem.Text = "&Hotkeys..."; - this.HotkeysMenuItem.Click += new System.EventHandler(this.HotkeysMenuItem_Click); - // - // MessagesMenuItem - // - this.MessagesMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.MessageConfig; - this.MessagesMenuItem.Name = "MessagesMenuItem"; - this.MessagesMenuItem.Size = new System.Drawing.Size(152, 22); - this.MessagesMenuItem.Text = "&Messages..."; - this.MessagesMenuItem.Click += new System.EventHandler(this.MessagesMenuItem_Click); - // - // PathsMenuItem - // - this.PathsMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.CopyFolderHS; - this.PathsMenuItem.Name = "PathsMenuItem"; - this.PathsMenuItem.Size = new System.Drawing.Size(152, 22); - this.PathsMenuItem.Text = "Paths..."; - this.PathsMenuItem.Click += new System.EventHandler(this.PathsMenuItem_Click); - // - // SoundMenuItem - // - this.SoundMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.AudioHS; - this.SoundMenuItem.Name = "SoundMenuItem"; - this.SoundMenuItem.Size = new System.Drawing.Size(152, 22); - this.SoundMenuItem.Text = "&Sound..."; - this.SoundMenuItem.Click += new System.EventHandler(this.SoundMenuItem_Click); - // - // AutofireMenuItem - // - this.AutofireMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Lightning; - this.AutofireMenuItem.Name = "AutofireMenuItem"; - this.AutofireMenuItem.Size = new System.Drawing.Size(152, 22); - this.AutofireMenuItem.Text = "&Autofire..."; - this.AutofireMenuItem.Click += new System.EventHandler(this.AutofireMenuItem_Click); - // - // RewindOptionsMenuItem - // - this.RewindOptionsMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Previous; - this.RewindOptionsMenuItem.Name = "RewindOptionsMenuItem"; - this.RewindOptionsMenuItem.Size = new System.Drawing.Size(152, 22); - this.RewindOptionsMenuItem.Text = "&Rewind..."; - this.RewindOptionsMenuItem.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); - // - // FirmwaresMenuItem - // - this.FirmwaresMenuItem.Name = "FirmwaresMenuItem"; - this.FirmwaresMenuItem.Size = new System.Drawing.Size(152, 22); - this.FirmwaresMenuItem.Text = "&Firmwares"; - this.FirmwaresMenuItem.Click += new System.EventHandler(this.FirmwaresMenuItem_Click); - // - // toolStripSeparator9 - // - this.toolStripSeparator9.Name = "toolStripSeparator9"; - this.toolStripSeparator9.Size = new System.Drawing.Size(149, 6); - // - // ConfigEnableSubMenu - // - this.ConfigEnableSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ConfigSubMenu.Name = "ConfigSubMenu"; + this.ConfigSubMenu.Size = new System.Drawing.Size(55, 19); + this.ConfigSubMenu.Text = "&Config"; + this.ConfigSubMenu.DropDownOpened += new System.EventHandler(this.ConfigSubMenu_DropDownOpened); + // + // ControllersMenuItem + // + this.ControllersMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.GameController; + this.ControllersMenuItem.Name = "ControllersMenuItem"; + this.ControllersMenuItem.Size = new System.Drawing.Size(152, 22); + this.ControllersMenuItem.Text = "&Controllers..."; + this.ControllersMenuItem.Click += new System.EventHandler(this.ControllersMenuItem_Click); + // + // HotkeysMenuItem + // + this.HotkeysMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.HotKeys; + this.HotkeysMenuItem.Name = "HotkeysMenuItem"; + this.HotkeysMenuItem.Size = new System.Drawing.Size(152, 22); + this.HotkeysMenuItem.Text = "&Hotkeys..."; + this.HotkeysMenuItem.Click += new System.EventHandler(this.HotkeysMenuItem_Click); + // + // MessagesMenuItem + // + this.MessagesMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.MessageConfig; + this.MessagesMenuItem.Name = "MessagesMenuItem"; + this.MessagesMenuItem.Size = new System.Drawing.Size(152, 22); + this.MessagesMenuItem.Text = "&Messages..."; + this.MessagesMenuItem.Click += new System.EventHandler(this.MessagesMenuItem_Click); + // + // PathsMenuItem + // + this.PathsMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.CopyFolderHS; + this.PathsMenuItem.Name = "PathsMenuItem"; + this.PathsMenuItem.Size = new System.Drawing.Size(152, 22); + this.PathsMenuItem.Text = "Paths..."; + this.PathsMenuItem.Click += new System.EventHandler(this.PathsMenuItem_Click); + // + // SoundMenuItem + // + this.SoundMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.AudioHS; + this.SoundMenuItem.Name = "SoundMenuItem"; + this.SoundMenuItem.Size = new System.Drawing.Size(152, 22); + this.SoundMenuItem.Text = "&Sound..."; + this.SoundMenuItem.Click += new System.EventHandler(this.SoundMenuItem_Click); + // + // AutofireMenuItem + // + this.AutofireMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Lightning; + this.AutofireMenuItem.Name = "AutofireMenuItem"; + this.AutofireMenuItem.Size = new System.Drawing.Size(152, 22); + this.AutofireMenuItem.Text = "&Autofire..."; + this.AutofireMenuItem.Click += new System.EventHandler(this.AutofireMenuItem_Click); + // + // RewindOptionsMenuItem + // + this.RewindOptionsMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Previous; + this.RewindOptionsMenuItem.Name = "RewindOptionsMenuItem"; + this.RewindOptionsMenuItem.Size = new System.Drawing.Size(152, 22); + this.RewindOptionsMenuItem.Text = "&Rewind..."; + this.RewindOptionsMenuItem.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); + // + // FirmwaresMenuItem + // + this.FirmwaresMenuItem.Name = "FirmwaresMenuItem"; + this.FirmwaresMenuItem.Size = new System.Drawing.Size(152, 22); + this.FirmwaresMenuItem.Text = "&Firmwares"; + this.FirmwaresMenuItem.Click += new System.EventHandler(this.FirmwaresMenuItem_Click); + // + // toolStripSeparator9 + // + this.toolStripSeparator9.Name = "toolStripSeparator9"; + this.toolStripSeparator9.Size = new System.Drawing.Size(149, 6); + // + // ConfigEnableSubMenu + // + this.ConfigEnableSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.EnableContextMenuMenuItem, this.BackupSavestatesMenuItem, this.AutoSavestatesMenuItem, this.SaveScreenshotInSavestatesMenuItem, this.FrameAdvanceSkipLagMenuItem, this.BackupSaveramMenuItem}); - this.ConfigEnableSubMenu.Name = "ConfigEnableSubMenu"; - this.ConfigEnableSubMenu.Size = new System.Drawing.Size(152, 22); - this.ConfigEnableSubMenu.Text = "&Enable"; - this.ConfigEnableSubMenu.DropDownOpened += new System.EventHandler(this.EnableMenuItem_DropDownOpened); - // - // EnableContextMenuMenuItem - // - this.EnableContextMenuMenuItem.Name = "EnableContextMenuMenuItem"; - this.EnableContextMenuMenuItem.Size = new System.Drawing.Size(229, 22); - this.EnableContextMenuMenuItem.Text = "Enable Context Menu"; - this.EnableContextMenuMenuItem.Click += new System.EventHandler(this.EnableContextMenuMenuItem_Click); - // - // BackupSavestatesMenuItem - // - this.BackupSavestatesMenuItem.Name = "BackupSavestatesMenuItem"; - this.BackupSavestatesMenuItem.Size = new System.Drawing.Size(229, 22); - this.BackupSavestatesMenuItem.Text = "Backup Savestates"; - this.BackupSavestatesMenuItem.Click += new System.EventHandler(this.BackupSavestatesMenuItem_Click); - // - // AutoSavestatesMenuItem - // - this.AutoSavestatesMenuItem.Name = "AutoSavestatesMenuItem"; - this.AutoSavestatesMenuItem.Size = new System.Drawing.Size(229, 22); - this.AutoSavestatesMenuItem.Text = "Auto Savestates"; - this.AutoSavestatesMenuItem.Click += new System.EventHandler(this.AutoSavestatesMenuItem_Click); - // - // SaveScreenshotInSavestatesMenuItem - // - this.SaveScreenshotInSavestatesMenuItem.Name = "SaveScreenshotInSavestatesMenuItem"; - this.SaveScreenshotInSavestatesMenuItem.Size = new System.Drawing.Size(229, 22); - this.SaveScreenshotInSavestatesMenuItem.Text = "Save Screenshot in Savestates"; - this.SaveScreenshotInSavestatesMenuItem.Click += new System.EventHandler(this.ScreenshotWithSavestatesMenuItem_Click); - // - // FrameAdvanceSkipLagMenuItem - // - this.FrameAdvanceSkipLagMenuItem.Name = "FrameAdvanceSkipLagMenuItem"; - this.FrameAdvanceSkipLagMenuItem.Size = new System.Drawing.Size(229, 22); - this.FrameAdvanceSkipLagMenuItem.Text = "Frame Advance - Skip Lag"; - this.FrameAdvanceSkipLagMenuItem.Click += new System.EventHandler(this.frameAdvanceSkipLagFramesToolStripMenuItem_Click); - // - // BackupSaveramMenuItem - // - this.BackupSaveramMenuItem.Name = "BackupSaveramMenuItem"; - this.BackupSaveramMenuItem.Size = new System.Drawing.Size(229, 22); - this.BackupSaveramMenuItem.Text = "Backup Saveram"; - this.BackupSaveramMenuItem.Click += new System.EventHandler(this.BackupSaveramMenuItem_Click); - // - // GuiSubMenu - // - this.GuiSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ConfigEnableSubMenu.Name = "ConfigEnableSubMenu"; + this.ConfigEnableSubMenu.Size = new System.Drawing.Size(152, 22); + this.ConfigEnableSubMenu.Text = "&Enable"; + this.ConfigEnableSubMenu.DropDownOpened += new System.EventHandler(this.EnableMenuItem_DropDownOpened); + // + // EnableContextMenuMenuItem + // + this.EnableContextMenuMenuItem.Name = "EnableContextMenuMenuItem"; + this.EnableContextMenuMenuItem.Size = new System.Drawing.Size(229, 22); + this.EnableContextMenuMenuItem.Text = "Enable Context Menu"; + this.EnableContextMenuMenuItem.Click += new System.EventHandler(this.EnableContextMenuMenuItem_Click); + // + // BackupSavestatesMenuItem + // + this.BackupSavestatesMenuItem.Name = "BackupSavestatesMenuItem"; + this.BackupSavestatesMenuItem.Size = new System.Drawing.Size(229, 22); + this.BackupSavestatesMenuItem.Text = "Backup Savestates"; + this.BackupSavestatesMenuItem.Click += new System.EventHandler(this.BackupSavestatesMenuItem_Click); + // + // AutoSavestatesMenuItem + // + this.AutoSavestatesMenuItem.Name = "AutoSavestatesMenuItem"; + this.AutoSavestatesMenuItem.Size = new System.Drawing.Size(229, 22); + this.AutoSavestatesMenuItem.Text = "Auto Savestates"; + this.AutoSavestatesMenuItem.Click += new System.EventHandler(this.AutoSavestatesMenuItem_Click); + // + // SaveScreenshotInSavestatesMenuItem + // + this.SaveScreenshotInSavestatesMenuItem.Name = "SaveScreenshotInSavestatesMenuItem"; + this.SaveScreenshotInSavestatesMenuItem.Size = new System.Drawing.Size(229, 22); + this.SaveScreenshotInSavestatesMenuItem.Text = "Save Screenshot in Savestates"; + this.SaveScreenshotInSavestatesMenuItem.Click += new System.EventHandler(this.ScreenshotWithSavestatesMenuItem_Click); + // + // FrameAdvanceSkipLagMenuItem + // + this.FrameAdvanceSkipLagMenuItem.Name = "FrameAdvanceSkipLagMenuItem"; + this.FrameAdvanceSkipLagMenuItem.Size = new System.Drawing.Size(229, 22); + this.FrameAdvanceSkipLagMenuItem.Text = "Frame Advance - Skip Lag"; + this.FrameAdvanceSkipLagMenuItem.Click += new System.EventHandler(this.frameAdvanceSkipLagFramesToolStripMenuItem_Click); + // + // BackupSaveramMenuItem + // + this.BackupSaveramMenuItem.Name = "BackupSaveramMenuItem"; + this.BackupSaveramMenuItem.Size = new System.Drawing.Size(229, 22); + this.BackupSaveramMenuItem.Text = "Backup Saveram"; + this.BackupSaveramMenuItem.Click += new System.EventHandler(this.BackupSaveramMenuItem_Click); + // + // GuiSubMenu + // + this.GuiSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.PauseWhenMenuActivatedMenuItem, this.StartPausedMenuItem, this.toolStripSeparator22, @@ -1428,108 +1428,108 @@ this.DontAskToSaveChangesMenuItem, this.toolStripSeparator23, this.LogWindowAsConsoleMenuItem}); - this.GuiSubMenu.Name = "GuiSubMenu"; - this.GuiSubMenu.Size = new System.Drawing.Size(152, 22); - this.GuiSubMenu.Text = "GUI"; - this.GuiSubMenu.DropDownOpened += new System.EventHandler(this.GuiSubMenu_DropDownOpened); - // - // PauseWhenMenuActivatedMenuItem - // - this.PauseWhenMenuActivatedMenuItem.Name = "PauseWhenMenuActivatedMenuItem"; - this.PauseWhenMenuActivatedMenuItem.Size = new System.Drawing.Size(241, 22); - this.PauseWhenMenuActivatedMenuItem.Text = "Pause when menu activated"; - this.PauseWhenMenuActivatedMenuItem.Click += new System.EventHandler(this.PauseWhenMenuActivatedMenuItem_Click); - // - // StartPausedMenuItem - // - this.StartPausedMenuItem.Name = "StartPausedMenuItem"; - this.StartPausedMenuItem.Size = new System.Drawing.Size(241, 22); - this.StartPausedMenuItem.Text = "Start paused"; - this.StartPausedMenuItem.Click += new System.EventHandler(this.StartPausedMenuItem_Click); - // - // toolStripSeparator22 - // - this.toolStripSeparator22.Name = "toolStripSeparator22"; - this.toolStripSeparator22.Size = new System.Drawing.Size(238, 6); - // - // SaveWindowPositionMenuItem - // - this.SaveWindowPositionMenuItem.Name = "SaveWindowPositionMenuItem"; - this.SaveWindowPositionMenuItem.Size = new System.Drawing.Size(241, 22); - this.SaveWindowPositionMenuItem.Text = "Save window position"; - this.SaveWindowPositionMenuItem.Click += new System.EventHandler(this.SaveWindowPositionMenuItem_Click); - // - // ForceGDIMenuItem - // - this.ForceGDIMenuItem.Name = "ForceGDIMenuItem"; - this.ForceGDIMenuItem.Size = new System.Drawing.Size(241, 22); - this.ForceGDIMenuItem.Text = "Use GDI+ Display Method"; - this.ForceGDIMenuItem.Click += new System.EventHandler(this.UseGDIMenuItem_Click); - // - // UseBilinearMenuItem - // - this.UseBilinearMenuItem.Name = "UseBilinearMenuItem"; - this.UseBilinearMenuItem.Size = new System.Drawing.Size(241, 22); - this.UseBilinearMenuItem.Text = "Use Bilinear Filtering"; - this.UseBilinearMenuItem.Click += new System.EventHandler(this.UseBilinearMenuItem_Click); - // - // SuppressGuiLayerMenuItem - // - this.SuppressGuiLayerMenuItem.Name = "SuppressGuiLayerMenuItem"; - this.SuppressGuiLayerMenuItem.Size = new System.Drawing.Size(241, 22); - this.SuppressGuiLayerMenuItem.Text = "Suppress GUI Layer"; - this.SuppressGuiLayerMenuItem.Click += new System.EventHandler(this.SuppressGuiLayerMenuItem_Click); - // - // ShowMenuInFullScreenMenuItem - // - this.ShowMenuInFullScreenMenuItem.Name = "ShowMenuInFullScreenMenuItem"; - this.ShowMenuInFullScreenMenuItem.Size = new System.Drawing.Size(241, 22); - this.ShowMenuInFullScreenMenuItem.Text = "Show Menu in Full Screen"; - this.ShowMenuInFullScreenMenuItem.Click += new System.EventHandler(this.ShowMenuInFullScreenMenuItem_Click); - // - // RunInBackgroundMenuItem - // - this.RunInBackgroundMenuItem.Name = "RunInBackgroundMenuItem"; - this.RunInBackgroundMenuItem.Size = new System.Drawing.Size(241, 22); - this.RunInBackgroundMenuItem.Text = "Run in Background"; - this.RunInBackgroundMenuItem.Click += new System.EventHandler(this.RunInBackgroundMenuItem_Click); - // - // BackgroundInputMenuItem - // - this.BackgroundInputMenuItem.Name = "BackgroundInputMenuItem"; - this.BackgroundInputMenuItem.Size = new System.Drawing.Size(241, 22); - this.BackgroundInputMenuItem.Text = "Accept Background Input"; - this.BackgroundInputMenuItem.Click += new System.EventHandler(this.BackgroundInputMenuItem_Click); - // - // SingleInstanceModeMenuItem - // - this.SingleInstanceModeMenuItem.Name = "SingleInstanceModeMenuItem"; - this.SingleInstanceModeMenuItem.Size = new System.Drawing.Size(241, 22); - this.SingleInstanceModeMenuItem.Text = "Single Instance Mode"; - this.SingleInstanceModeMenuItem.Click += new System.EventHandler(this.SingleInstanceModeMenuItem_Click); - // - // DontAskToSaveChangesMenuItem - // - this.DontAskToSaveChangesMenuItem.Name = "DontAskToSaveChangesMenuItem"; - this.DontAskToSaveChangesMenuItem.Size = new System.Drawing.Size(241, 22); - this.DontAskToSaveChangesMenuItem.Text = "Never be asked to save changes"; - this.DontAskToSaveChangesMenuItem.Click += new System.EventHandler(this.DontAskToSaveChangesMenuItem_Click); - // - // toolStripSeparator23 - // - this.toolStripSeparator23.Name = "toolStripSeparator23"; - this.toolStripSeparator23.Size = new System.Drawing.Size(238, 6); - // - // LogWindowAsConsoleMenuItem - // - this.LogWindowAsConsoleMenuItem.Name = "LogWindowAsConsoleMenuItem"; - this.LogWindowAsConsoleMenuItem.Size = new System.Drawing.Size(241, 22); - this.LogWindowAsConsoleMenuItem.Text = "Log Window as Console"; - this.LogWindowAsConsoleMenuItem.Click += new System.EventHandler(this.LogWindowAsConsoleMenuItem_Click); - // - // SpeedSkipSubMenu - // - this.SpeedSkipSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.GuiSubMenu.Name = "GuiSubMenu"; + this.GuiSubMenu.Size = new System.Drawing.Size(152, 22); + this.GuiSubMenu.Text = "GUI"; + this.GuiSubMenu.DropDownOpened += new System.EventHandler(this.GuiSubMenu_DropDownOpened); + // + // PauseWhenMenuActivatedMenuItem + // + this.PauseWhenMenuActivatedMenuItem.Name = "PauseWhenMenuActivatedMenuItem"; + this.PauseWhenMenuActivatedMenuItem.Size = new System.Drawing.Size(241, 22); + this.PauseWhenMenuActivatedMenuItem.Text = "Pause when menu activated"; + this.PauseWhenMenuActivatedMenuItem.Click += new System.EventHandler(this.PauseWhenMenuActivatedMenuItem_Click); + // + // StartPausedMenuItem + // + this.StartPausedMenuItem.Name = "StartPausedMenuItem"; + this.StartPausedMenuItem.Size = new System.Drawing.Size(241, 22); + this.StartPausedMenuItem.Text = "Start paused"; + this.StartPausedMenuItem.Click += new System.EventHandler(this.StartPausedMenuItem_Click); + // + // toolStripSeparator22 + // + this.toolStripSeparator22.Name = "toolStripSeparator22"; + this.toolStripSeparator22.Size = new System.Drawing.Size(238, 6); + // + // SaveWindowPositionMenuItem + // + this.SaveWindowPositionMenuItem.Name = "SaveWindowPositionMenuItem"; + this.SaveWindowPositionMenuItem.Size = new System.Drawing.Size(241, 22); + this.SaveWindowPositionMenuItem.Text = "Save window position"; + this.SaveWindowPositionMenuItem.Click += new System.EventHandler(this.SaveWindowPositionMenuItem_Click); + // + // ForceGDIMenuItem + // + this.ForceGDIMenuItem.Name = "ForceGDIMenuItem"; + this.ForceGDIMenuItem.Size = new System.Drawing.Size(241, 22); + this.ForceGDIMenuItem.Text = "Use GDI+ Display Method"; + this.ForceGDIMenuItem.Click += new System.EventHandler(this.UseGDIMenuItem_Click); + // + // UseBilinearMenuItem + // + this.UseBilinearMenuItem.Name = "UseBilinearMenuItem"; + this.UseBilinearMenuItem.Size = new System.Drawing.Size(241, 22); + this.UseBilinearMenuItem.Text = "Use Bilinear Filtering"; + this.UseBilinearMenuItem.Click += new System.EventHandler(this.UseBilinearMenuItem_Click); + // + // SuppressGuiLayerMenuItem + // + this.SuppressGuiLayerMenuItem.Name = "SuppressGuiLayerMenuItem"; + this.SuppressGuiLayerMenuItem.Size = new System.Drawing.Size(241, 22); + this.SuppressGuiLayerMenuItem.Text = "Suppress GUI Layer"; + this.SuppressGuiLayerMenuItem.Click += new System.EventHandler(this.SuppressGuiLayerMenuItem_Click); + // + // ShowMenuInFullScreenMenuItem + // + this.ShowMenuInFullScreenMenuItem.Name = "ShowMenuInFullScreenMenuItem"; + this.ShowMenuInFullScreenMenuItem.Size = new System.Drawing.Size(241, 22); + this.ShowMenuInFullScreenMenuItem.Text = "Show Menu in Full Screen"; + this.ShowMenuInFullScreenMenuItem.Click += new System.EventHandler(this.ShowMenuInFullScreenMenuItem_Click); + // + // RunInBackgroundMenuItem + // + this.RunInBackgroundMenuItem.Name = "RunInBackgroundMenuItem"; + this.RunInBackgroundMenuItem.Size = new System.Drawing.Size(241, 22); + this.RunInBackgroundMenuItem.Text = "Run in Background"; + this.RunInBackgroundMenuItem.Click += new System.EventHandler(this.RunInBackgroundMenuItem_Click); + // + // BackgroundInputMenuItem + // + this.BackgroundInputMenuItem.Name = "BackgroundInputMenuItem"; + this.BackgroundInputMenuItem.Size = new System.Drawing.Size(241, 22); + this.BackgroundInputMenuItem.Text = "Accept Background Input"; + this.BackgroundInputMenuItem.Click += new System.EventHandler(this.BackgroundInputMenuItem_Click); + // + // SingleInstanceModeMenuItem + // + this.SingleInstanceModeMenuItem.Name = "SingleInstanceModeMenuItem"; + this.SingleInstanceModeMenuItem.Size = new System.Drawing.Size(241, 22); + this.SingleInstanceModeMenuItem.Text = "Single Instance Mode"; + this.SingleInstanceModeMenuItem.Click += new System.EventHandler(this.SingleInstanceModeMenuItem_Click); + // + // DontAskToSaveChangesMenuItem + // + this.DontAskToSaveChangesMenuItem.Name = "DontAskToSaveChangesMenuItem"; + this.DontAskToSaveChangesMenuItem.Size = new System.Drawing.Size(241, 22); + this.DontAskToSaveChangesMenuItem.Text = "Never be asked to save changes"; + this.DontAskToSaveChangesMenuItem.Click += new System.EventHandler(this.DontAskToSaveChangesMenuItem_Click); + // + // toolStripSeparator23 + // + this.toolStripSeparator23.Name = "toolStripSeparator23"; + this.toolStripSeparator23.Size = new System.Drawing.Size(238, 6); + // + // LogWindowAsConsoleMenuItem + // + this.LogWindowAsConsoleMenuItem.Name = "LogWindowAsConsoleMenuItem"; + this.LogWindowAsConsoleMenuItem.Size = new System.Drawing.Size(241, 22); + this.LogWindowAsConsoleMenuItem.Text = "Log Window as Console"; + this.LogWindowAsConsoleMenuItem.Click += new System.EventHandler(this.LogWindowAsConsoleMenuItem_Click); + // + // SpeedSkipSubMenu + // + this.SpeedSkipSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ClickThrottleMenuItem, this.AudioThrottleMenuItem, this.VsyncThrottleMenuItem, @@ -1553,254 +1553,254 @@ this.Speed100MenuItem, this.Speed150MenuItem, this.Speed200MenuItem}); - this.SpeedSkipSubMenu.Name = "SpeedSkipSubMenu"; - this.SpeedSkipSubMenu.Size = new System.Drawing.Size(152, 22); - this.SpeedSkipSubMenu.Text = "Speed/Skip"; - this.SpeedSkipSubMenu.DropDownOpened += new System.EventHandler(this.FrameSkipMenuItem_DropDownOpened); - // - // ClickThrottleMenuItem - // - this.ClickThrottleMenuItem.Name = "ClickThrottleMenuItem"; - this.ClickThrottleMenuItem.Size = new System.Drawing.Size(202, 22); - this.ClickThrottleMenuItem.Text = "Clock Throttle"; - this.ClickThrottleMenuItem.Click += new System.EventHandler(this.ClickThrottleMenuItem_Click); - // - // AudioThrottleMenuItem - // - this.AudioThrottleMenuItem.Name = "AudioThrottleMenuItem"; - this.AudioThrottleMenuItem.Size = new System.Drawing.Size(202, 22); - this.AudioThrottleMenuItem.Text = "Audio Throttle"; - this.AudioThrottleMenuItem.Click += new System.EventHandler(this.AudioThrottleMenuItem_Click); - // - // VsyncThrottleMenuItem - // - this.VsyncThrottleMenuItem.Name = "VsyncThrottleMenuItem"; - this.VsyncThrottleMenuItem.Size = new System.Drawing.Size(202, 22); - this.VsyncThrottleMenuItem.Text = "VSync Throttle"; - this.VsyncThrottleMenuItem.Click += new System.EventHandler(this.VsyncThrottleMenuItem_Click); - // - // toolStripSeparator27 - // - this.toolStripSeparator27.Name = "toolStripSeparator27"; - this.toolStripSeparator27.Size = new System.Drawing.Size(199, 6); - // - // VsyncEnabledMenuItem - // - this.VsyncEnabledMenuItem.Name = "VsyncEnabledMenuItem"; - this.VsyncEnabledMenuItem.Size = new System.Drawing.Size(202, 22); - this.VsyncEnabledMenuItem.Text = "VSync Enabled"; - this.VsyncEnabledMenuItem.Click += new System.EventHandler(this.VsyncEnabledMenuItem_Click); - // - // toolStripMenuItem3 - // - this.toolStripMenuItem3.Name = "toolStripMenuItem3"; - this.toolStripMenuItem3.Size = new System.Drawing.Size(199, 6); - // - // MinimizeSkippingMenuItem - // - this.MinimizeSkippingMenuItem.Name = "MinimizeSkippingMenuItem"; - this.MinimizeSkippingMenuItem.Size = new System.Drawing.Size(202, 22); - this.MinimizeSkippingMenuItem.Text = "Auto-minimize skipping"; - this.MinimizeSkippingMenuItem.Click += new System.EventHandler(this.MinimizeSkippingMenuItem_Click); - // - // NeverSkipMenuItem - // - this.NeverSkipMenuItem.Name = "NeverSkipMenuItem"; - this.NeverSkipMenuItem.Size = new System.Drawing.Size(202, 22); - this.NeverSkipMenuItem.Text = "0 (never skip)"; - this.NeverSkipMenuItem.Click += new System.EventHandler(this.NeverSkipMenuItem_Click); - // - // Frameskip1MenuItem - // - this.Frameskip1MenuItem.Name = "Frameskip1MenuItem"; - this.Frameskip1MenuItem.Size = new System.Drawing.Size(202, 22); - this.Frameskip1MenuItem.Text = "1"; - this.Frameskip1MenuItem.Click += new System.EventHandler(this.Frameskip1MenuItem_Click); - // - // Frameskip2MenuItem - // - this.Frameskip2MenuItem.Name = "Frameskip2MenuItem"; - this.Frameskip2MenuItem.Size = new System.Drawing.Size(202, 22); - this.Frameskip2MenuItem.Text = "2"; - this.Frameskip2MenuItem.Click += new System.EventHandler(this.Frameskip2MenuItem_Click); - // - // Frameskip3MenuItem - // - this.Frameskip3MenuItem.Name = "Frameskip3MenuItem"; - this.Frameskip3MenuItem.Size = new System.Drawing.Size(202, 22); - this.Frameskip3MenuItem.Text = "3"; - this.Frameskip3MenuItem.Click += new System.EventHandler(this.Frameskip3MenuItem_Click); - // - // Frameskip4MenuItem - // - this.Frameskip4MenuItem.Name = "Frameskip4MenuItem"; - this.Frameskip4MenuItem.Size = new System.Drawing.Size(202, 22); - this.Frameskip4MenuItem.Text = "4"; - this.Frameskip4MenuItem.Click += new System.EventHandler(this.Frameskip4MenuItem_Click); - // - // Frameskip5MenuItem - // - this.Frameskip5MenuItem.Name = "Frameskip5MenuItem"; - this.Frameskip5MenuItem.Size = new System.Drawing.Size(202, 22); - this.Frameskip5MenuItem.Text = "5"; - this.Frameskip5MenuItem.Click += new System.EventHandler(this.Frameskip5MenuItem_Click); - // - // Frameskip6MenuItem - // - this.Frameskip6MenuItem.Name = "Frameskip6MenuItem"; - this.Frameskip6MenuItem.Size = new System.Drawing.Size(202, 22); - this.Frameskip6MenuItem.Text = "6"; - this.Frameskip6MenuItem.Click += new System.EventHandler(this.Frameskip6MenuItem_Click); - // - // Frameskip7MenuItem - // - this.Frameskip7MenuItem.Name = "Frameskip7MenuItem"; - this.Frameskip7MenuItem.Size = new System.Drawing.Size(202, 22); - this.Frameskip7MenuItem.Text = "7"; - this.Frameskip7MenuItem.Click += new System.EventHandler(this.Frameskip7MenuItem_Click); - // - // Frameskip8MenuItem - // - this.Frameskip8MenuItem.Name = "Frameskip8MenuItem"; - this.Frameskip8MenuItem.Size = new System.Drawing.Size(202, 22); - this.Frameskip8MenuItem.Text = "8"; - this.Frameskip8MenuItem.Click += new System.EventHandler(this.Frameskip8MenuItem_Click); - // - // Frameskip9MenuItem - // - this.Frameskip9MenuItem.Name = "Frameskip9MenuItem"; - this.Frameskip9MenuItem.Size = new System.Drawing.Size(202, 22); - this.Frameskip9MenuItem.Text = "9"; - this.Frameskip9MenuItem.Click += new System.EventHandler(this.Frameskip9MenuItem_Click); - // - // toolStripMenuItem5 - // - this.toolStripMenuItem5.Name = "toolStripMenuItem5"; - this.toolStripMenuItem5.Size = new System.Drawing.Size(199, 6); - // - // Speed50MenuItem - // - this.Speed50MenuItem.Name = "Speed50MenuItem"; - this.Speed50MenuItem.Size = new System.Drawing.Size(202, 22); - this.Speed50MenuItem.Text = "Speed 50%"; - this.Speed50MenuItem.Click += new System.EventHandler(this.Speed50MenuItem_Click); - // - // Speed75MenuItem - // - this.Speed75MenuItem.Name = "Speed75MenuItem"; - this.Speed75MenuItem.Size = new System.Drawing.Size(202, 22); - this.Speed75MenuItem.Text = "Speed 75%"; - this.Speed75MenuItem.Click += new System.EventHandler(this.Speed75MenuItem_Click); - // - // Speed100MenuItem - // - this.Speed100MenuItem.Name = "Speed100MenuItem"; - this.Speed100MenuItem.Size = new System.Drawing.Size(202, 22); - this.Speed100MenuItem.Text = "Speed 100%"; - this.Speed100MenuItem.Click += new System.EventHandler(this.Speed100MenuItem_Click); - // - // Speed150MenuItem - // - this.Speed150MenuItem.Name = "Speed150MenuItem"; - this.Speed150MenuItem.Size = new System.Drawing.Size(202, 22); - this.Speed150MenuItem.Text = "Speed 150%"; - this.Speed150MenuItem.Click += new System.EventHandler(this.Speed150MenuItem_Click); - // - // Speed200MenuItem - // - this.Speed200MenuItem.Name = "Speed200MenuItem"; - this.Speed200MenuItem.Size = new System.Drawing.Size(202, 22); - this.Speed200MenuItem.Text = "Speed 200%"; - this.Speed200MenuItem.Click += new System.EventHandler(this.Speed200MenuItem_Click); - // - // KeyPrioritySubMenu - // - this.KeyPrioritySubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SpeedSkipSubMenu.Name = "SpeedSkipSubMenu"; + this.SpeedSkipSubMenu.Size = new System.Drawing.Size(152, 22); + this.SpeedSkipSubMenu.Text = "Speed/Skip"; + this.SpeedSkipSubMenu.DropDownOpened += new System.EventHandler(this.FrameSkipMenuItem_DropDownOpened); + // + // ClickThrottleMenuItem + // + this.ClickThrottleMenuItem.Name = "ClickThrottleMenuItem"; + this.ClickThrottleMenuItem.Size = new System.Drawing.Size(202, 22); + this.ClickThrottleMenuItem.Text = "Clock Throttle"; + this.ClickThrottleMenuItem.Click += new System.EventHandler(this.ClickThrottleMenuItem_Click); + // + // AudioThrottleMenuItem + // + this.AudioThrottleMenuItem.Name = "AudioThrottleMenuItem"; + this.AudioThrottleMenuItem.Size = new System.Drawing.Size(202, 22); + this.AudioThrottleMenuItem.Text = "Audio Throttle"; + this.AudioThrottleMenuItem.Click += new System.EventHandler(this.AudioThrottleMenuItem_Click); + // + // VsyncThrottleMenuItem + // + this.VsyncThrottleMenuItem.Name = "VsyncThrottleMenuItem"; + this.VsyncThrottleMenuItem.Size = new System.Drawing.Size(202, 22); + this.VsyncThrottleMenuItem.Text = "VSync Throttle"; + this.VsyncThrottleMenuItem.Click += new System.EventHandler(this.VsyncThrottleMenuItem_Click); + // + // toolStripSeparator27 + // + this.toolStripSeparator27.Name = "toolStripSeparator27"; + this.toolStripSeparator27.Size = new System.Drawing.Size(199, 6); + // + // VsyncEnabledMenuItem + // + this.VsyncEnabledMenuItem.Name = "VsyncEnabledMenuItem"; + this.VsyncEnabledMenuItem.Size = new System.Drawing.Size(202, 22); + this.VsyncEnabledMenuItem.Text = "VSync Enabled"; + this.VsyncEnabledMenuItem.Click += new System.EventHandler(this.VsyncEnabledMenuItem_Click); + // + // toolStripMenuItem3 + // + this.toolStripMenuItem3.Name = "toolStripMenuItem3"; + this.toolStripMenuItem3.Size = new System.Drawing.Size(199, 6); + // + // MinimizeSkippingMenuItem + // + this.MinimizeSkippingMenuItem.Name = "MinimizeSkippingMenuItem"; + this.MinimizeSkippingMenuItem.Size = new System.Drawing.Size(202, 22); + this.MinimizeSkippingMenuItem.Text = "Auto-minimize skipping"; + this.MinimizeSkippingMenuItem.Click += new System.EventHandler(this.MinimizeSkippingMenuItem_Click); + // + // NeverSkipMenuItem + // + this.NeverSkipMenuItem.Name = "NeverSkipMenuItem"; + this.NeverSkipMenuItem.Size = new System.Drawing.Size(202, 22); + this.NeverSkipMenuItem.Text = "0 (never skip)"; + this.NeverSkipMenuItem.Click += new System.EventHandler(this.NeverSkipMenuItem_Click); + // + // Frameskip1MenuItem + // + this.Frameskip1MenuItem.Name = "Frameskip1MenuItem"; + this.Frameskip1MenuItem.Size = new System.Drawing.Size(202, 22); + this.Frameskip1MenuItem.Text = "1"; + this.Frameskip1MenuItem.Click += new System.EventHandler(this.Frameskip1MenuItem_Click); + // + // Frameskip2MenuItem + // + this.Frameskip2MenuItem.Name = "Frameskip2MenuItem"; + this.Frameskip2MenuItem.Size = new System.Drawing.Size(202, 22); + this.Frameskip2MenuItem.Text = "2"; + this.Frameskip2MenuItem.Click += new System.EventHandler(this.Frameskip2MenuItem_Click); + // + // Frameskip3MenuItem + // + this.Frameskip3MenuItem.Name = "Frameskip3MenuItem"; + this.Frameskip3MenuItem.Size = new System.Drawing.Size(202, 22); + this.Frameskip3MenuItem.Text = "3"; + this.Frameskip3MenuItem.Click += new System.EventHandler(this.Frameskip3MenuItem_Click); + // + // Frameskip4MenuItem + // + this.Frameskip4MenuItem.Name = "Frameskip4MenuItem"; + this.Frameskip4MenuItem.Size = new System.Drawing.Size(202, 22); + this.Frameskip4MenuItem.Text = "4"; + this.Frameskip4MenuItem.Click += new System.EventHandler(this.Frameskip4MenuItem_Click); + // + // Frameskip5MenuItem + // + this.Frameskip5MenuItem.Name = "Frameskip5MenuItem"; + this.Frameskip5MenuItem.Size = new System.Drawing.Size(202, 22); + this.Frameskip5MenuItem.Text = "5"; + this.Frameskip5MenuItem.Click += new System.EventHandler(this.Frameskip5MenuItem_Click); + // + // Frameskip6MenuItem + // + this.Frameskip6MenuItem.Name = "Frameskip6MenuItem"; + this.Frameskip6MenuItem.Size = new System.Drawing.Size(202, 22); + this.Frameskip6MenuItem.Text = "6"; + this.Frameskip6MenuItem.Click += new System.EventHandler(this.Frameskip6MenuItem_Click); + // + // Frameskip7MenuItem + // + this.Frameskip7MenuItem.Name = "Frameskip7MenuItem"; + this.Frameskip7MenuItem.Size = new System.Drawing.Size(202, 22); + this.Frameskip7MenuItem.Text = "7"; + this.Frameskip7MenuItem.Click += new System.EventHandler(this.Frameskip7MenuItem_Click); + // + // Frameskip8MenuItem + // + this.Frameskip8MenuItem.Name = "Frameskip8MenuItem"; + this.Frameskip8MenuItem.Size = new System.Drawing.Size(202, 22); + this.Frameskip8MenuItem.Text = "8"; + this.Frameskip8MenuItem.Click += new System.EventHandler(this.Frameskip8MenuItem_Click); + // + // Frameskip9MenuItem + // + this.Frameskip9MenuItem.Name = "Frameskip9MenuItem"; + this.Frameskip9MenuItem.Size = new System.Drawing.Size(202, 22); + this.Frameskip9MenuItem.Text = "9"; + this.Frameskip9MenuItem.Click += new System.EventHandler(this.Frameskip9MenuItem_Click); + // + // toolStripMenuItem5 + // + this.toolStripMenuItem5.Name = "toolStripMenuItem5"; + this.toolStripMenuItem5.Size = new System.Drawing.Size(199, 6); + // + // Speed50MenuItem + // + this.Speed50MenuItem.Name = "Speed50MenuItem"; + this.Speed50MenuItem.Size = new System.Drawing.Size(202, 22); + this.Speed50MenuItem.Text = "Speed 50%"; + this.Speed50MenuItem.Click += new System.EventHandler(this.Speed50MenuItem_Click); + // + // Speed75MenuItem + // + this.Speed75MenuItem.Name = "Speed75MenuItem"; + this.Speed75MenuItem.Size = new System.Drawing.Size(202, 22); + this.Speed75MenuItem.Text = "Speed 75%"; + this.Speed75MenuItem.Click += new System.EventHandler(this.Speed75MenuItem_Click); + // + // Speed100MenuItem + // + this.Speed100MenuItem.Name = "Speed100MenuItem"; + this.Speed100MenuItem.Size = new System.Drawing.Size(202, 22); + this.Speed100MenuItem.Text = "Speed 100%"; + this.Speed100MenuItem.Click += new System.EventHandler(this.Speed100MenuItem_Click); + // + // Speed150MenuItem + // + this.Speed150MenuItem.Name = "Speed150MenuItem"; + this.Speed150MenuItem.Size = new System.Drawing.Size(202, 22); + this.Speed150MenuItem.Text = "Speed 150%"; + this.Speed150MenuItem.Click += new System.EventHandler(this.Speed150MenuItem_Click); + // + // Speed200MenuItem + // + this.Speed200MenuItem.Name = "Speed200MenuItem"; + this.Speed200MenuItem.Size = new System.Drawing.Size(202, 22); + this.Speed200MenuItem.Text = "Speed 200%"; + this.Speed200MenuItem.Click += new System.EventHandler(this.Speed200MenuItem_Click); + // + // KeyPrioritySubMenu + // + this.KeyPrioritySubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.BothHkAndControllerMenuItem, this.InputOverHkMenuItem, this.HkOverInputMenuItem}); - this.KeyPrioritySubMenu.Name = "KeyPrioritySubMenu"; - this.KeyPrioritySubMenu.Size = new System.Drawing.Size(152, 22); - this.KeyPrioritySubMenu.Text = "Key Priority"; - this.KeyPrioritySubMenu.DropDownOpened += new System.EventHandler(this.KeyPriorityMenuItem_DropDownOpened); - // - // BothHkAndControllerMenuItem - // - this.BothHkAndControllerMenuItem.Name = "BothHkAndControllerMenuItem"; - this.BothHkAndControllerMenuItem.Size = new System.Drawing.Size(229, 22); - this.BothHkAndControllerMenuItem.Text = "Both Hotkeys and Controllers"; - this.BothHkAndControllerMenuItem.Click += new System.EventHandler(this.BothHkAndControllerMenuItem_Click); - // - // InputOverHkMenuItem - // - this.InputOverHkMenuItem.Name = "InputOverHkMenuItem"; - this.InputOverHkMenuItem.Size = new System.Drawing.Size(229, 22); - this.InputOverHkMenuItem.Text = "Input overrides Hotkeys"; - this.InputOverHkMenuItem.Click += new System.EventHandler(this.InputOverHkMenuItem_Click); - // - // HkOverInputMenuItem - // - this.HkOverInputMenuItem.Name = "HkOverInputMenuItem"; - this.HkOverInputMenuItem.Size = new System.Drawing.Size(229, 22); - this.HkOverInputMenuItem.Text = "Hotkeys override Input"; - this.HkOverInputMenuItem.Click += new System.EventHandler(this.HkOverInputMenuItem_Click); - // - // SavestateTypeSubMenu - // - this.SavestateTypeSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.KeyPrioritySubMenu.Name = "KeyPrioritySubMenu"; + this.KeyPrioritySubMenu.Size = new System.Drawing.Size(152, 22); + this.KeyPrioritySubMenu.Text = "Key Priority"; + this.KeyPrioritySubMenu.DropDownOpened += new System.EventHandler(this.KeyPriorityMenuItem_DropDownOpened); + // + // BothHkAndControllerMenuItem + // + this.BothHkAndControllerMenuItem.Name = "BothHkAndControllerMenuItem"; + this.BothHkAndControllerMenuItem.Size = new System.Drawing.Size(229, 22); + this.BothHkAndControllerMenuItem.Text = "Both Hotkeys and Controllers"; + this.BothHkAndControllerMenuItem.Click += new System.EventHandler(this.BothHkAndControllerMenuItem_Click); + // + // InputOverHkMenuItem + // + this.InputOverHkMenuItem.Name = "InputOverHkMenuItem"; + this.InputOverHkMenuItem.Size = new System.Drawing.Size(229, 22); + this.InputOverHkMenuItem.Text = "Input overrides Hotkeys"; + this.InputOverHkMenuItem.Click += new System.EventHandler(this.InputOverHkMenuItem_Click); + // + // HkOverInputMenuItem + // + this.HkOverInputMenuItem.Name = "HkOverInputMenuItem"; + this.HkOverInputMenuItem.Size = new System.Drawing.Size(229, 22); + this.HkOverInputMenuItem.Text = "Hotkeys override Input"; + this.HkOverInputMenuItem.Click += new System.EventHandler(this.HkOverInputMenuItem_Click); + // + // SavestateTypeSubMenu + // + this.SavestateTypeSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SavestateTypeDefaultMenuItem, this.SavestateBinaryMenuItem, this.SavestateTextMenuItem}); - this.SavestateTypeSubMenu.Name = "SavestateTypeSubMenu"; - this.SavestateTypeSubMenu.Size = new System.Drawing.Size(152, 22); - this.SavestateTypeSubMenu.Text = "Savestate Type"; - this.SavestateTypeSubMenu.DropDownOpened += new System.EventHandler(this.SavestateTypeMenuItem_DropDownOpened); - // - // SavestateTypeDefaultMenuItem - // - this.SavestateTypeDefaultMenuItem.Name = "SavestateTypeDefaultMenuItem"; - this.SavestateTypeDefaultMenuItem.Size = new System.Drawing.Size(112, 22); - this.SavestateTypeDefaultMenuItem.Text = "Default"; - this.SavestateTypeDefaultMenuItem.Click += new System.EventHandler(this.SavestateTypeDefaultMenuItem_Click); - // - // SavestateBinaryMenuItem - // - this.SavestateBinaryMenuItem.Name = "SavestateBinaryMenuItem"; - this.SavestateBinaryMenuItem.Size = new System.Drawing.Size(112, 22); - this.SavestateBinaryMenuItem.Text = "Binary"; - this.SavestateBinaryMenuItem.Click += new System.EventHandler(this.SavestateBinaryMenuItem_Click); - // - // SavestateTextMenuItem - // - this.SavestateTextMenuItem.Name = "SavestateTextMenuItem"; - this.SavestateTextMenuItem.Size = new System.Drawing.Size(112, 22); - this.SavestateTextMenuItem.Text = "Text"; - this.SavestateTextMenuItem.Click += new System.EventHandler(this.SavestateTextMenuItem_Click); - // - // toolStripSeparator10 - // - this.toolStripSeparator10.Name = "toolStripSeparator10"; - this.toolStripSeparator10.Size = new System.Drawing.Size(149, 6); - // - // SaveConfigMenuItem - // - this.SaveConfigMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Save; - this.SaveConfigMenuItem.Name = "SaveConfigMenuItem"; - this.SaveConfigMenuItem.Size = new System.Drawing.Size(152, 22); - this.SaveConfigMenuItem.Text = "Save Config"; - this.SaveConfigMenuItem.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); - // - // LoadConfigMenuItem - // - this.LoadConfigMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.LoadConfig; - this.LoadConfigMenuItem.Name = "LoadConfigMenuItem"; - this.LoadConfigMenuItem.Size = new System.Drawing.Size(152, 22); - this.LoadConfigMenuItem.Text = "Load Config"; - this.LoadConfigMenuItem.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); - // - // toolsToolStripMenuItem - // - this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SavestateTypeSubMenu.Name = "SavestateTypeSubMenu"; + this.SavestateTypeSubMenu.Size = new System.Drawing.Size(152, 22); + this.SavestateTypeSubMenu.Text = "Savestate Type"; + this.SavestateTypeSubMenu.DropDownOpened += new System.EventHandler(this.SavestateTypeMenuItem_DropDownOpened); + // + // SavestateTypeDefaultMenuItem + // + this.SavestateTypeDefaultMenuItem.Name = "SavestateTypeDefaultMenuItem"; + this.SavestateTypeDefaultMenuItem.Size = new System.Drawing.Size(112, 22); + this.SavestateTypeDefaultMenuItem.Text = "Default"; + this.SavestateTypeDefaultMenuItem.Click += new System.EventHandler(this.SavestateTypeDefaultMenuItem_Click); + // + // SavestateBinaryMenuItem + // + this.SavestateBinaryMenuItem.Name = "SavestateBinaryMenuItem"; + this.SavestateBinaryMenuItem.Size = new System.Drawing.Size(112, 22); + this.SavestateBinaryMenuItem.Text = "Binary"; + this.SavestateBinaryMenuItem.Click += new System.EventHandler(this.SavestateBinaryMenuItem_Click); + // + // SavestateTextMenuItem + // + this.SavestateTextMenuItem.Name = "SavestateTextMenuItem"; + this.SavestateTextMenuItem.Size = new System.Drawing.Size(112, 22); + this.SavestateTextMenuItem.Text = "Text"; + this.SavestateTextMenuItem.Click += new System.EventHandler(this.SavestateTextMenuItem_Click); + // + // toolStripSeparator10 + // + this.toolStripSeparator10.Name = "toolStripSeparator10"; + this.toolStripSeparator10.Size = new System.Drawing.Size(149, 6); + // + // SaveConfigMenuItem + // + this.SaveConfigMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Save; + this.SaveConfigMenuItem.Name = "SaveConfigMenuItem"; + this.SaveConfigMenuItem.Size = new System.Drawing.Size(152, 22); + this.SaveConfigMenuItem.Text = "Save Config"; + this.SaveConfigMenuItem.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); + // + // LoadConfigMenuItem + // + this.LoadConfigMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.LoadConfig; + this.LoadConfigMenuItem.Name = "LoadConfigMenuItem"; + this.LoadConfigMenuItem.Size = new System.Drawing.Size(152, 22); + this.LoadConfigMenuItem.Text = "Load Config"; + this.LoadConfigMenuItem.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); + // + // toolsToolStripMenuItem + // + this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ToolBoxMenuItem, this.toolStripSeparator12, this.RamWatchMenuItem, @@ -1814,108 +1814,109 @@ this.LuaConsoleMenuItem, this.toolStripSeparator29, this.CreateDualGbXmlMenuItem}); - this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem"; - this.toolsToolStripMenuItem.Size = new System.Drawing.Size(48, 19); - this.toolsToolStripMenuItem.Text = "&Tools"; - this.toolsToolStripMenuItem.DropDownOpened += new System.EventHandler(this.toolsToolStripMenuItem_DropDownOpened); - // - // ToolBoxMenuItem - // - this.ToolBoxMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.ToolBox; - this.ToolBoxMenuItem.Name = "ToolBoxMenuItem"; - this.ToolBoxMenuItem.Size = new System.Drawing.Size(189, 22); - this.ToolBoxMenuItem.Text = "&Tool Box"; - this.ToolBoxMenuItem.Click += new System.EventHandler(this.ToolBoxMenuItem_Click); - // - // toolStripSeparator12 - // - this.toolStripSeparator12.Name = "toolStripSeparator12"; - this.toolStripSeparator12.Size = new System.Drawing.Size(186, 6); - // - // RamWatchMenuItem - // - this.RamWatchMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.watch; - this.RamWatchMenuItem.Name = "RamWatchMenuItem"; - this.RamWatchMenuItem.Size = new System.Drawing.Size(189, 22); - this.RamWatchMenuItem.Text = "RAM &Watch"; - this.RamWatchMenuItem.Click += new System.EventHandler(this.RamWatchMenuItem_Click); - // - // RamSearchMenuItem - // - this.RamSearchMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.search; - this.RamSearchMenuItem.Name = "RamSearchMenuItem"; - this.RamSearchMenuItem.Size = new System.Drawing.Size(189, 22); - this.RamSearchMenuItem.Text = "RAM &Search"; - this.RamSearchMenuItem.Click += new System.EventHandler(this.RamSearchMenuItem_Click); - // - // HexEditorMenuItem - // - this.HexEditorMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.poke; - this.HexEditorMenuItem.Name = "HexEditorMenuItem"; - this.HexEditorMenuItem.Size = new System.Drawing.Size(189, 22); - this.HexEditorMenuItem.Text = "&Hex Editor"; - this.HexEditorMenuItem.Click += new System.EventHandler(this.HexEditorMenuItem_Click); - // - // TraceLoggerMenuItem - // - this.TraceLoggerMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.pencil; - this.TraceLoggerMenuItem.Name = "TraceLoggerMenuItem"; - this.TraceLoggerMenuItem.Size = new System.Drawing.Size(189, 22); - this.TraceLoggerMenuItem.Text = "Trace &Logger"; - this.TraceLoggerMenuItem.Click += new System.EventHandler(this.TraceLoggerMenuItem_Click); - // - // TAStudioMenuItem - // - this.TAStudioMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.TAStudio; - this.TAStudioMenuItem.Name = "TAStudioMenuItem"; - this.TAStudioMenuItem.Size = new System.Drawing.Size(189, 22); - this.TAStudioMenuItem.Text = "&TAStudio"; - this.TAStudioMenuItem.Click += new System.EventHandler(this.TAStudioMenuItem_Click); - // - // VirtualPadMenuItem - // - this.VirtualPadMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.GameController; - this.VirtualPadMenuItem.Name = "VirtualPadMenuItem"; - this.VirtualPadMenuItem.Size = new System.Drawing.Size(189, 22); - this.VirtualPadMenuItem.Text = "Virtual Pad"; - this.VirtualPadMenuItem.Click += new System.EventHandler(this.VirtualPadMenuItem_Click); - // - // toolStripSeparator11 - // - this.toolStripSeparator11.Name = "toolStripSeparator11"; - this.toolStripSeparator11.Size = new System.Drawing.Size(186, 6); - // - // CheatsMenuItem - // - this.CheatsMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Freeze; - this.CheatsMenuItem.Name = "CheatsMenuItem"; - this.CheatsMenuItem.Size = new System.Drawing.Size(189, 22); - this.CheatsMenuItem.Text = "Cheats"; - this.CheatsMenuItem.Click += new System.EventHandler(this.CheatsMenuItem_Click); - // - // LuaConsoleMenuItem - // - this.LuaConsoleMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Lua; - this.LuaConsoleMenuItem.Name = "LuaConsoleMenuItem"; - this.LuaConsoleMenuItem.Size = new System.Drawing.Size(189, 22); - this.LuaConsoleMenuItem.Text = "Lua Console"; - this.LuaConsoleMenuItem.Click += new System.EventHandler(this.LuaConsoleMenuItem_Click); - // - // toolStripSeparator29 - // - this.toolStripSeparator29.Name = "toolStripSeparator29"; - this.toolStripSeparator29.Size = new System.Drawing.Size(186, 6); - // - // CreateDualGbXmlMenuItem - // - this.CreateDualGbXmlMenuItem.Name = "CreateDualGbXmlMenuItem"; - this.CreateDualGbXmlMenuItem.Size = new System.Drawing.Size(189, 22); - this.CreateDualGbXmlMenuItem.Text = "Create Dual GB XML..."; - this.CreateDualGbXmlMenuItem.Click += new System.EventHandler(this.CreateDualGbXmlMenuItem_Click); - // - // NESSubMenu - // - this.NESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem"; + this.toolsToolStripMenuItem.Size = new System.Drawing.Size(48, 19); + this.toolsToolStripMenuItem.Text = "&Tools"; + this.toolsToolStripMenuItem.DropDownOpened += new System.EventHandler(this.toolsToolStripMenuItem_DropDownOpened); + // + // ToolBoxMenuItem + // + this.ToolBoxMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.ToolBox; + this.ToolBoxMenuItem.Name = "ToolBoxMenuItem"; + this.ToolBoxMenuItem.Size = new System.Drawing.Size(189, 22); + this.ToolBoxMenuItem.Text = "&Tool Box"; + this.ToolBoxMenuItem.Click += new System.EventHandler(this.ToolBoxMenuItem_Click); + // + // toolStripSeparator12 + // + this.toolStripSeparator12.Name = "toolStripSeparator12"; + this.toolStripSeparator12.Size = new System.Drawing.Size(186, 6); + // + // RamWatchMenuItem + // + this.RamWatchMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.watch; + this.RamWatchMenuItem.Name = "RamWatchMenuItem"; + this.RamWatchMenuItem.Size = new System.Drawing.Size(189, 22); + this.RamWatchMenuItem.Text = "RAM &Watch"; + this.RamWatchMenuItem.Click += new System.EventHandler(this.RamWatchMenuItem_Click); + // + // RamSearchMenuItem + // + this.RamSearchMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.search; + this.RamSearchMenuItem.Name = "RamSearchMenuItem"; + this.RamSearchMenuItem.Size = new System.Drawing.Size(189, 22); + this.RamSearchMenuItem.Text = "RAM &Search"; + this.RamSearchMenuItem.Click += new System.EventHandler(this.RamSearchMenuItem_Click); + // + // HexEditorMenuItem + // + this.HexEditorMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.poke; + this.HexEditorMenuItem.Name = "HexEditorMenuItem"; + this.HexEditorMenuItem.Size = new System.Drawing.Size(189, 22); + this.HexEditorMenuItem.Text = "&Hex Editor"; + this.HexEditorMenuItem.Click += new System.EventHandler(this.HexEditorMenuItem_Click); + // + // TraceLoggerMenuItem + // + this.TraceLoggerMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.pencil; + this.TraceLoggerMenuItem.Name = "TraceLoggerMenuItem"; + this.TraceLoggerMenuItem.Size = new System.Drawing.Size(189, 22); + this.TraceLoggerMenuItem.Text = "Trace &Logger"; + this.TraceLoggerMenuItem.Click += new System.EventHandler(this.TraceLoggerMenuItem_Click); + // + // TAStudioMenuItem + // + this.TAStudioMenuItem.Enabled = false; + this.TAStudioMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.TAStudio; + this.TAStudioMenuItem.Name = "TAStudioMenuItem"; + this.TAStudioMenuItem.Size = new System.Drawing.Size(189, 22); + this.TAStudioMenuItem.Text = "&TAStudio"; + this.TAStudioMenuItem.Click += new System.EventHandler(this.TAStudioMenuItem_Click); + // + // VirtualPadMenuItem + // + this.VirtualPadMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.GameController; + this.VirtualPadMenuItem.Name = "VirtualPadMenuItem"; + this.VirtualPadMenuItem.Size = new System.Drawing.Size(189, 22); + this.VirtualPadMenuItem.Text = "Virtual Pad"; + this.VirtualPadMenuItem.Click += new System.EventHandler(this.VirtualPadMenuItem_Click); + // + // toolStripSeparator11 + // + this.toolStripSeparator11.Name = "toolStripSeparator11"; + this.toolStripSeparator11.Size = new System.Drawing.Size(186, 6); + // + // CheatsMenuItem + // + this.CheatsMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Freeze; + this.CheatsMenuItem.Name = "CheatsMenuItem"; + this.CheatsMenuItem.Size = new System.Drawing.Size(189, 22); + this.CheatsMenuItem.Text = "Cheats"; + this.CheatsMenuItem.Click += new System.EventHandler(this.CheatsMenuItem_Click); + // + // LuaConsoleMenuItem + // + this.LuaConsoleMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Lua; + this.LuaConsoleMenuItem.Name = "LuaConsoleMenuItem"; + this.LuaConsoleMenuItem.Size = new System.Drawing.Size(189, 22); + this.LuaConsoleMenuItem.Text = "Lua Console"; + this.LuaConsoleMenuItem.Click += new System.EventHandler(this.LuaConsoleMenuItem_Click); + // + // toolStripSeparator29 + // + this.toolStripSeparator29.Name = "toolStripSeparator29"; + this.toolStripSeparator29.Size = new System.Drawing.Size(186, 6); + // + // CreateDualGbXmlMenuItem + // + this.CreateDualGbXmlMenuItem.Name = "CreateDualGbXmlMenuItem"; + this.CreateDualGbXmlMenuItem.Size = new System.Drawing.Size(189, 22); + this.CreateDualGbXmlMenuItem.Text = "Create Dual GB XML..."; + this.CreateDualGbXmlMenuItem.Click += new System.EventHandler(this.CreateDualGbXmlMenuItem_Click); + // + // NESSubMenu + // + this.NESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.NESDebuggerMenuItem, this.NESPPUViewerMenuItem, this.NESNametableViewerMenuItem, @@ -1924,121 +1925,121 @@ this.NESGraphicSettingsMenuItem, this.NESSoundChannelsMenuItem, this.NESSpecialControlsMenuItem}); - this.NESSubMenu.Name = "NESSubMenu"; - this.NESSubMenu.Size = new System.Drawing.Size(40, 19); - this.NESSubMenu.Text = "&NES"; - // - // NESDebuggerMenuItem - // - this.NESDebuggerMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Bug; - this.NESDebuggerMenuItem.Name = "NESDebuggerMenuItem"; - this.NESDebuggerMenuItem.Size = new System.Drawing.Size(233, 22); - this.NESDebuggerMenuItem.Text = "&Debugger"; - this.NESDebuggerMenuItem.Click += new System.EventHandler(this.NESDebuggerMenuItem_Click); - // - // NESPPUViewerMenuItem - // - this.NESPPUViewerMenuItem.Name = "NESPPUViewerMenuItem"; - this.NESPPUViewerMenuItem.Size = new System.Drawing.Size(233, 22); - this.NESPPUViewerMenuItem.Text = "&PPU Viewer"; - this.NESPPUViewerMenuItem.Click += new System.EventHandler(this.NESPPUViewerMenuItem_Click); - // - // NESNametableViewerMenuItem - // - this.NESNametableViewerMenuItem.Name = "NESNametableViewerMenuItem"; - this.NESNametableViewerMenuItem.Size = new System.Drawing.Size(233, 22); - this.NESNametableViewerMenuItem.Text = "&Nametable Viewer"; - this.NESNametableViewerMenuItem.Click += new System.EventHandler(this.NESNametableViewerMenuItem_Click); - // - // NESGameGenieCodesMenuItem - // - this.NESGameGenieCodesMenuItem.Name = "NESGameGenieCodesMenuItem"; - this.NESGameGenieCodesMenuItem.Size = new System.Drawing.Size(233, 22); - this.NESGameGenieCodesMenuItem.Text = "&Game Genie Encoder/Decoder"; - this.NESGameGenieCodesMenuItem.Click += new System.EventHandler(this.NESGameGenieCodesMenuItem_Click); - // - // toolStripSeparator17 - // - this.toolStripSeparator17.Name = "toolStripSeparator17"; - this.toolStripSeparator17.Size = new System.Drawing.Size(230, 6); - // - // NESGraphicSettingsMenuItem - // - this.NESGraphicSettingsMenuItem.Name = "NESGraphicSettingsMenuItem"; - this.NESGraphicSettingsMenuItem.Size = new System.Drawing.Size(233, 22); - this.NESGraphicSettingsMenuItem.Text = "Graphics Settings"; - this.NESGraphicSettingsMenuItem.Click += new System.EventHandler(this.NESGraphicSettingsMenuItem_Click); - // - // NESSoundChannelsMenuItem - // - this.NESSoundChannelsMenuItem.Name = "NESSoundChannelsMenuItem"; - this.NESSoundChannelsMenuItem.Size = new System.Drawing.Size(233, 22); - this.NESSoundChannelsMenuItem.Text = "Sound Channels"; - this.NESSoundChannelsMenuItem.Click += new System.EventHandler(this.NESSoundChannelsMenuItem_Click); - // - // NESSpecialControlsMenuItem - // - this.NESSpecialControlsMenuItem.Name = "NESSpecialControlsMenuItem"; - this.NESSpecialControlsMenuItem.Size = new System.Drawing.Size(233, 22); - this.NESSpecialControlsMenuItem.Text = "Special Controls"; - // - // PCESubMenu - // - this.PCESubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.NESSubMenu.Name = "NESSubMenu"; + this.NESSubMenu.Size = new System.Drawing.Size(40, 19); + this.NESSubMenu.Text = "&NES"; + // + // NESDebuggerMenuItem + // + this.NESDebuggerMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Bug; + this.NESDebuggerMenuItem.Name = "NESDebuggerMenuItem"; + this.NESDebuggerMenuItem.Size = new System.Drawing.Size(233, 22); + this.NESDebuggerMenuItem.Text = "&Debugger"; + this.NESDebuggerMenuItem.Click += new System.EventHandler(this.NESDebuggerMenuItem_Click); + // + // NESPPUViewerMenuItem + // + this.NESPPUViewerMenuItem.Name = "NESPPUViewerMenuItem"; + this.NESPPUViewerMenuItem.Size = new System.Drawing.Size(233, 22); + this.NESPPUViewerMenuItem.Text = "&PPU Viewer"; + this.NESPPUViewerMenuItem.Click += new System.EventHandler(this.NESPPUViewerMenuItem_Click); + // + // NESNametableViewerMenuItem + // + this.NESNametableViewerMenuItem.Name = "NESNametableViewerMenuItem"; + this.NESNametableViewerMenuItem.Size = new System.Drawing.Size(233, 22); + this.NESNametableViewerMenuItem.Text = "&Nametable Viewer"; + this.NESNametableViewerMenuItem.Click += new System.EventHandler(this.NESNametableViewerMenuItem_Click); + // + // NESGameGenieCodesMenuItem + // + this.NESGameGenieCodesMenuItem.Name = "NESGameGenieCodesMenuItem"; + this.NESGameGenieCodesMenuItem.Size = new System.Drawing.Size(233, 22); + this.NESGameGenieCodesMenuItem.Text = "&Game Genie Encoder/Decoder"; + this.NESGameGenieCodesMenuItem.Click += new System.EventHandler(this.NESGameGenieCodesMenuItem_Click); + // + // toolStripSeparator17 + // + this.toolStripSeparator17.Name = "toolStripSeparator17"; + this.toolStripSeparator17.Size = new System.Drawing.Size(230, 6); + // + // NESGraphicSettingsMenuItem + // + this.NESGraphicSettingsMenuItem.Name = "NESGraphicSettingsMenuItem"; + this.NESGraphicSettingsMenuItem.Size = new System.Drawing.Size(233, 22); + this.NESGraphicSettingsMenuItem.Text = "Graphics Settings"; + this.NESGraphicSettingsMenuItem.Click += new System.EventHandler(this.NESGraphicSettingsMenuItem_Click); + // + // NESSoundChannelsMenuItem + // + this.NESSoundChannelsMenuItem.Name = "NESSoundChannelsMenuItem"; + this.NESSoundChannelsMenuItem.Size = new System.Drawing.Size(233, 22); + this.NESSoundChannelsMenuItem.Text = "Sound Channels"; + this.NESSoundChannelsMenuItem.Click += new System.EventHandler(this.NESSoundChannelsMenuItem_Click); + // + // NESSpecialControlsMenuItem + // + this.NESSpecialControlsMenuItem.Name = "NESSpecialControlsMenuItem"; + this.NESSpecialControlsMenuItem.Size = new System.Drawing.Size(233, 22); + this.NESSpecialControlsMenuItem.Text = "Special Controls"; + // + // PCESubMenu + // + this.PCESubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.PCEBGViewerMenuItem, this.toolStripSeparator25, this.PCEAlwaysPerformSpriteLimitMenuItem, this.PCEAlwaysEqualizeVolumesMenuItem, this.PCEArcadeCardRewindEnableMenuItem, this.PCEGraphicsSettingsMenuItem}); - this.PCESubMenu.Name = "PCESubMenu"; - this.PCESubMenu.Size = new System.Drawing.Size(40, 19); - this.PCESubMenu.Text = "&PCE"; - this.PCESubMenu.DropDownOpened += new System.EventHandler(this.PCESubMenu_DropDownOpened); - // - // PCEBGViewerMenuItem - // - this.PCEBGViewerMenuItem.Name = "PCEBGViewerMenuItem"; - this.PCEBGViewerMenuItem.Size = new System.Drawing.Size(259, 22); - this.PCEBGViewerMenuItem.Text = "&BG Viewer"; - this.PCEBGViewerMenuItem.Click += new System.EventHandler(this.PCEBGViewerMenuItem_Click); - // - // toolStripSeparator25 - // - this.toolStripSeparator25.Name = "toolStripSeparator25"; - this.toolStripSeparator25.Size = new System.Drawing.Size(256, 6); - // - // PCEAlwaysPerformSpriteLimitMenuItem - // - this.PCEAlwaysPerformSpriteLimitMenuItem.Name = "PCEAlwaysPerformSpriteLimitMenuItem"; - this.PCEAlwaysPerformSpriteLimitMenuItem.Size = new System.Drawing.Size(259, 22); - this.PCEAlwaysPerformSpriteLimitMenuItem.Text = "Always Perform Sprite Limit"; - this.PCEAlwaysPerformSpriteLimitMenuItem.Click += new System.EventHandler(this.PCEAlwaysPerformSpriteLimitMenuItem_Click); - // - // PCEAlwaysEqualizeVolumesMenuItem - // - this.PCEAlwaysEqualizeVolumesMenuItem.Name = "PCEAlwaysEqualizeVolumesMenuItem"; - this.PCEAlwaysEqualizeVolumesMenuItem.Size = new System.Drawing.Size(259, 22); - this.PCEAlwaysEqualizeVolumesMenuItem.Text = "Always Equalize Volumes (PCE-CD)"; - this.PCEAlwaysEqualizeVolumesMenuItem.Click += new System.EventHandler(this.PCEAlwaysEqualizeVolumesMenuItem_Click); - // - // PCEArcadeCardRewindEnableMenuItem - // - this.PCEArcadeCardRewindEnableMenuItem.Name = "PCEArcadeCardRewindEnableMenuItem"; - this.PCEArcadeCardRewindEnableMenuItem.Size = new System.Drawing.Size(259, 22); - this.PCEArcadeCardRewindEnableMenuItem.Text = "Arcade Card Rewind-Enable Hack"; - this.PCEArcadeCardRewindEnableMenuItem.Click += new System.EventHandler(this.PCEArcadeCardRewindEnableMenuItem_Click); - // - // PCEGraphicsSettingsMenuItem - // - this.PCEGraphicsSettingsMenuItem.Name = "PCEGraphicsSettingsMenuItem"; - this.PCEGraphicsSettingsMenuItem.Size = new System.Drawing.Size(259, 22); - this.PCEGraphicsSettingsMenuItem.Text = "Graphics Settings"; - this.PCEGraphicsSettingsMenuItem.Click += new System.EventHandler(this.PCEGraphicsSettingsMenuItem_Click); - // - // SMSSubMenu - // - this.SMSSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.PCESubMenu.Name = "PCESubMenu"; + this.PCESubMenu.Size = new System.Drawing.Size(40, 19); + this.PCESubMenu.Text = "&PCE"; + this.PCESubMenu.DropDownOpened += new System.EventHandler(this.PCESubMenu_DropDownOpened); + // + // PCEBGViewerMenuItem + // + this.PCEBGViewerMenuItem.Name = "PCEBGViewerMenuItem"; + this.PCEBGViewerMenuItem.Size = new System.Drawing.Size(259, 22); + this.PCEBGViewerMenuItem.Text = "&BG Viewer"; + this.PCEBGViewerMenuItem.Click += new System.EventHandler(this.PCEBGViewerMenuItem_Click); + // + // toolStripSeparator25 + // + this.toolStripSeparator25.Name = "toolStripSeparator25"; + this.toolStripSeparator25.Size = new System.Drawing.Size(256, 6); + // + // PCEAlwaysPerformSpriteLimitMenuItem + // + this.PCEAlwaysPerformSpriteLimitMenuItem.Name = "PCEAlwaysPerformSpriteLimitMenuItem"; + this.PCEAlwaysPerformSpriteLimitMenuItem.Size = new System.Drawing.Size(259, 22); + this.PCEAlwaysPerformSpriteLimitMenuItem.Text = "Always Perform Sprite Limit"; + this.PCEAlwaysPerformSpriteLimitMenuItem.Click += new System.EventHandler(this.PCEAlwaysPerformSpriteLimitMenuItem_Click); + // + // PCEAlwaysEqualizeVolumesMenuItem + // + this.PCEAlwaysEqualizeVolumesMenuItem.Name = "PCEAlwaysEqualizeVolumesMenuItem"; + this.PCEAlwaysEqualizeVolumesMenuItem.Size = new System.Drawing.Size(259, 22); + this.PCEAlwaysEqualizeVolumesMenuItem.Text = "Always Equalize Volumes (PCE-CD)"; + this.PCEAlwaysEqualizeVolumesMenuItem.Click += new System.EventHandler(this.PCEAlwaysEqualizeVolumesMenuItem_Click); + // + // PCEArcadeCardRewindEnableMenuItem + // + this.PCEArcadeCardRewindEnableMenuItem.Name = "PCEArcadeCardRewindEnableMenuItem"; + this.PCEArcadeCardRewindEnableMenuItem.Size = new System.Drawing.Size(259, 22); + this.PCEArcadeCardRewindEnableMenuItem.Text = "Arcade Card Rewind-Enable Hack"; + this.PCEArcadeCardRewindEnableMenuItem.Click += new System.EventHandler(this.PCEArcadeCardRewindEnableMenuItem_Click); + // + // PCEGraphicsSettingsMenuItem + // + this.PCEGraphicsSettingsMenuItem.Name = "PCEGraphicsSettingsMenuItem"; + this.PCEGraphicsSettingsMenuItem.Size = new System.Drawing.Size(259, 22); + this.PCEGraphicsSettingsMenuItem.Text = "Graphics Settings"; + this.PCEGraphicsSettingsMenuItem.Click += new System.EventHandler(this.PCEGraphicsSettingsMenuItem_Click); + // + // SMSSubMenu + // + this.SMSSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SMSEnableFMChipMenuItem, this.SMSOverclockMenuItem, this.SMSForceStereoMenuItem, @@ -2048,116 +2049,116 @@ this.toolStripSeparator24, this.SMSGraphicsSettingsMenuItem, this.GGGameGenieMenuItem}); - this.SMSSubMenu.Name = "SMSSubMenu"; - this.SMSSubMenu.Size = new System.Drawing.Size(42, 19); - this.SMSSubMenu.Text = "&SMS"; - this.SMSSubMenu.DropDownOpened += new System.EventHandler(this.SMSSubMenu_DropDownOpened); - // - // SMSEnableFMChipMenuItem - // - this.SMSEnableFMChipMenuItem.Name = "SMSEnableFMChipMenuItem"; - this.SMSEnableFMChipMenuItem.Size = new System.Drawing.Size(241, 22); - this.SMSEnableFMChipMenuItem.Text = "&Enable FM Chip"; - this.SMSEnableFMChipMenuItem.Click += new System.EventHandler(this.SMSEnableFMChipMenuItem_Click); - // - // SMSOverclockMenuItem - // - this.SMSOverclockMenuItem.Name = "SMSOverclockMenuItem"; - this.SMSOverclockMenuItem.Size = new System.Drawing.Size(241, 22); - this.SMSOverclockMenuItem.Text = "&Overclock when Known Safe"; - this.SMSOverclockMenuItem.Click += new System.EventHandler(this.SMSOverclockMenuItem_Click); - // - // SMSForceStereoMenuItem - // - this.SMSForceStereoMenuItem.Name = "SMSForceStereoMenuItem"; - this.SMSForceStereoMenuItem.Size = new System.Drawing.Size(241, 22); - this.SMSForceStereoMenuItem.Text = "&Force Stereo Separation"; - this.SMSForceStereoMenuItem.Click += new System.EventHandler(this.SMSForceStereoMenuItem_Click); - // - // SMSSpriteLimitMenuItem - // - this.SMSSpriteLimitMenuItem.Name = "SMSSpriteLimitMenuItem"; - this.SMSSpriteLimitMenuItem.Size = new System.Drawing.Size(241, 22); - this.SMSSpriteLimitMenuItem.Text = "Sprite &Limit"; - this.SMSSpriteLimitMenuItem.Click += new System.EventHandler(this.SMSSpriteLimitMenuItem_Click); - // - // ShowClippedRegionsMenuItem - // - this.ShowClippedRegionsMenuItem.Name = "ShowClippedRegionsMenuItem"; - this.ShowClippedRegionsMenuItem.Size = new System.Drawing.Size(241, 22); - this.ShowClippedRegionsMenuItem.Text = "&Show Clipped Regions"; - this.ShowClippedRegionsMenuItem.Click += new System.EventHandler(this.ShowClippedRegionsMenuItem_Click); - // - // HighlightActiveDisplayRegionMenuItem - // - this.HighlightActiveDisplayRegionMenuItem.Name = "HighlightActiveDisplayRegionMenuItem"; - this.HighlightActiveDisplayRegionMenuItem.Size = new System.Drawing.Size(241, 22); - this.HighlightActiveDisplayRegionMenuItem.Text = "&Highlight Active Display Region"; - this.HighlightActiveDisplayRegionMenuItem.Click += new System.EventHandler(this.HighlightActiveDisplayRegionMenuItem_Click); - // - // toolStripSeparator24 - // - this.toolStripSeparator24.Name = "toolStripSeparator24"; - this.toolStripSeparator24.Size = new System.Drawing.Size(238, 6); - // - // SMSGraphicsSettingsMenuItem - // - this.SMSGraphicsSettingsMenuItem.Name = "SMSGraphicsSettingsMenuItem"; - this.SMSGraphicsSettingsMenuItem.Size = new System.Drawing.Size(241, 22); - this.SMSGraphicsSettingsMenuItem.Text = "&Graphics Settings..."; - this.SMSGraphicsSettingsMenuItem.Click += new System.EventHandler(this.SMSGraphicsSettingsMenuItem_Click); - // - // GGGameGenieMenuItem - // - this.GGGameGenieMenuItem.Name = "GGGameGenieMenuItem"; - this.GGGameGenieMenuItem.Size = new System.Drawing.Size(241, 22); - this.GGGameGenieMenuItem.Text = "&Game Genie Encoder/Decoder"; - this.GGGameGenieMenuItem.Click += new System.EventHandler(this.GGGameGenieMenuItem_Click); - // - // TI83SubMenu - // - this.TI83SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SMSSubMenu.Name = "SMSSubMenu"; + this.SMSSubMenu.Size = new System.Drawing.Size(42, 19); + this.SMSSubMenu.Text = "&SMS"; + this.SMSSubMenu.DropDownOpened += new System.EventHandler(this.SMSSubMenu_DropDownOpened); + // + // SMSEnableFMChipMenuItem + // + this.SMSEnableFMChipMenuItem.Name = "SMSEnableFMChipMenuItem"; + this.SMSEnableFMChipMenuItem.Size = new System.Drawing.Size(241, 22); + this.SMSEnableFMChipMenuItem.Text = "&Enable FM Chip"; + this.SMSEnableFMChipMenuItem.Click += new System.EventHandler(this.SMSEnableFMChipMenuItem_Click); + // + // SMSOverclockMenuItem + // + this.SMSOverclockMenuItem.Name = "SMSOverclockMenuItem"; + this.SMSOverclockMenuItem.Size = new System.Drawing.Size(241, 22); + this.SMSOverclockMenuItem.Text = "&Overclock when Known Safe"; + this.SMSOverclockMenuItem.Click += new System.EventHandler(this.SMSOverclockMenuItem_Click); + // + // SMSForceStereoMenuItem + // + this.SMSForceStereoMenuItem.Name = "SMSForceStereoMenuItem"; + this.SMSForceStereoMenuItem.Size = new System.Drawing.Size(241, 22); + this.SMSForceStereoMenuItem.Text = "&Force Stereo Separation"; + this.SMSForceStereoMenuItem.Click += new System.EventHandler(this.SMSForceStereoMenuItem_Click); + // + // SMSSpriteLimitMenuItem + // + this.SMSSpriteLimitMenuItem.Name = "SMSSpriteLimitMenuItem"; + this.SMSSpriteLimitMenuItem.Size = new System.Drawing.Size(241, 22); + this.SMSSpriteLimitMenuItem.Text = "Sprite &Limit"; + this.SMSSpriteLimitMenuItem.Click += new System.EventHandler(this.SMSSpriteLimitMenuItem_Click); + // + // ShowClippedRegionsMenuItem + // + this.ShowClippedRegionsMenuItem.Name = "ShowClippedRegionsMenuItem"; + this.ShowClippedRegionsMenuItem.Size = new System.Drawing.Size(241, 22); + this.ShowClippedRegionsMenuItem.Text = "&Show Clipped Regions"; + this.ShowClippedRegionsMenuItem.Click += new System.EventHandler(this.ShowClippedRegionsMenuItem_Click); + // + // HighlightActiveDisplayRegionMenuItem + // + this.HighlightActiveDisplayRegionMenuItem.Name = "HighlightActiveDisplayRegionMenuItem"; + this.HighlightActiveDisplayRegionMenuItem.Size = new System.Drawing.Size(241, 22); + this.HighlightActiveDisplayRegionMenuItem.Text = "&Highlight Active Display Region"; + this.HighlightActiveDisplayRegionMenuItem.Click += new System.EventHandler(this.HighlightActiveDisplayRegionMenuItem_Click); + // + // toolStripSeparator24 + // + this.toolStripSeparator24.Name = "toolStripSeparator24"; + this.toolStripSeparator24.Size = new System.Drawing.Size(238, 6); + // + // SMSGraphicsSettingsMenuItem + // + this.SMSGraphicsSettingsMenuItem.Name = "SMSGraphicsSettingsMenuItem"; + this.SMSGraphicsSettingsMenuItem.Size = new System.Drawing.Size(241, 22); + this.SMSGraphicsSettingsMenuItem.Text = "&Graphics Settings..."; + this.SMSGraphicsSettingsMenuItem.Click += new System.EventHandler(this.SMSGraphicsSettingsMenuItem_Click); + // + // GGGameGenieMenuItem + // + this.GGGameGenieMenuItem.Name = "GGGameGenieMenuItem"; + this.GGGameGenieMenuItem.Size = new System.Drawing.Size(241, 22); + this.GGGameGenieMenuItem.Text = "&Game Genie Encoder/Decoder"; + this.GGGameGenieMenuItem.Click += new System.EventHandler(this.GGGameGenieMenuItem_Click); + // + // TI83SubMenu + // + this.TI83SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.KeypadMenuItem, this.toolStripSeparator13, this.AutoloadKeypadMenuItem, this.LoadTIFileMenuItem}); - this.TI83SubMenu.Name = "TI83SubMenu"; - this.TI83SubMenu.Size = new System.Drawing.Size(41, 19); - this.TI83SubMenu.Text = "TI83"; - this.TI83SubMenu.DropDownOpened += new System.EventHandler(this.TI83SubMenu_DropDownOpened); - // - // KeypadMenuItem - // - this.KeypadMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.calculator; - this.KeypadMenuItem.Name = "KeypadMenuItem"; - this.KeypadMenuItem.Size = new System.Drawing.Size(165, 22); - this.KeypadMenuItem.Text = "Keypad"; - this.KeypadMenuItem.Click += new System.EventHandler(this.KeypadMenuItem_Click); - // - // toolStripSeparator13 - // - this.toolStripSeparator13.Name = "toolStripSeparator13"; - this.toolStripSeparator13.Size = new System.Drawing.Size(162, 6); - // - // AutoloadKeypadMenuItem - // - this.AutoloadKeypadMenuItem.Checked = true; - this.AutoloadKeypadMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; - this.AutoloadKeypadMenuItem.Name = "AutoloadKeypadMenuItem"; - this.AutoloadKeypadMenuItem.Size = new System.Drawing.Size(165, 22); - this.AutoloadKeypadMenuItem.Text = "Autoload Keypad"; - this.AutoloadKeypadMenuItem.Click += new System.EventHandler(this.AutoloadKeypadMenuItem_Click); - // - // LoadTIFileMenuItem - // - this.LoadTIFileMenuItem.Name = "LoadTIFileMenuItem"; - this.LoadTIFileMenuItem.Size = new System.Drawing.Size(165, 22); - this.LoadTIFileMenuItem.Text = "Load TI File"; - this.LoadTIFileMenuItem.Click += new System.EventHandler(this.LoadTIFileMenuItem_Click); - // - // AtariSubMenu - // - this.AtariSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TI83SubMenu.Name = "TI83SubMenu"; + this.TI83SubMenu.Size = new System.Drawing.Size(41, 19); + this.TI83SubMenu.Text = "TI83"; + this.TI83SubMenu.DropDownOpened += new System.EventHandler(this.TI83SubMenu_DropDownOpened); + // + // KeypadMenuItem + // + this.KeypadMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.calculator; + this.KeypadMenuItem.Name = "KeypadMenuItem"; + this.KeypadMenuItem.Size = new System.Drawing.Size(165, 22); + this.KeypadMenuItem.Text = "Keypad"; + this.KeypadMenuItem.Click += new System.EventHandler(this.KeypadMenuItem_Click); + // + // toolStripSeparator13 + // + this.toolStripSeparator13.Name = "toolStripSeparator13"; + this.toolStripSeparator13.Size = new System.Drawing.Size(162, 6); + // + // AutoloadKeypadMenuItem + // + this.AutoloadKeypadMenuItem.Checked = true; + this.AutoloadKeypadMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.AutoloadKeypadMenuItem.Name = "AutoloadKeypadMenuItem"; + this.AutoloadKeypadMenuItem.Size = new System.Drawing.Size(165, 22); + this.AutoloadKeypadMenuItem.Text = "Autoload Keypad"; + this.AutoloadKeypadMenuItem.Click += new System.EventHandler(this.AutoloadKeypadMenuItem_Click); + // + // LoadTIFileMenuItem + // + this.LoadTIFileMenuItem.Name = "LoadTIFileMenuItem"; + this.LoadTIFileMenuItem.Size = new System.Drawing.Size(165, 22); + this.LoadTIFileMenuItem.Text = "Load TI File"; + this.LoadTIFileMenuItem.Click += new System.EventHandler(this.LoadTIFileMenuItem_Click); + // + // AtariSubMenu + // + this.AtariSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AtariBWMenuItem, this.AtariLeftDifficultyMenuItem, this.AtariRightDifficultyMenuItem, @@ -2169,89 +2170,89 @@ this.ShowMissle1MenuItem, this.ShowMissle2MenuItem, this.ShowBallMenuItem}); - this.AtariSubMenu.Name = "AtariSubMenu"; - this.AtariSubMenu.Size = new System.Drawing.Size(44, 19); - this.AtariSubMenu.Text = "&Atari"; - this.AtariSubMenu.DropDownOpened += new System.EventHandler(this.AtariSubMenu_DropDownOpened); - // - // AtariBWMenuItem - // - this.AtariBWMenuItem.Name = "AtariBWMenuItem"; - this.AtariBWMenuItem.Size = new System.Drawing.Size(153, 22); - this.AtariBWMenuItem.Text = "B-W TV"; - this.AtariBWMenuItem.Click += new System.EventHandler(this.AtariBWMenuItem_Click); - // - // AtariLeftDifficultyMenuItem - // - this.AtariLeftDifficultyMenuItem.Name = "AtariLeftDifficultyMenuItem"; - this.AtariLeftDifficultyMenuItem.Size = new System.Drawing.Size(153, 22); - this.AtariLeftDifficultyMenuItem.Text = "Left Difficulty"; - this.AtariLeftDifficultyMenuItem.Click += new System.EventHandler(this.AtariLeftDifficultyMenuItem_Click); - // - // AtariRightDifficultyMenuItem - // - this.AtariRightDifficultyMenuItem.Name = "AtariRightDifficultyMenuItem"; - this.AtariRightDifficultyMenuItem.Size = new System.Drawing.Size(153, 22); - this.AtariRightDifficultyMenuItem.Text = "Right Difficulty"; - this.AtariRightDifficultyMenuItem.Click += new System.EventHandler(this.AtariRightDifficultyMenuItem_Click); - // - // toolStripSeparator26 - // - this.toolStripSeparator26.Name = "toolStripSeparator26"; - this.toolStripSeparator26.Size = new System.Drawing.Size(150, 6); - // - // AtariShowBGMenuItem - // - this.AtariShowBGMenuItem.Name = "AtariShowBGMenuItem"; - this.AtariShowBGMenuItem.Size = new System.Drawing.Size(153, 22); - this.AtariShowBGMenuItem.Text = "Show BG"; - this.AtariShowBGMenuItem.Click += new System.EventHandler(this.AtariShowBGMenuItem_Click); - // - // AtariShowPlayfieldMenuItem - // - this.AtariShowPlayfieldMenuItem.Name = "AtariShowPlayfieldMenuItem"; - this.AtariShowPlayfieldMenuItem.Size = new System.Drawing.Size(153, 22); - this.AtariShowPlayfieldMenuItem.Text = "Show Playfield"; - this.AtariShowPlayfieldMenuItem.Click += new System.EventHandler(this.AtariShowPlayfieldMenuItem_Click); - // - // ShowPlayer1MenuItem - // - this.ShowPlayer1MenuItem.Name = "ShowPlayer1MenuItem"; - this.ShowPlayer1MenuItem.Size = new System.Drawing.Size(153, 22); - this.ShowPlayer1MenuItem.Text = "Show Player 1"; - this.ShowPlayer1MenuItem.Click += new System.EventHandler(this.ShowPlayer1MenuItem_Click); - // - // ShowPlayer2MenuItem - // - this.ShowPlayer2MenuItem.Name = "ShowPlayer2MenuItem"; - this.ShowPlayer2MenuItem.Size = new System.Drawing.Size(153, 22); - this.ShowPlayer2MenuItem.Text = "Show Player 2"; - this.ShowPlayer2MenuItem.Click += new System.EventHandler(this.ShowPlayer2MenuItem_Click); - // - // ShowMissle1MenuItem - // - this.ShowMissle1MenuItem.Name = "ShowMissle1MenuItem"; - this.ShowMissle1MenuItem.Size = new System.Drawing.Size(153, 22); - this.ShowMissle1MenuItem.Text = "Show Missle 1"; - this.ShowMissle1MenuItem.Click += new System.EventHandler(this.ShowMissle1MenuItem_Click); - // - // ShowMissle2MenuItem - // - this.ShowMissle2MenuItem.Name = "ShowMissle2MenuItem"; - this.ShowMissle2MenuItem.Size = new System.Drawing.Size(153, 22); - this.ShowMissle2MenuItem.Text = "Show Missle 2"; - this.ShowMissle2MenuItem.Click += new System.EventHandler(this.ShowMissle2MenuItem_Click); - // - // ShowBallMenuItem - // - this.ShowBallMenuItem.Name = "ShowBallMenuItem"; - this.ShowBallMenuItem.Size = new System.Drawing.Size(153, 22); - this.ShowBallMenuItem.Text = "Show Ball"; - this.ShowBallMenuItem.Click += new System.EventHandler(this.ShowBallMenuItem_Click); - // - // GBSubMenu - // - this.GBSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AtariSubMenu.Name = "AtariSubMenu"; + this.AtariSubMenu.Size = new System.Drawing.Size(44, 19); + this.AtariSubMenu.Text = "&Atari"; + this.AtariSubMenu.DropDownOpened += new System.EventHandler(this.AtariSubMenu_DropDownOpened); + // + // AtariBWMenuItem + // + this.AtariBWMenuItem.Name = "AtariBWMenuItem"; + this.AtariBWMenuItem.Size = new System.Drawing.Size(153, 22); + this.AtariBWMenuItem.Text = "B-W TV"; + this.AtariBWMenuItem.Click += new System.EventHandler(this.AtariBWMenuItem_Click); + // + // AtariLeftDifficultyMenuItem + // + this.AtariLeftDifficultyMenuItem.Name = "AtariLeftDifficultyMenuItem"; + this.AtariLeftDifficultyMenuItem.Size = new System.Drawing.Size(153, 22); + this.AtariLeftDifficultyMenuItem.Text = "Left Difficulty"; + this.AtariLeftDifficultyMenuItem.Click += new System.EventHandler(this.AtariLeftDifficultyMenuItem_Click); + // + // AtariRightDifficultyMenuItem + // + this.AtariRightDifficultyMenuItem.Name = "AtariRightDifficultyMenuItem"; + this.AtariRightDifficultyMenuItem.Size = new System.Drawing.Size(153, 22); + this.AtariRightDifficultyMenuItem.Text = "Right Difficulty"; + this.AtariRightDifficultyMenuItem.Click += new System.EventHandler(this.AtariRightDifficultyMenuItem_Click); + // + // toolStripSeparator26 + // + this.toolStripSeparator26.Name = "toolStripSeparator26"; + this.toolStripSeparator26.Size = new System.Drawing.Size(150, 6); + // + // AtariShowBGMenuItem + // + this.AtariShowBGMenuItem.Name = "AtariShowBGMenuItem"; + this.AtariShowBGMenuItem.Size = new System.Drawing.Size(153, 22); + this.AtariShowBGMenuItem.Text = "Show BG"; + this.AtariShowBGMenuItem.Click += new System.EventHandler(this.AtariShowBGMenuItem_Click); + // + // AtariShowPlayfieldMenuItem + // + this.AtariShowPlayfieldMenuItem.Name = "AtariShowPlayfieldMenuItem"; + this.AtariShowPlayfieldMenuItem.Size = new System.Drawing.Size(153, 22); + this.AtariShowPlayfieldMenuItem.Text = "Show Playfield"; + this.AtariShowPlayfieldMenuItem.Click += new System.EventHandler(this.AtariShowPlayfieldMenuItem_Click); + // + // ShowPlayer1MenuItem + // + this.ShowPlayer1MenuItem.Name = "ShowPlayer1MenuItem"; + this.ShowPlayer1MenuItem.Size = new System.Drawing.Size(153, 22); + this.ShowPlayer1MenuItem.Text = "Show Player 1"; + this.ShowPlayer1MenuItem.Click += new System.EventHandler(this.ShowPlayer1MenuItem_Click); + // + // ShowPlayer2MenuItem + // + this.ShowPlayer2MenuItem.Name = "ShowPlayer2MenuItem"; + this.ShowPlayer2MenuItem.Size = new System.Drawing.Size(153, 22); + this.ShowPlayer2MenuItem.Text = "Show Player 2"; + this.ShowPlayer2MenuItem.Click += new System.EventHandler(this.ShowPlayer2MenuItem_Click); + // + // ShowMissle1MenuItem + // + this.ShowMissle1MenuItem.Name = "ShowMissle1MenuItem"; + this.ShowMissle1MenuItem.Size = new System.Drawing.Size(153, 22); + this.ShowMissle1MenuItem.Text = "Show Missle 1"; + this.ShowMissle1MenuItem.Click += new System.EventHandler(this.ShowMissle1MenuItem_Click); + // + // ShowMissle2MenuItem + // + this.ShowMissle2MenuItem.Name = "ShowMissle2MenuItem"; + this.ShowMissle2MenuItem.Size = new System.Drawing.Size(153, 22); + this.ShowMissle2MenuItem.Text = "Show Missle 2"; + this.ShowMissle2MenuItem.Click += new System.EventHandler(this.ShowMissle2MenuItem_Click); + // + // ShowBallMenuItem + // + this.ShowBallMenuItem.Name = "ShowBallMenuItem"; + this.ShowBallMenuItem.Size = new System.Drawing.Size(153, 22); + this.ShowBallMenuItem.Text = "Show Ball"; + this.ShowBallMenuItem.Click += new System.EventHandler(this.ShowBallMenuItem_Click); + // + // GBSubMenu + // + this.GBSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.GBForceDMGMenuItem, this.GBAInCGBModeMenuItem, this.GBMulticartCompatibilityMenuItem, @@ -2260,97 +2261,97 @@ this.GBPaletteConfigMenuItem, this.GBGPUViewerMenuItem, this.GBGameGenieMenuItem}); - this.GBSubMenu.Name = "GBSubMenu"; - this.GBSubMenu.Size = new System.Drawing.Size(34, 19); - this.GBSubMenu.Text = "&GB"; - this.GBSubMenu.DropDownOpened += new System.EventHandler(this.GBSubMenu_DropDownOpened); - // - // GBForceDMGMenuItem - // - this.GBForceDMGMenuItem.Name = "GBForceDMGMenuItem"; - this.GBForceDMGMenuItem.Size = new System.Drawing.Size(233, 22); - this.GBForceDMGMenuItem.Text = "Force DMG Mode"; - this.GBForceDMGMenuItem.Click += new System.EventHandler(this.GBForceDMGMenuItem_Click); - // - // GBAInCGBModeMenuItem - // - this.GBAInCGBModeMenuItem.Name = "GBAInCGBModeMenuItem"; - this.GBAInCGBModeMenuItem.Size = new System.Drawing.Size(233, 22); - this.GBAInCGBModeMenuItem.Text = "GBA in CGB mode"; - this.GBAInCGBModeMenuItem.Click += new System.EventHandler(this.GBAInCGBModeMenuItem_Click); - // - // GBMulticartCompatibilityMenuItem - // - this.GBMulticartCompatibilityMenuItem.Name = "GBMulticartCompatibilityMenuItem"; - this.GBMulticartCompatibilityMenuItem.Size = new System.Drawing.Size(233, 22); - this.GBMulticartCompatibilityMenuItem.Text = "Multicart Compatibility"; - this.GBMulticartCompatibilityMenuItem.Click += new System.EventHandler(this.GBMulticartCompatibilityMenuItem_Click); - // - // LoadGBInSGBMenuItem - // - this.LoadGBInSGBMenuItem.Name = "LoadGBInSGBMenuItem"; - this.LoadGBInSGBMenuItem.Size = new System.Drawing.Size(233, 22); - this.LoadGBInSGBMenuItem.Text = "Load GB in SGB"; - this.LoadGBInSGBMenuItem.Click += new System.EventHandler(this.LoadGBInSGBMenuItem_Click); - // - // toolStripSeparator28 - // - this.toolStripSeparator28.Name = "toolStripSeparator28"; - this.toolStripSeparator28.Size = new System.Drawing.Size(230, 6); - // - // GBPaletteConfigMenuItem - // - this.GBPaletteConfigMenuItem.Name = "GBPaletteConfigMenuItem"; - this.GBPaletteConfigMenuItem.Size = new System.Drawing.Size(233, 22); - this.GBPaletteConfigMenuItem.Text = "Palette Editor"; - this.GBPaletteConfigMenuItem.Click += new System.EventHandler(this.GBPaletteConfigMenuItem_Click); - // - // GBGPUViewerMenuItem - // - this.GBGPUViewerMenuItem.Name = "GBGPUViewerMenuItem"; - this.GBGPUViewerMenuItem.Size = new System.Drawing.Size(233, 22); - this.GBGPUViewerMenuItem.Text = "GPU Viewer"; - this.GBGPUViewerMenuItem.Click += new System.EventHandler(this.GBGPUViewerMenuItem_Click); - // - // GBGameGenieMenuItem - // - this.GBGameGenieMenuItem.Name = "GBGameGenieMenuItem"; - this.GBGameGenieMenuItem.Size = new System.Drawing.Size(233, 22); - this.GBGameGenieMenuItem.Text = "&Game Genie Encoder/Decoder"; - this.GBGameGenieMenuItem.Click += new System.EventHandler(this.GBGameGenieMenuItem_Click); - // - // GBASubMenu - // - this.GBASubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.GBSubMenu.Name = "GBSubMenu"; + this.GBSubMenu.Size = new System.Drawing.Size(34, 19); + this.GBSubMenu.Text = "&GB"; + this.GBSubMenu.DropDownOpened += new System.EventHandler(this.GBSubMenu_DropDownOpened); + // + // GBForceDMGMenuItem + // + this.GBForceDMGMenuItem.Name = "GBForceDMGMenuItem"; + this.GBForceDMGMenuItem.Size = new System.Drawing.Size(233, 22); + this.GBForceDMGMenuItem.Text = "Force DMG Mode"; + this.GBForceDMGMenuItem.Click += new System.EventHandler(this.GBForceDMGMenuItem_Click); + // + // GBAInCGBModeMenuItem + // + this.GBAInCGBModeMenuItem.Name = "GBAInCGBModeMenuItem"; + this.GBAInCGBModeMenuItem.Size = new System.Drawing.Size(233, 22); + this.GBAInCGBModeMenuItem.Text = "GBA in CGB mode"; + this.GBAInCGBModeMenuItem.Click += new System.EventHandler(this.GBAInCGBModeMenuItem_Click); + // + // GBMulticartCompatibilityMenuItem + // + this.GBMulticartCompatibilityMenuItem.Name = "GBMulticartCompatibilityMenuItem"; + this.GBMulticartCompatibilityMenuItem.Size = new System.Drawing.Size(233, 22); + this.GBMulticartCompatibilityMenuItem.Text = "Multicart Compatibility"; + this.GBMulticartCompatibilityMenuItem.Click += new System.EventHandler(this.GBMulticartCompatibilityMenuItem_Click); + // + // LoadGBInSGBMenuItem + // + this.LoadGBInSGBMenuItem.Name = "LoadGBInSGBMenuItem"; + this.LoadGBInSGBMenuItem.Size = new System.Drawing.Size(233, 22); + this.LoadGBInSGBMenuItem.Text = "Load GB in SGB"; + this.LoadGBInSGBMenuItem.Click += new System.EventHandler(this.LoadGBInSGBMenuItem_Click); + // + // toolStripSeparator28 + // + this.toolStripSeparator28.Name = "toolStripSeparator28"; + this.toolStripSeparator28.Size = new System.Drawing.Size(230, 6); + // + // GBPaletteConfigMenuItem + // + this.GBPaletteConfigMenuItem.Name = "GBPaletteConfigMenuItem"; + this.GBPaletteConfigMenuItem.Size = new System.Drawing.Size(233, 22); + this.GBPaletteConfigMenuItem.Text = "Palette Editor"; + this.GBPaletteConfigMenuItem.Click += new System.EventHandler(this.GBPaletteConfigMenuItem_Click); + // + // GBGPUViewerMenuItem + // + this.GBGPUViewerMenuItem.Name = "GBGPUViewerMenuItem"; + this.GBGPUViewerMenuItem.Size = new System.Drawing.Size(233, 22); + this.GBGPUViewerMenuItem.Text = "GPU Viewer"; + this.GBGPUViewerMenuItem.Click += new System.EventHandler(this.GBGPUViewerMenuItem_Click); + // + // GBGameGenieMenuItem + // + this.GBGameGenieMenuItem.Name = "GBGameGenieMenuItem"; + this.GBGameGenieMenuItem.Size = new System.Drawing.Size(233, 22); + this.GBGameGenieMenuItem.Text = "&Game Genie Encoder/Decoder"; + this.GBGameGenieMenuItem.Click += new System.EventHandler(this.GBGameGenieMenuItem_Click); + // + // GBASubMenu + // + this.GBASubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.GbaGpuViewerMenuItem}); - this.GBASubMenu.Name = "GBASubMenu"; - this.GBASubMenu.Size = new System.Drawing.Size(42, 19); - this.GBASubMenu.Text = "GBA"; - // - // GbaGpuViewerMenuItem - // - this.GbaGpuViewerMenuItem.Name = "GbaGpuViewerMenuItem"; - this.GbaGpuViewerMenuItem.Size = new System.Drawing.Size(135, 22); - this.GbaGpuViewerMenuItem.Text = "GPU Viewer"; - this.GbaGpuViewerMenuItem.Click += new System.EventHandler(this.GbaGpuViewerMenuItem_Click); - // - // SNESSubMenu - // - this.SNESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.GBASubMenu.Name = "GBASubMenu"; + this.GBASubMenu.Size = new System.Drawing.Size(42, 19); + this.GBASubMenu.Text = "GBA"; + // + // GbaGpuViewerMenuItem + // + this.GbaGpuViewerMenuItem.Name = "GbaGpuViewerMenuItem"; + this.GbaGpuViewerMenuItem.Size = new System.Drawing.Size(135, 22); + this.GbaGpuViewerMenuItem.Text = "GPU Viewer"; + this.GbaGpuViewerMenuItem.Click += new System.EventHandler(this.GbaGpuViewerMenuItem_Click); + // + // SNESSubMenu + // + this.SNESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SNESDisplayMenuItem, this.toolStripSeparator18, this.SnesGfxDebuggerMenuItem, this.SnesGBInSGBMenuItem, this.SnesGameGenieMenuItem, this.SnesOptionsMenuItem}); - this.SNESSubMenu.Name = "SNESSubMenu"; - this.SNESSubMenu.Size = new System.Drawing.Size(46, 19); - this.SNESSubMenu.Text = "&SNES"; - this.SNESSubMenu.DropDownOpened += new System.EventHandler(this.SNESSubMenu_DropDownOpened); - // - // SNESDisplayMenuItem - // - this.SNESDisplayMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SNESSubMenu.Name = "SNESSubMenu"; + this.SNESSubMenu.Size = new System.Drawing.Size(46, 19); + this.SNESSubMenu.Text = "&SNES"; + this.SNESSubMenu.DropDownOpened += new System.EventHandler(this.SNESSubMenu_DropDownOpened); + // + // SNESDisplayMenuItem + // + this.SNESDisplayMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SnesBg1MenuItem, this.SnesBg2MenuItem, this.SnesBg3MenuItem, @@ -2359,185 +2360,185 @@ this.SnesObj2MenuItem, this.SnesObj3MenuItem, this.SnesObj4MenuItem}); - this.SNESDisplayMenuItem.Name = "SNESDisplayMenuItem"; - this.SNESDisplayMenuItem.Size = new System.Drawing.Size(233, 22); - this.SNESDisplayMenuItem.Text = "Display"; - this.SNESDisplayMenuItem.DropDownOpened += new System.EventHandler(this.SNESDisplayMenuItem_DropDownOpened); - // - // SnesBg1MenuItem - // - this.SnesBg1MenuItem.Name = "SnesBg1MenuItem"; - this.SnesBg1MenuItem.Size = new System.Drawing.Size(103, 22); - this.SnesBg1MenuItem.Text = "BG 1"; - this.SnesBg1MenuItem.Click += new System.EventHandler(this.SnesBg1MenuItem_Click); - // - // SnesBg2MenuItem - // - this.SnesBg2MenuItem.Name = "SnesBg2MenuItem"; - this.SnesBg2MenuItem.Size = new System.Drawing.Size(103, 22); - this.SnesBg2MenuItem.Text = "BG 2"; - this.SnesBg2MenuItem.Click += new System.EventHandler(this.SnesBg2MenuItem_Click); - // - // SnesBg3MenuItem - // - this.SnesBg3MenuItem.Name = "SnesBg3MenuItem"; - this.SnesBg3MenuItem.Size = new System.Drawing.Size(103, 22); - this.SnesBg3MenuItem.Text = "BG 3"; - this.SnesBg3MenuItem.Click += new System.EventHandler(this.SnesBg3MenuItem_Click); - // - // SnesBg4MenuItem - // - this.SnesBg4MenuItem.Name = "SnesBg4MenuItem"; - this.SnesBg4MenuItem.Size = new System.Drawing.Size(103, 22); - this.SnesBg4MenuItem.Text = "BG 4"; - this.SnesBg4MenuItem.Click += new System.EventHandler(this.SnesBg4MenuItem_Click); - // - // SnesObj1MenuItem - // - this.SnesObj1MenuItem.Name = "SnesObj1MenuItem"; - this.SnesObj1MenuItem.Size = new System.Drawing.Size(103, 22); - this.SnesObj1MenuItem.Text = "OBJ 1"; - this.SnesObj1MenuItem.Click += new System.EventHandler(this.SnesObj1MenuItem_Click); - // - // SnesObj2MenuItem - // - this.SnesObj2MenuItem.Name = "SnesObj2MenuItem"; - this.SnesObj2MenuItem.Size = new System.Drawing.Size(103, 22); - this.SnesObj2MenuItem.Text = "OBJ 2"; - this.SnesObj2MenuItem.Click += new System.EventHandler(this.SnesObj2MenuItem_Click); - // - // SnesObj3MenuItem - // - this.SnesObj3MenuItem.Name = "SnesObj3MenuItem"; - this.SnesObj3MenuItem.Size = new System.Drawing.Size(103, 22); - this.SnesObj3MenuItem.Text = "OBJ 3"; - this.SnesObj3MenuItem.Click += new System.EventHandler(this.SnesObj3MenuItem_Click); - // - // SnesObj4MenuItem - // - this.SnesObj4MenuItem.Name = "SnesObj4MenuItem"; - this.SnesObj4MenuItem.Size = new System.Drawing.Size(103, 22); - this.SnesObj4MenuItem.Text = "OBJ 4"; - this.SnesObj4MenuItem.Click += new System.EventHandler(this.SnesObj4MenuItem_Click); - // - // toolStripSeparator18 - // - this.toolStripSeparator18.Name = "toolStripSeparator18"; - this.toolStripSeparator18.Size = new System.Drawing.Size(230, 6); - // - // SnesGfxDebuggerMenuItem - // - this.SnesGfxDebuggerMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Bug; - this.SnesGfxDebuggerMenuItem.Name = "SnesGfxDebuggerMenuItem"; - this.SnesGfxDebuggerMenuItem.Size = new System.Drawing.Size(233, 22); - this.SnesGfxDebuggerMenuItem.Text = "Graphics Debugger"; - this.SnesGfxDebuggerMenuItem.Click += new System.EventHandler(this.SnesGfxDebuggerMenuItem_Click); - // - // SnesGBInSGBMenuItem - // - this.SnesGBInSGBMenuItem.Name = "SnesGBInSGBMenuItem"; - this.SnesGBInSGBMenuItem.Size = new System.Drawing.Size(233, 22); - this.SnesGBInSGBMenuItem.Text = "Load GB in SGB"; - this.SnesGBInSGBMenuItem.Click += new System.EventHandler(this.SnesGBInSGBMenuItem_Click); - // - // SnesGameGenieMenuItem - // - this.SnesGameGenieMenuItem.Name = "SnesGameGenieMenuItem"; - this.SnesGameGenieMenuItem.Size = new System.Drawing.Size(233, 22); - this.SnesGameGenieMenuItem.Text = "&Game Genie Encoder/Decoder"; - this.SnesGameGenieMenuItem.Click += new System.EventHandler(this.SnesGameGenieMenuItem_Click); - // - // SnesOptionsMenuItem - // - this.SnesOptionsMenuItem.Name = "SnesOptionsMenuItem"; - this.SnesOptionsMenuItem.Size = new System.Drawing.Size(233, 22); - this.SnesOptionsMenuItem.Text = "&Options"; - this.SnesOptionsMenuItem.Click += new System.EventHandler(this.SnesOptionsMenuItem_Click); - // - // ColecoSubMenu - // - this.ColecoSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SNESDisplayMenuItem.Name = "SNESDisplayMenuItem"; + this.SNESDisplayMenuItem.Size = new System.Drawing.Size(233, 22); + this.SNESDisplayMenuItem.Text = "Display"; + this.SNESDisplayMenuItem.DropDownOpened += new System.EventHandler(this.SNESDisplayMenuItem_DropDownOpened); + // + // SnesBg1MenuItem + // + this.SnesBg1MenuItem.Name = "SnesBg1MenuItem"; + this.SnesBg1MenuItem.Size = new System.Drawing.Size(103, 22); + this.SnesBg1MenuItem.Text = "BG 1"; + this.SnesBg1MenuItem.Click += new System.EventHandler(this.SnesBg1MenuItem_Click); + // + // SnesBg2MenuItem + // + this.SnesBg2MenuItem.Name = "SnesBg2MenuItem"; + this.SnesBg2MenuItem.Size = new System.Drawing.Size(103, 22); + this.SnesBg2MenuItem.Text = "BG 2"; + this.SnesBg2MenuItem.Click += new System.EventHandler(this.SnesBg2MenuItem_Click); + // + // SnesBg3MenuItem + // + this.SnesBg3MenuItem.Name = "SnesBg3MenuItem"; + this.SnesBg3MenuItem.Size = new System.Drawing.Size(103, 22); + this.SnesBg3MenuItem.Text = "BG 3"; + this.SnesBg3MenuItem.Click += new System.EventHandler(this.SnesBg3MenuItem_Click); + // + // SnesBg4MenuItem + // + this.SnesBg4MenuItem.Name = "SnesBg4MenuItem"; + this.SnesBg4MenuItem.Size = new System.Drawing.Size(103, 22); + this.SnesBg4MenuItem.Text = "BG 4"; + this.SnesBg4MenuItem.Click += new System.EventHandler(this.SnesBg4MenuItem_Click); + // + // SnesObj1MenuItem + // + this.SnesObj1MenuItem.Name = "SnesObj1MenuItem"; + this.SnesObj1MenuItem.Size = new System.Drawing.Size(103, 22); + this.SnesObj1MenuItem.Text = "OBJ 1"; + this.SnesObj1MenuItem.Click += new System.EventHandler(this.SnesObj1MenuItem_Click); + // + // SnesObj2MenuItem + // + this.SnesObj2MenuItem.Name = "SnesObj2MenuItem"; + this.SnesObj2MenuItem.Size = new System.Drawing.Size(103, 22); + this.SnesObj2MenuItem.Text = "OBJ 2"; + this.SnesObj2MenuItem.Click += new System.EventHandler(this.SnesObj2MenuItem_Click); + // + // SnesObj3MenuItem + // + this.SnesObj3MenuItem.Name = "SnesObj3MenuItem"; + this.SnesObj3MenuItem.Size = new System.Drawing.Size(103, 22); + this.SnesObj3MenuItem.Text = "OBJ 3"; + this.SnesObj3MenuItem.Click += new System.EventHandler(this.SnesObj3MenuItem_Click); + // + // SnesObj4MenuItem + // + this.SnesObj4MenuItem.Name = "SnesObj4MenuItem"; + this.SnesObj4MenuItem.Size = new System.Drawing.Size(103, 22); + this.SnesObj4MenuItem.Text = "OBJ 4"; + this.SnesObj4MenuItem.Click += new System.EventHandler(this.SnesObj4MenuItem_Click); + // + // toolStripSeparator18 + // + this.toolStripSeparator18.Name = "toolStripSeparator18"; + this.toolStripSeparator18.Size = new System.Drawing.Size(230, 6); + // + // SnesGfxDebuggerMenuItem + // + this.SnesGfxDebuggerMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Bug; + this.SnesGfxDebuggerMenuItem.Name = "SnesGfxDebuggerMenuItem"; + this.SnesGfxDebuggerMenuItem.Size = new System.Drawing.Size(233, 22); + this.SnesGfxDebuggerMenuItem.Text = "Graphics Debugger"; + this.SnesGfxDebuggerMenuItem.Click += new System.EventHandler(this.SnesGfxDebuggerMenuItem_Click); + // + // SnesGBInSGBMenuItem + // + this.SnesGBInSGBMenuItem.Name = "SnesGBInSGBMenuItem"; + this.SnesGBInSGBMenuItem.Size = new System.Drawing.Size(233, 22); + this.SnesGBInSGBMenuItem.Text = "Load GB in SGB"; + this.SnesGBInSGBMenuItem.Click += new System.EventHandler(this.SnesGBInSGBMenuItem_Click); + // + // SnesGameGenieMenuItem + // + this.SnesGameGenieMenuItem.Name = "SnesGameGenieMenuItem"; + this.SnesGameGenieMenuItem.Size = new System.Drawing.Size(233, 22); + this.SnesGameGenieMenuItem.Text = "&Game Genie Encoder/Decoder"; + this.SnesGameGenieMenuItem.Click += new System.EventHandler(this.SnesGameGenieMenuItem_Click); + // + // SnesOptionsMenuItem + // + this.SnesOptionsMenuItem.Name = "SnesOptionsMenuItem"; + this.SnesOptionsMenuItem.Size = new System.Drawing.Size(233, 22); + this.SnesOptionsMenuItem.Text = "&Options"; + this.SnesOptionsMenuItem.Click += new System.EventHandler(this.SnesOptionsMenuItem_Click); + // + // ColecoSubMenu + // + this.ColecoSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ColecoSkipBiosMenuItem}); - this.ColecoSubMenu.Name = "ColecoSubMenu"; - this.ColecoSubMenu.Size = new System.Drawing.Size(56, 19); - this.ColecoSubMenu.Text = "&Coleco"; - this.ColecoSubMenu.DropDownOpened += new System.EventHandler(this.ColecoSubMenu_DropDownOpened); - // - // ColecoSkipBiosMenuItem - // - this.ColecoSkipBiosMenuItem.Name = "ColecoSkipBiosMenuItem"; - this.ColecoSkipBiosMenuItem.Size = new System.Drawing.Size(152, 22); - this.ColecoSkipBiosMenuItem.Text = "&Skip BIOS intro"; - this.ColecoSkipBiosMenuItem.Click += new System.EventHandler(this.ColecoSkipBiosMenuItem_Click); - // - // N64SubMenu - // - this.N64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ColecoSubMenu.Name = "ColecoSubMenu"; + this.ColecoSubMenu.Size = new System.Drawing.Size(56, 19); + this.ColecoSubMenu.Text = "&Coleco"; + this.ColecoSubMenu.DropDownOpened += new System.EventHandler(this.ColecoSubMenu_DropDownOpened); + // + // ColecoSkipBiosMenuItem + // + this.ColecoSkipBiosMenuItem.Name = "ColecoSkipBiosMenuItem"; + this.ColecoSkipBiosMenuItem.Size = new System.Drawing.Size(152, 22); + this.ColecoSkipBiosMenuItem.Text = "&Skip BIOS intro"; + this.ColecoSkipBiosMenuItem.Click += new System.EventHandler(this.ColecoSkipBiosMenuItem_Click); + // + // N64SubMenu + // + this.N64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.N64PluginSettingsMenuItem}); - this.N64SubMenu.Name = "N64SubMenu"; - this.N64SubMenu.Size = new System.Drawing.Size(40, 19); - this.N64SubMenu.Text = "N64"; - // - // N64PluginSettingsMenuItem - // - this.N64PluginSettingsMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("N64PluginSettingsMenuItem.Image"))); - this.N64PluginSettingsMenuItem.Name = "N64PluginSettingsMenuItem"; - this.N64PluginSettingsMenuItem.Size = new System.Drawing.Size(186, 22); - this.N64PluginSettingsMenuItem.Text = "Video Plugin Settings"; - this.N64PluginSettingsMenuItem.Click += new System.EventHandler(this.N64PluginSettingsMenuItem_Click); - // - // SaturnSubMenu - // - this.SaturnSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.N64SubMenu.Name = "N64SubMenu"; + this.N64SubMenu.Size = new System.Drawing.Size(40, 19); + this.N64SubMenu.Text = "N64"; + // + // N64PluginSettingsMenuItem + // + this.N64PluginSettingsMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("N64PluginSettingsMenuItem.Image"))); + this.N64PluginSettingsMenuItem.Name = "N64PluginSettingsMenuItem"; + this.N64PluginSettingsMenuItem.Size = new System.Drawing.Size(186, 22); + this.N64PluginSettingsMenuItem.Text = "Video Plugin Settings"; + this.N64PluginSettingsMenuItem.Click += new System.EventHandler(this.N64PluginSettingsMenuItem_Click); + // + // SaturnSubMenu + // + this.SaturnSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SaturnPreferencesMenuItem}); - this.SaturnSubMenu.Name = "SaturnSubMenu"; - this.SaturnSubMenu.Size = new System.Drawing.Size(53, 19); - this.SaturnSubMenu.Text = "Saturn"; - // - // SaturnPreferencesMenuItem - // - this.SaturnPreferencesMenuItem.Name = "SaturnPreferencesMenuItem"; - this.SaturnPreferencesMenuItem.Size = new System.Drawing.Size(144, 22); - this.SaturnPreferencesMenuItem.Text = "Preferences..."; - this.SaturnPreferencesMenuItem.Click += new System.EventHandler(this.SaturnPreferencesMenuItem_Click); - // - // HelpSubMenu - // - this.HelpSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SaturnSubMenu.Name = "SaturnSubMenu"; + this.SaturnSubMenu.Size = new System.Drawing.Size(53, 19); + this.SaturnSubMenu.Text = "Saturn"; + // + // SaturnPreferencesMenuItem + // + this.SaturnPreferencesMenuItem.Name = "SaturnPreferencesMenuItem"; + this.SaturnPreferencesMenuItem.Size = new System.Drawing.Size(144, 22); + this.SaturnPreferencesMenuItem.Text = "Preferences..."; + this.SaturnPreferencesMenuItem.Click += new System.EventHandler(this.SaturnPreferencesMenuItem_Click); + // + // HelpSubMenu + // + this.HelpSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.OnlineHelpMenuItem, this.ForumsMenuItem, this.AboutMenuItem}); - this.HelpSubMenu.Name = "HelpSubMenu"; - this.HelpSubMenu.Size = new System.Drawing.Size(44, 19); - this.HelpSubMenu.Text = "&Help"; - // - // OnlineHelpMenuItem - // - this.OnlineHelpMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Help; - this.OnlineHelpMenuItem.Name = "OnlineHelpMenuItem"; - this.OnlineHelpMenuItem.Size = new System.Drawing.Size(146, 22); - this.OnlineHelpMenuItem.Text = "&Online Help..."; - this.OnlineHelpMenuItem.Click += new System.EventHandler(this.OnlineHelpMenuItem_Click); - // - // ForumsMenuItem - // - this.ForumsMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.TAStudio; - this.ForumsMenuItem.Name = "ForumsMenuItem"; - this.ForumsMenuItem.Size = new System.Drawing.Size(146, 22); - this.ForumsMenuItem.Text = "Forums..."; - this.ForumsMenuItem.Click += new System.EventHandler(this.ForumsMenuItem_Click); - // - // AboutMenuItem - // - this.AboutMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.CorpHawkSmall; - this.AboutMenuItem.Name = "AboutMenuItem"; - this.AboutMenuItem.Size = new System.Drawing.Size(146, 22); - this.AboutMenuItem.Text = "&About"; - this.AboutMenuItem.Click += new System.EventHandler(this.AboutMenuItem_Click); - // - // MainStatusBar - // - this.MainStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.HelpSubMenu.Name = "HelpSubMenu"; + this.HelpSubMenu.Size = new System.Drawing.Size(44, 19); + this.HelpSubMenu.Text = "&Help"; + // + // OnlineHelpMenuItem + // + this.OnlineHelpMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Help; + this.OnlineHelpMenuItem.Name = "OnlineHelpMenuItem"; + this.OnlineHelpMenuItem.Size = new System.Drawing.Size(146, 22); + this.OnlineHelpMenuItem.Text = "&Online Help..."; + this.OnlineHelpMenuItem.Click += new System.EventHandler(this.OnlineHelpMenuItem_Click); + // + // ForumsMenuItem + // + this.ForumsMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.TAStudio; + this.ForumsMenuItem.Name = "ForumsMenuItem"; + this.ForumsMenuItem.Size = new System.Drawing.Size(146, 22); + this.ForumsMenuItem.Text = "Forums..."; + this.ForumsMenuItem.Click += new System.EventHandler(this.ForumsMenuItem_Click); + // + // AboutMenuItem + // + this.AboutMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.CorpHawkSmall; + this.AboutMenuItem.Name = "AboutMenuItem"; + this.AboutMenuItem.Size = new System.Drawing.Size(146, 22); + this.AboutMenuItem.Text = "&About"; + this.AboutMenuItem.Click += new System.EventHandler(this.AboutMenuItem_Click); + // + // MainStatusBar + // + this.MainStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.DumpStatusButton, this.EmuStatus, this.PlayRecordStatusButton, @@ -2558,174 +2559,174 @@ this.Slot0StatusButton, this.CheatStatusButton, this.KeyPriorityStatusLabel}); - this.MainStatusBar.Location = new System.Drawing.Point(0, 386); - this.MainStatusBar.Name = "MainStatusBar"; - this.MainStatusBar.ShowItemToolTips = true; - this.MainStatusBar.Size = new System.Drawing.Size(470, 22); - this.MainStatusBar.SizingGrip = false; - this.MainStatusBar.TabIndex = 1; - this.MainStatusBar.Text = "0"; - // - // DumpStatusButton - // - this.DumpStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.DumpStatusButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Blank; - this.DumpStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.DumpStatusButton.Name = "DumpStatusButton"; - this.DumpStatusButton.ShowDropDownArrow = false; - this.DumpStatusButton.Size = new System.Drawing.Size(20, 20); - this.DumpStatusButton.Text = "No ROM loaded"; - this.DumpStatusButton.Click += new System.EventHandler(this.DumpStatusButton_Click); - // - // EmuStatus - // - this.EmuStatus.Name = "EmuStatus"; - this.EmuStatus.Size = new System.Drawing.Size(0, 17); - // - // PlayRecordStatusButton - // - this.PlayRecordStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.PlayRecordStatusButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Blank; - this.PlayRecordStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.PlayRecordStatusButton.Name = "PlayRecordStatusButton"; - this.PlayRecordStatusButton.ShowDropDownArrow = false; - this.PlayRecordStatusButton.Size = new System.Drawing.Size(20, 20); - this.PlayRecordStatusButton.Text = "No movie is active"; - // - // PauseStatusButton - // - this.PauseStatusButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; - this.PauseStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.PauseStatusButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Blank; - this.PauseStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.PauseStatusButton.Name = "PauseStatusButton"; - this.PauseStatusButton.ShowDropDownArrow = false; - this.PauseStatusButton.Size = new System.Drawing.Size(20, 20); - this.PauseStatusButton.Text = "toolStripDropDownButton1"; - this.PauseStatusButton.ToolTipText = "Emulator is paused"; - this.PauseStatusButton.Click += new System.EventHandler(this.PauseMenuItem_Click); - // - // RebootStatusBarIcon - // - this.RebootStatusBarIcon.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.RebootStatusBarIcon.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.reboot; - this.RebootStatusBarIcon.Name = "RebootStatusBarIcon"; - this.RebootStatusBarIcon.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.RebootStatusBarIcon.Size = new System.Drawing.Size(16, 17); - this.RebootStatusBarIcon.Text = "Reboot"; - this.RebootStatusBarIcon.ToolTipText = "A reboot of the core is needed for a setting change to take affect"; - this.RebootStatusBarIcon.Click += new System.EventHandler(this.PowerMenuItem_Click); - // - // AVIStatusLabel - // - this.AVIStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.AVIStatusLabel.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Blank; - this.AVIStatusLabel.Name = "AVIStatusLabel"; - this.AVIStatusLabel.Size = new System.Drawing.Size(16, 17); - this.AVIStatusLabel.Text = "AVI Capture"; - // - // LedLightStatusLabel - // - this.LedLightStatusLabel.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.LightOff; - this.LedLightStatusLabel.Name = "LedLightStatusLabel"; - this.LedLightStatusLabel.Size = new System.Drawing.Size(16, 17); - this.LedLightStatusLabel.ToolTipText = "Disk Drive LED Light"; - // - // SaveSlotsStatusLabel - // - this.SaveSlotsStatusLabel.BackColor = System.Drawing.SystemColors.Control; - this.SaveSlotsStatusLabel.Name = "SaveSlotsStatusLabel"; - this.SaveSlotsStatusLabel.Size = new System.Drawing.Size(58, 17); - this.SaveSlotsStatusLabel.Text = "Save slots"; - // - // Slot1StatusButton - // - this.Slot1StatusButton.Name = "Slot1StatusButton"; - this.Slot1StatusButton.Size = new System.Drawing.Size(13, 17); - this.Slot1StatusButton.Text = "1"; - this.Slot1StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot2StatusButton - // - this.Slot2StatusButton.Name = "Slot2StatusButton"; - this.Slot2StatusButton.Size = new System.Drawing.Size(13, 17); - this.Slot2StatusButton.Text = "2"; - this.Slot2StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot3StatusButton - // - this.Slot3StatusButton.Name = "Slot3StatusButton"; - this.Slot3StatusButton.Size = new System.Drawing.Size(13, 17); - this.Slot3StatusButton.Text = "3"; - this.Slot3StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot4StatusButton - // - this.Slot4StatusButton.Name = "Slot4StatusButton"; - this.Slot4StatusButton.Size = new System.Drawing.Size(13, 17); - this.Slot4StatusButton.Text = "4"; - this.Slot4StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot5StatusButton - // - this.Slot5StatusButton.Name = "Slot5StatusButton"; - this.Slot5StatusButton.Size = new System.Drawing.Size(13, 17); - this.Slot5StatusButton.Text = "5"; - this.Slot5StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot6StatusButton - // - this.Slot6StatusButton.Name = "Slot6StatusButton"; - this.Slot6StatusButton.Size = new System.Drawing.Size(13, 17); - this.Slot6StatusButton.Text = "6"; - this.Slot6StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot7StatusButton - // - this.Slot7StatusButton.Name = "Slot7StatusButton"; - this.Slot7StatusButton.Size = new System.Drawing.Size(13, 17); - this.Slot7StatusButton.Text = "7"; - this.Slot7StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot8StatusButton - // - this.Slot8StatusButton.Name = "Slot8StatusButton"; - this.Slot8StatusButton.Size = new System.Drawing.Size(13, 17); - this.Slot8StatusButton.Text = "8"; - this.Slot8StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot9StatusButton - // - this.Slot9StatusButton.Name = "Slot9StatusButton"; - this.Slot9StatusButton.Size = new System.Drawing.Size(13, 17); - this.Slot9StatusButton.Text = "9"; - this.Slot9StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot0StatusButton - // - this.Slot0StatusButton.Name = "Slot0StatusButton"; - this.Slot0StatusButton.Size = new System.Drawing.Size(13, 17); - this.Slot0StatusButton.Text = "0"; - this.Slot0StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // CheatStatusButton - // - this.CheatStatusButton.Name = "CheatStatusButton"; - this.CheatStatusButton.Size = new System.Drawing.Size(0, 17); - this.CheatStatusButton.Click += new System.EventHandler(this.FreezeStatus_Click); - // - // KeyPriorityStatusLabel - // - this.KeyPriorityStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.KeyPriorityStatusLabel.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Both; - this.KeyPriorityStatusLabel.Name = "KeyPriorityStatusLabel"; - this.KeyPriorityStatusLabel.Size = new System.Drawing.Size(16, 17); - this.KeyPriorityStatusLabel.Text = "KeyPriority"; - this.KeyPriorityStatusLabel.Click += new System.EventHandler(this.KeyPriorityStatusLabel_Click); - // - // MainFormContextMenu - // - this.MainFormContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MainStatusBar.Location = new System.Drawing.Point(0, 386); + this.MainStatusBar.Name = "MainStatusBar"; + this.MainStatusBar.ShowItemToolTips = true; + this.MainStatusBar.Size = new System.Drawing.Size(470, 22); + this.MainStatusBar.SizingGrip = false; + this.MainStatusBar.TabIndex = 1; + this.MainStatusBar.Text = "0"; + // + // DumpStatusButton + // + this.DumpStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.DumpStatusButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Blank; + this.DumpStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.DumpStatusButton.Name = "DumpStatusButton"; + this.DumpStatusButton.ShowDropDownArrow = false; + this.DumpStatusButton.Size = new System.Drawing.Size(20, 20); + this.DumpStatusButton.Text = "No ROM loaded"; + this.DumpStatusButton.Click += new System.EventHandler(this.DumpStatusButton_Click); + // + // EmuStatus + // + this.EmuStatus.Name = "EmuStatus"; + this.EmuStatus.Size = new System.Drawing.Size(0, 17); + // + // PlayRecordStatusButton + // + this.PlayRecordStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.PlayRecordStatusButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Blank; + this.PlayRecordStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.PlayRecordStatusButton.Name = "PlayRecordStatusButton"; + this.PlayRecordStatusButton.ShowDropDownArrow = false; + this.PlayRecordStatusButton.Size = new System.Drawing.Size(20, 20); + this.PlayRecordStatusButton.Text = "No movie is active"; + // + // PauseStatusButton + // + this.PauseStatusButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; + this.PauseStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.PauseStatusButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Blank; + this.PauseStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.PauseStatusButton.Name = "PauseStatusButton"; + this.PauseStatusButton.ShowDropDownArrow = false; + this.PauseStatusButton.Size = new System.Drawing.Size(20, 20); + this.PauseStatusButton.Text = "toolStripDropDownButton1"; + this.PauseStatusButton.ToolTipText = "Emulator is paused"; + this.PauseStatusButton.Click += new System.EventHandler(this.PauseMenuItem_Click); + // + // RebootStatusBarIcon + // + this.RebootStatusBarIcon.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.RebootStatusBarIcon.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.reboot; + this.RebootStatusBarIcon.Name = "RebootStatusBarIcon"; + this.RebootStatusBarIcon.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.RebootStatusBarIcon.Size = new System.Drawing.Size(16, 17); + this.RebootStatusBarIcon.Text = "Reboot"; + this.RebootStatusBarIcon.ToolTipText = "A reboot of the core is needed for a setting change to take affect"; + this.RebootStatusBarIcon.Click += new System.EventHandler(this.PowerMenuItem_Click); + // + // AVIStatusLabel + // + this.AVIStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.AVIStatusLabel.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Blank; + this.AVIStatusLabel.Name = "AVIStatusLabel"; + this.AVIStatusLabel.Size = new System.Drawing.Size(16, 17); + this.AVIStatusLabel.Text = "AVI Capture"; + // + // LedLightStatusLabel + // + this.LedLightStatusLabel.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.LightOff; + this.LedLightStatusLabel.Name = "LedLightStatusLabel"; + this.LedLightStatusLabel.Size = new System.Drawing.Size(16, 17); + this.LedLightStatusLabel.ToolTipText = "Disk Drive LED Light"; + // + // SaveSlotsStatusLabel + // + this.SaveSlotsStatusLabel.BackColor = System.Drawing.SystemColors.Control; + this.SaveSlotsStatusLabel.Name = "SaveSlotsStatusLabel"; + this.SaveSlotsStatusLabel.Size = new System.Drawing.Size(58, 17); + this.SaveSlotsStatusLabel.Text = "Save slots"; + // + // Slot1StatusButton + // + this.Slot1StatusButton.Name = "Slot1StatusButton"; + this.Slot1StatusButton.Size = new System.Drawing.Size(13, 17); + this.Slot1StatusButton.Text = "1"; + this.Slot1StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot2StatusButton + // + this.Slot2StatusButton.Name = "Slot2StatusButton"; + this.Slot2StatusButton.Size = new System.Drawing.Size(13, 17); + this.Slot2StatusButton.Text = "2"; + this.Slot2StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot3StatusButton + // + this.Slot3StatusButton.Name = "Slot3StatusButton"; + this.Slot3StatusButton.Size = new System.Drawing.Size(13, 17); + this.Slot3StatusButton.Text = "3"; + this.Slot3StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot4StatusButton + // + this.Slot4StatusButton.Name = "Slot4StatusButton"; + this.Slot4StatusButton.Size = new System.Drawing.Size(13, 17); + this.Slot4StatusButton.Text = "4"; + this.Slot4StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot5StatusButton + // + this.Slot5StatusButton.Name = "Slot5StatusButton"; + this.Slot5StatusButton.Size = new System.Drawing.Size(13, 17); + this.Slot5StatusButton.Text = "5"; + this.Slot5StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot6StatusButton + // + this.Slot6StatusButton.Name = "Slot6StatusButton"; + this.Slot6StatusButton.Size = new System.Drawing.Size(13, 17); + this.Slot6StatusButton.Text = "6"; + this.Slot6StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot7StatusButton + // + this.Slot7StatusButton.Name = "Slot7StatusButton"; + this.Slot7StatusButton.Size = new System.Drawing.Size(13, 17); + this.Slot7StatusButton.Text = "7"; + this.Slot7StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot8StatusButton + // + this.Slot8StatusButton.Name = "Slot8StatusButton"; + this.Slot8StatusButton.Size = new System.Drawing.Size(13, 17); + this.Slot8StatusButton.Text = "8"; + this.Slot8StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot9StatusButton + // + this.Slot9StatusButton.Name = "Slot9StatusButton"; + this.Slot9StatusButton.Size = new System.Drawing.Size(13, 17); + this.Slot9StatusButton.Text = "9"; + this.Slot9StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot0StatusButton + // + this.Slot0StatusButton.Name = "Slot0StatusButton"; + this.Slot0StatusButton.Size = new System.Drawing.Size(13, 17); + this.Slot0StatusButton.Text = "0"; + this.Slot0StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // CheatStatusButton + // + this.CheatStatusButton.Name = "CheatStatusButton"; + this.CheatStatusButton.Size = new System.Drawing.Size(0, 17); + this.CheatStatusButton.Click += new System.EventHandler(this.FreezeStatus_Click); + // + // KeyPriorityStatusLabel + // + this.KeyPriorityStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.KeyPriorityStatusLabel.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Both; + this.KeyPriorityStatusLabel.Name = "KeyPriorityStatusLabel"; + this.KeyPriorityStatusLabel.Size = new System.Drawing.Size(16, 17); + this.KeyPriorityStatusLabel.Text = "KeyPriority"; + this.KeyPriorityStatusLabel.Click += new System.EventHandler(this.KeyPriorityStatusLabel_Click); + // + // MainFormContextMenu + // + this.MainFormContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.OpenRomContextMenuItem, this.LoadLastRomContextMenuItem, this.ContextSeparator_AfterROM, @@ -2749,137 +2750,137 @@ this.ClearSRAMContextMenuItem, this.ShowMenuContextMenuSeparator, this.ShowMenuContextMenuItem}); - this.MainFormContextMenu.Name = "contextMenuStrip1"; - this.MainFormContextMenu.Size = new System.Drawing.Size(217, 446); - this.MainFormContextMenu.Closing += new System.Windows.Forms.ToolStripDropDownClosingEventHandler(this.MainFormContextMenu_Closing); - this.MainFormContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.MainFormContextMenu_Opening); - // - // OpenRomContextMenuItem - // - this.OpenRomContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.OpenFile; - this.OpenRomContextMenuItem.Name = "OpenRomContextMenuItem"; - this.OpenRomContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.OpenRomContextMenuItem.Text = "Open Rom"; - this.OpenRomContextMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); - // - // LoadLastRomContextMenuItem - // - this.LoadLastRomContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Recent; - this.LoadLastRomContextMenuItem.Name = "LoadLastRomContextMenuItem"; - this.LoadLastRomContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.LoadLastRomContextMenuItem.Text = "Load Last ROM"; - this.LoadLastRomContextMenuItem.Click += new System.EventHandler(this.LoadLastRomContextMenuItem_Click); - // - // ContextSeparator_AfterROM - // - this.ContextSeparator_AfterROM.Name = "ContextSeparator_AfterROM"; - this.ContextSeparator_AfterROM.Size = new System.Drawing.Size(213, 6); - // - // RecordMovieContextMenuItem - // - this.RecordMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.RecordHS; - this.RecordMovieContextMenuItem.Name = "RecordMovieContextMenuItem"; - this.RecordMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.RecordMovieContextMenuItem.Text = "Record Movie"; - this.RecordMovieContextMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); - // - // PlayMovieContextMenuItem - // - this.PlayMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Play; - this.PlayMovieContextMenuItem.Name = "PlayMovieContextMenuItem"; - this.PlayMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.PlayMovieContextMenuItem.Text = "Play Movie"; - this.PlayMovieContextMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); - // - // RestartMovieContextMenuItem - // - this.RestartMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.restart; - this.RestartMovieContextMenuItem.Name = "RestartMovieContextMenuItem"; - this.RestartMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.RestartMovieContextMenuItem.Text = "Restart Movie"; - this.RestartMovieContextMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); - // - // StopMovieContextMenuItem - // - this.StopMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Stop; - this.StopMovieContextMenuItem.Name = "StopMovieContextMenuItem"; - this.StopMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.StopMovieContextMenuItem.Text = "Stop Movie"; - this.StopMovieContextMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); - // - // LoadLastMovieContextMenuItem - // - this.LoadLastMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Recent; - this.LoadLastMovieContextMenuItem.Name = "LoadLastMovieContextMenuItem"; - this.LoadLastMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.LoadLastMovieContextMenuItem.Text = "Load Last Movie"; - this.LoadLastMovieContextMenuItem.Click += new System.EventHandler(this.LoadLastMovieContextMenuItem_Click); - // - // BackupMovieContextMenuItem - // - this.BackupMovieContextMenuItem.Name = "BackupMovieContextMenuItem"; - this.BackupMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.BackupMovieContextMenuItem.Text = "Backup Movie"; - this.BackupMovieContextMenuItem.Click += new System.EventHandler(this.BackupMovieContextMenuItem_Click); - // - // StopNoSaveContextMenuItem - // - this.StopNoSaveContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Stop; - this.StopNoSaveContextMenuItem.Name = "StopNoSaveContextMenuItem"; - this.StopNoSaveContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.StopNoSaveContextMenuItem.Text = "Stop Movie without Saving"; - this.StopNoSaveContextMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); - // - // ViewSubtitlesContextMenuItem - // - this.ViewSubtitlesContextMenuItem.Name = "ViewSubtitlesContextMenuItem"; - this.ViewSubtitlesContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.ViewSubtitlesContextMenuItem.Text = "View Subtitles"; - this.ViewSubtitlesContextMenuItem.Click += new System.EventHandler(this.ViewSubtitlesContextMenuItem_Click); - // - // AddSubtitleContextMenuItem - // - this.AddSubtitleContextMenuItem.Name = "AddSubtitleContextMenuItem"; - this.AddSubtitleContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.AddSubtitleContextMenuItem.Text = "Add Subtitle"; - this.AddSubtitleContextMenuItem.Click += new System.EventHandler(this.AddSubtitleContextMenuItem_Click); - // - // ViewCommentsContextMenuItem - // - this.ViewCommentsContextMenuItem.Name = "ViewCommentsContextMenuItem"; - this.ViewCommentsContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.ViewCommentsContextMenuItem.Text = "View Comments"; - this.ViewCommentsContextMenuItem.Click += new System.EventHandler(this.ViewCommentsContextMenuItem_Click); - // - // SaveMovieContextMenuItem - // - this.SaveMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.SaveAs; - this.SaveMovieContextMenuItem.Name = "SaveMovieContextMenuItem"; - this.SaveMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.SaveMovieContextMenuItem.Text = "Save Movie"; - this.SaveMovieContextMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); - // - // ContextSeparator_AfterMovie - // - this.ContextSeparator_AfterMovie.Name = "ContextSeparator_AfterMovie"; - this.ContextSeparator_AfterMovie.Size = new System.Drawing.Size(213, 6); - // - // UndoSavestateContextMenuItem - // - this.UndoSavestateContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.undo; - this.UndoSavestateContextMenuItem.Name = "UndoSavestateContextMenuItem"; - this.UndoSavestateContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.UndoSavestateContextMenuItem.Text = "Undo Savestate"; - this.UndoSavestateContextMenuItem.Click += new System.EventHandler(this.UndoSavestateContextMenuItem_Click); - // - // ContextSeparator_AfterUndo - // - this.ContextSeparator_AfterUndo.Name = "ContextSeparator_AfterUndo"; - this.ContextSeparator_AfterUndo.Size = new System.Drawing.Size(213, 6); - // - // ConfigContextMenuItem - // - this.ConfigContextMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MainFormContextMenu.Name = "contextMenuStrip1"; + this.MainFormContextMenu.Size = new System.Drawing.Size(217, 446); + this.MainFormContextMenu.Closing += new System.Windows.Forms.ToolStripDropDownClosingEventHandler(this.MainFormContextMenu_Closing); + this.MainFormContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.MainFormContextMenu_Opening); + // + // OpenRomContextMenuItem + // + this.OpenRomContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.OpenFile; + this.OpenRomContextMenuItem.Name = "OpenRomContextMenuItem"; + this.OpenRomContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.OpenRomContextMenuItem.Text = "Open Rom"; + this.OpenRomContextMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); + // + // LoadLastRomContextMenuItem + // + this.LoadLastRomContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Recent; + this.LoadLastRomContextMenuItem.Name = "LoadLastRomContextMenuItem"; + this.LoadLastRomContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.LoadLastRomContextMenuItem.Text = "Load Last ROM"; + this.LoadLastRomContextMenuItem.Click += new System.EventHandler(this.LoadLastRomContextMenuItem_Click); + // + // ContextSeparator_AfterROM + // + this.ContextSeparator_AfterROM.Name = "ContextSeparator_AfterROM"; + this.ContextSeparator_AfterROM.Size = new System.Drawing.Size(213, 6); + // + // RecordMovieContextMenuItem + // + this.RecordMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.RecordHS; + this.RecordMovieContextMenuItem.Name = "RecordMovieContextMenuItem"; + this.RecordMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.RecordMovieContextMenuItem.Text = "Record Movie"; + this.RecordMovieContextMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); + // + // PlayMovieContextMenuItem + // + this.PlayMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Play; + this.PlayMovieContextMenuItem.Name = "PlayMovieContextMenuItem"; + this.PlayMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.PlayMovieContextMenuItem.Text = "Play Movie"; + this.PlayMovieContextMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); + // + // RestartMovieContextMenuItem + // + this.RestartMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.restart; + this.RestartMovieContextMenuItem.Name = "RestartMovieContextMenuItem"; + this.RestartMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.RestartMovieContextMenuItem.Text = "Restart Movie"; + this.RestartMovieContextMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); + // + // StopMovieContextMenuItem + // + this.StopMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Stop; + this.StopMovieContextMenuItem.Name = "StopMovieContextMenuItem"; + this.StopMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.StopMovieContextMenuItem.Text = "Stop Movie"; + this.StopMovieContextMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); + // + // LoadLastMovieContextMenuItem + // + this.LoadLastMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Recent; + this.LoadLastMovieContextMenuItem.Name = "LoadLastMovieContextMenuItem"; + this.LoadLastMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.LoadLastMovieContextMenuItem.Text = "Load Last Movie"; + this.LoadLastMovieContextMenuItem.Click += new System.EventHandler(this.LoadLastMovieContextMenuItem_Click); + // + // BackupMovieContextMenuItem + // + this.BackupMovieContextMenuItem.Name = "BackupMovieContextMenuItem"; + this.BackupMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.BackupMovieContextMenuItem.Text = "Backup Movie"; + this.BackupMovieContextMenuItem.Click += new System.EventHandler(this.BackupMovieContextMenuItem_Click); + // + // StopNoSaveContextMenuItem + // + this.StopNoSaveContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Stop; + this.StopNoSaveContextMenuItem.Name = "StopNoSaveContextMenuItem"; + this.StopNoSaveContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.StopNoSaveContextMenuItem.Text = "Stop Movie without Saving"; + this.StopNoSaveContextMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); + // + // ViewSubtitlesContextMenuItem + // + this.ViewSubtitlesContextMenuItem.Name = "ViewSubtitlesContextMenuItem"; + this.ViewSubtitlesContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.ViewSubtitlesContextMenuItem.Text = "View Subtitles"; + this.ViewSubtitlesContextMenuItem.Click += new System.EventHandler(this.ViewSubtitlesContextMenuItem_Click); + // + // AddSubtitleContextMenuItem + // + this.AddSubtitleContextMenuItem.Name = "AddSubtitleContextMenuItem"; + this.AddSubtitleContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.AddSubtitleContextMenuItem.Text = "Add Subtitle"; + this.AddSubtitleContextMenuItem.Click += new System.EventHandler(this.AddSubtitleContextMenuItem_Click); + // + // ViewCommentsContextMenuItem + // + this.ViewCommentsContextMenuItem.Name = "ViewCommentsContextMenuItem"; + this.ViewCommentsContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.ViewCommentsContextMenuItem.Text = "View Comments"; + this.ViewCommentsContextMenuItem.Click += new System.EventHandler(this.ViewCommentsContextMenuItem_Click); + // + // SaveMovieContextMenuItem + // + this.SaveMovieContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.SaveAs; + this.SaveMovieContextMenuItem.Name = "SaveMovieContextMenuItem"; + this.SaveMovieContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.SaveMovieContextMenuItem.Text = "Save Movie"; + this.SaveMovieContextMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); + // + // ContextSeparator_AfterMovie + // + this.ContextSeparator_AfterMovie.Name = "ContextSeparator_AfterMovie"; + this.ContextSeparator_AfterMovie.Size = new System.Drawing.Size(213, 6); + // + // UndoSavestateContextMenuItem + // + this.UndoSavestateContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.undo; + this.UndoSavestateContextMenuItem.Name = "UndoSavestateContextMenuItem"; + this.UndoSavestateContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.UndoSavestateContextMenuItem.Text = "Undo Savestate"; + this.UndoSavestateContextMenuItem.Click += new System.EventHandler(this.UndoSavestateContextMenuItem_Click); + // + // ContextSeparator_AfterUndo + // + this.ContextSeparator_AfterUndo.Name = "ContextSeparator_AfterUndo"; + this.ContextSeparator_AfterUndo.Size = new System.Drawing.Size(213, 6); + // + // ConfigContextMenuItem + // + this.ConfigContextMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.controllersToolStripMenuItem1, this.hotkeysToolStripMenuItem1, this.messagesToolStripMenuItem1, @@ -2891,153 +2892,153 @@ this.toolStripSeparator30, this.toolStripMenuItem6, this.toolStripMenuItem7}); - this.ConfigContextMenuItem.Name = "ConfigContextMenuItem"; - this.ConfigContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.ConfigContextMenuItem.Text = "Config"; - // - // controllersToolStripMenuItem1 - // - this.controllersToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.GameController; - this.controllersToolStripMenuItem1.Name = "controllersToolStripMenuItem1"; - this.controllersToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); - this.controllersToolStripMenuItem1.Text = "&Controllers..."; - this.controllersToolStripMenuItem1.Click += new System.EventHandler(this.ControllersMenuItem_Click); - // - // hotkeysToolStripMenuItem1 - // - this.hotkeysToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.HotKeys; - this.hotkeysToolStripMenuItem1.Name = "hotkeysToolStripMenuItem1"; - this.hotkeysToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); - this.hotkeysToolStripMenuItem1.Text = "&Hotkeys..."; - this.hotkeysToolStripMenuItem1.Click += new System.EventHandler(this.HotkeysMenuItem_Click); - // - // messagesToolStripMenuItem1 - // - this.messagesToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.MessageConfig; - this.messagesToolStripMenuItem1.Name = "messagesToolStripMenuItem1"; - this.messagesToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); - this.messagesToolStripMenuItem1.Text = "&Messages..."; - this.messagesToolStripMenuItem1.Click += new System.EventHandler(this.MessagesMenuItem_Click); - // - // pathsToolStripMenuItem1 - // - this.pathsToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.CopyFolderHS; - this.pathsToolStripMenuItem1.Name = "pathsToolStripMenuItem1"; - this.pathsToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); - this.pathsToolStripMenuItem1.Text = "Paths..."; - this.pathsToolStripMenuItem1.Click += new System.EventHandler(this.PathsMenuItem_Click); - // - // soundToolStripMenuItem1 - // - this.soundToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.AudioHS; - this.soundToolStripMenuItem1.Name = "soundToolStripMenuItem1"; - this.soundToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); - this.soundToolStripMenuItem1.Text = "&Sound..."; - this.soundToolStripMenuItem1.Click += new System.EventHandler(this.SoundMenuItem_Click); - // - // autofireToolStripMenuItem1 - // - this.autofireToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Lightning; - this.autofireToolStripMenuItem1.Name = "autofireToolStripMenuItem1"; - this.autofireToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); - this.autofireToolStripMenuItem1.Text = "&Autofire..."; - // - // rewindToolStripMenuItem - // - this.rewindToolStripMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Previous; - this.rewindToolStripMenuItem.Name = "rewindToolStripMenuItem"; - this.rewindToolStripMenuItem.Size = new System.Drawing.Size(141, 22); - this.rewindToolStripMenuItem.Text = "&Rewind"; - this.rewindToolStripMenuItem.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); - // - // firmwaresToolStripMenuItem1 - // - this.firmwaresToolStripMenuItem1.Name = "firmwaresToolStripMenuItem1"; - this.firmwaresToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); - this.firmwaresToolStripMenuItem1.Text = "&Firmwares"; - this.firmwaresToolStripMenuItem1.Click += new System.EventHandler(this.FirmwaresMenuItem_Click); - // - // toolStripSeparator30 - // - this.toolStripSeparator30.Name = "toolStripSeparator30"; - this.toolStripSeparator30.Size = new System.Drawing.Size(138, 6); - // - // toolStripMenuItem6 - // - this.toolStripMenuItem6.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Save; - this.toolStripMenuItem6.Name = "toolStripMenuItem6"; - this.toolStripMenuItem6.Size = new System.Drawing.Size(141, 22); - this.toolStripMenuItem6.Text = "Save Config"; - this.toolStripMenuItem6.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); - // - // toolStripMenuItem7 - // - this.toolStripMenuItem7.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.LoadConfig; - this.toolStripMenuItem7.Name = "toolStripMenuItem7"; - this.toolStripMenuItem7.Size = new System.Drawing.Size(141, 22); - this.toolStripMenuItem7.Text = "Load Config"; - this.toolStripMenuItem7.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); - // - // ScreenshotContextMenuItem - // - this.ScreenshotContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.camera; - this.ScreenshotContextMenuItem.Name = "ScreenshotContextMenuItem"; - this.ScreenshotContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.ScreenshotContextMenuItem.Text = "Screenshot"; - this.ScreenshotContextMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); - // - // CloseRomContextMenuItem - // - this.CloseRomContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Close; - this.CloseRomContextMenuItem.Name = "CloseRomContextMenuItem"; - this.CloseRomContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.CloseRomContextMenuItem.Text = "Close ROM"; - this.CloseRomContextMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); - // - // ClearSRAMContextMenuItem - // - this.ClearSRAMContextMenuItem.Name = "ClearSRAMContextMenuItem"; - this.ClearSRAMContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.ClearSRAMContextMenuItem.Text = "Close and Clear SRAM"; - this.ClearSRAMContextMenuItem.Click += new System.EventHandler(this.ClearSRAMContextMenuItem_Click); - // - // ShowMenuContextMenuSeparator - // - this.ShowMenuContextMenuSeparator.Name = "ShowMenuContextMenuSeparator"; - this.ShowMenuContextMenuSeparator.Size = new System.Drawing.Size(213, 6); - // - // ShowMenuContextMenuItem - // - this.ShowMenuContextMenuItem.Name = "ShowMenuContextMenuItem"; - this.ShowMenuContextMenuItem.Size = new System.Drawing.Size(216, 22); - this.ShowMenuContextMenuItem.Text = "Show Menu"; - this.ShowMenuContextMenuItem.Click += new System.EventHandler(this.ShowMenuContextMenuItem_Click); - // - // MainForm - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(470, 408); - this.Controls.Add(this.MainStatusBar); - this.Controls.Add(this.MainformMenu); - this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.MainMenuStrip = this.MainformMenu; - this.Name = "MainForm"; - this.Text = "BizHawk"; - this.Activated += new System.EventHandler(this.MainForm_Activated); - this.Deactivate += new System.EventHandler(this.MainForm_Deactivate); - this.Load += new System.EventHandler(this.MainForm_Load); - this.Shown += new System.EventHandler(this.MainForm_Shown); - this.Enter += new System.EventHandler(this.MainForm_Enter); - this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseClick); - this.Resize += new System.EventHandler(this.MainForm_Resize); - this.MainformMenu.ResumeLayout(false); - this.MainformMenu.PerformLayout(); - this.MainStatusBar.ResumeLayout(false); - this.MainStatusBar.PerformLayout(); - this.MainFormContextMenu.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); + this.ConfigContextMenuItem.Name = "ConfigContextMenuItem"; + this.ConfigContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.ConfigContextMenuItem.Text = "Config"; + // + // controllersToolStripMenuItem1 + // + this.controllersToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.GameController; + this.controllersToolStripMenuItem1.Name = "controllersToolStripMenuItem1"; + this.controllersToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); + this.controllersToolStripMenuItem1.Text = "&Controllers..."; + this.controllersToolStripMenuItem1.Click += new System.EventHandler(this.ControllersMenuItem_Click); + // + // hotkeysToolStripMenuItem1 + // + this.hotkeysToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.HotKeys; + this.hotkeysToolStripMenuItem1.Name = "hotkeysToolStripMenuItem1"; + this.hotkeysToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); + this.hotkeysToolStripMenuItem1.Text = "&Hotkeys..."; + this.hotkeysToolStripMenuItem1.Click += new System.EventHandler(this.HotkeysMenuItem_Click); + // + // messagesToolStripMenuItem1 + // + this.messagesToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.MessageConfig; + this.messagesToolStripMenuItem1.Name = "messagesToolStripMenuItem1"; + this.messagesToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); + this.messagesToolStripMenuItem1.Text = "&Messages..."; + this.messagesToolStripMenuItem1.Click += new System.EventHandler(this.MessagesMenuItem_Click); + // + // pathsToolStripMenuItem1 + // + this.pathsToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.CopyFolderHS; + this.pathsToolStripMenuItem1.Name = "pathsToolStripMenuItem1"; + this.pathsToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); + this.pathsToolStripMenuItem1.Text = "Paths..."; + this.pathsToolStripMenuItem1.Click += new System.EventHandler(this.PathsMenuItem_Click); + // + // soundToolStripMenuItem1 + // + this.soundToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.AudioHS; + this.soundToolStripMenuItem1.Name = "soundToolStripMenuItem1"; + this.soundToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); + this.soundToolStripMenuItem1.Text = "&Sound..."; + this.soundToolStripMenuItem1.Click += new System.EventHandler(this.SoundMenuItem_Click); + // + // autofireToolStripMenuItem1 + // + this.autofireToolStripMenuItem1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Lightning; + this.autofireToolStripMenuItem1.Name = "autofireToolStripMenuItem1"; + this.autofireToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); + this.autofireToolStripMenuItem1.Text = "&Autofire..."; + // + // rewindToolStripMenuItem + // + this.rewindToolStripMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Previous; + this.rewindToolStripMenuItem.Name = "rewindToolStripMenuItem"; + this.rewindToolStripMenuItem.Size = new System.Drawing.Size(141, 22); + this.rewindToolStripMenuItem.Text = "&Rewind"; + this.rewindToolStripMenuItem.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); + // + // firmwaresToolStripMenuItem1 + // + this.firmwaresToolStripMenuItem1.Name = "firmwaresToolStripMenuItem1"; + this.firmwaresToolStripMenuItem1.Size = new System.Drawing.Size(141, 22); + this.firmwaresToolStripMenuItem1.Text = "&Firmwares"; + this.firmwaresToolStripMenuItem1.Click += new System.EventHandler(this.FirmwaresMenuItem_Click); + // + // toolStripSeparator30 + // + this.toolStripSeparator30.Name = "toolStripSeparator30"; + this.toolStripSeparator30.Size = new System.Drawing.Size(138, 6); + // + // toolStripMenuItem6 + // + this.toolStripMenuItem6.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Save; + this.toolStripMenuItem6.Name = "toolStripMenuItem6"; + this.toolStripMenuItem6.Size = new System.Drawing.Size(141, 22); + this.toolStripMenuItem6.Text = "Save Config"; + this.toolStripMenuItem6.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); + // + // toolStripMenuItem7 + // + this.toolStripMenuItem7.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.LoadConfig; + this.toolStripMenuItem7.Name = "toolStripMenuItem7"; + this.toolStripMenuItem7.Size = new System.Drawing.Size(141, 22); + this.toolStripMenuItem7.Text = "Load Config"; + this.toolStripMenuItem7.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); + // + // ScreenshotContextMenuItem + // + this.ScreenshotContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.camera; + this.ScreenshotContextMenuItem.Name = "ScreenshotContextMenuItem"; + this.ScreenshotContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.ScreenshotContextMenuItem.Text = "Screenshot"; + this.ScreenshotContextMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); + // + // CloseRomContextMenuItem + // + this.CloseRomContextMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Close; + this.CloseRomContextMenuItem.Name = "CloseRomContextMenuItem"; + this.CloseRomContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.CloseRomContextMenuItem.Text = "Close ROM"; + this.CloseRomContextMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); + // + // ClearSRAMContextMenuItem + // + this.ClearSRAMContextMenuItem.Name = "ClearSRAMContextMenuItem"; + this.ClearSRAMContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.ClearSRAMContextMenuItem.Text = "Close and Clear SRAM"; + this.ClearSRAMContextMenuItem.Click += new System.EventHandler(this.ClearSRAMContextMenuItem_Click); + // + // ShowMenuContextMenuSeparator + // + this.ShowMenuContextMenuSeparator.Name = "ShowMenuContextMenuSeparator"; + this.ShowMenuContextMenuSeparator.Size = new System.Drawing.Size(213, 6); + // + // ShowMenuContextMenuItem + // + this.ShowMenuContextMenuItem.Name = "ShowMenuContextMenuItem"; + this.ShowMenuContextMenuItem.Size = new System.Drawing.Size(216, 22); + this.ShowMenuContextMenuItem.Text = "Show Menu"; + this.ShowMenuContextMenuItem.Click += new System.EventHandler(this.ShowMenuContextMenuItem_Click); + // + // MainForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(470, 408); + this.Controls.Add(this.MainStatusBar); + this.Controls.Add(this.MainformMenu); + this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.MainMenuStrip = this.MainformMenu; + this.Name = "MainForm"; + this.Text = "BizHawk"; + this.Activated += new System.EventHandler(this.MainForm_Activated); + this.Deactivate += new System.EventHandler(this.MainForm_Deactivate); + this.Load += new System.EventHandler(this.MainForm_Load); + this.Shown += new System.EventHandler(this.MainForm_Shown); + this.Enter += new System.EventHandler(this.MainForm_Enter); + this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseClick); + this.Resize += new System.EventHandler(this.MainForm_Resize); + this.MainformMenu.ResumeLayout(false); + this.MainformMenu.PerformLayout(); + this.MainStatusBar.ResumeLayout(false); + this.MainStatusBar.PerformLayout(); + this.MainFormContextMenu.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); } diff --git a/BizHawk.Client.EmuHawk/movie/EditCommentsForm.cs b/BizHawk.Client.EmuHawk/movie/EditCommentsForm.cs index f0a8e9daa3..eb852f5694 100644 --- a/BizHawk.Client.EmuHawk/movie/EditCommentsForm.cs +++ b/BizHawk.Client.EmuHawk/movie/EditCommentsForm.cs @@ -7,7 +7,7 @@ namespace BizHawk.Client.EmuHawk { public partial class EditCommentsForm : Form { - private Movie selectedMovie; + private IMovie selectedMovie; public EditCommentsForm() { @@ -52,7 +52,7 @@ namespace BizHawk.Client.EmuHawk Close(); } - public void GetMovie(Movie m) + public void GetMovie(IMovie m) { selectedMovie = m; if (m.Header.Comments.Count == 0) return; diff --git a/BizHawk.Client.EmuHawk/movie/EditSubtitlesForm.cs b/BizHawk.Client.EmuHawk/movie/EditSubtitlesForm.cs index 33976e2067..66284d8568 100644 --- a/BizHawk.Client.EmuHawk/movie/EditSubtitlesForm.cs +++ b/BizHawk.Client.EmuHawk/movie/EditSubtitlesForm.cs @@ -10,7 +10,7 @@ namespace BizHawk.Client.EmuHawk public partial class EditSubtitlesForm : Form { public bool ReadOnly; - private Movie selectedMovie; + private IMovie selectedMovie; public EditSubtitlesForm() { @@ -84,7 +84,7 @@ namespace BizHawk.Client.EmuHawk Close(); } - public void GetMovie(Movie m) + public void GetMovie(IMovie m) { selectedMovie = m; SubtitleList subs = new SubtitleList(); diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio.Designer.cs b/BizHawk.Client.EmuHawk/tools/TAStudio.Designer.cs index 5eb59120d6..0bd474abd6 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio.Designer.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio.Designer.cs @@ -20,7 +20,7 @@ namespace BizHawk.Client.EmuHawk components.Dispose(); } - Global.MovieSession.Movie.StateCapturing = false; //TODO: This doesn't go here, extend this method in the .cs file + //Global.MovieSession.Movie.StateCapturing = false; //TODO: This doesn't go here, extend this method in the .cs file base.Dispose(disposing); } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio.cs index 6c77d17685..99d08e8290 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio.cs @@ -161,7 +161,7 @@ namespace BizHawk.Client.EmuHawk GlobalWin.OSD.AddMessage("TAStudio engaged"); if (Global.MovieSession.Movie.IsActive) { - Global.MovieSession.Movie.StateCapturing = true; + //Global.MovieSession.Movie.StateCapturing = true; ReadOnlyCheckBox.Checked = Global.ReadOnly; } else