Tools_VariableList.st
changeset 5592 d9730a8d7c52
parent 5591 273637686948
child 5909 95cd2d9822b3
equal deleted inserted replaced
5591:273637686948 5592:d9730a8d7c52
     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 
    12 
    13 "{ Package: 'stx:__NoProject__' }"
    13 "{ Package: 'stx:libtool' }"
    14 
    14 
    15 "{ NameSpace: Tools }"
    15 "{ NameSpace: Tools }"
    16 
    16 
    17 BrowserList subclass:#VariableList
    17 BrowserList subclass:#VariableList
    18 	instanceVariableNames:'variableList classHolder showClassVars sortVariablesByName'
    18 	instanceVariableNames:'variableList classHolder showClassVars sortVariablesByName'
    54 
    54 
    55     <resource: #canvas>
    55     <resource: #canvas>
    56 
    56 
    57     ^ 
    57     ^ 
    58      #(#FullSpec
    58      #(#FullSpec
    59         #name: #windowSpec
    59 	#name: #windowSpec
    60         #window: 
    60 	#window: 
    61        #(#WindowSpec
    61        #(#WindowSpec
    62           #label: 'VariableList'
    62 	  #label: 'VariableList'
    63           #name: 'VariableList'
    63 	  #name: 'VariableList'
    64           #min: #(#Point 0 0)
    64 	  #min: #(#Point 0 0)
    65           #max: #(#Point 1024 721)
    65 	  #max: #(#Point 1024 721)
    66           #bounds: #(#Rectangle 16 46 316 346)
    66 	  #bounds: #(#Rectangle 16 46 316 346)
    67         )
    67 	)
    68         #component: 
    68 	#component: 
    69        #(#SpecCollection
    69        #(#SpecCollection
    70           #collection: #(
    70 	  #collection: #(
    71            #(#SequenceViewSpec
    71 	   #(#SequenceViewSpec
    72               #name: 'List'
    72 	      #name: 'List'
    73               #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
    73 	      #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
    74               #tabable: true
    74 	      #tabable: true
    75               #model: #selectedVariables
    75 	      #model: #selectedVariables
    76               #menu: #menuHolder
    76 	      #menu: #menuHolder
    77               #hasHorizontalScrollBar: true
    77 	      #hasHorizontalScrollBar: true
    78               #hasVerticalScrollBar: true
    78 	      #hasVerticalScrollBar: true
    79               #miniScrollerHorizontal: true
    79 	      #miniScrollerHorizontal: true
    80               #isMultiSelect: true
    80 	      #isMultiSelect: true
    81               #valueChangeSelector: #selectionChangedByClick
    81 	      #valueChangeSelector: #selectionChangedByClick
    82               #useIndex: false
    82 	      #useIndex: false
    83               #sequenceList: #variableList
    83 	      #sequenceList: #variableList
    84               #doubleClickChannel: #doubleClickChannel
    84 	      #doubleClickChannel: #doubleClickChannel
    85             )
    85 	    )
    86            )
    86 	   )
    87          
    87          
    88         )
    88 	)
    89       )
    89       )
    90 ! !
    90 ! !
    91 
    91 
    92 !VariableList class methodsFor:'plugIn spec'!
    92 !VariableList class methodsFor:'plugIn spec'!
    93 
    93 
   535 ! !
   535 ! !
   536 
   536 
   537 !VariableList class methodsFor:'documentation'!
   537 !VariableList class methodsFor:'documentation'!
   538 
   538 
   539 version
   539 version
   540     ^ '$Header: /cvs/stx/stx/libtool/Attic/Tools_VariableList.st,v 1.1 2004-02-26 18:56:20 cg Exp $'
   540     ^ '$Header: /cvs/stx/stx/libtool/Attic/Tools_VariableList.st,v 1.2 2004-02-26 19:03:55 cg Exp $'
   541 ! !
   541 ! !