Exemplo n.º 1
0
 public TilePic(AControl owner, int page, int x, int y, int tileID, int hue)
     : this(owner, page)
 {
     buildGumpling(x, y, tileID, hue);
 }
Exemplo n.º 2
0
 public HtmlGump(AControl owner, int page, int x, int y, int width, int height, int background, int scrollbar, string text)
     : this(owner, page)
 {
     buildGumpling(x, y, width, height, background, scrollbar, text);
 }
Exemplo n.º 3
0
 ColorPicker(AControl parent)
     : base(parent)
 {
     HandlesMouseInput = true;
 }
Exemplo n.º 4
0
 public ColorPicker(AControl parent, Rectangle closedArea, Rectangle openArea, int swatchWidth, int swatchHeight, int[] hues)
     : this(parent)
 {
     m_openArea = openArea;
     BuildGumpling(closedArea, swatchWidth, swatchHeight, hues);
 }
Exemplo n.º 5
0
 public StaticPic(AControl parent)
     : base(parent)
 {
 }
Exemplo n.º 6
0
 private void EventMouseUp(AControl sender, int x, int y, MouseButton button)
 {
     OnMouseUp(x, y, button);
 }
Exemplo n.º 7
0
 void onMouseOverClosedList(AControl control, int x, int y)
 {
     m_label.Hue = hue_TextSelected;
 }
Exemplo n.º 8
0
 public GumpPicWithWidth(AControl parent, int x, int y, int gumpID, int hue, float percentWidth)
     : base(parent)
 {
     buildGumpling(x, y, gumpID, hue);
     PercentWidthDrawn = percentWidth;
 }
Exemplo n.º 9
0
 public CheckerTrans(AControl owner, int page)
     : base(owner, page)
 {
 }
Exemplo n.º 10
0
 public CheckerTrans(AControl owner, int page, int x, int y, int width, int height)
     : this(owner, page)
 {
     buildGumpling(x, y, width, height);
 }
Exemplo n.º 11
0
 public CheckerTrans(AControl parent, int x, int y, int width, int height)
     : this(parent)
 {
     BuildGumpling(x, y, width, height);
 }
Exemplo n.º 12
0
 CheckerTrans(AControl parent)
     : base(parent)
 {
 }
Exemplo n.º 13
0
 public GumpPicContainer(AControl parent, int x, int y, int gumpID, int hue, ContainerItem containerItem)
     : base(parent, x, y, gumpID, hue)
 {
     m_containerItem = containerItem;
 }
Exemplo n.º 14
0
 public DropDownList(AControl owner, int page, int x, int y, int width, int index, int itemsVisible, string[] items, bool canBeNull)
     : this(owner, page)
 {
     buildGumpling(x, y, width, index, itemsVisible, items, canBeNull);
 }
Exemplo n.º 15
0
 void onMouseOutClosedList(AControl control, int x, int y)
 {
     m_label.Hue = hue_Text;
 }
Exemplo n.º 16
0
 public HSliderBar(AControl parent, int x, int y, int width, int minValue, int maxValue, int value, HSliderBarStyle style)
     : this(parent)
 {
     buildGumpling(x, y, width, minValue, maxValue, value, style);
 }
Exemplo n.º 17
0
 DropDownList(AControl parent)
     : base(parent)
 {
     HandlesMouseInput = true;
     m_Font            = Service.Get <IResourceProvider>().GetAsciiFont(1);
 }
Exemplo n.º 18
0
 public RadioButton(AControl parent, int groupIndex, string[] arguements, string[] lines)
     : base(parent, arguements, lines)
 {
     GroupIndex = groupIndex;
 }
Exemplo n.º 19
0
 public DropDownList(AControl parent, int x, int y, int width, string[] items, int itemsVisible, int index, bool canBeNull)
     : this(parent)
 {
     BuildGumpling(x, y, width, items, itemsVisible, index, canBeNull);
 }
Exemplo n.º 20
0
 public StaticPic(AControl parent, int x, int y, int itemID, int hue)
     : this(parent)
 {
     buildGumpling(x, y, itemID, hue);
 }
Exemplo n.º 21
0
 public GumpPicContainer(AControl owner, int page, int x, int y, int gumpID, int hue, Container containerItem)
     : base(owner, page, x, y, gumpID, hue)
 {
     m_containerItem = containerItem;
 }
 public GumpPicBackpack(AControl owner, int page, int x, int y, Item backpack)
     : base(owner, page, x, y, 0xC4F6, 0)
 {
     BackpackItem = backpack;
 }
Exemplo n.º 23
0
 PaperdollLargeUninteractable(AControl parent)
     : base(parent)
 {
 }
Exemplo n.º 24
0
 public ColorPicker(AControl parent, Rectangle area, int swatchWidth, int swatchHeight, int[] hues)
     : this(parent)
 {
     BuildGumpling(area, swatchWidth, swatchHeight, hues);
 }
Exemplo n.º 25
0
 public PaperdollLargeUninteractable(AControl parent, int x, int y)
     : this(parent)
 {
     Position = new Point(x, y);
 }
Exemplo n.º 26
0
 public TilePic(AControl owner, int page)
     : base(owner, page)
 {
 }
Exemplo n.º 27
0
 public HtmlGumpling(AControl parent, int x, int y, int width, int height, int background, int scrollbar, string text)
     : base(parent)
 {
     BuildGumpling(x, y, width, height, background, scrollbar, text);
 }
Exemplo n.º 28
0
 public HtmlGump(AControl owner, int page)
     : base(owner, page)
 {
     m_textChanged = true;
 }
Exemplo n.º 29
0
 public HSliderBar(AControl parent)
     : base(parent)
 {
     HandlesMouseInput = true;
     m_pairedSliders   = new List <HSliderBar>();
 }
Exemplo n.º 30
0
 public ControlMetaData(AControl control)
 {
     Control = control;
 }
Exemplo n.º 31
0
 public DropDownList(AControl owner, int page)
     : base(owner, page)
 {
     HandlesMouseInput = true;
 }