Tools_VariableList.st
changeset 9461 bc5bcb61a654
parent 6721 c49f5a3cbca2
child 10255 3dce3562365a
equal deleted inserted replaced
9460:1fc7a8139f74 9461:bc5bcb61a654
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libtool' }"
    12 "{ Package: 'stx:libtool' }"
    14 
    13 
    15 "{ NameSpace: Tools }"
    14 "{ NameSpace: Tools }"
    16 
    15 
    17 BrowserList subclass:#VariableList
    16 BrowserList subclass:#VariableList
    54 
    53 
    55     <resource: #canvas>
    54     <resource: #canvas>
    56 
    55 
    57     ^ 
    56     ^ 
    58      #(#FullSpec
    57      #(#FullSpec
    59 	#name: #windowSpec
    58         #name: #windowSpec
    60 	#window: 
    59         #window: 
    61        #(#WindowSpec
    60        #(#WindowSpec
    62 	  #label: 'VariableList'
    61           #label: 'VariableList'
    63 	  #name: 'VariableList'
    62           #name: 'VariableList'
    64 	  #min: #(#Point 0 0)
    63           #min: #(#Point 0 0)
    65 	  #max: #(#Point 1024 721)
    64           #bounds: #(#Rectangle 16 46 316 346)
    66 	  #bounds: #(#Rectangle 16 46 316 346)
    65         )
    67 	)
    66         #component: 
    68 	#component: 
       
    69        #(#SpecCollection
    67        #(#SpecCollection
    70 	  #collection: #(
    68           #collection: #(
    71 	   #(#SequenceViewSpec
    69            #(#SequenceViewSpec
    72 	      #name: 'List'
    70               #name: 'List'
    73 	      #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
    71               #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
    74 	      #tabable: true
    72               #tabable: true
    75 	      #model: #selectedVariables
    73               #model: #selectedVariables
    76 	      #menu: #menuHolder
    74               #menu: #menuHolder
    77 	      #hasHorizontalScrollBar: true
    75               #hasHorizontalScrollBar: true
    78 	      #hasVerticalScrollBar: true
    76               #hasVerticalScrollBar: true
    79 	      #miniScrollerHorizontal: true
    77               #miniScrollerHorizontal: true
    80 	      #isMultiSelect: true
    78               #isMultiSelect: true
    81 	      #valueChangeSelector: #selectionChangedByClick
    79               #valueChangeSelector: #selectionChangedByClick
    82 	      #useIndex: false
    80               #useIndex: false
    83 	      #sequenceList: #variableList
    81               #sequenceList: #variableList
    84 	      #doubleClickChannel: #doubleClickChannel
    82               #doubleClickChannel: #doubleClickChannel
    85 	    )
    83             )
    86 	   )
    84            )
    87          
    85          
    88 	)
    86         )
    89       )
    87       )
    90 ! !
    88 ! !
    91 
    89 
    92 !VariableList class methodsFor:'plugIn spec'!
    90 !VariableList class methodsFor:'plugIn spec'!
    93 
    91 
   538 ! !
   536 ! !
   539 
   537 
   540 !VariableList class methodsFor:'documentation'!
   538 !VariableList class methodsFor:'documentation'!
   541 
   539 
   542 version
   540 version
   543     ^ '$Header: /cvs/stx/stx/libtool/Attic/Tools_VariableList.st,v 1.4 2006-03-20 11:26:04 cg Exp $'
   541     ^ '$Header: /cvs/stx/stx/libtool/Attic/Tools_VariableList.st,v 1.5 2010-05-07 12:27:20 cg Exp $'
   544 ! !
   542 !
       
   543 
       
   544 version_CVS
       
   545     ^ '$Header: /cvs/stx/stx/libtool/Attic/Tools_VariableList.st,v 1.5 2010-05-07 12:27:20 cg Exp $'
       
   546 ! !