ArrowButton.st
changeset 2137 2642e627bb2a
parent 2077 376bcf52c98b
child 2250 59f867f90887
equal deleted inserted replaced
2136:eb816448daec 2137:2642e627bb2a
   231 defaultDownArrowButtonForm
   231 defaultDownArrowButtonForm
   232     "return the default form used for the scrollDown Button 
   232     "return the default form used for the scrollDown Button 
   233      (if no styleSheet value is defined, and no form can be constructed)"
   233      (if no styleSheet value is defined, and no form can be constructed)"
   234 
   234 
   235     <resource: #image>
   235     <resource: #image>
   236 
   236     <resource: #style (#'name')>
   237     StyleSheet name == #win95 ifTrue:[
   237 
       
   238     (StyleSheet name startsWith:#win9) ifTrue:[
   238         ^ Form 
   239         ^ Form 
   239             width:11 height:11 
   240             width:11 height:11 
   240             fromArray:#[
   241             fromArray:#[
   241                          2r00000000 2r00000000
   242                          2r00000000 2r00000000
   242                          2r00000000 2r00000000
   243                          2r00000000 2r00000000
   280 defaultLeftArrowButtonForm
   281 defaultLeftArrowButtonForm
   281     "return the default form used for the scrollLeft Button
   282     "return the default form used for the scrollLeft Button
   282      (if no styleSheet value is defined, and no form can be constructed)"
   283      (if no styleSheet value is defined, and no form can be constructed)"
   283 
   284 
   284     <resource: #image>
   285     <resource: #image>
   285 
   286     <resource: #style (#'name')>
   286     StyleSheet name == #win95 ifTrue:[
   287 
       
   288     (StyleSheet name startsWith:#win9) ifTrue:[
   287         ^ Form 
   289         ^ Form 
   288             width:11 height:11 
   290             width:11 height:11 
   289             fromArray:#[
   291             fromArray:#[
   290                          2r00000000 2r00000000
   292                          2r00000000 2r00000000
   291                          2r00000000 2r00000000
   293                          2r00000000 2r00000000
   329 defaultRightArrowButtonForm
   331 defaultRightArrowButtonForm
   330     "return the default form used for the scrollRight Button 
   332     "return the default form used for the scrollRight Button 
   331      (if no styleSheet value is defined, and no form can be constructed)"
   333      (if no styleSheet value is defined, and no form can be constructed)"
   332 
   334 
   333     <resource: #image>
   335     <resource: #image>
   334 
   336     <resource: #style (#'name')>
   335     StyleSheet name == #win95 ifTrue:[
   337 
       
   338     (StyleSheet name startsWith:#win9) ifTrue:[
   336         ^ Form 
   339         ^ Form 
   337             width:11 height:11 
   340             width:11 height:11 
   338             fromArray:#[
   341             fromArray:#[
   339                          2r00000000 2r00000000
   342                          2r00000000 2r00000000
   340                          2r00000000 2r00000000
   343                          2r00000000 2r00000000
   377 defaultUpArrowButtonForm
   380 defaultUpArrowButtonForm
   378     "return the default form used for the scrollUp Button 
   381     "return the default form used for the scrollUp Button 
   379      (if no styleSheet value is defined, and no form can be constructed)"
   382      (if no styleSheet value is defined, and no form can be constructed)"
   380 
   383 
   381     <resource: #image>
   384     <resource: #image>
   382 
   385     <resource: #style (#'name')>
   383     StyleSheet name == #win95 ifTrue:[
   386 
       
   387     (StyleSheet name startsWith:#win9) ifTrue:[
   384         ^ Form 
   388         ^ Form 
   385             width:11 height:11 
   389             width:11 height:11 
   386             fromArray:#[
   390             fromArray:#[
   387                          2r00000000 2r00000000
   391                          2r00000000 2r00000000
   388                          2r00000000 2r00000000
   392                          2r00000000 2r00000000
   980 ! !
   984 ! !
   981 
   985 
   982 !ArrowButton class methodsFor:'documentation'!
   986 !ArrowButton class methodsFor:'documentation'!
   983 
   987 
   984 version
   988 version
   985     ^ '$Header: /cvs/stx/stx/libwidg/ArrowButton.st,v 1.58 1999-12-09 11:16:45 cg Exp $'
   989     ^ '$Header: /cvs/stx/stx/libwidg/ArrowButton.st,v 1.59 2000-02-11 14:57:10 cg Exp $'
   986 ! !
   990 ! !