RadioButton.st
author Claus Gittinger <cg@exept.de>
Thu, 29 Apr 1999 22:07:39 +0200
changeset 1892 110a6e458b5a
parent 1882 c042adbad29e
child 1954 dc1e397855dc
permissions -rw-r--r--
checkin from browser
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     1
"
5
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1991 by Claus Gittinger
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     3
	      All Rights Reserved
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     4
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    11
"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    12
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    13
Toggle subclass:#RadioButton
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    14
	instanceVariableNames:'buttonStyle buttonOnLevel buttonOffLevel buttonOffImage
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    15
		buttonOnImage'
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
    16
	classVariableNames:'DefaultButtonStyle DefaultActiveLevel DefaultPassiveLevel
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
    17
		MotifCheckBotForm MotifCheckTopForm Round3DCheckBotForm
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
    18
		Round3DCheckTopForm RoundHalfLightForm RoundOffForm RoundOnForm'
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    19
	poolDictionaries:''
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    20
	category:'Views-Interactors'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    21
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    22
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    23
!RadioButton class methodsFor:'documentation'!
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    24
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    25
copyright
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    26
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    27
 COPYRIGHT (c) 1991 by Claus Gittinger
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    28
	      All Rights Reserved
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    29
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    30
 This software is furnished under a license and may be used
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    31
 only in accordance with the terms of that license and with the
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    33
 be provided or otherwise made available to, or used by, any
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    34
 other person.  No title to or ownership of the software is
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    35
 hereby transferred.
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    36
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    37
!
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    39
documentation
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    40
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    41
    like a Toggle, but do not turn off when pressed again, instead only
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    42
    turn off when another RadioButton is pressed (see RadioButtonGroup).
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    43
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    44
    written fall 91 by claus
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    45
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    46
    [author:]
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    47
        Claus Gittinger
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    48
"
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    49
!
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    50
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    51
examples 
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    52
"
119
claus
parents: 105
diff changeset
    53
  See more examples in RadioButtonGroup class>>examples
claus
parents: 105
diff changeset
    54
claus
parents: 105
diff changeset
    55
  example1: one on behavior (using RadioButtons)
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    56
                                                                        [exBegin]
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    57
    |top panel b group|
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    58
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    59
    top := StandardSystemView new.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    60
    top extent:200@200.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    61
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    62
    panel := HorizontalPanelView
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    63
                origin:0.0@0.0
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    64
                corner:1.0@1.0
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    65
                    in:top.
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    66
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    67
    group := RadioButtonGroup new.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    68
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    69
    b := RadioButton label:'am' in:panel.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    70
    group add:b.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    71
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    72
    b := RadioButton label:'fm' in:panel.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    73
    group add:b.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    74
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    75
    b := RadioButton label:'off' in:panel.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    76
    group add:b.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    77
1087
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    78
    group value:1.
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    79
    top open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    80
                                                                        [exEnd]
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    81
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    82
119
claus
parents: 105
diff changeset
    83
  example2: zero or one on behavior (using Toggles)
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    84
                                                                        [exBegin]
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    85
    |top panel b group|
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    86
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    87
    top := StandardSystemView new.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    88
    top extent:200@200.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    89
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    90
    panel := HorizontalPanelView
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    91
                origin:0.0@0.0
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    92
                corner:1.0@1.0
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    93
                    in:top.
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    94
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    95
    group := RadioButtonGroup new.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    96
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    97
    b := Toggle label:'am' in:panel.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    98
    group add:b.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    99
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   100
    b := Toggle label:'fm' in:panel.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   101
    group add:b.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   102
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   103
    b := Toggle label:'off' in:panel.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   104
    group add:b.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   105
1087
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   106
    group value:1.
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   107
    top open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   108
                                                                        [exEnd]
1087
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   109
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   110
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   111
  a selectionInListView and a group displaying the same value:
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   112
                                                                        [exBegin]
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   113
    |top top2 panel b sv group selectionInList|
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   114
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   115
    top := StandardSystemView extent:200@200.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   116
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   117
    panel := HorizontalPanelView
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   118
                origin:0.0@0.0 corner:1.0@1.0 in:top.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   119
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   120
    group := RadioButtonGroup new.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   121
    selectionInList := SelectionInList new.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   122
    selectionInList list:#('am' 'fm' 'off').
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   123
    selectionInList selectionIndexHolder:group.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   124
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   125
    b := Toggle label:'am' in:panel.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   126
    group add:b.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   127
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   128
    b := Toggle label:'fm' in:panel.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   129
    group add:b.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   130
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   131
    b := Toggle label:'off' in:panel.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   132
    group add:b.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   133
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   134
    group value:1.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   135
    top open.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   136
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   137
    top2 := StandardSystemView extent:200@200.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   138
    sv := SelectionInListView in:top2.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   139
    sv model:selectionInList.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   140
    sv origin:0.0@0.0 corner:1.0@1.0.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   141
    top2 open.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   142
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   143
                                                                        [exEnd]
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
   144
"
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   145
! !
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   146
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   147
!RadioButton class methodsFor:'defaults'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   148
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   149
motifCheckBotForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   150
    MotifCheckBotForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   151
        MotifCheckBotForm := Form 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   152
            width:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   153
            height:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   154
            fromArray:#[2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   155
                        2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   156
                        2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   157
                        2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   158
                        2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   159
                        2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   160
                        2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   161
                        2r00000000 2r00001110
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   162
                        2r01110000 2r00011100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   163
                        2r00111000 2r00111000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   164
                        2r00011100 2r01110000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   165
                        2r00001110 2r11100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   166
                        2r00000111 2r11000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   167
                        2r00000011 2r10000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   168
                        2r00000001 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   169
                       ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   170
        MotifCheckBotForm := MotifCheckBotForm onDevice:Display.
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   171
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   172
    ^ MotifCheckBotForm
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   173
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   174
    "Created: / 3.11.1997 / 12:06:45 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   175
    "Modified: / 30.7.1998 / 21:27:53 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   176
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   177
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   178
motifCheckTopForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   179
    MotifCheckTopForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   180
        MotifCheckTopForm := Form 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   181
                                width:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   182
                                height:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   183
                                fromArray:#[2r00000001 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   184
                                            2r00000011 2r10000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   185
                                            2r00000111 2r11000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   186
                                            2r00001110 2r11100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   187
                                            2r00011100 2r01110000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   188
                                            2r00111000 2r00111000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   189
                                            2r01110000 2r00011100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   190
                                            2r11100000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   191
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   192
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   193
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   194
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   195
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   196
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   197
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   198
                                           ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   199
        MotifCheckTopForm := MotifCheckTopForm onDevice:Display
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   200
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   201
    ^ MotifCheckTopForm
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   202
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   203
    "Created: / 3.11.1997 / 12:06:45 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   204
    "Modified: / 30.7.1998 / 21:28:45 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   205
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   206
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   207
round3DCheckBotForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   208
    Round3DCheckBotForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   209
        Round3DCheckBotForm := Form 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   210
                                width:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   211
                                height:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   212
                                fromArray:#[2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   213
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   214
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   215
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   216
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   217
                                            2r00000000 2r00000010
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   218
                                            2r00000000 2r00000010
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   219
                                            2r00000000 2r00000110
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   220
                                            2r00000000 2r00000110
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   221
                                            2r00000000 2r00000110
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   222
                                            2r00000000 2r00001110
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   223
                                            2r01110000 2r00011100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   224
                                            2r01111000 2r00111100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   225
                                            2r00111111 2r11111000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   226
                                            2r00001111 2r11100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   227
                                           ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   228
        Round3DCheckBotForm := Round3DCheckBotForm onDevice:Display.
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   229
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   230
    ^ Round3DCheckBotForm
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   231
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   232
    "Created: / 3.11.1997 / 14:29:37 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   233
    "Modified: / 30.7.1998 / 21:29:57 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   234
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   235
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   236
round3DCheckTopForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   237
    Round3DCheckTopForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   238
        Round3DCheckTopForm := Form 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   239
                                width:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   240
                                height:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   241
                                fromArray:#[2r00000011 2r10000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   242
                                            2r00011110 2r11110000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   243
                                            2r00111000 2r00011000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   244
                                            2r01110000 2r00001100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   245
                                            2r01100000 2r00001100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   246
                                            2r11000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   247
                                            2r11000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   248
                                            2r11000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   249
                                            2r11000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   250
                                            2r11000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   251
                                            2r01100000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   252
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   253
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   254
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   255
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   256
                                           ].
1394
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   257
"/        fromArray:#[2r00000111 2r11000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   258
"/                    2r00011110 2r11110000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   259
"/                    2r00111000 2r00111000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   260
"/                    2r01110000 2r00011100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   261
"/                    2r01100000 2r00001100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   262
"/                    2r11000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   263
"/                    2r11000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   264
"/                    2r11000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   265
"/                    2r11000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   266
"/                    2r11000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   267
"/                    2r01100000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   268
"/                    2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   269
"/                    2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   270
"/                    2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   271
"/                    2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   272
"/                   ]
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   273
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   274
        Round3DCheckTopForm := Round3DCheckTopForm onDevice:Display.
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   275
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   276
    ^ Round3DCheckTopForm
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   277
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   278
    "Created: / 3.11.1997 / 14:29:45 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   279
    "Modified: / 30.7.1998 / 21:30:47 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   280
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   281
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   282
roundHalfLightForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   283
    RoundHalfLightForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   284
        RoundHalfLightForm := Form
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   285
                                width:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   286
                                height:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   287
                                fromArray:#[2r00001100 2r01100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   288
                                            2r00110000 2r00010000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   289
                                            2r01100000 2r00001000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   290
                                            2r01000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   291
                                            2r11000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   292
                                            2r10000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   293
                                            2r10000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   294
                                            2r10000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   295
                                            2r10000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   296
                                            2r10000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   297
                                            2r11000000 2r00001000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   298
                                            2r00110000 2r00010000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   299
                                            2r00011000 2r00110000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   300
                                            2r00000111 2r11000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   301
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   302
                                           ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   303
1394
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   304
"/        fromArray:#[2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   305
"/                    2r00000011 2r10000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   306
"/                    2r00001000 2r00100000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   307
"/                    2r00010000 2r00010000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   308
"/                    2r00100000 2r00001000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   309
"/                    2r00000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   310
"/                    2r01000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   311
"/                    2r01000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   312
"/                    2r01000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   313
"/                    2r00000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   314
"/                    2r00100000 2r00001000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   315
"/                    2r00010000 2r00010000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   316
"/                    2r00001000 2r00100000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   317
"/                    2r00000011 2r10000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   318
"/                    2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   319
"/                   ]
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   320
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   321
        RoundHalfLightForm := RoundHalfLightForm onDevice:Display.
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   322
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   323
    ^ RoundHalfLightForm
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   324
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   325
    "Created: / 3.11.1997 / 18:26:40 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   326
    "Modified: / 30.7.1998 / 21:31:55 / cg"
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   327
!
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   328
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   329
roundOffForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   330
    RoundOffForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   331
        RoundOffForm := Form 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   332
            width:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   333
            height:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   334
            fromArray:#[2r00000011 2r10000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   335
                        2r00001100 2r01100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   336
                        2r00010000 2r00010000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   337
                        2r00100000 2r00001000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   338
                        2r01000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   339
                        2r01000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   340
                        2r10000000 2r00000010
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   341
                        2r10000000 2r00000010
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   342
                        2r10000000 2r00000010
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   343
                        2r01000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   344
                        2r01000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   345
                        2r00100000 2r00001000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   346
                        2r00010000 2r00010000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   347
                        2r00001100 2r01100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   348
                        2r00000011 2r10000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   349
                       ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   350
1394
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   351
"/        fromArray:#[2r00000011 2r10000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   352
"/                    2r00001111 2r11100000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   353
"/                    2r00111100 2r01111000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   354
"/                    2r00110000 2r00011000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   355
"/                    2r01100000 2r00001100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   356
"/                    2r01100000 2r00001100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   357
"/                    2r11000000 2r00000110
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   358
"/                    2r11000000 2r00000110
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   359
"/                    2r11000000 2r00000110
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   360
"/                    2r01100000 2r00001100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   361
"/                    2r01100000 2r00001100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   362
"/                    2r00110000 2r00011000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   363
"/                    2r00111100 2r01111000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   364
"/                    2r00001111 2r11100000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   365
"/                    2r00000011 2r10000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   366
"/                   ]
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   367
        RoundOffForm := RoundOffForm onDevice:Display.
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   368
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   369
    ^ RoundOffForm
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   370
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   371
    "Created: / 3.11.1997 / 12:41:13 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   372
    "Modified: / 30.7.1998 / 21:33:03 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   373
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   374
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   375
roundOnForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   376
    RoundOnForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   377
        RoundOnForm := Form 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   378
                        width:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   379
                        height:15 
1405
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   380
"/        fromArray:#[2r00000000 2r00000000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   381
"/                    2r00000000 2r00000000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   382
"/                    2r00000000 2r00000000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   383
"/                    2r00000111 2r11000000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   384
"/                    2r00001111 2r11100000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   385
"/                    2r00011111 2r11110000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   386
"/                    2r00011111 2r11110000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   387
"/                    2r00011111 2r11110000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   388
"/                    2r00011111 2r11110000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   389
"/                    2r00011111 2r11110000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   390
"/                    2r00001111 2r11100000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   391
"/                    2r00000111 2r11000000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   392
"/                    2r00000000 2r00000000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   393
"/                    2r00000000 2r00000000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   394
"/                    2r00000000 2r00000000
366bac893ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   395
"/                   ]
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   396
                        fromArray:#[2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   397
                                    2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   398
                                    2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   399
                                    2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   400
                                    2r00000011 2r10000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   401
                                    2r00000111 2r11000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   402
                                    2r00001111 2r11100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   403
                                    2r00001111 2r11100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   404
                                    2r00001111 2r11100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   405
                                    2r00000111 2r11000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   406
                                    2r00000011 2r10000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   407
                                    2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   408
                                    2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   409
                                    2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   410
                                    2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   411
                                   ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   412
        RoundOnForm := RoundOnForm onDevice:Display.
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   413
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   414
    ^ RoundOnForm
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   415
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   416
    "Created: / 3.11.1997 / 12:41:17 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   417
    "Modified: / 30.7.1998 / 21:33:39 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   418
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   419
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   420
updateStyleCache
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   421
    <resource: #style (#'radioButton.style' 
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   422
                       #'radioButton.activeLevel'
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   423
                       #'radioButton.passiveLevel'
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   424
                       #'radioButton.activeImageFile'
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   425
                       #'radioButton.activeImage'
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   426
                       #'radioButton.passiveImageFile'
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   427
                       #'radioButton.passiveImage')>
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   428
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   429
    |l f|
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   430
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   431
    DefaultButtonStyle := StyleSheet at:#'radioButton.style'.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   432
    l := -1.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   433
    DefaultButtonStyle == #round2D ifTrue:[l := 0].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   434
    DefaultActiveLevel := StyleSheet at:#'radioButton.activeLevel' default:l.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   435
    DefaultButtonStyle == #motif ifTrue:[l := 1].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   436
    DefaultPassiveLevel := StyleSheet at:#'radioButton.passiveLevel' default:l.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   437
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   438
    RoundOnForm := nil.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   439
    f := StyleSheet at:#'radioButton.activeImageFile'.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   440
    f notNil ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   441
        f := Image fromFile:f.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   442
    ] ifFalse:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   443
        f := StyleSheet at:#'radioButton.activeImage'.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   444
    ].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   445
    f notNil ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   446
        RoundOnForm := f onDevice:Display
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   447
    ].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   448
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   449
    RoundOffForm := nil.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   450
    f := StyleSheet at:#'radioButton.passiveImageFile'.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   451
    f notNil ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   452
        f := Image fromFile:f.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   453
    ] ifFalse:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   454
        f := StyleSheet at:#'radioButton.passiveImage'.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   455
    ].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   456
    f notNil ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   457
        RoundOffForm := f onDevice:Display
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   458
    ].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   459
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   460
    "
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   461
     self updateStyleCache
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   462
    "
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   463
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   464
    "Modified: / 28.4.1999 / 13:59:00 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   465
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   466
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   467
!RadioButton methodsFor:'accessing'!
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   468
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   469
forceRadioButtonStyle
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   470
    "force the radioButton to be displayed as round/motif radio button -
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   471
     even if the styleSheet defaults differently.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   472
     (as in IRIS style)"
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   473
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   474
    buttonStyle isNil ifTrue:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   475
        styleSheet is3D ifTrue:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   476
            buttonStyle := #round3D.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   477
            activeBgColor := bgColor. 
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   478
            activeFgColor := fgColor.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   479
        ] ifFalse:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   480
            buttonStyle := #round2D.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   481
                activeFgColor := fgColor.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   482
                activeBgColor := bgColor.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   483
        ].
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   484
        buttonOnLevel := DefaultActiveLevel.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   485
        buttonOffLevel := DefaultPassiveLevel.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   486
        onLevel := offLevel := 0.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   487
        self level:0
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   488
    ]
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   489
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   490
    "Modified: / 18.6.1998 / 21:19:01 / cg"
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   491
    "Created: / 18.6.1998 / 21:23:58 / cg"
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   492
! !
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   493
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   494
!RadioButton methodsFor:'drawing'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   495
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   496
drawToggleImage
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   497
    "drawing of the radio image is done here."
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   498
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   499
    |x y clrTop clrBot img1 img2 imgH imgOn threeD lvl
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   500
     isActive|
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   501
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   502
    buttonStyle isNil ifTrue:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   503
        ^ super drawToggleImage
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   504
    ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   505
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   506
    isActive := controller pressed.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   507
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   508
    threeD := true.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   509
    buttonStyle == #motif ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   510
        img1 := self class motifCheckTopForm.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   511
        img2 := self class motifCheckBotForm.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   512
    ] ifFalse:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   513
        buttonStyle == #round3D ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   514
            img1 := self class round3DCheckTopForm.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   515
            img2 := self class round3DCheckBotForm.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   516
            imgH := self class roundHalfLightForm.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   517
            buttonOnLevel == buttonOffLevel ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   518
                isActive ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   519
                    imgOn := self class roundOnForm.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   520
                ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   521
            ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   522
        ] ifFalse:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   523
            buttonStyle == #image ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   524
                img1 := buttonOffImage.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   525
                isActive ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   526
                    imgOn := buttonOnImage.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   527
                ].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   528
            ] ifFalse:[    
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   529
                img1 := self class roundOffForm.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   530
                isActive ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   531
                    imgOn := self class roundOnForm.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   532
                ].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   533
            ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   534
            threeD := false.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   535
        ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   536
    ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   537
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   538
    img1 notNil ifTrue:[img1 := img1 onDevice:device].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   539
    img2 notNil ifTrue:[img2 := img2 onDevice:device].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   540
    imgH notNil ifTrue:[imgH := imgH onDevice:device].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   541
    imgOn notNil ifTrue:[imgOn := imgOn onDevice:device].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   542
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   543
    x := hSpace + margin.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   544
    y := (height - img1 height) // 2.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   545
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   546
    threeD ifFalse:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   547
        self paint:fgColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   548
        self displayForm:img1 x:x y:y.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   549
        isActive ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   550
            self paint:(lampColor ? activeFgColor).
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   551
            self displayForm:imgOn x:x y:y
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   552
        ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   553
    ] ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   554
        lvl := isActive ifTrue:[buttonOnLevel]
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   555
                        ifFalse:[buttonOffLevel].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   556
        lvl < 0 ifTrue:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   557
            clrTop := shadowColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   558
            clrBot := lightColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   559
        ] ifFalse:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   560
            clrTop := lightColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   561
            clrBot := shadowColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   562
        ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   563
        self paint:clrTop.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   564
        self displayForm:img1 x:x y:y.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   565
        self paint:clrBot.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   566
        self displayForm:img2 x:x y:y.
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   567
        (imgH notNil and:[halfShadowColor notNil]) ifTrue:[
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   568
            self paint:halfShadowColor.
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   569
            self displayForm:imgH x:x y:y
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   570
        ].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   571
        isActive ifTrue:[
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   572
            imgOn notNil ifTrue:[
1469
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   573
                self paint:lampColor.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   574
                self displayForm:imgOn x:x y:y
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   575
            ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   576
        ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   577
    ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   578
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   579
    "Created: / 3.11.1997 / 12:16:30 / cg"
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   580
    "Modified: / 28.4.1999 / 14:02:00 / cg"
1696
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   581
!
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   582
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   583
drawWin95FocusFrame
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   584
    "redefined to draw the focus frame around the string-only"
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   585
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   586
    |x y m1|
1696
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   587
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   588
    x := labelOriginX. " margin + 1. "
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   589
    y := labelOriginY. " margin + 1. "
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   590
    m1 := margin + 1.
1696
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   591
    self
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   592
        displayDottedRectangleX:x
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   593
        y:y
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   594
        width:(width - x - m1)
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   595
        height:(height - y - m1).
1696
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   596
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   597
    "Created: / 17.9.1998 / 14:16:46 / cg"
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   598
    "Modified: / 29.4.1999 / 21:51:00 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   599
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   600
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   601
!RadioButton methodsFor:'initialization'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   602
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   603
defaultControllerClass
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   604
    ^ RadioButtonController
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   605
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   606
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   607
initStyle
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   608
    <resource: #style (#'radioButton.showLamp')>
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   609
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   610
    buttonStyle isNil ifTrue:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   611
        buttonStyle := DefaultButtonStyle.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   612
    ].
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   613
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   614
    super initStyle.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   615
1814
bbeeed65ec84 do not highlight when entering (unless explicitely set)
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
   616
    enteredBgColor := bgColor.
bbeeed65ec84 do not highlight when entering (unless explicitely set)
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
   617
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   618
    buttonStyle isNil ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   619
        showLamp := styleSheet at:#'radioButton.showLamp' default:showLamp.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   620
        ^ self
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   621
    ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   622
1392
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
   623
    adjust := #left.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   624
    showLamp := true.
1469
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   625
    lampColor := Color black.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   626
    buttonOnLevel := DefaultActiveLevel.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   627
    buttonOffLevel := DefaultPassiveLevel.
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   628
    onLevel := offLevel := 0.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   629
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   630
    self level:0.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   631
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   632
    (buttonStyle == #motif 
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   633
    or:[buttonStyle == #round3D
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   634
    or:[buttonStyle == #image]]) ifTrue:[
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   635
        activeBgColor := bgColor. 
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   636
        activeFgColor := fgColor.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   637
        buttonStyle == #image ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   638
            buttonOnImage := self class roundOnForm onDevice:device.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   639
            buttonOffImage := self class roundOffForm onDevice:device.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   640
        ]
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   641
    ] ifFalse:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   642
        buttonStyle == #round2D ifTrue:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   643
            activeFgColor := fgColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   644
            activeBgColor := bgColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   645
        ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   646
    ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   647
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   648
    "Modified: / 28.4.1999 / 14:05:35 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   649
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   650
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   651
!RadioButton methodsFor:'private'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   652
1392
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
   653
computeLabelOrigin
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
   654
    super computeLabelOrigin.
1469
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   655
    buttonStyle notNil ifTrue:[    
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   656
        labelOriginX := hSpace + 15 + hSpace  
1392
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
   657
    ]
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
   658
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
   659
    "Modified: / 3.11.1997 / 18:17:58 / cg"
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
   660
!
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
   661
1469
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   662
computeLabelSize
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   663
    "compute the extent needed to hold the label plus the lamp"
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   664
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   665
    super computeLabelSize.
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   666
    buttonStyle notNil ifTrue:[
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   667
        labelWidth := labelWidth + 15
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   668
    ]
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   669
!
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
   670
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   671
lampImageHeight
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
   672
    buttonStyle isNil ifTrue:[^ super lampImageHeight].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   673
    ^ 15
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   674
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   675
    "Created: / 3.11.1997 / 14:27:27 / cg"
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
   676
    "Modified: / 3.11.1997 / 18:10:39 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   677
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   678
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   679
lampImageWidth
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
   680
    buttonStyle isNil ifTrue:[^ super lampImageWidth].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   681
    ^ 15
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   682
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   683
    "Created: / 3.11.1997 / 14:27:23 / cg"
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
   684
    "Modified: / 3.11.1997 / 18:10:50 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   685
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   686
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   687
!RadioButton methodsFor:'queries'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   688
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   689
is3D
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   690
    buttonStyle == #round2D ifTrue:[^ false.].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   691
    ^ super is3D
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   692
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   693
    "Created: / 3.11.1997 / 14:39:36 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   694
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   695
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   696
!RadioButton class methodsFor:'documentation'!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   697
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   698
version
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   699
    ^ '$Header: /cvs/stx/stx/libwidg/RadioButton.st,v 1.29 1999-04-29 20:07:39 cg Exp $'
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   700
! !