UIPainter.st
changeset 491 c3af7854dbe8
parent 490 c0e98d01e2d4
child 495 f356a6636eef
equal deleted inserted replaced
490:c0e98d01e2d4 491:c3af7854dbe8
    19 	poolDictionaries:''
    19 	poolDictionaries:''
    20 	category:'Interface-UIPainter'
    20 	category:'Interface-UIPainter'
    21 !
    21 !
    22 
    22 
    23 SelectionInTreeView subclass:#TreeView
    23 SelectionInTreeView subclass:#TreeView
    24 	instanceVariableNames:'lastDrawnMaster cvsEventsDisabled imageMasterParent
    24 	instanceVariableNames:'lastDrawnMaster cvsEventsDisabled windowSpec'
    25 		imageEmptyParent imageMasterChild windowSpec'
       
    26 	classVariableNames:'Images'
    25 	classVariableNames:'Images'
    27 	poolDictionaries:''
    26 	poolDictionaries:''
    28 	privateIn:UIPainter
    27 	privateIn:UIPainter
    29 !
    28 !
    30 
    29 
  2698 "
  2697 "
  2699 
  2698 
  2700 
  2699 
  2701 ! !
  2700 ! !
  2702 
  2701 
       
  2702 !UIPainter::TreeView class methodsFor:'startup / release'!
       
  2703 
       
  2704 preSnapshot
       
  2705 
       
  2706     Images removeAll
       
  2707 ! !
       
  2708 
  2703 !UIPainter::TreeView methodsFor:'accessing'!
  2709 !UIPainter::TreeView methodsFor:'accessing'!
  2704 
  2710 
  2705 canvas
  2711 canvas
  2706     "returns the canvas( UIPainter )
  2712     "returns the canvas( UIPainter )
  2707     "
  2713     "
  3107 
  3113 
  3108 ! !
  3114 ! !
  3109 
  3115 
  3110 !UIPainter::TreeView methodsFor:'initialization'!
  3116 !UIPainter::TreeView methodsFor:'initialization'!
  3111 
  3117 
  3112 destroy
       
  3113     "destroy images"
       
  3114 
       
  3115     super destroy.
       
  3116 
       
  3117     Images removeAll
       
  3118 !
       
  3119 
       
  3120 initialize
  3118 initialize
  3121     "initialization; set multiple select and model
  3119     "initialization; set multiple select and model
  3122     "
  3120     "
  3123     Images := Images ? IdentityDictionary new.
  3121     Images := Images ? IdentityDictionary new.
  3124     super initialize.
  3122     super initialize.