From 0be92800fdfe961e7f73e12b27579d8b4ed6ab5d Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 11 Aug 2014 11:11:51 +0000 Subject: [PATCH] Input Roll - small commit, nothing too useful --- .../tools/TAStudio/InputRoll.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs index 7443c7d613..105dc7df44 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs @@ -79,6 +79,12 @@ namespace BizHawk.Client.EmuHawk [Category("Behavior")] public bool AllowColumnReorder { get; set; } + /// + /// Indicates whether the entire row will always be selected + /// + [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 columns) { Columns.AddRange(columns);