From 76c63ed5c6757ba2e51a9c2d74bfb879c1f3f7f9 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 15 Aug 2014 00:42:03 +0000 Subject: [PATCH] input roll - stuff --- .../tools/TAStudio/InputRoll.cs | 29 +++++++++++++++++-- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs index 7dfd5a8cf3..5548c2aa70 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs @@ -15,6 +15,16 @@ namespace BizHawk.Client.EmuHawk private readonly RollColumns Columns = new RollColumns(); private readonly List SelectedItems = new List(); + private readonly VScrollBar VBar = new VScrollBar + { + Visible = false + }; + + private readonly HScrollBar HBar = new HScrollBar + { + Visible = false + }; + private int _horizontalOrientedColumnWidth = 0; private Size _charSize; @@ -805,16 +815,29 @@ namespace BizHawk.Client.EmuHawk } } - private bool NeedsScrollbar + private bool NeedsVScrollbar { get { if (HorizontalOrientation) { - return Width / CellWidth > ItemCount; + return Columns.Count > Height / CellHeight; } - return Height / CellHeight > ItemCount; + return ItemCount > Height / CellHeight; + } + } + + private bool NeedsHScrollbar + { + get + { + if (HorizontalOrientation) + { + return ItemCount > (Width - _horizontalOrientedColumnWidth) / CellWidth; + } + + return Columns.Sum(column => CalcWidth(column)) > Width; } }