UIObjectView.st
changeset 156 b332d7117c40
parent 153 4be1d6d20a35
child 175 0b0b4d99e3e7
equal deleted inserted replaced
155:575239b7ad0b 156:b332d7117c40
       
     1 "
       
     2  COPYRIGHT (c) 1995 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
       
    13 
       
    14 
     1 ObjectView subclass:#UIObjectView
    15 ObjectView subclass:#UIObjectView
     2 	instanceVariableNames:'saveSelection inputView enableChannel undoHistory copiedExtent
    16 	instanceVariableNames:'saveSelection inputView enableChannel undoHistory copiedExtent
     3 		copiedLayout actionData createClass clipChildren
    17 		copiedLayout actionData createClass clipChildren
     4 		selectionHiddenLevel setOfSuperViewsSizeChanged'
    18 		selectionHiddenLevel setOfSuperViewsSizeChanged'
     5 	classVariableNames:''
    19 	classVariableNames:''
    21 	privateIn:UIObjectView::UndoHistory
    35 	privateIn:UIObjectView::UndoHistory
    22 !
    36 !
    23 
    37 
    24 !UIObjectView class methodsFor:'documentation'!
    38 !UIObjectView class methodsFor:'documentation'!
    25 
    39 
       
    40 copyright
       
    41 "
       
    42  COPYRIGHT (c) 1995 by eXept Software AG
       
    43               All Rights Reserved
       
    44 
       
    45  This software is furnished under a license and may be used
       
    46  only in accordance with the terms of that license and with the
       
    47  inclusion of the above copyright notice.   This software may not
       
    48  be provided or otherwise made available to, or used by, any
       
    49  other person.  No title to or ownership of the software is
       
    50  hereby transferred.
       
    51 "
       
    52 
       
    53 
       
    54 !
       
    55 
    26 documentation
    56 documentation
    27 "
    57 "
    28     buildIn view used by the UIPainter; it provides all services for creating, deleting
    58     buildIn view used by the UIPainter; it provides all services for creating, deleting
    29     moving and changing layouts of painted components on a canvas.
    59     moving and changing layouts of painted components on a canvas.
    30 
    60 
    31     [see also:]
    61     [see also:]
    32         UIBuilder
    62         UIBuilder
    33         UIPainterView
    63         UIPainterView
       
    64 
       
    65     [author:]
       
    66         Claus Atzkern
    34 "
    67 "
    35 
    68 
    36 ! !
    69 ! !
    37 
    70 
    38 !UIObjectView class methodsFor:'conversion'!
    71 !UIObjectView class methodsFor:'conversion'!
  2353     undo block will be performed.
  2386     undo block will be performed.
  2354 
  2387 
  2355     [see also:]
  2388     [see also:]
  2356         UIObjectView
  2389         UIObjectView
  2357         UIPainterView
  2390         UIPainterView
       
  2391 
       
  2392     [author:]
       
  2393         Claus Atzkern
  2358 "
  2394 "
  2359 
  2395 
  2360 
  2396 
  2361 ! !
  2397 ! !
  2362 
  2398 
  2555     represents one undo record, keeping the associated type and printable text
  2591     represents one undo record, keeping the associated type and printable text
  2556     and the undo action performed on an undo request
  2592     and the undo action performed on an undo request
  2557 
  2593 
  2558     [see also:]
  2594     [see also:]
  2559         UndoHistory
  2595         UndoHistory
       
  2596 
       
  2597     [author:]
       
  2598         Claus Atzkern
  2560 "
  2599 "
  2561 
  2600 
  2562 ! !
  2601 ! !
  2563 
  2602 
  2564 !UIObjectView::UndoHistory::Transaction class methodsFor:'instance creation'!
  2603 !UIObjectView::UndoHistory::Transaction class methodsFor:'instance creation'!