UIObjectView.st
changeset 1746 bb4f759cf456
parent 1745 3e7ce9e46a15
child 1827 691d1471cd3e
equal deleted inserted replaced
1745:3e7ce9e46a15 1746:bb4f759cf456
   453 ! !
   453 ! !
   454 
   454 
   455 !UIObjectView methodsFor:'blocked'!
   455 !UIObjectView methodsFor:'blocked'!
   456 
   456 
   457 addObject:anObject
   457 addObject:anObject
   458     "add the argument, anObject to the contents - with redraw
   458     "add the argument, anObject to the contents - with redraw"
   459     "
   459 
   460     self halt:'should not be invoked'
   460     self shouldNotImplement
   461 
       
   462 !
   461 !
   463 
   462 
   464 addObjectWithoutRedraw:anObject
   463 addObjectWithoutRedraw:anObject
   465     "add the argument, anObject to the contents - with redraw
   464     "add the argument, anObject to the contents - with redraw"
   466     "
   465 
   467     self halt:'should not be invoked'
   466     self shouldNotImplement
   468 
       
   469 !
       
   470 
       
   471 startCreate:aPoint
       
   472     self setDefaultActions.
       
   473     self halt:'should not be invoked'
       
   474 ! !
   467 ! !
   475 
   468 
   476 !UIObjectView methodsFor:'event handling'!
   469 !UIObjectView methodsFor:'event handling'!
   477 
   470 
   478 elementChangedSize:aView
   471 elementChangedSize:aView
   647     windowGroup addPostEventHook:(PostEventHandler new onView:self).
   640     windowGroup addPostEventHook:(PostEventHandler new onView:self).
   648 !
   641 !
   649 
   642 
   650 remap
   643 remap
   651     "make the view visible on the screen and in case of a none empty
   644     "make the view visible on the screen and in case of a none empty
   652      selection the selection will be shown.
   645      selection the selection will be shown"
   653     "
   646 
   654     super remap.
   647     self shouldNotImplement
   655     self halt:'should not be invoked'
       
   656 
       
   657     "Created: / 20.7.1998 / 18:08:48 / cg"
       
   658 ! !
   648 ! !
   659 
   649 
   660 !UIObjectView methodsFor:'misc'!
   650 !UIObjectView methodsFor:'misc'!
   661 
   651 
   662 invertOutlineOf:something
   652 invertOutlineOf:something
  1642 	v geometryLayout:(aLayout copy)
  1632 	v geometryLayout:(aLayout copy)
  1643     ].    
  1633     ].    
  1644 
  1634 
  1645 !
  1635 !
  1646 
  1636 
  1647 setMaxExtent
       
  1648     "set the topViews maxExtent to its current extent
       
  1649     "
       
  1650     self halt:'should not be invoked'
       
  1651 
       
  1652     "Modified: / 27.10.1997 / 03:26:16 / cg"
       
  1653 !
       
  1654 
       
  1655 setMinExtent
       
  1656     "set the topViews minExtent to its current extent
       
  1657     "
       
  1658     self halt:'should not be invoked'
       
  1659 
       
  1660     "Created: / 27.10.1997 / 03:24:02 / cg"
       
  1661     "Modified: / 27.10.1997 / 03:26:34 / cg"
       
  1662 !
       
  1663 
       
  1664 setToDefaultExtent
  1637 setToDefaultExtent
  1665     "change extent of all selected views to their default extent
  1638     "change extent of all selected views to their default extent
  1666     "
  1639     "
  1667     self transaction:#defaultExtent dimensionDo:[:v|
  1640     self transaction:#defaultExtent dimensionDo:[:v|
  1668 	self resize:v corner:(v computeOrigin + (v preferredExtent)).
  1641 	self resize:v corner:(v computeOrigin + (v preferredExtent)).