MenuView.st
changeset 1870 9bce9ea89db3
parent 1864 82ffe084c0db
child 1919 7752e8980de5
equal deleted inserted replaced
1869:b435e03cf803 1870:9bce9ea89db3
   323                        #'menu.separatingLineLevel' #'menu.separatingLineInset'
   323                        #'menu.separatingLineLevel' #'menu.separatingLineInset'
   324                        #'menu.disabledForegroundColor' 
   324                        #'menu.disabledForegroundColor' 
   325                        #'menu.checkColor' #'menu.checkOnImage' #'menu.checkOffImage'
   325                        #'menu.checkColor' #'menu.checkOnImage' #'menu.checkOffImage'
   326                        #'menu.font' #'menu.showAccelerators')>
   326                        #'menu.font' #'menu.showAccelerators')>
   327 
   327 
   328     DefaultViewBackground := StyleSheet colorAt:'menu.viewBackground'.
   328     DefaultViewBackground := StyleSheet colorAt:#'menu.viewBackground'.
   329     DefaultForegroundColor := StyleSheet colorAt:'menu.foregroundColor'.
   329     DefaultForegroundColor := StyleSheet colorAt:#'menu.foregroundColor'.
   330     DefaultBackgroundColor := StyleSheet colorAt:'menu.backgroundColor'.
   330     DefaultBackgroundColor := StyleSheet colorAt:#'menu.backgroundColor'.
   331     DefaultShadowColor := StyleSheet colorAt:'menu.shadowColor'.
   331     DefaultShadowColor := StyleSheet colorAt:#'menu.shadowColor'.
   332     DefaultLightColor := StyleSheet colorAt:'menu.lightColor'.
   332     DefaultLightColor := StyleSheet colorAt:#'menu.lightColor'.
   333     DefaultHilightForegroundColor := StyleSheet colorAt:'menu.hilightForegroundColor'.
   333     DefaultHilightForegroundColor := StyleSheet colorAt:#'menu.hilightForegroundColor'.
   334     DefaultHilightBackgroundColor := StyleSheet colorAt:'menu.hilightBackgroundColor'.
   334     DefaultHilightBackgroundColor := StyleSheet colorAt:#'menu.hilightBackgroundColor'.
   335     DefaultHilightFrameColor := StyleSheet colorAt:'menu.hilightFrameColor' 
   335     DefaultHilightFrameColor := StyleSheet colorAt:#'menu.hilightFrameColor' 
   336                                 default:(StyleSheet colorAt:'selection.hilightFrameColor').
   336                                 default:(StyleSheet colorAt:#'selection.hilightFrameColor').
   337     DefaultHilightLevel := StyleSheet at:'menu.hilightLevel'.
   337     DefaultHilightLevel := StyleSheet at:#'menu.hilightLevel'.
   338     DefaultHilightStyle := StyleSheet at:'menu.hilightStyle'.
   338     DefaultHilightStyle := StyleSheet at:#'menu.hilightStyle'.
   339     DefaultLineLevel := StyleSheet at:'menu.separatingLineLevel'.
   339     DefaultLineLevel := StyleSheet at:#'menu.separatingLineLevel'.
   340     DefaultLineInset := StyleSheet at:'menu.separatingLineInset'.
   340     DefaultLineInset := StyleSheet at:#'menu.separatingLineInset'.
   341     DefaultDisabledForegroundColor := StyleSheet colorAt:'menu.disabledForegroundColor' default:Color darkGray.
   341     DefaultDisabledForegroundColor := StyleSheet colorAt:#'menu.disabledForegroundColor' default:Color darkGray.
   342     DefaultCheckColor := StyleSheet colorAt:'menu.checkColor'.
   342     DefaultCheckColor := StyleSheet colorAt:#'menu.checkColor'.
   343     DefaultCheckOnImage := StyleSheet at:'menu.checkOnImage'.
   343     DefaultCheckOnImage := StyleSheet at:#'menu.checkOnImage'.
   344     DefaultCheckOffImage := StyleSheet at:'menu.checkOffImage'.
   344     DefaultCheckOffImage := StyleSheet at:#'menu.checkOffImage'.
   345     DefaultFont := StyleSheet fontAt:'menu.font'.
   345     DefaultFont := StyleSheet fontAt:#'menu.font'.
   346     ShowAcceleratorKeys := StyleSheet at:'menu.showAccelerators' default:true.
   346     ShowAcceleratorKeys := StyleSheet at:#'menu.showAccelerators' default:true.
   347 
   347 
   348     "
   348     "
   349      self updateStyleCache
   349      self updateStyleCache
   350     "
   350     "
   351 
   351 
  2718 ! !
  2718 ! !
  2719 
  2719 
  2720 !MenuView class methodsFor:'documentation'!
  2720 !MenuView class methodsFor:'documentation'!
  2721 
  2721 
  2722 version
  2722 version
  2723     ^ '$Header: /cvs/stx/stx/libwidg/MenuView.st,v 1.120 1999-04-24 12:43:55 cg Exp $'
  2723     ^ '$Header: /cvs/stx/stx/libwidg/MenuView.st,v 1.121 1999-04-24 14:37:19 cg Exp $'
  2724 ! !
  2724 ! !