UIObjectView.st
changeset 52 40a98a1507b4
parent 51 01d0c9394944
child 54 d0b5a33e6df0
equal deleted inserted replaced
51:01d0c9394944 52:40a98a1507b4
     1 ObjectView subclass:#UIObjectView
     1 ObjectView subclass:#UIObjectView
     2         instanceVariableNames:'inputView testMode undoHistory copiedExtent resizedObject
     2 	instanceVariableNames:'inputView testMode undoHistory copiedExtent resizedObject
     3                 resizeSelector createInWidget createFrame createdObject
     3 		resizeSelector createInWidget createFrame createdObject
     4                 createClass clipChildren'
     4 		createClass clipChildren'
     5         classVariableNames:''
     5 	classVariableNames:''
     6         poolDictionaries:''
     6 	poolDictionaries:''
     7         category:'Interface-UIPainter'
     7 	category:'Interface-UIPainter'
     8 !
     8 !
     9 
     9 
    10 Object subclass:#UndoHistory
    10 Object subclass:#UndoHistory
    11         instanceVariableNames:'history transaction enabled modifiedAction'
    11 	instanceVariableNames:'history transaction enabled modifiedAction'
    12         classVariableNames:''
    12 	classVariableNames:''
    13         poolDictionaries:''
    13 	poolDictionaries:''
    14         privateIn:UIObjectView
    14 	privateIn:UIObjectView
    15 !
    15 !
    16 
    16 
    17 
    17 
    18 !UIObjectView class methodsFor:'defaults'!
    18 !UIObjectView class methodsFor:'defaults'!
    19 
    19 
  1566     ^ 50
  1566     ^ 50
  1567 
  1567 
  1568 
  1568 
  1569 ! !
  1569 ! !
  1570 
  1570 
  1571 !UIObjectView::UndoHistory class methodsFor:'documentation'!
       
  1572 
       
  1573 version
       
  1574     ^ '$Header$'
       
  1575 ! !
       
  1576 
       
  1577 !UIObjectView::UndoHistory class methodsFor:'instance creation'!
  1571 !UIObjectView::UndoHistory class methodsFor:'instance creation'!
  1578 
  1572 
  1579 new
  1573 new
  1580     ^ self basicNew initialize
  1574     ^ self basicNew initialize
  1581 
  1575 
  1769 !UIObjectView class methodsFor:'documentation'!
  1763 !UIObjectView class methodsFor:'documentation'!
  1770 
  1764 
  1771 version
  1765 version
  1772     ^ '$Header$'
  1766     ^ '$Header$'
  1773 ! !
  1767 ! !
  1774