core config: dynamically resize description field to fit text
fix #1091
This commit is contained in:
parent
cace4bdb5a
commit
f828641388
|
@ -1,5 +1,7 @@
|
|||
using System;
|
||||
using System.Windows.Forms;
|
||||
using System.Reflection;
|
||||
using System.ComponentModel;
|
||||
using BizHawk.Client.Common;
|
||||
using BizHawk.Emulation.Common;
|
||||
|
||||
|
@ -31,6 +33,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (_s != null)
|
||||
{
|
||||
propertyGrid1.SelectedObject = _s;
|
||||
ChangeDescriptionHeight(propertyGrid1);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -40,6 +43,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (_ss != null)
|
||||
{
|
||||
propertyGrid2.SelectedObject = _ss;
|
||||
ChangeDescriptionHeight(propertyGrid2);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -57,6 +61,36 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
}
|
||||
|
||||
private static void ChangeDescriptionHeight(PropertyGrid grid)
|
||||
{
|
||||
if (grid == null)
|
||||
throw new ArgumentNullException("grid");
|
||||
|
||||
int maxlen = 0;
|
||||
string desc = "";
|
||||
|
||||
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(grid.SelectedObject))
|
||||
{
|
||||
if (property.Description.Length > maxlen)
|
||||
{
|
||||
maxlen = property.Description.Length;
|
||||
desc = property.Description;
|
||||
}
|
||||
}
|
||||
|
||||
foreach (Control control in grid.Controls)
|
||||
{
|
||||
if (control.GetType().Name == "DocComment")
|
||||
{
|
||||
FieldInfo field = control.GetType().GetField("userSized", BindingFlags.Instance | BindingFlags.NonPublic);
|
||||
field.SetValue(control, true);
|
||||
int height = (int)System.Drawing.Graphics.FromHwnd(control.Handle).MeasureString(desc, control.Font, grid.Width).Height;
|
||||
control.Height = Math.Max(20, height) + 16; // magic for now
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void OkBtn_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (_s != null && settingschanged)
|
||||
|
|
|
@ -52,22 +52,32 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
|||
public class C64SyncSettings
|
||||
{
|
||||
[DisplayName("VIC type")]
|
||||
[Description("Set the type of video chip to use")]
|
||||
[Description("Set the type of video chip to use\n" +
|
||||
"PAL: ~50hz. All PAL games will expect this configuration.\n" +
|
||||
"NTSC: ~60hz.This is the most common NTSC configuration. Every NTSC game should work with this configuration.\n" +
|
||||
"NTSCOld: ~60hz.This was used in the very earliest systems and will exhibit problems on most modern games.\n" +
|
||||
"Drean: ~60hz.This was manufactured for a very specific market and is not very compatible with timing sensitive games.\n")]
|
||||
[DefaultValue(VicType.Pal)]
|
||||
public VicType VicType { get; set; }
|
||||
|
||||
[DisplayName("SID type")]
|
||||
[Description("Set the type of sound chip to use")]
|
||||
[Description("Set the type of sound chip to use\n" +
|
||||
"OldR2, OldR3, OldR4AR: Original 6581 SID chip.\n" +
|
||||
"NewR5: Updated 8580 SID chip.\n" +
|
||||
"")]
|
||||
[DefaultValue(SidType.OldR2)]
|
||||
public SidType SidType { get; set; }
|
||||
|
||||
[DisplayName("Tape drive type")]
|
||||
[Description("Set the type of tape drive attached")]
|
||||
[Description("Set the type of tape drive attached\n" +
|
||||
"1531: Original Datasette device.")]
|
||||
[DefaultValue(TapeDriveType.None)]
|
||||
public TapeDriveType TapeDriveType { get; set; }
|
||||
|
||||
[DisplayName("Disk drive type")]
|
||||
[Description("Set the type of disk drive attached")]
|
||||
[Description("Set the type of disk drive attached\n" +
|
||||
"1541: Original disk drive and ROM.\n" +
|
||||
"1541 - II: Improved model with some ROM bugfixes.")]
|
||||
[DefaultValue(DiskDriveType.None)]
|
||||
public DiskDriveType DiskDriveType { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue