PopUpMenu.st
changeset 1442 7dfbc21dfdc6
parent 1408 61d42fa7dafd
child 1505 66e010d679a9
equal deleted inserted replaced
1441:fdb91f9d5360 1442:7dfbc21dfdc6
  1271 !
  1271 !
  1272 
  1272 
  1273 regainControl
  1273 regainControl
  1274     device ungrabPointer.
  1274     device ungrabPointer.
  1275     device ungrabKeyboard.
  1275     device ungrabKeyboard.
  1276     device grabPointerInView:self.
  1276     shown ifTrue:[
  1277     device grabKeyboardInView:self.
  1277         device grabPointerInView:self.
  1278 
  1278         device grabKeyboardInView:self.
  1279     "Modified: 20.11.1997 / 00:32:32 / cg"
  1279     ].
       
  1280 
       
  1281     "Modified: / 20.11.1997 / 00:32:32 / cg"
       
  1282     "Modified: / 2.2.1998 / 23:52:28 / stefan"
  1280 ! !
  1283 ! !
  1281 
  1284 
  1282 !PopUpMenu methodsFor:'private accessing'!
  1285 !PopUpMenu methodsFor:'private accessing'!
  1283 
  1286 
  1284 menu:aMenuView
  1287 menu:aMenuView
  1340 ! !
  1343 ! !
  1341 
  1344 
  1342 !PopUpMenu class methodsFor:'documentation'!
  1345 !PopUpMenu class methodsFor:'documentation'!
  1343 
  1346 
  1344 version
  1347 version
  1345     ^ '$Header: /cvs/stx/stx/libwidg/PopUpMenu.st,v 1.70 1997-12-08 17:30:28 cg Exp $'
  1348     ^ '$Header: /cvs/stx/stx/libwidg/PopUpMenu.st,v 1.71 1998-02-02 23:46:38 stefan Exp $'
  1346 ! !
  1349 ! !