MenuItem.st
changeset 960 fee5a1a50374
parent 798 8a27a879ff23
child 973 cd6b8d08c9c9
equal deleted inserted replaced
959:e9ce2b7f8397 960:fee5a1a50374
   327 !MenuItem methodsFor:'accessing resource'!
   327 !MenuItem methodsFor:'accessing resource'!
   328 
   328 
   329 findGuiResourcesIn:aResourceContainerOrApplication
   329 findGuiResourcesIn:aResourceContainerOrApplication
   330     "setup a resource container
   330     "setup a resource container
   331     "
   331     "
   332     |lblImg|
   332     |lblImg m|
   333 
   333 
   334     self translateLabel ifTrue:[
   334     self translateLabel ifTrue:[
   335         label := ResourceRetriever findResourceLabel: label in: aResourceContainerOrApplication
   335         label := ResourceRetriever findResourceLabel: label in: aResourceContainerOrApplication
   336     ].
   336     ].
   337 
   337 
   338     adornment notNil ifTrue:[
   338     adornment notNil ifTrue:[
   339         (lblImg := adornment labelImage) notNil ifTrue:[   
   339         (lblImg := adornment labelImage) notNil ifTrue:[   
   340             lblImg findGuiResourcesIn:aResourceContainerOrApplication.
   340             lblImg findGuiResourcesIn:aResourceContainerOrApplication.
   341             lblImg labelText notNil ifTrue: [lblImg labelText: label].
   341             lblImg labelText notNil ifTrue: [lblImg labelText: label].
   342         ].   
   342         ].   
   343         adornment submenu notNil ifTrue:[
   343         (m := adornment submenu) notNil ifTrue:[
   344             adornment submenu findGuiResourcesIn:aResourceContainerOrApplication
   344             m := m value.
       
   345             m notNil ifTrue:[
       
   346                 m findGuiResourcesIn:aResourceContainerOrApplication
       
   347             ]
   345         ].
   348         ].
   346     ]
   349     ]
       
   350 
       
   351     "Modified: / 18.6.1998 / 16:54:25 / cg"
   347 ! !
   352 ! !
   348 
   353 
   349 !MenuItem methodsFor:'converting'!
   354 !MenuItem methodsFor:'converting'!
   350 
   355 
   351 fromLiteralArrayEncoding:aLiteralEncodedArray
   356 fromLiteralArrayEncoding:aLiteralEncodedArray
   619 ! !
   624 ! !
   620 
   625 
   621 !MenuItem class methodsFor:'documentation'!
   626 !MenuItem class methodsFor:'documentation'!
   622 
   627 
   623 version
   628 version
   624     ^ '$Header: /cvs/stx/stx/libview2/MenuItem.st,v 1.20 1998-01-30 14:58:31 ca Exp $'
   629     ^ '$Header: /cvs/stx/stx/libview2/MenuItem.st,v 1.21 1998-06-18 14:54:43 cg Exp $'
   625 ! !
   630 ! !