ProjectBrowser.st
changeset 1235 2eb4b86bd0a6
parent 1234 97ec3bf7d991
child 1236 a7dbf8ace3f4
equal deleted inserted replaced
1234:97ec3bf7d991 1235:2eb4b86bd0a6
   587        #(#WindowSpec
   587        #(#WindowSpec
   588           #label: 'NewApplication'
   588           #label: 'NewApplication'
   589           #name: 'NewApplication'
   589           #name: 'NewApplication'
   590           #min: #(#Point 10 10)
   590           #min: #(#Point 10 10)
   591           #max: #(#Point 1280 1024)
   591           #max: #(#Point 1280 1024)
   592           #bounds: #(#Rectangle 420 49 720 349)
   592           #bounds: #(#Rectangle 3 77 303 377)
   593         )
   593         )
   594         #component: 
   594         #component: 
   595        #(#SpecCollection
   595        #(#SpecCollection
   596           #collection: #(
   596           #collection: #(
   597            #(#DataSetSpec
   597            #(#DataSetSpec
  2271      DataSetBuilder new openOnClass:ProjectBrowser andSelector:#classTableColumns
  2271      DataSetBuilder new openOnClass:ProjectBrowser andSelector:#classTableColumns
  2272     "
  2272     "
  2273 
  2273 
  2274     <resource: #tableColumns>
  2274     <resource: #tableColumns>
  2275 
  2275 
  2276 
  2276     ^#(
  2277     ^ #(
  2277       #(#DataSetColumnSpec
  2278         #(#DataSetColumnSpec
  2278          #label: 'Class'
  2279            #label: 'Class'
  2279          #id: 'classColumn'
  2280            #id: 'classColumn'
  2280          #labelAlignment: #left
  2281            #labelAlignment: #left
  2281          #model: #classNameFromClassInfo:
  2282            #model: #classNameFromClassInfo:
       
  2283        )
  2282        )
  2284         #(#DataSetColumnSpec
  2283       #(#DataSetColumnSpec
  2285            #label: 'Included'
  2284          #label: 'Included'
  2286            #id: 'inclusion'
  2285          #id: 'inclusion'
  2287            #columnAlignment: #center
  2286          #width: 150
  2288            #width: 100
  2287          #editorType: #ComboList
  2289            #editorType: #ComboList
  2288          #choices: #listOfPossibleConditions:
  2290            #model: #classIncludeConditionFromClassInfo:
  2289          #model: #classIncludeConditionFromClassInfo:
       
  2290          #writeSelector: #classIncludeConditionFromClassInfo:put:
  2291        )
  2291        )
  2292         #(#DataSetColumnSpec
  2292       #(#DataSetColumnSpec
  2293            #label: 'Filename'
  2293          #label: 'Filename'
  2294            #labelAlignment: #left
  2294          #labelAlignment: #left
  2295            #minWidth: 200
  2295          #minWidth: 200
  2296            #model: #classFilenameFromClassInfo:
  2296          #model: #classFilenameFromClassInfo:
  2297        )
  2297        )
  2298      )
  2298       )
       
  2299     
  2299 !
  2300 !
  2300 
  2301 
  2301 patchesTableColumns
  2302 patchesTableColumns
  2302     "This resource specification was automatically generated
  2303     "This resource specification was automatically generated
  2303      by the DataSetBuilder of ST/X."
  2304      by the DataSetBuilder of ST/X."
  2829     ^ holder.
  2830     ^ holder.
  2830 
  2831 
  2831     "Created: / 23.3.1999 / 14:18:05 / cg"
  2832     "Created: / 23.3.1999 / 14:18:05 / cg"
  2832 !
  2833 !
  2833 
  2834 
       
  2835 listOfPossibleConditions:aRow
       
  2836     ^ #( always never autoload '-' unix win32 vms macos)
       
  2837 
       
  2838 
       
  2839 !
       
  2840 
  2834 listOfRequiredClassesInPrerequisites
  2841 listOfRequiredClassesInPrerequisites
  2835     "automatically generated by UIPainter ..."
  2842     "automatically generated by UIPainter ..."
  2836 
  2843 
  2837     |holder|
  2844     |holder|
  2838 
  2845 
  4011     ^ cInfo classFileName
  4018     ^ cInfo classFileName
  4012 !
  4019 !
  4013 
  4020 
  4014 classIncludeConditionFromClassInfo:cInfo
  4021 classIncludeConditionFromClassInfo:cInfo
  4015     ^ cInfo conditionForInclusion
  4022     ^ cInfo conditionForInclusion
       
  4023 !
       
  4024 
       
  4025 classIncludeConditionFromClassInfo:cInfo put:aSymbol
       
  4026     cInfo conditionForInclusion:aSymbol
  4016 !
  4027 !
  4017 
  4028 
  4018 classNameFromClassInfo:cInfo
  4029 classNameFromClassInfo:cInfo
  4019     ^ cInfo className
  4030     ^ cInfo className
  4020 !
  4031 !