Added OnClick parameter list to Button constructor
This commit is contained in:
parent
1e0092d8d4
commit
e1fd5ec87f
|
@ -35,7 +35,7 @@ namespace CrosshairMod
|
||||||
public event EventHandler OnClick;
|
public event EventHandler OnClick;
|
||||||
|
|
||||||
// Initialize Button
|
// Initialize Button
|
||||||
public GUIButton(uint x, uint y, uint width, uint height, string label)
|
public GUIButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] OnClickEvent)
|
||||||
{
|
{
|
||||||
Logging.Debug.Log("Button Constructor");
|
Logging.Debug.Log("Button Constructor");
|
||||||
|
|
||||||
|
@ -43,6 +43,10 @@ namespace CrosshairMod
|
||||||
this.position = new Vector2(x, y);
|
this.position = new Vector2(x, y);
|
||||||
this.dimensions = new Vector2(width, height);
|
this.dimensions = new Vector2(width, height);
|
||||||
this.label = label;
|
this.label = label;
|
||||||
|
|
||||||
|
// Push OnClickEvents
|
||||||
|
foreach(EventHandler e in OnClickEvent)
|
||||||
|
OnClick += e;
|
||||||
}
|
}
|
||||||
|
|
||||||
public GUIButton()
|
public GUIButton()
|
||||||
|
|
|
@ -39,12 +39,7 @@ namespace CrosshairMod
|
||||||
// Returns the index of the button
|
// Returns the index of the button
|
||||||
private static int AddButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] onClickEvent)
|
private static int AddButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] onClickEvent)
|
||||||
{
|
{
|
||||||
GUIButton buttonObj = new GUIButton(x, y, width, height, label);
|
GUIButton buttonObj = new GUIButton(x, y, width, height, label, onClickEvent);
|
||||||
foreach(EventHandler e in onClickEvent)
|
|
||||||
{
|
|
||||||
buttonObj.OnClick += e;
|
|
||||||
}
|
|
||||||
|
|
||||||
m_buttons.Add(buttonObj);
|
m_buttons.Add(buttonObj);
|
||||||
return m_buttons.Count - 1;
|
return m_buttons.Count - 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue