Advertisement
onurunki

Untitled

Aug 15th, 2014
3,236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XPP 0.67 KB | None | 0 0
  1. int mouseMove(int x, int y, int _button, Boolean Ctrl, Boolean Shift)
  2. {
  3. •     int ret;
  4. •     ret = super(x, y, _button, Ctrl, Shift);
  5. •     Return _formSplitterVertical.mouseMove(x,y,_button,ctrl,shift);
  6. }
  7. public int mouseUp(int _x, int _y, int _button, boolean _Ctrl, boolean _Shift)
  8. {
  9. int ret;
  10. • ret = super(_x, _y, _button, _Ctrl, _Shift);
  11. Return _formSplitterVertical.mouseUp(_x, _y, _button, _Ctrl, _Shift);
  12. }
  13.  
  14. int mouseDown(int x, int y, int button, Boolean Ctrl, Boolean Shift)
  15. {int ret;
  16. •     ret = super(x, y, button, Ctrl, Shift);
  17. •     Return _formSplitterVertical.mouseDown(x, y, button, Ctrl, Shift);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement