RadioButton.st
author Claus Gittinger <cg@exept.de>
Wed, 04 Sep 2013 23:45:24 +0200
changeset 4740 0399aad4f124
parent 4739 3c0dcb747cf5
child 4906 d07b99eecdfe
permissions -rw-r--r--
class: RadioButton changed: #updateStyleCache
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
"
2583
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
    12
"{ Package: 'stx:libwidg' }"
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
    13
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    14
Toggle subclass:#RadioButton
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
    15
	instanceVariableNames:'buttonStyle buttonOnLevel buttonOffLevel offImage onImage
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
    16
		buttonOffImage buttonOnImage disabledOnImage disabledOffImage
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
    17
		enteredOnImage enteredOffImage'
4505
347980ba9a1b more stylesheet options
Claus Gittinger <cg@exept.de>
parents: 4291
diff changeset
    18
	classVariableNames:'DefaultButtonStyle DefaultBorderWidth DefaultActiveLevel
347980ba9a1b more stylesheet options
Claus Gittinger <cg@exept.de>
parents: 4291
diff changeset
    19
		DefaultPassiveLevel DefaultForegroundColor DefaultBackgroundColor
2583
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
    20
		DefaultActiveForegroundColor DefaultActiveBackgroundColor
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
    21
		MotifCheckBotForm MotifCheckTopForm MotifCheckInnerForm
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
    22
		Round3DCheckBotForm Round3DCheckTopForm Round3DCheckInnerForm
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
    23
		RoundHalfLightForm RoundOffForm RoundOnForm PassiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
    24
		ActiveForm EnteredPassiveForm EnteredActiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
    25
		DisabledActiveForm DisabledPassiveForm'
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    26
	poolDictionaries:''
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    27
	category:'Views-Interactors'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    28
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    29
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    30
!RadioButton class methodsFor:'documentation'!
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    31
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    32
copyright
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    33
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    34
 COPYRIGHT (c) 1991 by Claus Gittinger
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    35
	      All Rights Reserved
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    36
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    37
 This software is furnished under a license and may be used
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    38
 only in accordance with the terms of that license and with the
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    39
 inclusion of the above copyright notice.   This software may not
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    40
 be provided or otherwise made available to, or used by, any
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    41
 other person.  No title to or ownership of the software is
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    42
 hereby transferred.
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
!
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    45
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    46
documentation
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    47
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    48
    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
    49
    turn off when another RadioButton is pressed (see RadioButtonGroup).
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    50
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    51
    written fall 91 by claus
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    52
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    53
    [author:]
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    54
        Claus Gittinger
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    55
"
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    56
!
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    57
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    58
examples 
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    59
"
119
claus
parents: 105
diff changeset
    60
  See more examples in RadioButtonGroup class>>examples
claus
parents: 105
diff changeset
    61
claus
parents: 105
diff changeset
    62
  example1: one on behavior (using RadioButtons)
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    63
                                                                        [exBegin]
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    64
    |top panel b group|
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    65
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    66
    top := StandardSystemView new.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    67
    top extent:200@200.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    68
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    69
    panel := HorizontalPanelView
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    70
                origin:0.0@0.0
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    71
                corner:1.0@1.0
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    72
                    in:top.
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    73
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    74
    group := RadioButtonGroup new.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    75
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    76
    b := RadioButton label:'am' in:panel.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    77
    group add:b.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    78
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    79
    b := RadioButton label:'fm' in:panel.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    80
    group add:b.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    81
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    82
    b := RadioButton label:'off' in:panel.
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    83
    group add:b.
3748
8ce94bccb3ac better icons
Claus Gittinger <cg@exept.de>
parents: 3746
diff changeset
    84
    b enabled:false.
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    85
1087
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    86
    group value:1.
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
    87
    top open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    88
                                                                        [exEnd]
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    89
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    90
119
claus
parents: 105
diff changeset
    91
  example2: zero or one on behavior (using Toggles)
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    92
                                                                        [exBegin]
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    93
    |top panel b group|
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    94
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    95
    top := StandardSystemView new.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    96
    top extent:200@200.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    97
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
    98
    panel := HorizontalPanelView
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    99
                origin:0.0@0.0
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   100
                corner:1.0@1.0
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   101
                    in:top.
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   102
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   103
    group := RadioButtonGroup new.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   104
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   105
    b := Toggle label:'am' in:panel.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   106
    group add:b.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   107
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   108
    b := Toggle label:'fm' in:panel.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   109
    group add:b.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   110
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   111
    b := Toggle label:'off' in:panel.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   112
    group add:b.
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   113
1087
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   114
    group value:1.
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   115
    top open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   116
                                                                        [exEnd]
1087
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   117
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   118
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   119
  a selectionInListView and a group displaying the same value:
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   120
                                                                        [exBegin]
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   121
    |top top2 panel b sv group selectionInList|
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   122
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   123
    top := StandardSystemView extent:200@200.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   124
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   125
    panel := HorizontalPanelView
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   126
                origin:0.0@0.0 corner:1.0@1.0 in:top.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   127
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   128
    group := RadioButtonGroup new.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   129
    selectionInList := SelectionInList new.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   130
    selectionInList list:#('am' 'fm' 'off').
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   131
    selectionInList selectionIndexHolder:group.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   132
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   133
    b := Toggle label:'am' in:panel.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   134
    group add:b.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   135
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   136
    b := Toggle label:'fm' in:panel.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   137
    group add:b.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   138
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   139
    b := Toggle label:'off' in:panel.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   140
    group add:b.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   141
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   142
    group value:1.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   143
    top open.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   144
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   145
    top2 := StandardSystemView extent:200@200.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   146
    sv := SelectionInListView in:top2.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   147
    sv model:selectionInList.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   148
    sv origin:0.0@0.0 corner:1.0@1.0.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   149
    top2 open.
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   150
171cdcfe0274 example
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   151
                                                                        [exEnd]
86
df2687090a7f *** empty log message ***
claus
parents: 77
diff changeset
   152
"
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   153
! !
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   154
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   155
!RadioButton class methodsFor:'defaults'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   156
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   157
activeForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   158
    ActiveForm isNil ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   159
        self updateStyleCache.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   160
    ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   161
    ^ ActiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   162
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   163
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   164
     ActiveForm := nil. 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   165
     self updateStyleCache
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   166
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   167
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   168
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   169
disabledActiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   170
    DisabledActiveForm isNil ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   171
        self updateStyleCache.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   172
    ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   173
    ^ DisabledActiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   174
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   175
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   176
     DisabledActiveForm := nil. 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   177
     self updateStyleCache
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   178
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   179
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   180
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   181
disabledPassiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   182
    DisabledPassiveForm isNil ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   183
        self updateStyleCache.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   184
    ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   185
    ^ DisabledPassiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   186
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   187
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   188
     DisabledPassiveForm := nil. 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   189
     self updateStyleCache
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   190
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   191
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   192
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   193
enteredActiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   194
    EnteredActiveForm isNil ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   195
        self updateStyleCache.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   196
    ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   197
    ^ EnteredActiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   198
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   199
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   200
     EnteredActiveForm := nil. 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   201
     self updateStyleCache
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   202
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   203
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   204
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   205
enteredPassiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   206
    EnteredPassiveForm isNil ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   207
        self updateStyleCache.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   208
    ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   209
    ^ EnteredPassiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   210
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   211
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   212
     EnteredPassiveForm := nil. 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   213
     self updateStyleCache
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   214
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   215
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   216
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   217
motifCheckBotForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   218
    MotifCheckBotForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   219
        MotifCheckBotForm := Form 
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   220
                                width:15 
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   221
                                height:15 
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   222
                                fromArray:#[2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   223
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   224
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   225
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   226
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   227
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   228
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   229
                                            2r00000000 2r00001110
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   230
                                            2r01110000 2r00011100
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   231
                                            2r00111000 2r00111000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   232
                                            2r00011100 2r01110000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   233
                                            2r00001110 2r11100000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   234
                                            2r00000111 2r11000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   235
                                            2r00000011 2r10000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   236
                                            2r00000001 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   237
                                           ].
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   238
        MotifCheckBotForm := MotifCheckBotForm onDevice:Display.
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   239
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   240
    ^ MotifCheckBotForm
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   241
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   242
    "Created: / 3.11.1997 / 12:06:45 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   243
    "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
   244
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   245
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   246
motifCheckInnerForm
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   247
    MotifCheckInnerForm isNil ifTrue:[
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   248
        MotifCheckInnerForm := Form 
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   249
                                width:15 
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   250
                                height:15 
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   251
                                fromArray:#[2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   252
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   253
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   254
                                            2r00000001 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   255
                                            2r00000011 2r10000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   256
                                            2r00000111 2r11000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   257
                                            2r00001111 2r11100000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   258
                                            2r00011111 2r11110000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   259
                                            2r00001111 2r11100000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   260
                                            2r00000111 2r11000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   261
                                            2r00000011 2r10000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   262
                                            2r00000001 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   263
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   264
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   265
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   266
                                           ].
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   267
        MotifCheckInnerForm := MotifCheckInnerForm onDevice:Display
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   268
    ].
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   269
    ^ MotifCheckInnerForm
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   270
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   271
    "Created: / 3.11.1997 / 12:06:45 / cg"
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   272
    "Modified: / 30.7.1998 / 21:28:45 / cg"
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   273
!
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   274
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   275
motifCheckTopForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   276
    MotifCheckTopForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   277
        MotifCheckTopForm := Form 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   278
                                width:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   279
                                height:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   280
                                fromArray:#[2r00000001 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   281
                                            2r00000011 2r10000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   282
                                            2r00000111 2r11000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   283
                                            2r00001110 2r11100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   284
                                            2r00011100 2r01110000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   285
                                            2r00111000 2r00111000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   286
                                            2r01110000 2r00011100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   287
                                            2r11100000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   288
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   289
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   290
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   291
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   292
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   293
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   294
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   295
                                           ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   296
        MotifCheckTopForm := MotifCheckTopForm onDevice:Display
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   297
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   298
    ^ MotifCheckTopForm
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   299
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   300
    "Created: / 3.11.1997 / 12:06:45 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   301
    "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
   302
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   303
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   304
passiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   305
    PassiveForm isNil ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   306
        self updateStyleCache.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   307
    ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   308
    ^ PassiveForm
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   309
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   310
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   311
     PassiveForm := nil. 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   312
     self updateStyleCache
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   313
    "
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   314
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   315
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   316
round3DCheckBotForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   317
    Round3DCheckBotForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   318
        Round3DCheckBotForm := Form 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   319
                                width:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   320
                                height:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   321
                                fromArray:#[2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   322
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   323
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   324
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   325
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   326
                                            2r00000000 2r00000010
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   327
                                            2r00000000 2r00000010
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   328
                                            2r00000000 2r00000110
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   329
                                            2r00000000 2r00000110
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   330
                                            2r00000000 2r00000110
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   331
                                            2r00000000 2r00001110
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   332
                                            2r01110000 2r00011100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   333
                                            2r01111000 2r00111100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   334
                                            2r00111111 2r11111000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   335
                                            2r00001111 2r11100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   336
                                           ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   337
        Round3DCheckBotForm := Round3DCheckBotForm onDevice:Display.
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   338
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   339
    ^ Round3DCheckBotForm
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   340
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   341
    "Created: / 3.11.1997 / 14:29:37 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   342
    "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
   343
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   344
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   345
round3DCheckInnerForm
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   346
    Round3DCheckInnerForm isNil ifTrue:[
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   347
        Round3DCheckInnerForm := Form 
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   348
                                width:15 
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   349
                                height:15 
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   350
                                fromArray:#[2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   351
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   352
                                            2r00000111 2r11000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   353
                                            2r00001111 2r11100000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   354
                                            2r00011111 2r11110000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   355
                                            2r00111111 2r11111000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   356
                                            2r00111111 2r11111000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   357
                                            2r00111111 2r11111000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   358
                                            2r00111111 2r11111000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   359
                                            2r00111111 2r11111000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   360
                                            2r00011111 2r11110000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   361
                                            2r00001111 2r11100000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   362
                                            2r00000111 2r11000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   363
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   364
                                            2r00000000 2r00000000
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   365
                                           ].
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   366
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   367
        Round3DCheckInnerForm := Round3DCheckInnerForm onDevice:Display.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   368
    ].
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   369
    ^ Round3DCheckInnerForm
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   370
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   371
    "Created: / 3.11.1997 / 14:29:45 / cg"
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   372
    "Modified: / 30.7.1998 / 21:30:47 / cg"
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   373
!
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   374
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   375
round3DCheckTopForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   376
    Round3DCheckTopForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   377
        Round3DCheckTopForm := 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 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   380
                                fromArray:#[2r00000011 2r10000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   381
                                            2r00011110 2r11110000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   382
                                            2r00111000 2r00011000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   383
                                            2r01110000 2r00001100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   384
                                            2r01100000 2r00001100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   385
                                            2r11000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   386
                                            2r11000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   387
                                            2r11000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   388
                                            2r11000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   389
                                            2r11000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   390
                                            2r01100000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   391
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   392
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   393
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   394
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   395
                                           ].
1394
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   396
"/        fromArray:#[2r00000111 2r11000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   397
"/                    2r00011110 2r11110000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   398
"/                    2r00111000 2r00111000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   399
"/                    2r01110000 2r00011100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   400
"/                    2r01100000 2r00001100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   401
"/                    2r11000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   402
"/                    2r11000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   403
"/                    2r11000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   404
"/                    2r11000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   405
"/                    2r11000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   406
"/                    2r01100000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   407
"/                    2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   408
"/                    2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   409
"/                    2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   410
"/                    2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   411
"/                   ]
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   412
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   413
        Round3DCheckTopForm := Round3DCheckTopForm onDevice:Display.
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   414
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   415
    ^ Round3DCheckTopForm
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   416
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   417
    "Created: / 3.11.1997 / 14:29:45 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   418
    "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
   419
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   420
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   421
roundHalfLightForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   422
    RoundHalfLightForm isNil ifTrue:[
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   423
        RoundHalfLightForm := Form
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   424
                                width:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   425
                                height:15 
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   426
                                fromArray:#[2r00001100 2r01100000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   427
                                            2r00110000 2r00010000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   428
                                            2r01100000 2r00001000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   429
                                            2r01000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   430
                                            2r11000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   431
                                            2r10000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   432
                                            2r10000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   433
                                            2r10000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   434
                                            2r10000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   435
                                            2r10000000 2r00000100
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   436
                                            2r11000000 2r00001000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   437
                                            2r00110000 2r00010000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   438
                                            2r00011000 2r00110000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   439
                                            2r00000111 2r11000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   440
                                            2r00000000 2r00000000
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   441
                                           ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   442
1394
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   443
"/        fromArray:#[2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   444
"/                    2r00000011 2r10000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   445
"/                    2r00001000 2r00100000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   446
"/                    2r00010000 2r00010000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   447
"/                    2r00100000 2r00001000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   448
"/                    2r00000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   449
"/                    2r01000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   450
"/                    2r01000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   451
"/                    2r01000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   452
"/                    2r00000000 2r00000100
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   453
"/                    2r00100000 2r00001000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   454
"/                    2r00010000 2r00010000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   455
"/                    2r00001000 2r00100000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   456
"/                    2r00000011 2r10000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   457
"/                    2r00000000 2r00000000
7db0ce820be2 beautified 3D bitmaps (OS/2 style)
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
   458
"/                   ]
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   459
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   460
        RoundHalfLightForm := RoundHalfLightForm onDevice:Display.
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   461
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   462
    ^ RoundHalfLightForm
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   463
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   464
    "Created: / 3.11.1997 / 18:26:40 / cg"
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   465
    "Modified: / 30.7.1998 / 21:31:55 / cg"
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   466
!
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   467
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   468
roundOffForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   469
    RoundOffForm isNil ifTrue:[
3693
e8e00489ec10 Remove debug printing
Stefan Vogel <sv@exept.de>
parents: 3689
diff changeset
   470
        "DSVColumnView>>updateStyleCache calls us before our style
e8e00489ec10 Remove debug printing
Stefan Vogel <sv@exept.de>
parents: 3689
diff changeset
   471
         cache has been initialized"
3688
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   472
        self updateStyleCache.
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   473
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   474
    ^ RoundOffForm
3688
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   475
!
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   476
3688
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   477
roundOffForm_old
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   478
    ^ Form 
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   479
        width:16 
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   480
        height:16 
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   481
        fromArray:#[
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   482
            2r00000011 2r10000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   483
            2r00001100 2r01100000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   484
            2r00010000 2r00010000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   485
            2r00100000 2r00001000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   486
            2r01000000 2r00000100
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   487
            2r01000000 2r00000100
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   488
            2r10000000 2r00000010
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   489
            2r10000000 2r00000010
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   490
            2r10000000 2r00000010
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   491
            2r01000000 2r00000100
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   492
            2r01000000 2r00000100
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   493
            2r00100000 2r00001000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   494
            2r00010000 2r00010000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   495
            2r00001100 2r01100000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   496
            2r00000011 2r10000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   497
            2r00000000 2r00000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   498
        ].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   499
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   500
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   501
roundOnForm
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   502
    RoundOnForm isNil ifTrue:[
3693
e8e00489ec10 Remove debug printing
Stefan Vogel <sv@exept.de>
parents: 3689
diff changeset
   503
        "DSVColumnView>>updateStyleCache calls us before our style
e8e00489ec10 Remove debug printing
Stefan Vogel <sv@exept.de>
parents: 3689
diff changeset
   504
         cache has been initialized"
3688
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   505
        self updateStyleCache.
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   506
    ].
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   507
    ^ RoundOnForm
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   508
3688
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   509
    "
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   510
     RoundOnForm := nil. 
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   511
     self updateStyleCache
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   512
    "
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   513
!
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   514
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   515
roundOnForm_old
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   516
    ^ Form 
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   517
        width:16 
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   518
        height:16 
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   519
        fromArray:#[
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   520
            2r00000000 2r00000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   521
            2r00000000 2r00000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   522
            2r00000000 2r00000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   523
            2r00000000 2r00000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   524
            2r00000011 2r10000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   525
            2r00000111 2r11000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   526
            2r00001111 2r11100000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   527
            2r00001111 2r11100000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   528
            2r00001111 2r11100000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   529
            2r00000111 2r11000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   530
            2r00000011 2r10000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   531
            2r00000000 2r00000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   532
            2r00000000 2r00000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   533
            2r00000000 2r00000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   534
            2r00000000 2r00000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   535
            2r00000000 2r00000000
e266cdde958a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3687
diff changeset
   536
       ].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   537
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   538
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   539
updateStyleCache
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   540
    <resource: #style (#'radioButton.style' 
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   541
                       #'radioButton.activeLevel'
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   542
                       #'radioButton.passiveLevel'
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   543
                       #'radioButton.activeImageFile'
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   544
                       #'radioButton.activeImage'
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   545
                       #'radioButton.enteredActiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   546
                       #'radioButton.enteredActiveImage'
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   547
                       #'radioButton.passiveImageFile'
2583
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   548
                       #'radioButton.passiveImage'
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   549
                       #'radioButton.enteredPassiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   550
                       #'radioButton.enteredPassiveImage'
2583
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   551
                       #'radioButton.foregroundColor'
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   552
                       #'radioButton.backgroundColor'
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   553
                       #'radioButton.activeForegroundColor'
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   554
                       #'radioButton.activeBackgroundColor'
4505
347980ba9a1b more stylesheet options
Claus Gittinger <cg@exept.de>
parents: 4291
diff changeset
   555
                       #'radioButton.borderWidth'
2583
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   556
                      )>
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   557
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   558
    |l fetchImage|
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   559
4505
347980ba9a1b more stylesheet options
Claus Gittinger <cg@exept.de>
parents: 4291
diff changeset
   560
    DefaultBorderWidth := StyleSheet at:#'radioButton.borderWidth'.
347980ba9a1b more stylesheet options
Claus Gittinger <cg@exept.de>
parents: 4291
diff changeset
   561
4740
0399aad4f124 class: RadioButton
Claus Gittinger <cg@exept.de>
parents: 4739
diff changeset
   562
    DefaultFont := StyleSheet fontAt:'label.font'.                   
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   563
    DefaultButtonStyle := StyleSheet at:#'radioButton.style'.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   564
    l := -1.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   565
    DefaultButtonStyle == #round2D ifTrue:[l := 0].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   566
    DefaultActiveLevel := StyleSheet at:#'radioButton.activeLevel' default:l.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   567
    DefaultButtonStyle == #motif ifTrue:[l := 1].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   568
    DefaultPassiveLevel := StyleSheet at:#'radioButton.passiveLevel' default:l.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   569
2583
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   570
    DefaultForegroundColor := StyleSheet at:#'radioButton.foregroundColor'.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   571
    DefaultBackgroundColor := StyleSheet at:#'radioButton.backgroundColor'.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   572
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   573
    DefaultActiveForegroundColor := StyleSheet at:#'radioButton.activeForegroundColor'.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   574
    DefaultActiveBackgroundColor := StyleSheet at:#'radioButton.activeBackgroundColor'.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   575
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   576
    RoundOnForm := RoundOffForm := nil.
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   577
    ActiveForm := EnteredActiveForm := nil.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   578
    PassiveForm := EnteredPassiveForm := nil.
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   579
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   580
    fetchImage := 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   581
        [:fileNameKey :imageKey :defaultW95 :defaultXP :defaultVista |
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   582
            |f|
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   583
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   584
            f := StyleSheet at:imageKey.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   585
            f notNil 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   586
                ifTrue:[ 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   587
                    f := f value ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   588
                ifFalse:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   589
                    f := StyleSheet at:fileNameKey.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   590
                    f notNil 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   591
                        ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   592
                            f := Smalltalk imageFromFileNamed:f forClass:self.]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   593
                        ifFalse:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   594
                            f := (StyleSheet isWindowsVistaStyle)
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   595
                                ifTrue:defaultVista
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   596
                                ifFalse:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   597
                                    StyleSheet isWindowsXPStyle
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   598
                                        ifTrue:defaultXP
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   599
                                        ifFalse:defaultW95].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   600
                        ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   601
                ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   602
            f notNil ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   603
                f := f onDevice:Display
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   604
            ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   605
            f
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   606
        ].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   607
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   608
    ActiveForm := RoundOnForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   609
            value:#'radioButton.activeImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   610
            value:#'radioButton.activeImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   611
            value:[ self radioOnIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   612
            value:[ self radioOnIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   613
            value:[ self radioOnIcon_vista ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   614
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   615
    PassiveForm := RoundOffForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   616
            value:#'radioButton.passiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   617
            value:#'radioButton.passiveImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   618
            value:[ self radioOffIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   619
            value:[ self radioOffIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   620
            value:[ self radioOffIcon_vista ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   621
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   622
    EnteredActiveForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   623
            value:#'radioButton.enteredActiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   624
            value:#'radioButton.enteredActiveImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   625
            value:[ self radioOnEnteredIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   626
            value:[ self radioOnEnteredIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   627
            value:[ self radioOnEnteredIcon_vista ].
3687
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   628
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   629
    EnteredPassiveForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   630
            value:#'radioButton.enteredPassiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   631
            value:#'radioButton.enteredPassiveImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   632
            value:[ self radioOffEnteredIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   633
            value:[ self radioOffEnteredIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   634
            value:[ self radioOffEnteredIcon_vista ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   635
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   636
    DisabledActiveForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   637
            value:#'radioButton.disabledActiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   638
            value:#'radioButton.disabledActiveImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   639
            value:[ self radioOnDisabledIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   640
            value:[ self radioOnDisabledIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   641
            value:[ self radioOnDisabledIcon_vista ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   642
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   643
    DisabledPassiveForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   644
            value:#'radioButton.disabledPassiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   645
            value:#'radioButton.disabledPassiveImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   646
            value:[ self radioOffDisabledIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   647
            value:[ self radioOffDisabledIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   648
            value:[ self radioOffDisabledIcon_vista ].
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
     self updateStyleCache
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   652
    "
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   653
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   654
    "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
   655
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   656
3687
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   657
!RadioButton class methodsFor:'image specs'!
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   658
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   659
radioOffDisabledIcon_vista
3748
8ce94bccb3ac better icons
Claus Gittinger <cg@exept.de>
parents: 3746
diff changeset
   660
    ^ VistaToolbarIconLibrary radioOffDisabled12x12Icon
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   661
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   662
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   663
radioOffDisabledIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   664
    ^ self radioOffIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   665
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   666
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   667
radioOffDisabledIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   668
    ^ self radioOffIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   669
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   670
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   671
radioOffEnteredIcon_vista
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   672
    ^ VistaToolbarIconLibrary radioOffEntered12x12Icon
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   673
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   674
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   675
radioOffEnteredIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   676
    ^ self radioOffIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   677
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   678
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   679
radioOffEnteredIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   680
    ^ self radioOffIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   681
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   682
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   683
radioOffIcon_vista
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   684
    ^ VistaToolbarIconLibrary radioOff12x12Icon
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   685
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   686
3687
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   687
radioOffIcon_w95
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   688
    "This resource specification was automatically generated
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   689
     by the ImageEditor of ST/X."
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   690
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   691
    "Do not manually edit this!! If it is corrupted,
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   692
     the ImageEditor may not be able to read the specification."
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   693
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   694
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   695
     self radioOffIcon_w95 inspect
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   696
     ImageEditor openOnClass:self andSelector:#radioOffIcon_w95
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   697
     Icon flushCachedIcons
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   698
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   699
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   700
    <resource: #image>
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   701
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   702
    ^Icon
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   703
        constantNamed:'RadioButton class radioOffIcon_w95'
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   704
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   705
A@PDA@DA@PDDA@PDA@PA@P@@@@@A@PPDA@D@@@LC@0L@@@LDA@D@@0LC@0LC@ LD@P@C@0LC@0LC@0HC@P@C@0LC@0LC@0HC@P@C@0LC@0LC@0HC@P@C@0LC
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   706
@0LC@0HCA@D@@0LC@0LC@ LDA@DB@ LC@0LB@ LDA@PC@0HB@ HC@0PDA@PDA@LC@0LDA@PD') ; colorMapFromArray:#[0 0 0 128 128 128 223 223 223 255 255 255 0 0 0]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C0@?0G? _>C?<O?0??C?<G? _>@?0@<@') ; yourself); yourself]
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   707
!
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   708
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   709
radioOffIcon_xp
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   710
    "This resource specification was automatically generated
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   711
     by the ImageEditor of ST/X."
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   712
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   713
    "Do not manually edit this!! If it is corrupted,
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   714
     the ImageEditor may not be able to read the specification."
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   715
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   716
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   717
     self radioOffIcon_xp inspect
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   718
     ImageEditor openOnClass:self andSelector:#radioOffIcon_xp
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   719
     Icon flushCachedIcons
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   720
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   721
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   722
    <resource: #image>
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   723
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   724
    ^Icon
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   725
        constantNamed:'RadioButton class radioOffIcon_xp'
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   726
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   727
KB0,A T''G"\EA"0,KB0,B1,OH14%DQ,KKB0,B1 P@BPTE1$&J@,,D1,P@BPTE1$\CB$[D0TO@BPTE1$\C@4+E T''H2PTE1$\C@4+@Q<JG!!4TE1$\C@4+@PL*
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   728
G (%E1$\C@4+@PLHHB\UDQ$\C@4+@PLHA0$ED1,&C@4+@PLHA0P[H"0KJB$+@PLHA0PNB20,KA([E!!<*H@$[B20,KB0,HQT''G (R@"0,K@@a') ; colorMapFromArray:#[224 224 219 247 247 246 221 226 229 249 249 248 188 204 217 164 183 198 222 228 229 253 253 252 251 251 250 112 145 175 90 128 159 180 195 206 241 241 239 243 243 241 96 133 166 100 134 161 166 181 191 104 137 166 164 182 198 222 227 229 229 229 226 164 183 197 110 143 172 232 232 229 85 122 154 236 236 233 179 195 206 33 85 130 239 239 236 218 220 218 36 87 131 185 200 213 188 203 216 222 226 229 222 227 228 167 183 193 226 226 222 171 186 198 178 193 205 90 128 160 91 129 161 181 196 208 242 244 245 245 245 244 0 0 0]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G<@?8G?0??#?>O?8??#?>O?8??!!?<C? G<@b') ; yourself); yourself]
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   729
!
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   730
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   731
radioOnDisabledIcon_vista
3748
8ce94bccb3ac better icons
Claus Gittinger <cg@exept.de>
parents: 3746
diff changeset
   732
    ^ VistaToolbarIconLibrary radioOnDisabled12x12Icon
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   733
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   734
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   735
radioOnDisabledIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   736
    ^ self radioOnIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   737
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   738
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   739
radioOnDisabledIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   740
    ^ self radioOnIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   741
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   742
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   743
radioOnEnteredIcon_vista
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   744
    ^ VistaToolbarIconLibrary radioOnEntered12x12Icon
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   745
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   747
radioOnEnteredIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   748
    ^ self radioOnIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   749
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   750
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   751
radioOnEnteredIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   752
    ^ self radioOnIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   753
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   754
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   755
radioOnIcon_vista
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   756
    ^ VistaToolbarIconLibrary radioOn12x12Icon
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   757
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   758
3687
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   759
radioOnIcon_w95
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   760
    "This resource specification was automatically generated
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   761
     by the ImageEditor of ST/X."
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   762
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   763
    "Do not manually edit this!! If it is corrupted,
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   764
     the ImageEditor may not be able to read the specification."
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   765
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   766
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   767
     self radioOnIcon_w95 inspect
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   768
     ImageEditor openOnClass:self andSelector:#radioOnIcon_w95
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   769
     Icon flushCachedIcons
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   770
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   771
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   772
    <resource: #image>
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   773
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   774
    ^Icon
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   775
        constantNamed:'RadioButton class radioOnIcon_w95'
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   776
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   777
A@PDA@DA@PDDA@PDA@PA@P@@@@@A@PPDA@D@@@LC@0L@@@LDA@D@@0LC@0LC@ LD@P@C@0L@@@LC@0HC@P@C@0@@@@@C@0HC@P@C@0@@@@@C@0HC@P@C@0L@
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   778
@@LC@0HCA@D@@0LC@0LC@ LDA@DB@ LC@0LB@ LDA@PC@0HB@ HC@0PDA@PDA@LC@0LDA@PD') ; colorMapFromArray:#[0 0 0 128 128 128 223 223 223 255 255 255 0 0 0]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C0@?0G? _>C?<O?0??C?<G? _>@?0@<@') ; yourself); yourself]
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   779
!
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   780
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   781
radioOnIcon_xp
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   782
    "This resource specification was automatically generated
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   783
     by the ImageEditor of ST/X."
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   784
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   785
    "Do not manually edit this!! If it is corrupted,
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   786
     the ImageEditor may not be able to read the specification."
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   787
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   788
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   789
     self radioOnIcon_xp inspect
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   790
     ImageEditor openOnClass:self andSelector:#radioOnIcon_xp
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   791
     Icon flushCachedIcons
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   792
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   793
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   794
    <resource: #image>
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   795
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   796
    ^Icon
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   797
        constantNamed:'RadioButton class radioOnIcon_xp'
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   798
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   799
Q4]GC18MK04^C4]GQ4]GL0T<JD@1PPT3Q4]GL2ABA2(9BQ@AO3MGE UBOQ<7DBMCIA(EE!!8<A1<HL#86K@IDJQ8MJB(7L XQC (&I!!,UK4@9DC8WJ3UE@0LR
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   800
K1T1BRL6Q"8TLC(-M@4"PQACK@(DI1L\C@@^E TAI@H&@3(\B2TEFT\3O1)DI L-CBT;L4]GQ3 EJQ,RM@@EL4]GQ4]GFBHMK1T!!GT]GQ0@a') ; colorMapFromArray:#[112 145 175 178 193 205 245 245 243 249 249 248 36 150 36 33 85 130 85 213 81 224 224 219 226 232 222 232 232 229 154 204 152 253 253 253 253 253 252 90 128 160 41 168 38 222 228 229 236 236 233 67 195 63 242 244 245 238 243 237 19 146 16 90 128 159 222 227 229 66 195 63 222 226 229 222 227 228 181 196 208 185 200 213 252 252 251 221 226 229 164 183 198 231 231 227 85 122 154 164 182 198 164 183 197 239 239 236 243 243 241 188 204 217 247 247 246 152 201 151 167 183 193 110 143 172 226 226 222 56 185 53 232 238 230 251 251 250 34 162 32 36 87 131 152 200 151 171 186 198 169 220 166 180 195 206 188 203 216 33 161 33 160 210 158 234 234 230 179 195 206 229 229 226 250 250 249 96 133 166 100 134 161 229 229 225 77 191 74 91 129 161 218 220 218 104 137 166 166 181 191 241 241 239 245 245 244 38 150 35 42 168 39 0 0 0]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G<@?8G?0??#?>O?8??#?>O?8??!!?<C? G<@b') ; yourself); yourself]
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   801
! !
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   802
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   803
!RadioButton methodsFor:'accessing'!
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   804
3601
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   805
allViewBackground:something if:condition
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   806
    (condition value:self) ifTrue:[
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   807
        self backgroundColor:something.
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   808
3601
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   809
        (buttonStyle == #motif 
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   810
        or:[buttonStyle == #round3D
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   811
        or:[buttonStyle == #image
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   812
        or:[buttonStyle == #round2D]]]) ifTrue:[
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   813
            enteredBgColor := something.
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   814
            activeBgColor := something.
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   815
        ]
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   816
    ]
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   817
!
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   818
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   819
forceRadioButtonStyle
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   820
    "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
   821
     even if the styleSheet defaults differently.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   822
     (as in IRIS style)"
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   823
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   824
    buttonStyle isNil ifTrue:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   825
        styleSheet is3D ifTrue:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   826
            buttonStyle := #round3D.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   827
            activeBgColor := bgColor. 
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   828
            activeFgColor := fgColor.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   829
        ] ifFalse:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   830
            buttonStyle := #round2D.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   831
                activeFgColor := fgColor.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   832
                activeBgColor := bgColor.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   833
        ].
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   834
        buttonOnLevel := DefaultActiveLevel.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   835
        buttonOffLevel := DefaultPassiveLevel.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   836
        onLevel := offLevel := 0.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   837
        self level:0
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   838
    ]
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   839
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   840
    "Modified: / 18.6.1998 / 21:19:01 / cg"
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   841
    "Created: / 18.6.1998 / 21:23:58 / cg"
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   842
! !
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   843
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   844
!RadioButton methodsFor:'drawing'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   845
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   846
drawToggleImage
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   847
    "drawing of the radio image is done here."
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   848
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   849
    |x y img clrTop clrBot imgTop imgBot imgInside imgH imgOn threeD lvl
4291
85df5b1dfadf changed: #drawToggleImage
Michael Beyl <mb@exept.de>
parents: 4167
diff changeset
   850
     isActive isEntered isEnabled imgTopHeight|
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   851
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   852
    buttonStyle isNil ifTrue:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   853
        ^ super drawToggleImage
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   854
    ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   855
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   856
    isActive := controller pressed.
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   857
    isEnabled := controller enabled.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   858
    isEnabled ifFalse:[
3857
c9a39d1af47d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3856
diff changeset
   859
        img := isActive ifTrue: [disabledOnImage] ifFalse: [disabledOffImage].
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   860
    ] ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   861
        isEntered := controller entered.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   862
        isEntered ifTrue:[        
3856
09424e19650d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3748
diff changeset
   863
            img := isActive ifTrue: [enteredOnImage] ifFalse: [enteredOffImage].
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   864
        ] ifFalse:[
3856
09424e19650d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3748
diff changeset
   865
            img := isActive ifTrue:[onImage] ifFalse: [offImage].
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   866
        ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   867
    ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   868
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   869
    img notNil ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   870
        x := hSpace + margin.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   871
        y := (height - img height) // 2.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   872
        self displayForm:img x:x y:y.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   873
        ^ self.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   874
    ].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   875
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   876
    threeD := true.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   877
    buttonStyle == #motif ifTrue:[
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   878
        "/ square rotated by 45 degrees ...
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   879
        imgTop := self class motifCheckTopForm.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   880
        imgBot := self class motifCheckBotForm.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   881
        imgInside := self class motifCheckInnerForm.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   882
    ] ifFalse:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   883
        buttonStyle == #round3D ifTrue:[
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   884
            "/ round 3D button ...
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   885
            imgTop := self class round3DCheckTopForm.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   886
            imgBot := self class round3DCheckBotForm.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   887
            imgInside := self class round3DCheckInnerForm.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   888
            imgH := self class roundHalfLightForm.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   889
            buttonOnLevel == buttonOffLevel ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   890
                isActive ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   891
                    imgOn := self class roundOnForm.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   892
                ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   893
            ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   894
        ] ifFalse:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   895
            buttonStyle == #image ifTrue:[
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   896
                "/ bitmap images ...
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   897
                imgTop := buttonOffImage.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   898
                isActive ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   899
                    imgOn := buttonOnImage.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   900
                ].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   901
            ] ifFalse:[    
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   902
                "/ round 2D ...
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   903
                imgTop := self class roundOffForm.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   904
                isActive ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   905
                    imgOn := self class roundOnForm.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   906
                ].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   907
            ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   908
            threeD := false.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   909
        ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   910
    ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   911
4291
85df5b1dfadf changed: #drawToggleImage
Michael Beyl <mb@exept.de>
parents: 4167
diff changeset
   912
    imgTopHeight := 0.
85df5b1dfadf changed: #drawToggleImage
Michael Beyl <mb@exept.de>
parents: 4167
diff changeset
   913
85df5b1dfadf changed: #drawToggleImage
Michael Beyl <mb@exept.de>
parents: 4167
diff changeset
   914
    imgTop notNil ifTrue:[imgTop := imgTop onDevice:device. imgTopHeight := imgTop height].
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   915
    imgBot notNil ifTrue:[imgBot := imgBot onDevice:device].
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   916
    imgInside notNil ifTrue:[imgInside := imgInside onDevice:device].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   917
    imgH notNil ifTrue:[imgH := imgH onDevice:device].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   918
    imgOn notNil ifTrue:[imgOn := imgOn onDevice:device].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   919
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   920
    x := hSpace + margin.
4291
85df5b1dfadf changed: #drawToggleImage
Michael Beyl <mb@exept.de>
parents: 4167
diff changeset
   921
    y := (height - imgTopHeight) // 2.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   922
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   923
    threeD ifFalse:[
3723
c6331b93035d changed #drawToggleImage - take care of non-existing images
Stefan Vogel <sv@exept.de>
parents: 3694
diff changeset
   924
        imgTop notNil ifTrue:[
c6331b93035d changed #drawToggleImage - take care of non-existing images
Stefan Vogel <sv@exept.de>
parents: 3694
diff changeset
   925
            self paint:fgColor.
c6331b93035d changed #drawToggleImage - take care of non-existing images
Stefan Vogel <sv@exept.de>
parents: 3694
diff changeset
   926
            self displayForm:imgTop x:x y:y.
c6331b93035d changed #drawToggleImage - take care of non-existing images
Stefan Vogel <sv@exept.de>
parents: 3694
diff changeset
   927
        ].
c6331b93035d changed #drawToggleImage - take care of non-existing images
Stefan Vogel <sv@exept.de>
parents: 3694
diff changeset
   928
        (isActive and:[imgOn notNil]) ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   929
            self paint:(lampColor ? activeFgColor).
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   930
            self displayForm:imgOn x:x y:y
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   931
        ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   932
    ] ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   933
        lvl := isActive ifTrue:[buttonOnLevel]
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   934
                        ifFalse:[buttonOffLevel].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   935
        lvl < 0 ifTrue:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   936
            clrTop := shadowColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   937
            clrBot := lightColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   938
        ] ifFalse:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   939
            clrTop := lightColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   940
            clrBot := shadowColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   941
        ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   942
        self paint:clrTop.
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   943
        self displayForm:imgTop x:x y:y.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   944
        self paint:clrBot.
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   945
        self displayForm:imgBot x:x y:y.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   946
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   947
        (imgH notNil and:[halfShadowColor notNil]) ifTrue:[
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   948
            self paint:halfShadowColor.
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   949
            self displayForm:imgH x:x y:y
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   950
        ].
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   951
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   952
        imgInside notNil ifTrue:[
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   953
            self paint:(View defaultViewBackgroundColor).
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   954
            self displayForm:imgInside x:x y:y
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   955
        ].
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   956
        (isActive and:[imgOn notNil]) ifTrue:[
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   957
            self paint:lampColor.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   958
            self displayForm:imgOn x:x y:y
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   959
        ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   960
    ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   961
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   962
    "Created: / 3.11.1997 / 12:16:30 / cg"
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   963
    "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
   964
!
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   965
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   966
drawWin95FocusFrame
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   967
    "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
   968
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   969
    |x y m1|
1696
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   970
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   971
    x := labelOriginX. " margin + 1. "
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   972
    y := labelOriginY. " margin + 1. "
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   973
    m1 := margin + 1.
1696
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   974
    self
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   975
        displayDottedRectangleX:x
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   976
        y:y
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   977
        width:(width - x - m1)
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   978
        height:(height - y - m1).
1696
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   979
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   980
    "Created: / 17.9.1998 / 14:16:46 / cg"
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   981
    "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
   982
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   983
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   984
!RadioButton methodsFor:'initialization'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   985
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   986
defaultControllerClass
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   987
    ^ RadioButtonController
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   988
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   989
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   990
initStyle
3534
4d79fd15620e comment
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   991
    "setup viewStyle specifics"
4d79fd15620e comment
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   992
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   993
    <resource: #style (#'radioButton.showLamp')>
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   994
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   995
    buttonStyle isNil ifTrue:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   996
        buttonStyle := DefaultButtonStyle.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   997
    ].
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   998
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   999
    super initStyle.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1000
4505
347980ba9a1b more stylesheet options
Claus Gittinger <cg@exept.de>
parents: 4291
diff changeset
  1001
    DefaultBorderWidth notNil ifTrue:[self borderWidth: DefaultBorderWidth].
2583
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
  1002
    fgColor := DefaultForegroundColor ? fgColor.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
  1003
    bgColor := DefaultBackgroundColor ? bgColor.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
  1004
    activeBgColor := DefaultActiveBackgroundColor ? activeBgColor.
1814
bbeeed65ec84 do not highlight when entering (unless explicitely set)
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  1005
    enteredBgColor := bgColor.
bbeeed65ec84 do not highlight when entering (unless explicitely set)
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  1006
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1007
    buttonStyle isNil ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1008
        showLamp := styleSheet at:#'radioButton.showLamp' default:showLamp.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1009
        ^ self
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1010
    ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1011
1392
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1012
    adjust := #left.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1013
    showLamp := true.
1469
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
  1014
    lampColor := Color black.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1015
    buttonOnLevel := DefaultActiveLevel.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1016
    buttonOffLevel := DefaultPassiveLevel.
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  1017
    onLevel := offLevel := 0.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1018
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1019
    self level:0.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1020
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1021
    (buttonStyle == #motif 
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1022
    or:[buttonStyle == #round3D
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1023
    or:[buttonStyle == #image]]) ifTrue:[
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1024
        activeBgColor := bgColor. 
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1025
        activeFgColor := fgColor.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1026
        buttonStyle == #image ifTrue:[
4167
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1027
            buttonOnImage := self class roundOnForm.
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1028
            buttonOnImage notNil ifTrue:[ buttonOnImage := buttonOnImage onDevice:device].
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1029
            buttonOffImage := self class roundOffForm.
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1030
            buttonOffImage notNil ifTrue:[ buttonOffImage := buttonOffImage onDevice:device].
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
  1031
4167
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1032
            onImage := self class activeForm.
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1033
            onImage notNil ifTrue:[ onImage := onImage onDevice:device].
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1034
            offImage := self class passiveForm.
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1035
            offImage notNil ifTrue:[ offImage := offImage onDevice:device].
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1036
            disabledOnImage := self class disabledActiveForm.
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1037
            disabledOnImage notNil ifTrue:[ disabledOnImage := disabledOnImage onDevice:device].
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1038
            disabledOffImage := self class disabledPassiveForm.
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1039
            disabledOffImage notNil ifTrue:[ disabledOffImage := disabledOffImage onDevice:device].
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1040
            enteredOnImage := self class enteredActiveForm.
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1041
            enteredOnImage notNil ifTrue:[ enteredOnImage := enteredOnImage onDevice:device].
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1042
            enteredOffImage := self class enteredPassiveForm.
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1043
            enteredOffImage notNil ifTrue:[ enteredOffImage := enteredOffImage onDevice:device].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1044
        ]
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1045
    ] ifFalse:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1046
        buttonStyle == #round2D ifTrue:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1047
            activeFgColor := fgColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1048
            activeBgColor := bgColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1049
        ]
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
  1050
    ].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1051
4167
e441bac0abff changed: #initStyle
Claus Gittinger <cg@exept.de>
parents: 3997
diff changeset
  1052
    "Modified: / 25-08-2010 / 22:57:37 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1053
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1054
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1055
!RadioButton methodsFor:'private'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1056
1392
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1057
computeLabelOrigin
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1058
    super computeLabelOrigin.
1469
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
  1059
    buttonStyle notNil ifTrue:[    
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
  1060
        labelOriginX := hSpace + 15 + hSpace  
1392
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1061
    ]
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1062
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1063
    "Modified: / 3.11.1997 / 18:17:58 / cg"
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1064
!
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1065
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1066
lampImageHeight
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
  1067
    buttonStyle isNil ifTrue:[^ super lampImageHeight].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1068
    ^ 15
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1069
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1070
    "Created: / 3.11.1997 / 14:27:27 / cg"
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
  1071
    "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
  1072
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1073
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1074
lampImageWidth
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
  1075
    buttonStyle isNil ifTrue:[^ super lampImageWidth].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1076
    ^ 15
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1077
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1078
    "Created: / 3.11.1997 / 14:27:23 / cg"
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
  1079
    "Modified: / 3.11.1997 / 18:10:50 / cg"
3997
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1080
!
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1081
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1082
rawLabelSizeOf:aLogo
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1083
    "compute the extent needed to hold the label plus the lamp"
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1084
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1085
    |ext|
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1086
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1087
    ext := super rawLabelSizeOf:aLogo.
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1088
    buttonStyle notNil ifTrue:[
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1089
        ^ ext + (15 @ 0)
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1090
    ].
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1091
    ^ ext
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1092
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1093
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1094
!RadioButton methodsFor:'queries'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1095
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1096
is3D
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1097
    buttonStyle == #round2D ifTrue:[^ false.].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1098
    ^ super is3D
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1099
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1100
    "Created: / 3.11.1997 / 14:39:36 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1101
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1102
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1103
!RadioButton class methodsFor:'documentation'!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1104
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1105
version
4740
0399aad4f124 class: RadioButton
Claus Gittinger <cg@exept.de>
parents: 4739
diff changeset
  1106
    ^ '$Header: /cvs/stx/stx/libwidg/RadioButton.st,v 1.53 2013-09-04 21:45:24 cg Exp $'
3997
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1107
!
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1108
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1109
version_CVS
4740
0399aad4f124 class: RadioButton
Claus Gittinger <cg@exept.de>
parents: 4739
diff changeset
  1110
    ^ '$Header: /cvs/stx/stx/libwidg/RadioButton.st,v 1.53 2013-09-04 21:45:24 cg Exp $'
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1111
! !
4505
347980ba9a1b more stylesheet options
Claus Gittinger <cg@exept.de>
parents: 4291
diff changeset
  1112