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