Example #1
0
 public HuePopUpItem(FiddlerControls.ItemDetail ref_, int hue)
 {
     InitializeComponent();
     this.Icon = FiddlerControls.Options.GetFiddlerIcon();
     if (hue >= 0)
         control.Selected = hue;
     refItem = ref_;
 }
 public MultiImport(FiddlerControls.Multis _parent, int _id)
 {
     InitializeComponent();
     this.Icon = FiddlerControls.Options.GetFiddlerIcon();
     id = _id;
     parent = _parent;
     comboBox1.SelectedIndex = 0;
 }
Example #3
0
 public MapClearStatics(FiddlerControls.Map parent, Ultima.Map map)
 {
     MapParent = parent;
     Map = map;
     InitializeComponent();
     this.Icon = FiddlerControls.Options.GetFiddlerIcon();
     numericUpDownX1.Maximum = map.Width;
     numericUpDownX2.Maximum = map.Width;
     numericUpDownY1.Maximum = map.Height;
     numericUpDownY2.Maximum = map.Height;
 }
Example #4
0
 public HuePopUp(FiddlerControls.Animationlist ref_, int hue)
 {
     InitializeComponent();
     this.Icon = FiddlerControls.Options.GetFiddlerIcon();
     if ((hue & 0x8000) != 0)
     {
         hue ^= 0x8000;
         HueOnlyGray.Checked = true;
     }
     if (hue != 0)
         control.Selected = hue;
     refMob = ref_;
 }
 public HuePopUpDress(FiddlerControls.Dress ref_, int hue, int l)
 {
     InitializeComponent();
     this.Icon = FiddlerControls.Options.GetFiddlerIcon();
     if ((hue & 0x8000) != 0)
     {
         hue ^= 0x8000;
         HueOnlyGray.Checked = true;
     }
     if (hue >= 0)
         control.Selected = hue - 1;
     refItem = ref_;
     layer = l;
 }