WindowEvent.st
changeset 5020 f8ba55bc9b95
parent 5000 e0ec909988e9
child 5201 fd4bf9d73cac
equal deleted inserted replaced
5019:3b099af62423 5020:f8ba55bc9b95
   347          for:aView
   347          for:aView
   348          type:#configureX:y:width:height:
   348          type:#configureX:y:width:height:
   349          arguments:(Array with:x with:y with:w with:h)
   349          arguments:(Array with:x with:y with:w with:h)
   350 !
   350 !
   351 
   351 
   352 copyDataEvent:type eventData:data view:aView
   352 copyDataEvent:parameter eventData:data view:aView
   353     "this one is only used with Win32"
   353     "this one is only used with Win32"
   354 
   354 
   355     ^ ClientEvent
   355     ^ ClientEvent
   356          for:aView
   356          for:aView
   357          type:#copyDataEvent:eventData:
   357          type:#copyDataEvent:eventData:
   358          arguments:(Array with:type with:data)
   358          arguments:(Array with:parameter with:data)
   359 !
   359 !
   360 
   360 
   361 coveredBy:coveringSiblingView view:coveredView
   361 coveredBy:coveringSiblingView view:coveredView
   362     ^ (WindowEvent basicNew)
   362     ^ (WindowEvent basicNew)
   363         for:coveredView 
   363         for:coveredView 
  1601 ! !
  1601 ! !
  1602 
  1602 
  1603 !WindowEvent class methodsFor:'documentation'!
  1603 !WindowEvent class methodsFor:'documentation'!
  1604 
  1604 
  1605 version
  1605 version
  1606     ^ '$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.96 2008-07-22 15:30:12 cg Exp $'
  1606     ^ '$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.97 2008-07-23 13:47:03 cg Exp $'
  1607 ! !
  1607 ! !
  1608 
  1608 
  1609 WindowEvent::InputEvent initialize!
  1609 WindowEvent::InputEvent initialize!