Input roll - simplify a few things

This commit is contained in:
adelikat 2014-08-08 13:36:37 +00:00
parent bf14551632
commit 830a785545
1 changed files with 10 additions and 33 deletions

View File

@ -19,9 +19,9 @@ namespace BizHawk.Client.EmuHawk
//SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
SetStyle(ControlStyles.AllPaintingInWmPaint, true);
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
//SetStyle(ControlStyles.Opaque, true);
SetStyle(ControlStyles.Opaque, true);
this.Font = new Font("Courier New", 8);
BackColor = Color.Transparent;
//BackColor = Color.Transparent;
}
#region Properties
@ -171,20 +171,7 @@ namespace BizHawk.Client.EmuHawk
protected override void OnPaintBackground(PaintEventArgs pevent)
{
using (var ntr = new GDIRenderer(this))
{
if (NeedToUpdateColumn() && Columns.Any())
{
DrawColumnBg(ntr, pevent);
}
if (NeedToUpdateBg())
{
DrawBg(ntr, pevent);
}
}
//base.OnPaintBackground(pevent);
}
private void DrawColumnText(GDIRenderer ntr, PaintEventArgs e)
@ -213,10 +200,17 @@ namespace BizHawk.Client.EmuHawk
{
using (var ntr = new GDIRenderer(this))
{
if (NeedToUpdateColumn() && Columns.Any())
// Header
if (Columns.Any())
{
DrawColumnBg(ntr, e);
DrawColumnText(ntr, e);
}
// Background
DrawBg(ntr, e);
// ForeGround
}
//base.OnPaint(e);
@ -240,21 +234,6 @@ namespace BizHawk.Client.EmuHawk
#region Helpers
private bool NeedToUpdateColumn()
{
return true; // TODO
}
private bool NeedToUpdateText()
{
return true;
}
private bool NeedToUpdateBg()
{
return true;
}
private bool NeedToUpdateScrollbar()
{
return true;
@ -338,8 +317,6 @@ namespace BizHawk.Client.EmuHawk
}
}
public class RollColumn
{
public enum InputType { Boolean, Float, Text }