Example #1
0
 // Keyboard Hooks
 public void KeyUpDown(NoForms.Common.Keys key, NoForms.Common.ButtonState bs)
 {
     foreach (IComponent inc in components)
     {
         inc.KeyUpDown(key, bs);
     }
 }
Example #2
0
 // Mouse Hooks
 public void MouseUpDown(Point location, MouseButton mb, NoForms.Common.ButtonState bs, bool inComponent, bool amClipped)
 {
     foreach (IComponent c in components)
     {
         if (c.visible)
         {
             c.MouseUpDown(location, mb, bs, c.DisplayRectangle.Contains(location),
                           amClipped ? true : !DisplayRectangle.Contains(location));
         }
     }
 }
Example #3
0
 public virtual void KeyUpDown(NoForms.Common.Keys key, NoForms.Common.ButtonState bs)
 {
 }
Example #4
0
 public virtual void MouseUpDown(Point location, MouseButton mb, NoForms.Common.ButtonState mbs, bool inComponent, bool amClipped)
 {
 }