GradientBackground.st
author Claus Gittinger <cg@exept.de>
Mon, 07 Dec 2015 13:45:35 +0100
changeset 7078 8496a1fff589
parent 6966 37711d94a0c0
child 7359 dfee1b97dc3b
permissions -rw-r--r--
#DOCUMENTATION class: GradientBackground comment/format in: #examples
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5461
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2009 by eXept Software AG
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libview' }"
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
6769
5421316e7200 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6202
diff changeset
    14
"{ NameSpace: Smalltalk }"
5421316e7200 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6202
diff changeset
    15
5461
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
AbstractBackground subclass:#GradientBackground
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    17
	instanceVariableNames:'colors direction cachedForm usedLength'
5461
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Graphics-Support'
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!GradientBackground class methodsFor:'documentation'!
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
copyright
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
"
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
 COPYRIGHT (c) 2009 by eXept Software AG
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
              All Rights Reserved
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 This software is furnished under a license and may be used
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 only in accordance with the terms of that license and with the
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 be provided or otherwise made available to, or used by, any
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 other person.  No title to or ownership of the software is
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 hereby transferred.
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
"
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
    37
!
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
    38
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
    39
examples
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
    40
"
7078
8496a1fff589 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 6966
diff changeset
    41
  demonstrates the various options, which control gradient the effect:
6953
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
    42
                                                                    [exBegin]
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    43
    |bg t c1 c2 c3 v1 v2 v3 v4 v5 v6 v7 v8 l1 l2 l3 l4 l5 l6 l7 l8|
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    44
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    45
    c1 := Color yellow.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    46
    c2 := Color red.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    47
    c3 := Color blue.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    48
    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    49
    t := TopView new.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    50
    t width:800.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    51
    t maxExtent:800@Display height.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    52
    t minExtent:800@50.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    53
    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    54
    l1 := Label origin:0@0   extent:100@30 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    55
    l2 := Label origin:100@0 extent:100@30 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    56
    l3 := Label origin:200@0 extent:100@30 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    57
    l4 := Label origin:300@0 extent:100@30 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    58
    l5 := Label origin:400@0 extent:100@30 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    59
    l6 := Label origin:500@0 extent:100@30 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    60
    l7 := Label origin:600@0 extent:100@30 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    61
    l8 := Label origin:700@0 extent:100@30 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    62
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    63
    v1 := View origin:0@30 extent:100@1.0 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    64
    v2 := View origin:100@30 extent:100@1.0 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    65
    v3 := View origin:200@30 extent:100@1.0 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    66
    v4 := View origin:300@30 extent:100@1.0 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    67
    v5 := View origin:400@30 extent:100@1.0 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    68
    v6 := View origin:500@30 extent:100@1.0 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    69
    v7 := View origin:600@30 extent:100@1.0 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    70
    v8 := View origin:700@30 extent:100@1.0 in:t.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    71
    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    72
    l1 label:'screen'; adjust:#center.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    73
    bg := GradientBackground new color1:c1 color2:c2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    74
    v1 viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    75
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    76
    l2 label:'100'; adjust:#center.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    77
    bg := GradientBackground new color1:c1 color2:c2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    78
    bg usedLength:100.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    79
    v2 viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    80
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    81
    l3 label:'300'; adjust:#center.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    82
    bg := GradientBackground new color1:c1 color2:c2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    83
    bg usedLength:300.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    84
    v3 viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    85
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    86
    l4 label:'view'; adjust:#center.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    87
    bg := GradientBackground new color1:c1 color2:c2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    88
    bg usedLength:#view.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    89
    v4 viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    90
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    91
    l5 label:'screen'; adjust:#center.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    92
    bg := GradientBackground new color1:c1 color2:c2 color3:c3.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    93
    v5 viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    94
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    95
    l6 label:'100'; adjust:#center.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    96
    bg := GradientBackground new color1:c1 color2:c2 color3:c3.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    97
    bg usedLength:100.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    98
    v6 viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
    99
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   100
    l7 label:'300'; adjust:#center.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   101
    bg := GradientBackground new color1:c1 color2:c2 color3:c3.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   102
    bg usedLength:300.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   103
    v7 viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   104
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   105
    l8 label:'view'; adjust:#center.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   106
    bg := GradientBackground new color1:c1 color2:c2 color3:c3.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   107
    bg usedLength:#view.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   108
    v8 viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   109
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   110
    t open.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   111
                                                                    [exEnd]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   112
                                                                    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   113
                                                                    [exBegin]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   114
    |bg v|
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   115
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   116
    bg := GradientBackground new colors:{ Color red . Color green . Color blue . Color red }.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   117
    v := View new extent:300@300.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   118
    v viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   119
    v open.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   120
                                                                    [exEnd]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   121
                                                                    [exBegin]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   122
    |bg v|
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   123
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   124
    bg := GradientBackground new colors:{ Color red . Color green . Color blue . Color red }.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   125
    bg usedLength:#view.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   126
    v := View new extent:300@300.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   127
    v viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   128
    v open.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   129
                                                                    [exEnd]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   130
                                                                    [exBegin]
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   131
    |bg v|
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   132
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   133
    bg := GradientBackground new color1:Color red color2:Color yellow.
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   134
    v := View new extent:300@300.
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   135
    v viewBackground:bg.
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   136
    v open.
6953
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   137
                                                                    [exEnd]
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   138
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   139
                                                                    [exBegin]
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   140
    |bg v|
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   141
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   142
    bg := GradientBackground new color1:Color red color2:Color yellow.
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   143
    bg usedLength:100.
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   144
    v := View new extent:300@300.
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   145
    v viewBackground:bg.
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   146
    v open.
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   147
                                                                    [exEnd]
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   148
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   149
                                                                    [exBegin]
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   150
    |bg v|
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   151
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   152
    bg := GradientBackground new color1:Color red color2:Color yellow.
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   153
    bg usedLength:#view.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   154
    v := View new extent:300@300.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   155
    v viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   156
    v open.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   157
                                                                    [exEnd]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   158
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   159
                                                                    [exBegin]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   160
    |bg v|
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   161
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   162
    bg := GradientBackground new color1:Color red color2:Color yellow.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   163
    bg color3:Color green.
6953
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   164
    v := View new extent:300@300.
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   165
    v viewBackground:bg.
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   166
    v open.
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   167
                                                                    [exEnd]
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   168
                                                                    [exBegin]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   169
    |bg v|
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   170
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   171
    bg := GradientBackground new color1:Color red color2:Color yellow.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   172
    bg color3:Color green.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   173
    bg usedLength:100.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   174
    v := View new extent:300@300.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   175
    v viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   176
    v open.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   177
                                                                    [exEnd]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   178
                                                                    [exBegin]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   179
    |bg v|
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   180
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   181
    bg := GradientBackground new color1:Color red color2:Color yellow.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   182
    bg color3:Color green.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   183
    bg usedLength:#view.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   184
    v := View new extent:300@300.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   185
    v viewBackground:bg.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   186
    v open.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   187
                                                                    [exEnd]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   188
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   189
"
5461
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   190
! !
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   191
6013
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   192
!GradientBackground class methodsFor:'instance creation'!
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   193
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   194
horizontal:color1 to:color2
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   195
    ^ self new 
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   196
        direction:#eastWest;
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   197
        color1:color1 color2:color2
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   198
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   199
    "
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   200
     |bg v|
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   201
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   202
     bg := GradientBackground horizontal:Color red to:Color yellow.
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   203
     v := View new extent:300@300.
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   204
     v viewBackground:bg.
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   205
     v open.
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   206
    "
6014
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   207
    "
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   208
     |bg v|
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   209
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   210
     bg := GradientBackground horizontal:Color red to:Color yellow.
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   211
     v := View new extent:300@300.
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   212
     v viewBackground:bg.
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   213
     v open.
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   214
    "
6013
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   215
!
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   216
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   217
vertical:color1 to:color2
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   218
    ^ self new 
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   219
        direction:#northSouth;
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   220
        color1:color1 color2:color2
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   221
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   222
    "
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   223
     |bg v|
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   224
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   225
     bg := GradientBackground vertical:Color red to:Color yellow.
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   226
     v := View new extent:300@300.
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   227
     v viewBackground:bg.
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   228
     v open.
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   229
    "
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   230
! !
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   231
6769
5421316e7200 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6202
diff changeset
   232
!GradientBackground class methodsFor:'queries'!
5421316e7200 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6202
diff changeset
   233
5421316e7200 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6202
diff changeset
   234
possibleDirections 
5421316e7200 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6202
diff changeset
   235
    ^ #(#'northSouth' #'eastWest' )
5421316e7200 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6202
diff changeset
   236
! !
5421316e7200 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6202
diff changeset
   237
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   238
!GradientBackground methodsFor:'accessing'!
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   239
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   240
color1
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   241
    ^ colors at:1
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   242
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   243
    "Created: / 23-01-2011 / 02:01:29 / cg"
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   244
!
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   245
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   246
color1:aColor
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   247
    colors isNil ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   248
        colors := Array new:2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   249
    ].    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   250
    colors at:1 put:aColor.
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   251
    cachedForm := nil.
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   252
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   253
    "Created: / 23-01-2011 / 02:01:50 / cg"
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   254
    "Modified: / 03-02-2011 / 19:49:18 / cg"
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   255
!
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   256
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   257
color1:aColor1 color2:aColor2
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   258
    colors isNil ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   259
        colors := Array new:2
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   260
    ].    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   261
    colors at:1 put:aColor1.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   262
    colors at:2 put:aColor2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   263
    cachedForm := nil.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   264
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   265
    "Created: / 03-02-2011 / 19:52:59 / cg"
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   266
!
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   267
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   268
color1:aColor1 color2:aColor2 color3:aColor3
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   269
    colors isNil ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   270
        colors := Array new:3
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   271
    ].    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   272
    colors at:1 put:aColor1.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   273
    colors at:2 put:aColor2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   274
    colors at:3 put:aColor3.
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   275
    cachedForm := nil.
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   276
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   277
    "Created: / 03-02-2011 / 19:52:59 / cg"
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   278
!
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   279
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   280
color2
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   281
    ^ colors at:2
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   282
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   283
    "Created: / 23-01-2011 / 02:01:32 / cg"
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   284
!
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   285
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   286
color2:aColor
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   287
    colors isNil ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   288
        colors := Array new:2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   289
    ].    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   290
    colors at:2 put:aColor.
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   291
    cachedForm := nil.
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   292
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   293
    "Created: / 23-01-2011 / 02:01:50 / cg"
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   294
    "Modified: / 03-02-2011 / 19:49:18 / cg"
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   295
!
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   296
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   297
color3
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   298
    ^ colors at:3 ifAbsent:[nil]
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   299
!
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   300
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   301
color3:aColor
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   302
    colors isNil ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   303
        colors := Array new:3.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   304
    ] ifFalse:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   305
        colors size < 3 ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   306
            colors := (Array new:3) replaceFrom:1 with:colors; yourself
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   307
        ].    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   308
    ].    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   309
    colors at:3 put:aColor.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   310
    cachedForm := nil.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   311
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   312
    "Created: / 23-01-2011 / 02:01:50 / cg"
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   313
    "Modified: / 03-02-2011 / 19:49:18 / cg"
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   314
!
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   315
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   316
colors:aColorVector
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   317
    colors := aColorVector.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   318
    cachedForm := nil.
5688
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   319
!
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   320
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   321
direction
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   322
    "possible values:
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   323
        #northSouth
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   324
        #eastWest
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   325
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   326
     others are not yet supported
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   327
    "
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   328
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   329
    (direction == #eastWest or:[direction == #horizontal]) ifTrue:[^ #eastWest].
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   330
    ^ #northSouth
5688
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   331
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   332
    "Modified: / 23-01-2011 / 14:36:36 / cg"
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   333
!
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   334
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   335
direction:something
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   336
    "possible values:
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   337
        #northSouth
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   338
        #eastWest
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   339
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   340
     others are not yet supported
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   341
    "
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   342
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   343
    direction ~= something ifTrue:[
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   344
        direction := something.
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   345
        cachedForm := nil.
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   346
    ]
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   347
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   348
    "Modified: / 03-02-2011 / 19:49:41 / cg"
5738
Claus Gittinger <cg@exept.de>
parents: 5733
diff changeset
   349
!
Claus Gittinger <cg@exept.de>
parents: 5733
diff changeset
   350
Claus Gittinger <cg@exept.de>
parents: 5733
diff changeset
   351
usedLength
Claus Gittinger <cg@exept.de>
parents: 5733
diff changeset
   352
    ^ usedLength
Claus Gittinger <cg@exept.de>
parents: 5733
diff changeset
   353
!
Claus Gittinger <cg@exept.de>
parents: 5733
diff changeset
   354
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   355
usedLength:nilOrSymbolOrNumber
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   356
    "specify:
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   357
        nil: use the screen height and interpolate gradient along that
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   358
        #view: use the view's height and interpolate gradient along that
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   359
        <integer>: interpolate from 0..n, with color2 above that.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   360
        See examples on how each looks"
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   361
        
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   362
    nilOrSymbolOrNumber == #full ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   363
        "/ backw. compat.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   364
        usedLength := #view
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   365
    ] ifFalse:[    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   366
        usedLength := nilOrSymbolOrNumber.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   367
    ]
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   368
! !
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   369
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   370
!GradientBackground methodsFor:'converting'!
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   371
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   372
asFormOn:aDevice
6014
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   373
    |h w len|
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   374
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   375
"/    usedLength == #view ifTrue:[
6953
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   376
"/        self halt:'unsupported'. 
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   377
"/        ^ nil
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   378
"/    ].
5688
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   379
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   380
    cachedForm isNil ifTrue:[
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   381
        (len := usedLength) == #view ifTrue:[
6014
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   382
            len := nil
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   383
        ].
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   384
        (self direction == #northSouth) ifTrue:[
6202
020ebdb99a1e Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 6102
diff changeset
   385
            h := len ? (aDevice height). "/ aView height.
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   386
            w := 8.
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   387
        ] ifFalse:[
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   388
            h := 8.
6202
020ebdb99a1e Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 6102
diff changeset
   389
            w := len ? (aDevice width).  "/ aView width.
5705
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   390
        ].
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   391
        cachedForm := Form width:w height:h depth:aDevice depth onDevice:aDevice.
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   392
        "/ cachedForm clear.
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   393
        self fillRectangleX:0 y:0 width:w height:h in:cachedForm
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   394
    ].
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   395
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   396
    ^ cachedForm
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   397
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   398
    "Created: / 03-02-2011 / 20:05:30 / cg"
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   399
!
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   400
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   401
onDevice:device
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   402
    ^ self asFormOn:device.
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   403
56318de85b68 comment/format in: #initializeAllPluginClasses
Claus Gittinger <cg@exept.de>
parents: 5692
diff changeset
   404
    "Created: / 03-02-2011 / 19:56:06 / cg"
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   405
! !
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   406
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   407
!GradientBackground methodsFor:'drawing'!
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   408
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   409
fillRectangleX:x y:y width:w height:h in:aGC
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   410
    "this is a first (very inefficient) try"
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   411
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   412
    |hHalf wHalf h1 h2 w1 w2 usedHeight usedWidth scaleStartX scaleStartY x2 y2
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   413
     usedHeight2 usedWidth2 scaleStartX2 scaleStartY2 direction numSegs 
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   414
     usedHeightRange usedWidthRange usedRange startPos endPos
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   415
     partRange segOffset segNr pos
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   416
     r1 r2 g1 g2 b1 b2 minR maxR minG maxG minB maxB color1 color2
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   417
     dR dG dB r g b lastR lastG lastB endPart posRect szRun restSize|
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   418
    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   419
    direction := self direction.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   420
    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   421
    usedLength isNil ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   422
        "/ use screen's height; so the gradient changes when the bounds are moved
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   423
        usedHeightRange := aGC device height. "/ aView height.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   424
        usedWidthRange := aGC device width.  "/ aView width.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   425
    ] ifFalse:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   426
        usedLength == #view ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   427
            usedHeightRange := aGC height.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   428
            usedWidthRange := aGC width.
6014
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   429
        ] ifFalse:[
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   430
            usedHeightRange := usedLength.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   431
            usedWidthRange := usedLength.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   432
        ].
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   433
    ].
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   434
    direction == #northSouth ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   435
        usedRange := usedHeightRange.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   436
        startPos := y.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   437
        endPos := y+h.
5739
c4fbd37a6164 changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5738
diff changeset
   438
    ] ifFalse:[
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   439
        usedRange := usedWidthRange.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   440
        startPos := x.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   441
        endPos := x+w.
5739
c4fbd37a6164 changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5738
diff changeset
   442
    ].
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   443
    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   444
    "/ each part
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   445
    numSegs := colors size - 1.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   446
    partRange := (usedRange / numSegs) asFloat.
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   447
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   448
    "/ where is the start?
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   449
    segOffset := startPos \\ partRange.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   450
    segNr := startPos // partRange + 1.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   451
    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   452
    pos := startPos.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   453
    [pos < endPos] whileTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   454
        segNr > numSegs ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   455
            restSize := endPos - pos.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   456
            aGC paint:(colors last).
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   457
            
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   458
            direction == #northSouth ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   459
                aGC fillRectangleX:x y:pos width:w height:restSize.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   460
            ] ifFalse:[    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   461
                aGC fillRectangleX:pos y:y width:restSize height:h.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   462
            ].    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   463
            ^ self
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   464
        ].
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   465
        
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   466
        "/ we have to interpolate between those two colors
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   467
        color1 := colors at:segNr.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   468
        color2 := colors at:segNr+1.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   469
        
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   470
        r1 := color1 redByte.   r2 := color2 redByte.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   471
        g1 := color1 greenByte. g2 := color2 greenByte.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   472
        b1 := color1 blueByte.  b2 := color2 blueByte.
5728
c3c7f362b4c3 changed: #fillRectangleX:y:width:height:in:
Stefan Vogel <sv@exept.de>
parents: 5705
diff changeset
   473
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   474
        minR := r1 min:r2. maxR := r1 max:r2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   475
        minG := g1 min:g2. maxG := g1 max:g2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   476
        minB := b1 min:b2. maxB := b1 max:b2.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   477
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   478
        dR := (r2 - r1) / partRange. dG := (g2 - g1) / partRange. dB := (b2 - b1) / partRange.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   479
        r := r1 + (dR * segOffset). 
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   480
        g := g1 + (dG * segOffset). 
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   481
        b := b1 + (dB * segOffset).
5733
08e2b386abef changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
   482
5732
fba4327a852b changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5731
diff changeset
   483
        r := (r max:minR) min:maxR. 
fba4327a852b changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5731
diff changeset
   484
        g := (g max:minG) min:maxG.
fba4327a852b changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5731
diff changeset
   485
        b := (b max:minB) min:maxB.
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   486
5733
08e2b386abef changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
   487
        lastR := r asInteger. lastG := g asInteger. lastB := b asInteger.
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   488
        
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   489
        "/ now draw
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   490
        endPart := (startPos + partRange) truncated min:endPos.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   491
        posRect := pos.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   492
        szRun := 0.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   493
        pos to:endPart-1 do:[:p |
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   494
            |rC gC bC|
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   495
            
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   496
            rC := r asInteger. gC := g asInteger. bC := b asInteger.
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   497
            (rC ~~ lastR or:[gC ~~ lastG or:[bC ~~ lastB]]) ifTrue:[
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   498
                aGC paint:(Color redByte:lastR greenByte:lastG blueByte:lastB).
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   499
                direction == #northSouth ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   500
                    aGC fillRectangleX:x y:posRect width:w height:szRun.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   501
                ] ifFalse:[    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   502
                    aGC fillRectangleX:posRect y:y width:szRun height:h.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   503
                ].    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   504
                posRect := p. szRun := 0.
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   505
                lastR := rC. lastG := gC. lastB := bC.
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   506
            ].
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   507
            szRun := szRun + 1.
5731
e638acae4e19 changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5730
diff changeset
   508
            r := ((r + dR) max:minR) min:maxR. 
e638acae4e19 changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5730
diff changeset
   509
            g := ((g + dG) max:minG) min:maxG.
e638acae4e19 changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5730
diff changeset
   510
            b := ((b + dB) max:minB) min:maxB.
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   511
        ].
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   512
        szRun ~~ 0 ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   513
            aGC paint:(Color redByte:lastR greenByte:lastG blueByte:lastB).
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   514
            direction == #northSouth ifTrue:[
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   515
                aGC fillRectangleX:x y:posRect width:w height:szRun.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   516
            ] ifFalse:[    
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   517
                aGC fillRectangleX:posRect y:y width:szRun height:h.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   518
            ].    
5733
08e2b386abef changed: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
   519
        ].
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   520
        "/ self halt.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   521
        "/ drawn one segment's gradient
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   522
        segOffset := 0.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   523
        pos := startPos := endPart.
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   524
        segNr := segNr + 1.
5688
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
   525
    ].
5684
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   526
! !
c6029a2cf7c0 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 5461
diff changeset
   527
6953
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   528
!GradientBackground methodsFor:'queries'!
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   529
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   530
needsFullRedrawOnChangeOfHeight
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   531
    ^ usedLength == #view and:[self direction == #northSouth]
6953
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   532
!
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   533
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   534
needsFullRedrawOnChangeOfWidth
6966
37711d94a0c0 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6953
diff changeset
   535
    ^ usedLength == #view and:[direction == #eastWest]
6953
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   536
! !
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   537
5461
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   538
!GradientBackground class methodsFor:'documentation'!
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   539
6014
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   540
version
6953
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   541
    ^ '$Header$'
6014
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   542
!
0da48fc12d6a class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 6013
diff changeset
   543
5461
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   544
version_CVS
6953
eac8b255a9e1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   545
    ^ '$Header$'
5461
2451688b8d25 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   546
! !
6013
aee5be18d9a1 class: GradientBackground
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
   547