Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/BizHawk.Client.EmuHawk/AVOut/FFmpegWriterForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ namespace BizHawk.Client.EmuHawk
/// <summary>
/// configures the FFmpegWriter
/// </summary>
public partial class FFmpegWriterForm : Form
public partial class FFmpegWriterForm : FormBase
{
protected override string WindowTitleStatic => "Choose Video Format";

/// <summary>
/// stores a single format preset
/// </summary>
Expand Down
1 change: 0 additions & 1 deletion src/BizHawk.Client.EmuHawk/AVOut/GifWriterForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/BizHawk.Client.EmuHawk/AVOut/GifWriterForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@

namespace BizHawk.Client.EmuHawk
{
public partial class GifWriterForm : Form
public partial class GifWriterForm : FormBase
{
protected override string WindowTitleStatic => "GIF Writer Options";

public GifWriterForm()
{
InitializeComponent();
Expand Down
1 change: 0 additions & 1 deletion src/BizHawk.Client.EmuHawk/AVOut/JMDForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/BizHawk.Client.EmuHawk/AVOut/JMDForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ namespace BizHawk.Client.EmuHawk
/// <summary>
/// implements a minimal dialog for configuring JMDWriter
/// </summary>
public partial class JmdForm : Form
public partial class JmdForm : FormBase
{
protected override string WindowTitleStatic => "JMD Compression Options";

public JmdForm()
{
InitializeComponent();
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/BizHawk.Client.EmuHawk/AVOut/SynclessRecordingTools.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.IO;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;

Check failure on line 4 in src/BizHawk.Client.EmuHawk/AVOut/SynclessRecordingTools.cs

View workflow job for this annotation

GitHub Actions / Build solution with analyzers

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 4 in src/BizHawk.Client.EmuHawk/AVOut/SynclessRecordingTools.cs

View workflow job for this annotation

GitHub Actions / Build solution with analyzers

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check warning on line 4 in src/BizHawk.Client.EmuHawk/AVOut/SynclessRecordingTools.cs

View workflow job for this annotation

GitHub Actions / Build and package output

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check warning on line 4 in src/BizHawk.Client.EmuHawk/AVOut/SynclessRecordingTools.cs

View workflow job for this annotation

GitHub Actions / Build and package output

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

using BizHawk.Bizware.Graphics;
using BizHawk.Client.Common;
Expand All @@ -10,8 +10,10 @@

namespace BizHawk.Client.EmuHawk
{
public partial class SynclessRecordingTools : Form, IDialogParent
public partial class SynclessRecordingTools : FormBase, IDialogParent
{
protected override string WindowTitleStatic => "Syncless Recording";

private readonly Config _config;

private readonly IGameInfo _game;
Expand Down
1 change: 0 additions & 1 deletion src/BizHawk.Client.EmuHawk/ArchiveChooser.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/BizHawk.Client.EmuHawk/ArchiveChooser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@

namespace BizHawk.Client.EmuHawk
{
public partial class ArchiveChooser : Form
public partial class ArchiveChooser : FormBase
{
protected override string WindowTitleStatic => "Choose File From Archive";

private readonly IList<ListViewItem> _archiveItems = new List<ListViewItem>();
private readonly ToolTip _errorBalloon = new ToolTip();

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/BizHawk.Client.EmuHawk/config/AutofireConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@

namespace BizHawk.Client.EmuHawk
{
public partial class AutofireConfig : Form
public partial class AutofireConfig : FormBase
{
protected override string WindowTitleStatic => "Autofire Configuration";

private readonly Config _config;
private readonly AutofireController _autoFireController;
private readonly StickyAutofireController _stickyAutofireController;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/BizHawk.Client.EmuHawk/config/ControllerConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@

namespace BizHawk.Client.EmuHawk
{
public partial class ControllerConfig : Form, IDialogParent
public partial class ControllerConfig : FormBase, IDialogParent
{
protected override string WindowTitleStatic => "Controller Config";

private static readonly Dictionary<string, Lazy<Bitmap>> ControllerImages = new Dictionary<string, Lazy<Bitmap>>();
private readonly IEmulator _emulator;
private readonly Config _config;
Expand Down
Loading