RadioButton.st
author Claus Gittinger <cg@exept.de>
Wed, 21 Oct 2009 16:24:26 +0200
changeset 3997 319d830f9fe2
parent 3857 c9a39d1af47d
child 4167 e441bac0abff
permissions -rw-r--r--
computeLabelSize refactorings
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'
1629
21481cd942f9 cache forms - avoid recreation.
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
    18
	classVariableNames:'DefaultButtonStyle DefaultActiveLevel DefaultPassiveLevel
2583
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
    19
		DefaultForegroundColor DefaultBackgroundColor
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'
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   555
                      )>
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   556
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   557
    |l fetchImage|
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   558
3668
b7da9e492ee6 changed #initialize - set font
Stefan Vogel <sv@exept.de>
parents: 3601
diff changeset
   559
    DefaultFont := StyleSheet fontAt:'label.font'.                   
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   560
    DefaultButtonStyle := StyleSheet at:#'radioButton.style'.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   561
    l := -1.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   562
    DefaultButtonStyle == #round2D ifTrue:[l := 0].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   563
    DefaultActiveLevel := StyleSheet at:#'radioButton.activeLevel' default:l.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   564
    DefaultButtonStyle == #motif ifTrue:[l := 1].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   565
    DefaultPassiveLevel := StyleSheet at:#'radioButton.passiveLevel' default:l.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   566
2583
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   567
    DefaultForegroundColor := StyleSheet at:#'radioButton.foregroundColor'.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   568
    DefaultBackgroundColor := StyleSheet at:#'radioButton.backgroundColor'.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   569
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   570
    DefaultActiveForegroundColor := StyleSheet at:#'radioButton.activeForegroundColor'.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   571
    DefaultActiveBackgroundColor := StyleSheet at:#'radioButton.activeBackgroundColor'.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   572
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   573
    RoundOnForm := RoundOffForm := nil.
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   574
    ActiveForm := EnteredActiveForm := nil.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   575
    PassiveForm := EnteredPassiveForm := nil.
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   576
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   577
    fetchImage := 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   578
        [:fileNameKey :imageKey :defaultW95 :defaultXP :defaultVista |
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   579
            |f|
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   580
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   581
            f := StyleSheet at:imageKey.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   582
            f notNil 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   583
                ifTrue:[ 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   584
                    f := f value ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   585
                ifFalse:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   586
                    f := StyleSheet at:fileNameKey.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   587
                    f notNil 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   588
                        ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   589
                            f := Smalltalk imageFromFileNamed:f forClass:self.]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   590
                        ifFalse:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   591
                            f := (StyleSheet isWindowsVistaStyle)
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   592
                                ifTrue:defaultVista
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
                                    StyleSheet isWindowsXPStyle
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   595
                                        ifTrue:defaultXP
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   596
                                        ifFalse:defaultW95].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   597
                        ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   598
                ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   599
            f notNil ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   600
                f := f onDevice:Display
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   603
        ].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   604
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   605
    ActiveForm := RoundOnForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   606
            value:#'radioButton.activeImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   607
            value:#'radioButton.activeImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   608
            value:[ self radioOnIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   609
            value:[ self radioOnIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   610
            value:[ self radioOnIcon_vista ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   611
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   612
    PassiveForm := RoundOffForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   613
            value:#'radioButton.passiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   614
            value:#'radioButton.passiveImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   615
            value:[ self radioOffIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   616
            value:[ self radioOffIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   617
            value:[ self radioOffIcon_vista ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   618
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   619
    EnteredActiveForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   620
            value:#'radioButton.enteredActiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   621
            value:#'radioButton.enteredActiveImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   622
            value:[ self radioOnEnteredIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   623
            value:[ self radioOnEnteredIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   624
            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
   625
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   626
    EnteredPassiveForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   627
            value:#'radioButton.enteredPassiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   628
            value:#'radioButton.enteredPassiveImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   629
            value:[ self radioOffEnteredIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   630
            value:[ self radioOffEnteredIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   631
            value:[ self radioOffEnteredIcon_vista ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   632
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   633
    DisabledActiveForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   634
            value:#'radioButton.disabledActiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   635
            value:#'radioButton.disabledActiveImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   636
            value:[ self radioOnDisabledIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   637
            value:[ self radioOnDisabledIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   638
            value:[ self radioOnDisabledIcon_vista ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   639
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   640
    DisabledPassiveForm := fetchImage 
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   641
            value:#'radioButton.disabledPassiveImageFile'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   642
            value:#'radioButton.disabledPassiveImage'
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   643
            value:[ self radioOffDisabledIcon_w95 ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   644
            value:[ self radioOffDisabledIcon_xp ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   645
            value:[ self radioOffDisabledIcon_vista ].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   646
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   647
    "
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   648
     self updateStyleCache
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
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   651
    "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
   652
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   653
3687
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   654
!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
   655
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   656
radioOffDisabledIcon_vista
3748
8ce94bccb3ac better icons
Claus Gittinger <cg@exept.de>
parents: 3746
diff changeset
   657
    ^ VistaToolbarIconLibrary radioOffDisabled12x12Icon
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   658
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   659
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   660
radioOffDisabledIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   661
    ^ self radioOffIcon_w95
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   664
radioOffDisabledIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   665
    ^ self radioOffIcon_xp
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   668
radioOffEnteredIcon_vista
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   669
    ^ VistaToolbarIconLibrary radioOffEntered12x12Icon
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   672
radioOffEnteredIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   673
    ^ self radioOffIcon_w95
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   676
radioOffEnteredIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   677
    ^ self radioOffIcon_xp
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   680
radioOffIcon_vista
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   681
    ^ VistaToolbarIconLibrary radioOff12x12Icon
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
3687
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   684
radioOffIcon_w95
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   685
    "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
   686
     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
   687
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   688
    "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
   689
     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
   690
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   691
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   692
     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
   693
     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
   694
     Icon flushCachedIcons
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   695
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   696
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   697
    <resource: #image>
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
    ^Icon
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   700
        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
   701
        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
   702
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
   703
@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
   704
!
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   705
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   706
radioOffIcon_xp
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   707
    "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
   708
     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
   709
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   710
    "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
   711
     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
   712
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   713
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   714
     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
   715
     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
   716
     Icon flushCachedIcons
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   717
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   718
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   719
    <resource: #image>
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
    ^Icon
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   722
        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
   723
        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
   724
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
   725
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
   726
!
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   727
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   728
radioOnDisabledIcon_vista
3748
8ce94bccb3ac better icons
Claus Gittinger <cg@exept.de>
parents: 3746
diff changeset
   729
    ^ VistaToolbarIconLibrary radioOnDisabled12x12Icon
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   730
!
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   731
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   732
radioOnDisabledIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   733
    ^ self radioOnIcon_w95
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   736
radioOnDisabledIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   737
    ^ self radioOnIcon_xp
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   740
radioOnEnteredIcon_vista
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   741
    ^ VistaToolbarIconLibrary radioOnEntered12x12Icon
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   744
radioOnEnteredIcon_w95
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   745
    ^ self radioOnIcon_w95
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   748
radioOnEnteredIcon_xp
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   749
    ^ self radioOnIcon_xp
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
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   752
radioOnIcon_vista
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   753
    ^ VistaToolbarIconLibrary radioOn12x12Icon
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
3687
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   756
radioOnIcon_w95
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   757
    "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
   758
     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
   759
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   760
    "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
   761
     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
   762
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   763
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   764
     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
   765
     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
   766
     Icon flushCachedIcons
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   767
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   768
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   769
    <resource: #image>
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
    ^Icon
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   772
        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
   773
        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
   774
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
   775
@@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
   776
!
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   777
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   778
radioOnIcon_xp
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   779
    "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
   780
     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
   781
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   782
    "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
   783
     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
   784
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   785
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   786
     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
   787
     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
   788
     Icon flushCachedIcons
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   789
    "
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   790
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   791
    <resource: #image>
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
    ^Icon
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   794
        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
   795
        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
   796
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
   797
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
   798
! !
48b9b4e7ed08 to ensure bitmap is always available: include it in the binary
Claus Gittinger <cg@exept.de>
parents: 3668
diff changeset
   799
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   800
!RadioButton methodsFor:'accessing'!
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   801
3601
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   802
allViewBackground:something if:condition
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   803
    (condition value:self) ifTrue:[
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   804
        self backgroundColor:something.
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   805
3601
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   806
        (buttonStyle == #motif 
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   807
        or:[buttonStyle == #round3D
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   808
        or:[buttonStyle == #image
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   809
        or:[buttonStyle == #round2D]]]) ifTrue:[
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   810
            enteredBgColor := something.
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   811
            activeBgColor := something.
650eb2507527 allViewBackground: with optional condition
sr
parents: 3534
diff changeset
   812
        ]
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   813
    ]
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   814
!
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   815
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   816
forceRadioButtonStyle
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   817
    "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
   818
     even if the styleSheet defaults differently.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   819
     (as in IRIS style)"
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   820
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   821
    buttonStyle isNil ifTrue:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   822
        styleSheet is3D ifTrue:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   823
            buttonStyle := #round3D.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   824
            activeBgColor := bgColor. 
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   825
            activeFgColor := fgColor.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   826
        ] ifFalse:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   827
            buttonStyle := #round2D.
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
                activeBgColor := bgColor.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   830
        ].
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   831
        buttonOnLevel := DefaultActiveLevel.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   832
        buttonOffLevel := DefaultPassiveLevel.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   833
        onLevel := offLevel := 0.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   834
        self level:0
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   835
    ]
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   836
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   837
    "Modified: / 18.6.1998 / 21:19:01 / cg"
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   838
    "Created: / 18.6.1998 / 21:23:58 / cg"
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
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   841
!RadioButton methodsFor:'drawing'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   842
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   843
drawToggleImage
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   844
    "drawing of the radio image is done here."
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   845
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   846
    |x y img clrTop clrBot imgTop imgBot imgInside imgH imgOn threeD lvl
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   847
     isActive isEntered isEnabled|
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   848
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   849
    buttonStyle isNil ifTrue:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   850
        ^ super drawToggleImage
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
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   853
    isActive := controller pressed.
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   854
    isEnabled := controller enabled.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   855
    isEnabled ifFalse:[
3857
c9a39d1af47d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3856
diff changeset
   856
        img := isActive ifTrue: [disabledOnImage] ifFalse: [disabledOffImage].
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   857
    ] ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   858
        isEntered := controller entered.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   859
        isEntered ifTrue:[        
3856
09424e19650d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3748
diff changeset
   860
            img := isActive ifTrue: [enteredOnImage] ifFalse: [enteredOffImage].
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   861
        ] ifFalse:[
3856
09424e19650d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3748
diff changeset
   862
            img := isActive ifTrue:[onImage] ifFalse: [offImage].
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   863
        ]
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   864
    ].
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   865
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   866
    img notNil ifTrue:[
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   867
        x := hSpace + margin.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   868
        y := (height - img height) // 2.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   869
        self displayForm:img x:x y:y.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   870
        ^ self.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
   871
    ].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   872
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   873
    threeD := true.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   874
    buttonStyle == #motif ifTrue:[
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   875
        "/ square rotated by 45 degrees ...
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   876
        imgTop := self class motifCheckTopForm.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   877
        imgBot := self class motifCheckBotForm.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   878
        imgInside := self class motifCheckInnerForm.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   879
    ] ifFalse:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   880
        buttonStyle == #round3D ifTrue:[
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   881
            "/ round 3D button ...
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   882
            imgTop := self class round3DCheckTopForm.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   883
            imgBot := self class round3DCheckBotForm.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   884
            imgInside := self class round3DCheckInnerForm.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   885
            imgH := self class roundHalfLightForm.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   886
            buttonOnLevel == buttonOffLevel ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   887
                isActive ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   888
                    imgOn := self class roundOnForm.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   889
                ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   890
            ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   891
        ] ifFalse:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   892
            buttonStyle == #image ifTrue:[
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   893
                "/ bitmap images ...
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   894
                imgTop := buttonOffImage.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   895
                isActive ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   896
                    imgOn := buttonOnImage.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   897
                ].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   898
            ] ifFalse:[    
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   899
                "/ round 2D ...
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   900
                imgTop := self class roundOffForm.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   901
                isActive ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   902
                    imgOn := self class roundOnForm.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   903
                ].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   904
            ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   905
            threeD := false.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   906
        ]
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
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   909
    imgTop notNil ifTrue:[imgTop := imgTop onDevice:device].
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   910
    imgBot notNil ifTrue:[imgBot := imgBot onDevice:device].
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   911
    imgInside notNil ifTrue:[imgInside := imgInside onDevice:device].
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   912
    imgH notNil ifTrue:[imgH := imgH onDevice:device].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   913
    imgOn notNil ifTrue:[imgOn := imgOn onDevice:device].
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   914
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   915
    x := hSpace + margin.
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   916
    y := (height - imgTop height) // 2.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   917
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   918
    threeD ifFalse:[
3723
c6331b93035d changed #drawToggleImage - take care of non-existing images
Stefan Vogel <sv@exept.de>
parents: 3694
diff changeset
   919
        imgTop notNil ifTrue:[
c6331b93035d changed #drawToggleImage - take care of non-existing images
Stefan Vogel <sv@exept.de>
parents: 3694
diff changeset
   920
            self paint:fgColor.
c6331b93035d changed #drawToggleImage - take care of non-existing images
Stefan Vogel <sv@exept.de>
parents: 3694
diff changeset
   921
            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
   922
        ].
c6331b93035d changed #drawToggleImage - take care of non-existing images
Stefan Vogel <sv@exept.de>
parents: 3694
diff changeset
   923
        (isActive and:[imgOn notNil]) ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   924
            self paint:(lampColor ? activeFgColor).
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   925
            self displayForm:imgOn x:x y:y
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   926
        ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   927
    ] ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   928
        lvl := isActive ifTrue:[buttonOnLevel]
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   929
                        ifFalse:[buttonOffLevel].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   930
        lvl < 0 ifTrue:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   931
            clrTop := shadowColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   932
            clrBot := lightColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   933
        ] ifFalse:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   934
            clrTop := lightColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   935
            clrBot := shadowColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   936
        ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   937
        self paint:clrTop.
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   938
        self displayForm:imgTop x:x y:y.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   939
        self paint:clrBot.
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   940
        self displayForm:imgBot x:x y:y.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   941
1393
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   942
        (imgH notNil and:[halfShadowColor notNil]) ifTrue:[
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   943
            self paint:halfShadowColor.
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   944
            self displayForm:imgH x:x y:y
0d6edc6e063b nicer 3D round button
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
   945
        ].
1954
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   946
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   947
        imgInside notNil ifTrue:[
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   948
            self paint:(View defaultViewBackgroundColor).
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   949
            self displayForm:imgInside x:x y:y
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   950
        ].
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   951
        (isActive and:[imgOn notNil]) ifTrue:[
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   952
            self paint:lampColor.
dc1e397855dc allow for allViewBackground to be set.
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   953
            self displayForm:imgOn x:x y:y
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   954
        ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   955
    ]
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   956
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   957
    "Created: / 3.11.1997 / 12:16:30 / cg"
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   958
    "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
   959
!
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   960
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   961
drawWin95FocusFrame
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   962
    "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
   963
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   964
    |x y m1|
1696
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
    x := labelOriginX. " margin + 1. "
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   967
    y := labelOriginY. " margin + 1. "
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   968
    m1 := margin + 1.
1696
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   969
    self
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   970
        displayDottedRectangleX:x
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   971
        y:y
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   972
        width:(width - x - m1)
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   973
        height:(height - y - m1).
1696
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   974
adfae835bac8 draw the focus frame around the string only
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   975
    "Created: / 17.9.1998 / 14:16:46 / cg"
1892
110a6e458b5a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1882
diff changeset
   976
    "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
   977
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   978
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   979
!RadioButton methodsFor:'initialization'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   980
105
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   981
defaultControllerClass
3d064ba4a0cc *** empty log message ***
claus
parents: 86
diff changeset
   982
    ^ RadioButtonController
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   983
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   984
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   985
initStyle
3534
4d79fd15620e comment
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   986
    "setup viewStyle specifics"
4d79fd15620e comment
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   987
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   988
    <resource: #style (#'radioButton.showLamp')>
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   989
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   990
    buttonStyle isNil ifTrue:[
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   991
        buttonStyle := DefaultButtonStyle.
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   992
    ].
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
   993
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   994
    super initStyle.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
   995
2583
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   996
    fgColor := DefaultForegroundColor ? fgColor.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   997
    bgColor := DefaultBackgroundColor ? bgColor.
12b39e2bc41c more stuff defined in styleSheet
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   998
    activeBgColor := DefaultActiveBackgroundColor ? activeBgColor.
1814
bbeeed65ec84 do not highlight when entering (unless explicitely set)
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
   999
    enteredBgColor := bgColor.
bbeeed65ec84 do not highlight when entering (unless explicitely set)
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  1000
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1001
    buttonStyle isNil ifTrue:[
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1002
        showLamp := styleSheet at:#'radioButton.showLamp' default:showLamp.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1003
        ^ self
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1004
    ].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1005
1392
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1006
    adjust := #left.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1007
    showLamp := true.
1469
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
  1008
    lampColor := Color black.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1009
    buttonOnLevel := DefaultActiveLevel.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1010
    buttonOffLevel := DefaultPassiveLevel.
1583
147916baf6dc added #forceRadioButtonStyle - a kludge
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  1011
    onLevel := offLevel := 0.
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1012
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1013
    self level:0.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1014
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1015
    (buttonStyle == #motif 
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1016
    or:[buttonStyle == #round3D
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1017
    or:[buttonStyle == #image]]) ifTrue:[
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1018
        activeBgColor := bgColor. 
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1019
        activeFgColor := fgColor.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1020
        buttonStyle == #image ifTrue:[
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1021
            buttonOnImage := self class roundOnForm onDevice:device.
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1022
            buttonOffImage := self class roundOffForm onDevice:device.
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
  1023
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
  1024
            onImage := self class activeForm onDevice:device.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
  1025
            offImage := self class passiveForm onDevice:device.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
  1026
            disabledOnImage := self class disabledActiveForm onDevice:device.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
  1027
            disabledOffImage := self class disabledPassiveForm onDevice:device.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
  1028
            enteredOnImage := self class enteredActiveForm onDevice:device.
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
  1029
            enteredOffImage := self class enteredPassiveForm onDevice:device.
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1030
        ]
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1031
    ] ifFalse:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1032
        buttonStyle == #round2D ifTrue:[
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1033
            activeFgColor := fgColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1034
            activeBgColor := bgColor.
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1035
        ]
3746
9592829bf5b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
  1036
    ].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1037
1882
c042adbad29e nicer win95 look
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1038
    "Modified: / 28.4.1999 / 14:05:35 / cg"
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1039
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1040
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1041
!RadioButton methodsFor:'private'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1042
1392
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1043
computeLabelOrigin
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1044
    super computeLabelOrigin.
1469
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
  1045
    buttonStyle notNil ifTrue:[    
d4f108e1a667 revised for the docu
tz
parents: 1406
diff changeset
  1046
        labelOriginX := hSpace + 15 + hSpace  
1392
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1047
    ]
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1048
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1049
    "Modified: / 3.11.1997 / 18:17:58 / cg"
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1050
!
d30d46371cb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  1051
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1052
lampImageHeight
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
  1053
    buttonStyle isNil ifTrue:[^ super lampImageHeight].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1054
    ^ 15
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1055
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1056
    "Created: / 3.11.1997 / 14:27:27 / cg"
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
  1057
    "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
  1058
!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1059
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1060
lampImageWidth
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
  1061
    buttonStyle isNil ifTrue:[^ super lampImageWidth].
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1062
    ^ 15
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1063
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1064
    "Created: / 3.11.1997 / 14:27:23 / cg"
1391
33fef737601f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1384
diff changeset
  1065
    "Modified: / 3.11.1997 / 18:10:50 / cg"
3997
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1066
!
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1067
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1068
rawLabelSizeOf:aLogo
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1069
    "compute the extent needed to hold the label plus the lamp"
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1070
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1071
    |ext|
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1072
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1073
    ext := super rawLabelSizeOf:aLogo.
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1074
    buttonStyle notNil ifTrue:[
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1075
        ^ ext + (15 @ 0)
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1076
    ].
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1077
    ^ ext
1384
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1078
! !
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1079
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1080
!RadioButton methodsFor:'queries'!
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1081
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1082
is3D
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1083
    buttonStyle == #round2D ifTrue:[^ false.].
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1084
    ^ super is3D
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1085
e4acb2c5b10b more styles (motif, round3D and round2D)
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  1086
    "Created: / 3.11.1997 / 14:39:36 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1087
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1088
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1089
!RadioButton class methodsFor:'documentation'!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1090
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1091
version
3997
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1092
    ^ '$Header: /cvs/stx/stx/libwidg/RadioButton.st,v 1.48 2009-10-21 14:24:26 cg Exp $'
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1093
!
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1094
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1095
version_CVS
319d830f9fe2 computeLabelSize refactorings
Claus Gittinger <cg@exept.de>
parents: 3857
diff changeset
  1096
    ^ '$Header: /cvs/stx/stx/libwidg/RadioButton.st,v 1.48 2009-10-21 14:24:26 cg Exp $'
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1097
! !