Input Roll - small commit, nothing too useful

This commit is contained in:
adelikat 2014-08-11 11:11:51 +00:00
parent 2c0052ee20
commit 0be92800fd
1 changed files with 21 additions and 0 deletions

View File

@ -79,6 +79,12 @@ namespace BizHawk.Client.EmuHawk
[Category("Behavior")]
public bool AllowColumnReorder { get; set; }
/// <summary>
/// Indicates whether the entire row will always be selected
/// </summary>
[Category("Appearance")]
public bool FullRowSelect { get; set; }
#endregion
#region Event Handlers
@ -147,6 +153,21 @@ namespace BizHawk.Client.EmuHawk
return string.Empty; // TODO
}
[Browsable(false)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
public int VisibleRows
{
get
{
if (HorizontalOrientation)
{
return (Width - _horizontalOrientedColumnWidth) / CellWidth;
}
return (Height / CellHeight) - 1;
}
}
public void AddColumns(IEnumerable<RollColumn> columns)
{
Columns.AddRange(columns);