Exemplo n.º 1
0
 public ButtonPlus(int x, int y, int normalID, int pressedID, int buttonID, string name, GumpCallback back)
     : base(x, y, normalID, pressedID, buttonID, GumpButtonType.Reply, 0)
 {
     c_Name = name;
     c_Callback = back;
     c_Param = "";
 }
Exemplo n.º 2
0
        public void AddButton(int x, int y, int up, int down, string name, GumpCallback callback)
        {
            int id = UniqueButton();

            ButtonPlus button = new ButtonPlus(x, y, up, down, id, name, callback);

            Add(button);

            c_Buttons[id] = button;
        }
Exemplo n.º 3
0
 public void AddButton(int x, int y, int up, int down, GumpCallback callback)
 {
     AddButton(x, y, up, down, "None", callback);
 }
Exemplo n.º 4
0
 public void AddButton(int x, int y, int id, string name, GumpCallback callback)
 {
     AddButton(x, y, id, id, name, callback);
 }
Exemplo n.º 5
0
 public void AddButton(int x, int y, int id, GumpCallback callback)
 {
     AddButton(x, y, id, id, "None", callback);
 }
Exemplo n.º 6
0
        public void AddButton(int x, int y, int up, int down, string name, GumpCallback callback)
		{
			int id = UniqueButton();

			ButtonPlus button = new ButtonPlus( x, y, up, down, id, name, callback );

			Add( button );

			c_Buttons[id] = button;
		}
Exemplo n.º 7
0
 public void AddButton(int x, int y, int up, int down, GumpCallback callback)
 {
     AddButton(x, y, up, down, "None", callback);
 }
Exemplo n.º 8
0
 public void AddButton(int x, int y, int id, string name, GumpCallback callback)
 {
     AddButton(x, y, id, id, name, callback);
 }
Exemplo n.º 9
0
 public void AddButton(int x, int y, int id, GumpCallback callback)
 {
     AddButton(x, y, id, id, "None", callback);
 }
Exemplo n.º 10
0
 public ButtonPlus(int x, int y, int normalID, int pressedID, int buttonID, string name, GumpCallback back) : base(x, y, normalID, pressedID, buttonID, GumpButtonType.Reply, 0)
 {
     m_Name     = name;
     m_Callback = back;
     m_Param    = "";
 }