Esempio 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);
 }
Esempio 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);
 }
Esempio n. 3
0
 ColorPicker(AControl parent)
     : base(parent)
 {
     HandlesMouseInput = true;
 }
Esempio 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);
 }
Esempio n. 5
0
 public StaticPic(AControl parent)
     : base(parent)
 {
 }
Esempio n. 6
0
 private void EventMouseUp(AControl sender, int x, int y, MouseButton button)
 {
     OnMouseUp(x, y, button);
 }
Esempio n. 7
0
 void onMouseOverClosedList(AControl control, int x, int y)
 {
     m_label.Hue = hue_TextSelected;
 }
Esempio 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;
 }
Esempio n. 9
0
 public CheckerTrans(AControl owner, int page)
     : base(owner, page)
 {
 }
Esempio 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);
 }
Esempio n. 11
0
 public CheckerTrans(AControl parent, int x, int y, int width, int height)
     : this(parent)
 {
     BuildGumpling(x, y, width, height);
 }
Esempio n. 12
0
 CheckerTrans(AControl parent)
     : base(parent)
 {
 }
Esempio 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;
 }
Esempio 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);
 }
Esempio n. 15
0
 void onMouseOutClosedList(AControl control, int x, int y)
 {
     m_label.Hue = hue_Text;
 }
Esempio 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);
 }
Esempio n. 17
0
 DropDownList(AControl parent)
     : base(parent)
 {
     HandlesMouseInput = true;
     m_Font            = Service.Get <IResourceProvider>().GetAsciiFont(1);
 }
Esempio n. 18
0
 public RadioButton(AControl parent, int groupIndex, string[] arguements, string[] lines)
     : base(parent, arguements, lines)
 {
     GroupIndex = groupIndex;
 }
Esempio 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);
 }
Esempio n. 20
0
 public StaticPic(AControl parent, int x, int y, int itemID, int hue)
     : this(parent)
 {
     buildGumpling(x, y, itemID, hue);
 }
Esempio 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;
 }
 PaperdollLargeUninteractable(AControl parent)
     : base(parent)
 {
 }
Esempio n. 24
0
 public ColorPicker(AControl parent, Rectangle area, int swatchWidth, int swatchHeight, int[] hues)
     : this(parent)
 {
     BuildGumpling(area, swatchWidth, swatchHeight, hues);
 }
 public PaperdollLargeUninteractable(AControl parent, int x, int y)
     : this(parent)
 {
     Position = new Point(x, y);
 }
Esempio n. 26
0
 public TilePic(AControl owner, int page)
     : base(owner, page)
 {
 }
Esempio 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);
 }
Esempio n. 28
0
 public HtmlGump(AControl owner, int page)
     : base(owner, page)
 {
     m_textChanged = true;
 }
Esempio n. 29
0
 public HSliderBar(AControl parent)
     : base(parent)
 {
     HandlesMouseInput = true;
     m_pairedSliders   = new List <HSliderBar>();
 }
Esempio n. 30
0
 public ControlMetaData(AControl control)
 {
     Control = control;
 }
Esempio n. 31
0
 public DropDownList(AControl owner, int page)
     : base(owner, page)
 {
     HandlesMouseInput = true;
 }