Button.st
author Claus Gittinger <cg@exept.de>
Wed, 09 Sep 1998 21:07:09 +0200
changeset 1669 8c48fac7e961
parent 1665 085d9d2f0f1c
child 1681 7ce428bea95f
permissions -rw-r--r--
geometry again
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     1
"
4
88eb91574867 *** empty log message ***
claus
parents: 2
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
     3
	      All Rights Reserved
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     4
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    11
"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    12
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    13
Label subclass:#Button
264
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    14
	instanceVariableNames:'activeLogo passiveLogo disabledLogo focusLogo onLevel offLevel
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    15
		disabledFgColor activeFgColor activeBgColor enteredFgColor
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    16
		enteredBgColor isReturnButton shadowForm lightForm formColor
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    17
		formShadowColor formLightColor edgeStyle halfShadowColor
1206
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
    18
		halfLightColor defaultable enterLevel leaveLevel'
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
    19
	classVariableNames:'ReturnForm ReturnLightForm ReturnShadowForm DefaultActiveLevel
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
    20
		DefaultPassiveLevel DefaultEdgeStyle DefaultBorderWidth
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
    21
		DefaultForegroundColor DefaultBackgroundColor
264
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    22
		DefaultDisabledForegroundColor DefaultDisabledBackgroundColor
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    23
		DefaultEnteredForegroundColor DefaultEnteredBackgroundColor
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    24
		DefaultActiveForegroundColor DefaultActiveBackgroundColor
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    25
		DefaultReturnButtonHasImage DefaultReturnButtonHasBorder
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    26
		DefaultShadowColor DefaultLightColor DefaultHalfShadowColor
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    27
		DefaultHalfLightColor'
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    28
	poolDictionaries:''
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
    29
	category:'Views-Interactors'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    30
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    31
850
11c857edb53b comment
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
    32
!Button class methodsFor:'documentation'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    33
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    34
actionBlocksVersusModelChanges 
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    35
"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    36
    You may ask yourself, why ST/X supports two different ways
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    37
    to trigger a buttons action (also true for sliders, selectionInListViews,
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    38
    toggles etc.) and when to use which mechanism.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    39
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    40
    There are two reasons:
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    41
	1) history - historically, ST/X used only actionBlocks
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    42
	   Basically, these provide the most general functionality
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    43
	   (you can of course send change-messages from those blocks)
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    44
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    45
	   Change-message notification was added later, to make porting
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    46
	   of existing applications easier.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    47
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    48
	2) for many (simple) applications, it is often easier, to simply
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    49
	   define an action block. This is especially true, if the button
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    50
	   triggers some action (such as ok-/abort-buttons) and does NOT
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    51
	   change some models internal value.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    52
	   (other smalltalks provide extra adapter-models for this,
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    53
	    in which you can set actionBlocks in much the same way).
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    54
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    55
    In general:
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    56
	use model-change-messages, iff multiple views are possibly open
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    57
	on the same domain model, and changes can occur from multiple
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    58
	places. Or if a change has to be forwarded to multiple other objects
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    59
	(possible not foreseen).
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    60
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    61
	For simplicity, better use actionBlocks for trigger-like actions
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    62
	(such as closing a view, ok/abort etc.) iff there is only a single
258
ae4b8f1a6738 interest is written with one 'r' (shame on me)
Claus Gittinger <cg@exept.de>
parents: 244
diff changeset
    63
	entity which is interested in that button press.
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    64
"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    65
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    66
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    67
copyright
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    68
"
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    69
 COPYRIGHT (c) 1989 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
    70
	      All Rights Reserved
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    71
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    72
 This software is furnished under a license and may be used
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    73
 only in accordance with the terms of that license and with the
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    74
 inclusion of the above copyright notice.   This software may not
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    75
 be provided or otherwise made available to, or used by, any
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    76
 other person.  No title to or ownership of the software is
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    77
 hereby transferred.
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    78
"
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    79
!
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
    80
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    81
documentation
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    82
"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    83
    Buttons are Labels which do something when pressed/released.
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
    84
    Since they inherit from Label, read the documentation on Labels to 
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
    85
    see how color, layout, font, image or labelString are changed.
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
    86
133
claus
parents: 131
diff changeset
    87
    Buttons (and also instances of subclasses, such as toggles, checkToggles
claus
parents: 131
diff changeset
    88
    and radioButtons) perform some action when pressed, and optionally when
claus
parents: 131
diff changeset
    89
    released. Due to historic reasons, ST/X buttons support two mechanisms:
claus
parents: 131
diff changeset
    90
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
    91
    Actionblock operation:
133
claus
parents: 131
diff changeset
    92
      the button has an actionBlock (actually, it has two: a pressAction and
claus
parents: 131
diff changeset
    93
      a releaseAction) which is evaluated, when the button is pressed.
claus
parents: 131
diff changeset
    94
      The user of a button can set these action blocks via the #action:,
claus
parents: 131
diff changeset
    95
      #pressAction: or #releaseAction: messages.
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
    96
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
    97
    Model-View interaction:
133
claus
parents: 131
diff changeset
    98
      buttons with a model will send change-messages to the model and also react 
claus
parents: 131
diff changeset
    99
      to changes in the model.
claus
parents: 131
diff changeset
   100
      You have to define the buttons labelMessage and an aspectSymbol.
claus
parents: 131
diff changeset
   101
      When changed, the model should send 'self changed:<aspect>' if it wants the
claus
parents: 131
diff changeset
   102
      label to change and return a string from the labelSymbol-message.
118
claus
parents: 113
diff changeset
   103
      By default, the labelMsg is nil, therefore no update of the label is done.
claus
parents: 113
diff changeset
   104
      (this behavior is inherited from label, see documentation there)
claus
parents: 113
diff changeset
   105
133
claus
parents: 131
diff changeset
   106
      When pressed, the button sends a changeMessage to the model.
118
claus
parents: 113
diff changeset
   107
      If the changeMsg is for a one-argument message, the current
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   108
      press-state is passed as argument (i.e. true if pressed, false if released).
118
claus
parents: 113
diff changeset
   109
      By default, the change-Message is #value: (for ST-80 compatibility).
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   110
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   111
        button model:aModel.
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   112
        button aspect:aspectSymbol.
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   113
        button change:changeSymbol.
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   114
        button labelMessage:labelSymbol.
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   115
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   116
        model sends #changed:aspectSymbol
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   117
        ---> button will redraw its label from value returned by model>>labelSymbol
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   118
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   119
        button changes state:
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   120
        ---> button sends changeSymbol / changeSymbol:state to the model
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   121
118
claus
parents: 113
diff changeset
   122
      By default (as inherited), the labelMsg is nil; therefore, buttons
claus
parents: 113
diff changeset
   123
      do not try to aquire a new labelString from the model.
claus
parents: 113
diff changeset
   124
      If you want this behavior, you must set labelMsg and aspectMsg
claus
parents: 113
diff changeset
   125
      as appropriate.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   126
133
claus
parents: 131
diff changeset
   127
    See examples.
claus
parents: 131
diff changeset
   128
claus
parents: 131
diff changeset
   129
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   130
    [Instance variables:]
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   131
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
   132
      activeLogo              <StringOrImage> logo to show when active (pressed)
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
   133
      passiveLogo             <StringOrImage> logo to show when passive (released)
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   134
                                              default is nil for both, so the normal logo is used
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   135
                                              (see superclass: Label)
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   136
      onLevel                 <Integer>       level when pressed (3D only) (default: depends on style)
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   137
      offLevel                <Integer>       level when released (3D only) (default: depends on style)
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   138
      disabledFgColor         <Color>         color used to draw logo when disabled (default: depends on style)
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   139
      activeFgColor           <Color>         color to draw logo when pressed (default: depends on style)
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   140
      activeBgColor           <Color>         bg color when pressed (default: depends on style)
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   141
      enteredFgColor          <Color>         fg color to draw logo when cursor entered (default: depends on style)
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   142
      enteredBgColor          <Color>         bg color when cursor entered (default: depends on style)
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   143
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   144
      isReturnButton          <Boolean>       true if this button is also activated by the
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   145
                                              return key - if true, it will draw a return-bitmap 
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   146
                                              in addition to the logo (default: false)
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   147
1051
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
   148
      defaultable	      <Boolean>	      true, if this button can become a returnButton.
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
   149
					      (computes its default extent differently)
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
   150
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
   151
      shadowForm              <Form>          form to display in addition to buttons label (returnbutton only)
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
   152
      lightForm               <Form>          light part of shadowForm (returnbutton only)
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
   153
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
   154
      formColor               <Color>         color to draw form with (returnbutton only)
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
   155
      formShadowColor         <Color>         color for shadowing the form (3D only & return)
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   156
      formLightColor          <Color>         color for lighting the form (3D only)
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   157
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   158
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   159
    [styleSheet parameters:]
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   160
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   161
      buttonActiveLevel       <Integer>       level when on (ignored in 2D styles)
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   162
      buttonPassiveLevel      <Integer>       level when off (ignored in 2D styles)
74
9d0d6a11939e last version before introduction of controller
claus
parents: 62
diff changeset
   163
      buttonBorderWidth       <Integer>       default borderwidth
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   164
      buttonEdgeStyle         <Symbol>        style of edges (currently #soft or nil)
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   165
      buttonFont              <Font>          font to use for textual labels
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   166
      buttonForegroundColor   <Color>         color to draw foreground pixels (i.e. the string)
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   167
      buttonBackgroundColor   <Color>         color to draw background pixels
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   168
      buttonDisabledForegroundColor <Color>   same when disabled
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   169
      buttonDisabledBackgroundColor <Color>   same when disabled
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   170
      buttonEnteredForegroundColor  <Color>   same when mouse pointer is in
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   171
      buttonEnteredBackgroundColor  <Color>   same when mouse pointer is in
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   172
      buttonActiveForegroundColor   <Color>   same when button is active
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   173
      buttonActiveBackgroundColor   <Color>   same when button is active
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   174
      buttonShadowColor             <Color>   shadow color for edgaes (ignored in 2D styles)
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   175
      buttonLightColor              <Color>   light color for edgaes (ignored in 2D styles)
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   176
      buttonHalfShadowColor         <Color>   half shadow color; for soft edges only
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   177
      buttonHalfLightColor          <Color>   half light color; for soft edges only
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   178
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   179
      buttonReturnButtonHasImage    <Boolean> if true, return-buttons draw a return-key image
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   180
      buttonReturnButtonHasBorder   <Boolean> if true, return-buttons show a border
130
claus
parents: 128
diff changeset
   181
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   182
    [author:]
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   183
        Claus Gittinger
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   184
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   185
    [see also:]
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
   186
        Toggle CheckToggle CheckBox
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   187
        Dialog
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   188
        ValueHolder TriggerValue
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   189
        Block
133
claus
parents: 131
diff changeset
   190
"
claus
parents: 131
diff changeset
   191
!
claus
parents: 131
diff changeset
   192
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   193
examples 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   194
"
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   195
    You dont have to normally care for all the internals 
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   196
    (they allow many variations though). 
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   197
    For buttons with a stringLabel, the typical use is:
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   198
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   199
        b := Button label:'some logo' in:aView.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   200
        b action:[ .. things to do, when pressed ... ]
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   201
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   202
    and for bitmap/image buttons its:
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   203
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   204
        b := Button label:someImage in:aView.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   205
        b action:[ .. things to do, when pressed ... ]
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   206
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   207
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   208
133
claus
parents: 131
diff changeset
   209
    Of course, you can also setup things the ST-80 way, in first
claus
parents: 131
diff changeset
   210
    creating the button and later add it to some superview:
claus
parents: 131
diff changeset
   211
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   212
        b := Button new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   213
        b label:someImage.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   214
        b action:[ .. things to do, when pressed ... ]
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   215
        ...
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   216
        aSuperView add:b in:<frameRectangle>.
118
claus
parents: 113
diff changeset
   217
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   218
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   219
    Although you can specify most of the look of a button,
133
claus
parents: 131
diff changeset
   220
    you should use the defaults in most applications.
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   221
    As you specify more things in your program, 
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   222
    the styleSheet settings are more and more ignored.
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   223
    Also, even though it might look fancy, colorful
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   224
    button panels are usually not a good GUI design;
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   225
    they will attract the users attention - possibly to things
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   226
    which are not worth it.
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   227
    Finally, if you use fancy colors, always think of those poor users
133
claus
parents: 131
diff changeset
   228
    without color displays - the styleSheet allows those people to adjust things,
130
claus
parents: 128
diff changeset
   229
    while hard-coded colors cannot be fixed without changing the code.
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   230
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   231
    a simple button with default settings and no action:
133
claus
parents: 131
diff changeset
   232
    (you may want to try it with different viewStyle settings in effect):
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   233
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   234
          |top b|
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   235
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   236
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   237
          top extent:100@100.
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   238
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   239
          b := Button in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   240
          b label:'hello'.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   241
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   242
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   243
                                                                        [exEnd]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   244
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   245
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   246
    give it some action (watch the transcript):
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   247
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   248
          |top b|
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   249
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   250
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   251
          top extent:100@100.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   252
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   253
          b := Button in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   254
          b label:'hello'.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   255
          b action:[Transcript flash].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   256
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   257
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   258
                                                                        [exEnd]
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   259
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   260
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   261
    there is also a combined instance creation message:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   262
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   263
          |top b|
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   264
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   265
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   266
          top extent:100@100.
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   267
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   268
          b := Button label:'hello' action:[Transcript flash] in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   269
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   270
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   271
                                                                        [exEnd]
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   272
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   273
133
claus
parents: 131
diff changeset
   274
    a return button
claus
parents: 131
diff changeset
   275
    (in dialogs, you should setup things to have the return-key perform
claus
parents: 131
diff changeset
   276
     the ok action, and mark the corresponding button as being a returnButton):
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   277
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   278
          |top b|
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   279
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   280
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   281
          top extent:100@100.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   282
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   283
          b := Button label:'hello' action:[Transcript flash] in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   284
          b beReturnButton.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   285
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   286
                                                                        [exEnd]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   287
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   288
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   289
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   290
    multiple buttons in a panel:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   291
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   292
          |top panel b1 b2 b3|
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   293
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   294
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   295
          top extent:300@100.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   296
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   297
          panel := HorizontalPanelView origin:0.0@0.0 corner:1.0@1.0 in:top.
133
claus
parents: 131
diff changeset
   298
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   299
          b1 := Button label:'one'   in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   300
          b2 := Button label:'two'   in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   301
          b3 := Button label:'three' action:[Transcript flash] in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   302
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   303
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   304
                                                                        [exEnd]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   305
133
claus
parents: 131
diff changeset
   306
claus
parents: 131
diff changeset
   307
claus
parents: 131
diff changeset
   308
    enabling/disabling buttons via explicit messages:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   309
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   310
          |top panel b1 b2 b3|
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   311
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   312
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   313
          top extent:300@100.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   314
          panel := HorizontalPanelView origin:0.0@0.0 corner:1.0@1.0 in:top.
133
claus
parents: 131
diff changeset
   315
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   316
          b1 := Button label:'enable'  action:[b3 enable] in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   317
          b2 := Button label:'disable' action:[b3 disable] in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   318
          b3 := Button label:'flash'   action:[Transcript flash] in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   319
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   320
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   321
claus
parents: 131
diff changeset
   322
claus
parents: 131
diff changeset
   323
claus
parents: 131
diff changeset
   324
    enabling/disabling buttons via implicit value change of a valueHolder:
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   325
    The two views are only indirectly coupled (via the valueHolder);
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   326
    not knowing about each other.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   327
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   328
          |top panel ena t b1 b2 b3 check|
133
claus
parents: 131
diff changeset
   329
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   330
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   331
          top extent:300@100.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   332
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   333
          panel := HorizontalPanelView origin:0.0 @ 0.0 corner:1.0 @ 1.0 in:top.
133
claus
parents: 131
diff changeset
   334
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   335
          ena := false asValue.
133
claus
parents: 131
diff changeset
   336
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   337
          t := Toggle label:'enable' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   338
          t model:ena.
133
claus
parents: 131
diff changeset
   339
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   340
          b1 := Button label:'button1' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   341
          b1 controller enableChannel:ena.
133
claus
parents: 131
diff changeset
   342
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   343
          b2 := Button label:'button2' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   344
          b2 controller enableChannel:ena.
133
claus
parents: 131
diff changeset
   345
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   346
          b3 := Button label:'button3' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   347
          b3 controller enableChannel:ena.
133
claus
parents: 131
diff changeset
   348
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   349
          top open.
133
claus
parents: 131
diff changeset
   350
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   351
          check := CheckBox model:ena.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   352
          check label:'also enable'.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   353
          check extent:(check preferredExtent + (5@5)).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   354
          check open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   355
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   356
claus
parents: 131
diff changeset
   357
claus
parents: 131
diff changeset
   358
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   359
    changing colors:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   360
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   361
          |top b|
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   362
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   363
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   364
          top extent:100@100.
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   365
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   366
          b := Button label:'hello' in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   367
          b action:[Transcript flash].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   368
          b activeForegroundColor:(Color white).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   369
          b activeBackgroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   370
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   371
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   372
                                                                        [exEnd]
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   373
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   374
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   375
    changing more colors:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   376
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   377
          |top b|
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   378
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   379
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   380
          top extent:100@100.
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   381
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   382
          b := Button label:'hello' in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   383
          b action:[Transcript flash].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   384
          b enteredForegroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   385
          b enteredBackgroundColor:(b backgroundColor).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   386
          b activeForegroundColor:(Color white).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   387
          b activeBackgroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   388
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   389
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   390
                                                                        [exEnd]
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   391
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   392
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   393
    button with an image and different colors:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   394
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   395
          |top b|
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   396
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   397
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   398
          top extent:100@100.
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   399
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   400
          b := Button in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   401
          b label:(Image fromFile:'bitmaps/SBrowser.xbm').
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   402
          b action:[Transcript flash].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   403
          b enteredForegroundColor:(Color green darkened).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   404
          b enteredBackgroundColor:(b backgroundColor).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   405
          b activeForegroundColor:(Color white).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   406
          b activeBackgroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   407
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   408
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   409
                                                                        [exEnd]
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   410
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   411
118
claus
parents: 113
diff changeset
   412
    changing the image when pressed:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   413
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   414
          |top b|
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   415
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   416
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   417
          top extent:100@100.
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   418
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   419
          b := Button in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   420
          b passiveLogo:(Image fromFile:'bitmaps/SBrowser.xbm').
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   421
          b activeLogo:(Image fromFile:'bitmaps/CBrowser.xbm').
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   422
          b action:[Transcript flash].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   423
          b enteredForegroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   424
          b enteredBackgroundColor:(b backgroundColor).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   425
          b activeForegroundColor:(Color white).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   426
          b activeBackgroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   427
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   428
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   429
                                                                        [exEnd]
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   430
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   431
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   432
    well, even that is possible (but you should NEVER do it):
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   433
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   434
          |top b|
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   435
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   436
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   437
          top extent:100@100.
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   438
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   439
          b := Button in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   440
          b passiveLogo:(Image fromFile:'bitmaps/SmalltalkX.xbm').
1153
3d8eb61fad06 examples updated
Claus Gittinger <cg@exept.de>
parents: 1094
diff changeset
   441
          b activeLogo:'start'.
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   442
          b action:[Transcript flash].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   443
          b enteredForegroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   444
          b enteredBackgroundColor:(b backgroundColor).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   445
          b activeForegroundColor:(Color white).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   446
          b activeBackgroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   447
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   448
                                                                        [exEnd]
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   449
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   450
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   451
    more playing with colors:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   452
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   453
          |top b|
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   454
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   455
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   456
          top extent:100@100.
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   457
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   458
          b := Button in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   459
          b logo:(Image fromFile:'bitmaps/SmalltalkX.xbm').
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   460
          b action:[Transcript flash].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   461
          b foregroundColor:(Color red:0 green:80 blue:20) darkened.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   462
          b backgroundColor:(Color grey:10).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   463
          b enteredForegroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   464
          b activeForegroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   465
          b activeBackgroundColor:(Color grey:10).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   466
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   467
                                                                        [exEnd]
130
claus
parents: 128
diff changeset
   468
claus
parents: 128
diff changeset
   469
claus
parents: 128
diff changeset
   470
    more playing with colors:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   471
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   472
          |top b|
130
claus
parents: 128
diff changeset
   473
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   474
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   475
          top extent:100@100.
130
claus
parents: 128
diff changeset
   476
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   477
          b := Button in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   478
          b logo:(Image fromFile:'bitmaps/SmalltalkX.xbm').
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   479
          b action:[Transcript flash].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   480
          b foregroundColor:(Color red:0 green:80 blue:20) darkened.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   481
          b backgroundColor:(Color grey:10).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   482
          b enteredBackgroundColor:(Color grey:20).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   483
          b activeForegroundColor:(Color red).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   484
          b activeBackgroundColor:(Color grey:20).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   485
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   486
                                                                        [exEnd]
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   487
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   488
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   489
    fire on press (buttons in scrollbars do this, while normal buttons
133
claus
parents: 131
diff changeset
   490
    fire on release).
claus
parents: 131
diff changeset
   491
    To give the user a chance to change her mind
claus
parents: 131
diff changeset
   492
    and leave the button without action, you should not change the default 
claus
parents: 131
diff changeset
   493
    behavior and NOT use triggerOnDown-buttons in most applications:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   494
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   495
          |top b|
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   496
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   497
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   498
          top extent:100@100.
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   499
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   500
          b := Button label:'hello' in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   501
          b controller beTriggerOnDown.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   502
          b action:[Transcript flash].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   503
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   504
                                                                        [exEnd]
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   505
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   506
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   507
    To implement fun buttons (for games, show-demos etc.), you can
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   508
    access all internal parameters (and not take the viewStyle defaults)
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   509
    as in:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   510
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   511
          |b granite light shadow|
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   512
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   513
          b := Button label:'a nice one ?'.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   514
          granite := Image fromFile:'bitmaps/granite_small.tiff'.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   515
          light := granite lightened.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   516
          shadow := granite darkened darkened.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   517
          b backgroundColor:granite.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   518
          b foregroundColor:Color white.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   519
          b shadowColor:shadow.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   520
          b lightColor:light.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   521
          b enteredBackgroundColor:light.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   522
          b enteredForegroundColor:Color black.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   523
          b activeLevel:-3; passiveLevel:5.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   524
          b extent:(200 @ 50).
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   525
          b open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   526
                                                                         [exEnd]
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   527
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   528
    However, in your application, you may want to read those bitmaps only once
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   529
    during startup and cache them for later reuse in some class variable
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
   530
    (reading, lightning & darkening of images is a bit slow)
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   531
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   532
118
claus
parents: 113
diff changeset
   533
    ST/X Buttons allow simulation of the ST-80 MVC way of interacting.
claus
parents: 113
diff changeset
   534
    To do so, instead (or in addition) to defining actionBlocks, set the
127
claus
parents: 125
diff changeset
   535
    buttons model to have this be informed (in addition):
118
claus
parents: 113
diff changeset
   536
claus
parents: 113
diff changeset
   537
    Model-View interaction (ST-80 style):
claus
parents: 113
diff changeset
   538
    (have a look at the models values in the inspector, as the toggles change)
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   539
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   540
        |bool1 bool2 b1 b2 panel top|
118
claus
parents: 113
diff changeset
   541
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   542
        bool1 := ValueHolder newBoolean.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   543
        bool2 := ValueHolder newBoolean value:true.
118
claus
parents: 113
diff changeset
   544
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   545
        top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   546
        top extent:200@100.
118
claus
parents: 113
diff changeset
   547
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   548
        panel := HorizontalPanelView 
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   549
                  origin:0.0 @ 0.0 corner:1.0 @ 50 in:top.
118
claus
parents: 113
diff changeset
   550
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   551
        b1 := Toggle label:'eat me' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   552
        b1 model:bool1.
118
claus
parents: 113
diff changeset
   553
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   554
        b2 := Toggle label:'drink me' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   555
        b2 model:bool2.
118
claus
parents: 113
diff changeset
   556
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   557
        top open.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   558
        bool1 inspect.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   559
        bool2 inspect.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   560
                                                                        [exEnd]
118
claus
parents: 113
diff changeset
   561
133
claus
parents: 131
diff changeset
   562
118
claus
parents: 113
diff changeset
   563
    Using a PluggableAdaptor (ST-80 style):
claus
parents: 113
diff changeset
   564
    (notice, that this is almost what ST/X buttons did originally,
127
claus
parents: 125
diff changeset
   565
     therefore, you may want use actionBlocks right away ...)
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   566
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   567
          |adaptor1 adaptor2 b1 b2 panel top|
118
claus
parents: 113
diff changeset
   568
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   569
          adaptor1 := PluggableAdaptor new 
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   570
                            getBlock:[:m | false] 
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 610
diff changeset
   571
                            putBlock:[:m :v | Transcript showCR:'eat']
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   572
                            updateBlock:nil.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   573
          adaptor2 := PluggableAdaptor new 
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   574
                            getBlock:[:m | false] 
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 610
diff changeset
   575
                            putBlock:[:m :v | Transcript showCR:'drink']
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   576
                            updateBlock:nil.
118
claus
parents: 113
diff changeset
   577
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   578
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   579
          top extent:200@100.
118
claus
parents: 113
diff changeset
   580
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   581
          panel := HorizontalPanelView 
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   582
                    origin:0.0 @ 0.0 corner:1.0 @ 50 in:top.
118
claus
parents: 113
diff changeset
   583
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   584
          b1 := Button label:'eat me' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   585
          b1 model:adaptor1.
118
claus
parents: 113
diff changeset
   586
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   587
          b2 := Button label:'drink me' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   588
          b2 model:adaptor2.
118
claus
parents: 113
diff changeset
   589
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   590
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   591
                                                                        [exEnd]
118
claus
parents: 113
diff changeset
   592
claus
parents: 113
diff changeset
   593
claus
parents: 113
diff changeset
   594
    as a reminder, the corresponding ST/X setup is:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   595
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   596
          |b1 b2 panel top|
118
claus
parents: 113
diff changeset
   597
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   598
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   599
          top extent:200@100.
118
claus
parents: 113
diff changeset
   600
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   601
          panel := HorizontalPanelView 
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   602
                    origin:0.0 @ 0.0 corner:1.0 @ 50 in:top.
118
claus
parents: 113
diff changeset
   603
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   604
          b1 := Button label:'eat me' in:panel.
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 610
diff changeset
   605
          b1 action:[Transcript showCR:'eat'].
118
claus
parents: 113
diff changeset
   606
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   607
          b2 := Button label:'drink me' in:panel.
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 610
diff changeset
   608
          b2 action:[Transcript showCR:'drink'].
118
claus
parents: 113
diff changeset
   609
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   610
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   611
                                                                        [exEnd]
118
claus
parents: 113
diff changeset
   612
claus
parents: 113
diff changeset
   613
130
claus
parents: 128
diff changeset
   614
    accessing multiple aspects of a complex model
claus
parents: 128
diff changeset
   615
    (using a plug here to simulate that model ...)
133
claus
parents: 131
diff changeset
   616
    (Notice, the next example shall demonstrate multiple aspects;
claus
parents: 131
diff changeset
   617
     for this kind of functionality, you'd better use actionBlocks in
claus
parents: 131
diff changeset
   618
     real applications)
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   619
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   620
          |myModel b1 b2 panel top|
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   621
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   622
          myModel := Plug new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   623
          myModel respondTo:#grow with:[top extent:200@300].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   624
          myModel respondTo:#shrink with:[top extent:200@100].
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   625
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   626
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   627
          top extent:200@100.
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   628
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   629
          panel := HorizontalPanelView 
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   630
                    origin:0.0 @ 0.0  
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   631
                    corner:1.0 @ 50
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   632
                    in:top.
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   633
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   634
          b1 := Button label:'eat me' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   635
          b1 model:myModel; change:#grow.
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   636
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   637
          b2 := Button label:'drink me' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   638
          b2 model:myModel; change:#shrink.
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   639
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   640
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   641
                                                                        [exEnd]
118
claus
parents: 113
diff changeset
   642
113
fdd18cfff57e *** empty log message ***
claus
parents: 97
diff changeset
   643
130
claus
parents: 128
diff changeset
   644
    aquiring the label from the model
claus
parents: 128
diff changeset
   645
    (this functionality is inherited from Label)
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   646
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   647
          |myModel b1 b2 b3 panel top currentLabel|
130
claus
parents: 128
diff changeset
   648
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   649
          currentLabel := 'foo'.
130
claus
parents: 128
diff changeset
   650
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   651
          myModel := Plug new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   652
          myModel respondTo:#getLabel with:[currentLabel].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   653
          myModel respondTo:#b0Pressed with:[].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   654
          myModel respondTo:#b1Pressed with:[currentLabel := 'bar'.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   655
                                             myModel changed:#labelAspect].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   656
          myModel respondTo:#b2Pressed with:[currentLabel := 'foo'.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   657
                                             myModel changed:#labelAspect].
130
claus
parents: 128
diff changeset
   658
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   659
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   660
          top extent:300@100.
130
claus
parents: 128
diff changeset
   661
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   662
          panel := HorizontalPanelView 
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   663
                    origin:0.0 @ 0.0  
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   664
                    corner:1.0 @ 50
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   665
                    in:top.
130
claus
parents: 128
diff changeset
   666
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   667
          b1 := Button label:'press me' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   668
          b1 model:myModel; change:#b0Pressed; 
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   669
             labelMessage:#getLabel; aspect:#labelAspect.
130
claus
parents: 128
diff changeset
   670
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   671
          b2 := Button label:'press for bar' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   672
          b2 model:myModel; change:#b1Pressed.
130
claus
parents: 128
diff changeset
   673
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   674
          b3 := Button label:'press for foo' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   675
          b3 model:myModel; change:#b2Pressed.
130
claus
parents: 128
diff changeset
   676
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   677
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   678
                                                                        [exEnd]
130
claus
parents: 128
diff changeset
   679
133
claus
parents: 131
diff changeset
   680
claus
parents: 131
diff changeset
   681
    the same, using actionBlocks:
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   682
    (notice, that we must disable changeMessages from the first button).
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   683
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   684
          |myModel b1 b2 b3 panel top currentLabel|
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   685
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   686
          currentLabel := 'foo'.
133
claus
parents: 131
diff changeset
   687
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   688
          myModel := Plug new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   689
          myModel respondTo:#getLabel with:[currentLabel].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   690
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   691
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   692
          top extent:300@100.
133
claus
parents: 131
diff changeset
   693
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   694
          panel := HorizontalPanelView origin:0.0 @ 0.0 corner:1.0 @ 50 in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   695
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   696
          b1 := Button label:'press me' in:panel.
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 610
diff changeset
   697
          b1 model:myModel; action:[Transcript showCR:'pressed']; 
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   698
             labelMessage:#getLabel; aspect:#labelAspect; change:nil.
133
claus
parents: 131
diff changeset
   699
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   700
          b2 := Button label:'press for bar' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   701
          b2 action:[currentLabel := 'bar'. myModel changed:#labelAspect].
133
claus
parents: 131
diff changeset
   702
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   703
          b3 := Button label:'press for foo' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   704
          b3 action:[currentLabel := 'foo'. myModel changed:#labelAspect].
133
claus
parents: 131
diff changeset
   705
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   706
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   707
                                                                        [exEnd]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   708
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   709
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   710
    the same, using a labelChannel:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   711
                                                                        [exBegin]
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   712
          |b1 b2 b3 panel top labelHolder|
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   713
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   714
          labelHolder := 'press me' asValue.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   715
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   716
          top := StandardSystemView new.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   717
          top extent:350@100.
133
claus
parents: 131
diff changeset
   718
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   719
          panel := HorizontalPanelView origin:0.0 @ 0.0 corner:1.0 @ 50 in:top.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   720
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   721
          b1 := Button label:'none yet ' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   722
          b1 labelChannel:labelHolder.
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 610
diff changeset
   723
          b1 action:[Transcript showCR:'pressed'].
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   724
          b1 sizeFixed:true.
133
claus
parents: 131
diff changeset
   725
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   726
          b2 := Button label:'press for bar' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   727
          b2 action:[ labelHolder value:'bar' ].
133
claus
parents: 131
diff changeset
   728
420
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   729
          b3 := Button label:'press for foo' in:panel.
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   730
          b3 action:[ labelHolder value:'foo' ].
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   731
e57314f0ceb7 examples
Claus Gittinger <cg@exept.de>
parents: 392
diff changeset
   732
          top open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   733
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   734
88
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   735
    see 'doc/coding-examples' and 'doc/misc/quick_view_intro.doc' 
7560534e9026 *** empty log message ***
claus
parents: 82
diff changeset
   736
    for more variations on this theme.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   737
"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   738
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   739
850
11c857edb53b comment
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
   740
!Button class methodsFor:'instance creation'!
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   741
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   742
abortButton
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   743
    "since abort-buttons are very common, here is a convenient
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   744
     method to create one ..."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   745
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   746
    |aButton|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   747
366
27bf7d05650b renamed abort-button to cancel
Claus Gittinger <cg@exept.de>
parents: 346
diff changeset
   748
    aButton := Button label:(self classResources at:'cancel').
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   749
    aButton cursor:(Cursor thumbsDown).
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   750
    ^ aButton
366
27bf7d05650b renamed abort-button to cancel
Claus Gittinger <cg@exept.de>
parents: 346
diff changeset
   751
27bf7d05650b renamed abort-button to cancel
Claus Gittinger <cg@exept.de>
parents: 346
diff changeset
   752
    "Modified: 20.2.1996 / 20:20:16 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   753
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   754
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   755
abortButtonIn:aView
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   756
    "since abort-buttons are very common, here is a convenient
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   757
     method to create one ..."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   758
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   759
    |b|
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   760
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   761
    aView addSubView:(b := self abortButton). 
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   762
    ^ b
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   763
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   764
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   765
form:aForm action:aBlock in:aView
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   766
    "create and return a new Button with icon-label, aForm
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   767
     and pressAction, aBlock.  Button is placed into aView.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   768
     OBSOLETE: this is for backward compatibility; 
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   769
     you can now pass an image or form in the #label:action:in: message."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   770
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   771
    ^ ((self in:aView) form:aForm) action:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   772
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   773
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   774
label:aLabel action:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   775
    "create and return a new Button with text-label, aString
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   776
     and pressAction, aBlock."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   777
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   778
    ^ (self label:aLabel) action:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   779
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   780
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   781
label:aLabel action:aBlock in:aView
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   782
    "create and return a new Button with text-label, aString
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   783
     and pressAction, aBlock.  Button is placed into aView."
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   784
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   785
    ^ ((self in:aView) label:aLabel) action:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   786
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   787
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   788
okButton
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   789
    "since ok-buttons are very common, here is a convenient
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   790
     method to create one ..."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   791
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   792
    |aButton|
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   793
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   794
    aButton := Button label:(self classResources at:'ok').
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   795
    aButton cursor:(Cursor thumbsUp).
219
dc928d57d5e9 added beReturnButton
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
   796
    aButton beReturnButton.
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   797
    ^ aButton
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
   798
!
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
   799
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   800
okButtonIn:aView
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   801
    "since ok-buttons are very common, here is a convenient
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   802
     method to create one ..."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   803
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   804
    |b|
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   805
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   806
    aView addSubView:(b := self okButton).
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   807
    ^ b
1196
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   808
! !
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   809
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   810
!Button class methodsFor:'ST-80 instance creation'!
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   811
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   812
switch
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   813
    "ST-80 compatibility: create & return a new radioButton"
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   814
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   815
    ^ RadioButton new.
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   816
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   817
    "Created: 18.4.1997 / 20:19:09 / cg"
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   818
    "Modified: 18.4.1997 / 20:28:10 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   819
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   820
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   821
toggle
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   822
    "ST-80 compatibility: create & return a new toggle."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   823
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   824
    ^ Toggle new
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   825
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   826
    "
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   827
     Button toggle label:'press me';
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   828
		   model:((PluggableAdaptor on:(Point new))
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   829
			    getSelector:#x putSelector:#x:)
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   830
    "
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   831
    "this is the same as"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   832
    "
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   833
     Toggle new label:'press me';
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   834
		model:((PluggableAdaptor on:(Point new))
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   835
			    getSelector:#x putSelector:#x:)
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   836
    "
1196
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   837
!
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   838
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   839
trigger
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   840
    "ST-80 compatibility: create & return a new button, which
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   841
     triggers on press."
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   842
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   843
    |b|
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   844
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   845
    b := Button new.
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   846
    b controller beTriggerOnDown.
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   847
    ^ b
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   848
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   849
    "Created: 18.4.1997 / 19:55:57 / cg"
42a10a56d284 added #switch & #trigger for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1170
diff changeset
   850
    "Modified: 18.4.1997 / 19:56:52 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   851
! !
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   852
850
11c857edb53b comment
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
   853
!Button class methodsFor:'defaults'!
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   854
1595
be3e49c260f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1594
diff changeset
   855
defaultDisabledForegroundColor
be3e49c260f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1594
diff changeset
   856
    ^  DefaultDisabledForegroundColor
be3e49c260f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1594
diff changeset
   857
be3e49c260f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1594
diff changeset
   858
    "Created: / 20.6.1998 / 15:18:28 / cg"
be3e49c260f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1594
diff changeset
   859
!
be3e49c260f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1594
diff changeset
   860
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   861
returnFormOn:aDevice
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   862
    "return the form used for the return arrow in non-3D;
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   863
     cache the one for Display for the next round."
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   864
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   865
    |f|
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   866
781
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   867
    (ReturnForm notNil and:[aDevice == ReturnForm graphicsDevice]) ifTrue:[
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   868
        ^ ReturnForm
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   869
    ].
899
aa84d3d39d94 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 867
diff changeset
   870
    f := Image fromFile:'bitmaps/Return.xbm' resolution:100 on:aDevice.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   871
    f isNil ifTrue:[
1387
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   872
        f := Form width:24 height:14 fromArray:#[2r00000000 2r00000000 2r00000000
781
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   873
                                                 2r00000000 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   874
                                                 2r00000000 2r00000011 2r11100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   875
                                                 2r00000001 2r10000011 2r11100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   876
                                                 2r00000011 2r10000011 2r11100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   877
                                                 2r00000111 2r11111111 2r11100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   878
                                                 2r00001111 2r11111111 2r11100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   879
                                                 2r00011111 2r11111111 2r11100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   880
                                                 2r00001111 2r11111111 2r11100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   881
                                                 2r00000111 2r11111111 2r11100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   882
                                                 2r00000011 2r10000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   883
                                                 2r00000001 2r10000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   884
                                                 2r00000000 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   885
                                                 2r00000000 2r00000000 2r00000000]
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   886
                                              on:aDevice
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   887
    ].
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   888
    ReturnForm := f.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   889
    ^ f
781
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   890
1387
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   891
    "Modified: / 3.11.1997 / 09:12:37 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   892
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   893
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   894
returnLightFormOn:aDevice
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   895
    "return the form used for the return arrow light pixels (3D only);
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   896
     cache the one for Display for the next round"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   897
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   898
    |f|
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   899
781
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   900
    (ReturnLightForm notNil and:[aDevice == ReturnLightForm graphicsDevice]) ifTrue:[
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   901
        ^ ReturnLightForm
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   902
    ].
899
aa84d3d39d94 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 867
diff changeset
   903
    f := Image fromFile:'bitmaps/ReturnLight.xbm' resolution:100 on:aDevice.
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   904
    f isNil ifTrue:[
1387
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   905
        f := Form width:24 height:14 fromArray:#[2r00000000 2r00000000 2r00000000
781
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   906
                                                 2r00000000 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   907
                                                 2r00000000 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   908
                                                 2r00000000 2r00000000 2r00100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   909
                                                 2r00000000 2r00000000 2r00100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   910
                                                 2r00000000 2r00000000 2r00100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   911
                                                 2r00000000 2r00000000 2r00100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   912
                                                 2r00000000 2r00000000 2r00100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   913
                                                 2r00000000 2r00000000 2r00100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   914
                                                 2r00000000 2r11111111 2r11100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   915
                                                 2r00000000 2r10000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   916
                                                 2r00000000 2r10000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   917
                                                 2r00000000 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   918
                                                 2r00000000 2r00000000 2r00000000]
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   919
                                              on:aDevice
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   920
    ].
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   921
    ReturnLightForm := f.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   922
    ^ f
781
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   923
1387
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   924
    "Modified: / 3.11.1997 / 09:12:23 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   925
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   926
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   927
returnShadowFormOn:aDevice
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   928
    "return the form used for the return arrow shadow pixels (3D only);
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   929
     cache the one for Display for the next round."
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   930
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   931
    |f|
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   932
781
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   933
    (ReturnShadowForm notNil and:[aDevice == ReturnShadowForm graphicsDevice]) ifTrue:[
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   934
        ^ ReturnShadowForm
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   935
    ].
899
aa84d3d39d94 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 867
diff changeset
   936
    f := Image fromFile:'bitmaps/ReturnShadow.xbm' resolution:100 on:aDevice.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   937
    f isNil ifTrue:[
1387
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   938
        f := Form width:24 height:14 fromArray:#[2r00000000 2r00000000 2r00000000
781
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   939
                                                 2r00000000 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   940
                                                 2r00000000 2r00000011 2r11100000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   941
                                                 2r00000001 2r10000010 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   942
                                                 2r00000010 2r10000010 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   943
                                                 2r00000100 2r11111110 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   944
                                                 2r00001000 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   945
                                                 2r00010000 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   946
                                                 2r00001000 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   947
                                                 2r00000100 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   948
                                                 2r00000010 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   949
                                                 2r00000001 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   950
                                                 2r00000000 2r00000000 2r00000000
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   951
                                                 2r00000000 2r00000000 2r00000000]
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   952
                                              on:aDevice
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   953
    ].
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
   954
    ReturnShadowForm := f.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   955
    ^ f
781
51741bd620ab use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
   956
1387
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   957
    "Modified: / 3.11.1997 / 09:12:11 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   958
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   959
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   960
updateStyleCache
440
2beb33cb0146 added style resource directive
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   961
    "extract values from the styleSheet and cache them in class variables"
2beb33cb0146 added style resource directive
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   962
1355
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   963
    <resource: #style (#'button.edgeStyle' #'button.font' #'button.borderWidth'
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   964
                       #'button.activeLevel' #'button.passiveLevel'
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   965
                       #'button.backgroundColor' #'button.foregroundColor'
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   966
                       #'button.activeBackgroundColor' #'button.activeForegroundColor'
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   967
                       #'button.enteredBackgroundColor' #'button.enteredForegroundColor'
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   968
                       #'button.disabledForegroundColor' #'button.disabledBackgroundColor'
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   969
                       #'button.returnButtonHasImage'
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   970
                       #'button.returnButtonHasBorder' 
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   971
                       #'button.shadowColor' #'button.lightColor'
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   972
                       #'button.halfShadowColor' #'button.halfLightColor')>
440
2beb33cb0146 added style resource directive
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   973
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   974
    |defaultLevel|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   975
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   976
    StyleSheet is3D ifTrue:[
440
2beb33cb0146 added style resource directive
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   977
        defaultLevel := 1.
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   978
    ] ifFalse:[
440
2beb33cb0146 added style resource directive
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   979
        defaultLevel := 0
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   980
    ].
1355
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   981
    DefaultActiveLevel := StyleSheet at:'button.activeLevel' default:(defaultLevel negated).
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   982
    DefaultPassiveLevel := StyleSheet at:'button.passiveLevel' default:defaultLevel.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   983
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   984
    DefaultEdgeStyle := StyleSheet at:'button.edgeStyle'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   985
    DefaultFont := StyleSheet fontAt:'button.font'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   986
    DefaultBorderWidth := StyleSheet at:'button.borderWidth'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   987
    DefaultForegroundColor := StyleSheet colorAt:'button.foregroundColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   988
    DefaultBackgroundColor := StyleSheet colorAt:'button.backgroundColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   989
    DefaultDisabledForegroundColor := StyleSheet colorAt:'button.disabledForegroundColor' default:Color gray.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   990
    DefaultDisabledBackgroundColor := StyleSheet colorAt:'button.disabledBackgroundColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   991
    DefaultEnteredForegroundColor := StyleSheet colorAt:'button.enteredForegroundColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   992
    DefaultEnteredBackgroundColor := StyleSheet colorAt:'button.enteredBackgroundColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   993
    DefaultActiveForegroundColor := StyleSheet colorAt:'button.activeForegroundColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   994
    DefaultActiveBackgroundColor := StyleSheet colorAt:'button.activeBackgroundColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   995
    DefaultReturnButtonHasImage := StyleSheet at:'button.returnButtonHasImage' default:true.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   996
    DefaultReturnButtonHasBorder := StyleSheet at:'button.returnButtonHasBorder' default:false.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   997
    DefaultShadowColor := StyleSheet colorAt:'button.shadowColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   998
    DefaultLightColor := StyleSheet colorAt:'button.lightColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   999
    DefaultHalfShadowColor := StyleSheet colorAt:'button.halfShadowColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
  1000
    DefaultHalfLightColor := StyleSheet colorAt:'button.halfLightColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
  1001
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
  1002
    "Modified: 20.10.1997 / 13:49:41 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1003
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1004
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1005
!Button methodsFor:'accessing-behavior'!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1006
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1007
action:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1008
    "convenient method: depending on the setting of controllers triggerOnDown flag,
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1009
     either set the press-action and clear any release-action or
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1010
     vice versa, set the release-action and clear the press-action."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1011
315
dbfd0ae75b57 check for nil-controller (dont die if fBrowser is closed while command is being executed)
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  1012
    controller notNil ifTrue:[controller action:aBlock]
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1013
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1014
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1015
autoRepeat
346
0f756ddc01bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 328
diff changeset
  1016
    "turn on autorepeat OBSOLETE; use #autoRepeat:"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1017
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1018
    controller autoRepeat
346
0f756ddc01bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 328
diff changeset
  1019
0f756ddc01bb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 328
diff changeset
  1020
    "Modified: 9.2.1996 / 22:42:37 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1021
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1022
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1023
autoRepeat:aBoolean
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1024
    "turn on/off autorepeat"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1025
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1026
    controller autoRepeat:aBoolean
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1027
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1028
    "Modified: 5.9.1995 / 22:06:13 / claus"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1029
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1030
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1031
disable
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1032
    "disable the button"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1033
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1034
    controller disable.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1035
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1036
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1037
enable
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1038
    "enable the button"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1039
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1040
    controller enable
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1041
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1042
264
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
  1043
enabled
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
  1044
    "return true if the button is enabled"
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
  1045
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
  1046
    ^ controller enabled
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
  1047
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
  1048
    "Created: 17.12.1995 / 16:12:26 / cg"
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
  1049
!
b15f9244950b added enable-query method
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
  1050
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1051
pressAction
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1052
    "return the pressAction; thats the block which gets evaluated
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1053
     when the button is pressed (if non-nil)"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1054
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1055
    ^ controller pressAction
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1056
!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1057
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1058
pressAction:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1059
    "define the action to be performed on press"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1060
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1061
    controller pressAction:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1062
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1063
867
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1064
releaseAction
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1065
    "return the releaseAction; thats the block which gets evaluated
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1066
     when the button is relreased (if non-nil)"
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1067
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1068
    ^ controller releaseAction
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1069
!
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1070
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1071
releaseAction:aBlock
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1072
    "define the action to be performed on release"
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1073
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1074
    controller releaseAction:aBlock
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1075
! !
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1076
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1077
!Button methodsFor:'accessing-channels'!
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1078
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1079
enableChannel
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1080
    "return a valueHolder for enable/disable"
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1081
1644
c2b849ce4552 care for non-existing controller when accessing channels.
Claus Gittinger <cg@exept.de>
parents: 1630
diff changeset
  1082
    controller isNil ifTrue:[^ nil].
867
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1083
    ^ controller enableChannel
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1084
1644
c2b849ce4552 care for non-existing controller when accessing channels.
Claus Gittinger <cg@exept.de>
parents: 1630
diff changeset
  1085
    "Modified: / 13.8.1998 / 12:04:46 / cg"
867
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1086
!
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1087
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1088
enableChannel:aValueHolderForBoolean
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1089
    "set the valueHolder used for enable/disable"
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1090
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1091
    controller enableChannel:aValueHolderForBoolean
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1092
!
3c2a15b41f56 category change
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
  1093
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1094
pressChannel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1095
    "return the pressChannel"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1096
1644
c2b849ce4552 care for non-existing controller when accessing channels.
Claus Gittinger <cg@exept.de>
parents: 1630
diff changeset
  1097
    controller isNil ifTrue:[^ nil].
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1098
    ^ controller pressChannel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1099
1644
c2b849ce4552 care for non-existing controller when accessing channels.
Claus Gittinger <cg@exept.de>
parents: 1630
diff changeset
  1100
    "Modified: / 7.9.1995 / 18:16:20 / claus"
c2b849ce4552 care for non-existing controller when accessing channels.
Claus Gittinger <cg@exept.de>
parents: 1630
diff changeset
  1101
    "Modified: / 13.8.1998 / 12:04:51 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1102
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1103
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1104
pressChannel:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1105
    "set the pressChannel"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1106
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1107
    controller pressChannel:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1108
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1109
    "Modified: 7.9.1995 / 18:05:14 / claus"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1110
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1111
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1112
releaseChannel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1113
    "return the releaseChannel"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1114
1644
c2b849ce4552 care for non-existing controller when accessing channels.
Claus Gittinger <cg@exept.de>
parents: 1630
diff changeset
  1115
    controller isNil ifTrue:[^ nil].
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1116
    ^ controller releaseChannel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1117
1644
c2b849ce4552 care for non-existing controller when accessing channels.
Claus Gittinger <cg@exept.de>
parents: 1630
diff changeset
  1118
    "Modified: / 7.9.1995 / 18:15:24 / claus"
c2b849ce4552 care for non-existing controller when accessing channels.
Claus Gittinger <cg@exept.de>
parents: 1630
diff changeset
  1119
    "Modified: / 13.8.1998 / 12:04:55 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1120
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1121
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1122
releaseChannel:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1123
    "set the releaseChannel"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1124
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1125
    controller releaseChannel:aBlock
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1126
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1127
    "Modified: 7.9.1995 / 18:05:21 / claus"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1128
! !
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1129
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1130
!Button methodsFor:'accessing-look'!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1131
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1132
activeBackgroundColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1133
    "return the background color to be used when pressed"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1134
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1135
    ^ activeBgColor
164
Claus Gittinger <cg@exept.de>
parents: 163
diff changeset
  1136
!
Claus Gittinger <cg@exept.de>
parents: 163
diff changeset
  1137
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1138
activeBackgroundColor:aColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1139
    "set the background color to be used when pressed"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1140
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1141
    activeBgColor := aColor.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1142
    self redrawIfPressed
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1143
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1144
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1145
activeForegroundColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1146
    "return the foreground color to be used when pressed"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1147
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1148
    ^ activeFgColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1149
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1150
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1151
activeForegroundColor:aColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1152
    "set the foreground color to be used when pressed"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1153
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1154
    activeFgColor := aColor.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1155
    self redrawIfPressed
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1156
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1157
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1158
activeForegroundColor:fgColor backgroundColor:bgColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1159
    "set both fg and bg colors to be used when pressed"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1160
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1161
    activeFgColor := fgColor.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1162
    activeBgColor := bgColor.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1163
    self redrawIfPressed
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1164
!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1165
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1166
activeLevel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1167
    "return the level of the button when pressed"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1168
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1169
    ^ onLevel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1170
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1171
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1172
activeLevel:aNumber
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1173
    "set the level of the button when pressed (i.e. how deep)"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1174
1630
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1175
    onLevel ~~ aNumber ifTrue:[
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1176
        onLevel := aNumber.
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1177
        (controller notNil
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1178
        and:[controller pressed]) ifTrue:[
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1179
            self level:onLevel.
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1180
            margin := onLevel abs max:offLevel abs.
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1181
            shown ifTrue:[
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1182
                self invalidate. "/ redraw
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1183
            ]
992
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1184
        ]
1630
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1185
    ].
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1186
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1187
    "Modified: / 30.7.1998 / 22:29:01 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1188
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1189
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1190
activeLogo:anImageOrString
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1191
    "define the logo to be displayed while active -
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1192
     this is optional; the default is to display the same
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1193
     (logo) in both pressed and released states."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1194
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1195
    activeLogo := anImageOrString.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1196
    controller pressed ifTrue:[
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1197
	self logo:anImageOrString
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1198
    ]
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1199
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1200
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1201
beImageButton
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1202
    "make mySelf an image button - that is turn off all levelChanges
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1203
     and logo spacing. This should be sent for buttons which use both
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1204
     passive and active logos, and the 3D effect comes from the bitmaps
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1205
     (i.e. windows buttons)."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1206
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1207
    self 
711
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  1208
        extent:(labelWidth @ labelHeight);
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  1209
        sizeFixed:true; 
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  1210
        borderWidth:0;
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  1211
        activeLevel:0; 
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  1212
        passiveLevel:0; 
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  1213
        horizontalSpace:0; 
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  1214
        verticalSpace:0;
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  1215
        newLayout.
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1216
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1217
    "Created: 17.9.1995 / 20:41:47 / claus"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1218
    "Modified: 19.9.1995 / 16:34:08 / claus"
711
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  1219
    "Modified: 28.5.1996 / 22:04:14 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1220
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1221
244
2f5faeddd130 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 232
diff changeset
  1222
beReturnButton
1051
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1223
    "show show a return-key image after the label.
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1224
     Same as 'isReturnButton:true' for ST-80 compatibility."
244
2f5faeddd130 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 232
diff changeset
  1225
2f5faeddd130 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 232
diff changeset
  1226
    self isReturnButton:true
2f5faeddd130 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 232
diff changeset
  1227
!
2f5faeddd130 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 232
diff changeset
  1228
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1229
beRoundRadioButton
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1230
    "setup myself for a round radioButton look.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1231
     this is a private method; do not use it. It is going to move into the
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1232
     RadioButton class."
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1233
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1234
    self activeLogo:(Icon constantNamed:'RadioOn').
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1235
    self passiveLogo:(Icon constantNamed:'RadioOff').
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1236
    self activeLevel:0; 
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1237
	 passiveLevel:0; 
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1238
	 activeBackgroundColor:bgColor;
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1239
	 activeForegroundColor:fgColor;
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1240
	 borderWidth:0;
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1241
	 enteredBackgroundColor:bgColor.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1242
    self computeLabelSize.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1243
    self beImageButton.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1244
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1245
    "Created: 22.9.1995 / 15:48:05 / claus"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1246
    "Modified: 22.9.1995 / 17:07:46 / claus"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1247
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1248
1093
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1249
defaultable
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1250
    "return true, if the receiver is defaultable"
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1251
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1252
    ^ defaultable
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1253
!
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1254
1051
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1255
defaultable:aBoolean
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1256
    "set/clear the defaultable attribute. If defaultable,
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1257
     the preferredExtent is computed to include any additional
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1258
     space required when the receiver is a returnButton."
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1259
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1260
    defaultable ~~ aBoolean ifTrue:[
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1261
	defaultable := aBoolean.
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1262
	self newLayout
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1263
    ]
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1264
!
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1265
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1266
disabledForegroundColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1267
    "return the foreground color used when the button is disabled"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1268
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1269
    ^ disabledFgColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1270
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1271
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1272
disabledLogo:anImageOrString
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1273
    "define the logo to be displayed while active -
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1274
     this is optional; the default is to display the same
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1275
     (logo) in both pressed and released states."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1276
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1277
    disabledLogo := anImageOrString.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1278
    controller enabled ifFalse:[
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1279
	self logo:anImageOrString
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1280
    ]
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1281
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1282
    "Created: 17.9.1995 / 19:50:17 / claus"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1283
    "Modified: 17.9.1995 / 19:50:34 / claus"
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1284
!
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1285
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1286
edgeStyle:aSymbol
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1287
    "set the edgestyle - currently only #soft or nil"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1288
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1289
    edgeStyle := aSymbol
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1290
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1291
1206
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1292
enterLevel
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1293
    "return the level to be used when the mouse
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1294
     pointer enters the button area"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1295
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1296
    ^ enterLevel
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1297
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1298
    "Created: 26.4.1997 / 20:48:53 / cg"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1299
    "Modified: 26.4.1997 / 20:49:29 / cg"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1300
!
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1301
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1302
enterLevel:aNumber
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1303
    "set the level to be used when the mouse
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1304
     pointer enters the button area"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1305
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1306
    enterLevel := aNumber
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1307
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1308
    "Created: 26.4.1997 / 20:49:10 / cg"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1309
    "Modified: 26.4.1997 / 20:49:35 / cg"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1310
!
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1311
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1312
enteredBackgroundColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1313
    "return the background color to be used when the mouse
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1314
     pointer enters the button area"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1315
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1316
    ^ enteredBgColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1317
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1318
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1319
enteredBackgroundColor:aColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1320
    "set the background color to be used when the mouse
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1321
     pointer enters the button area"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1322
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1323
    enteredBgColor := aColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1324
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1325
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1326
enteredForegroundColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1327
    "return the foreground color to be used when the mouse
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1328
     pointer enters the button area"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1329
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1330
    ^ enteredFgColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1331
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1332
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1333
enteredForegroundColor:aColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1334
    "set the foreground color to be used when the mouse
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1335
     pointer enters the button area"
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1336
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1337
    enteredFgColor := aColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1338
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1339
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1340
focusLogo:anImageOrString
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1341
    "define the logo to be displayed while active -
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1342
     this is optional; the default is to display the same
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1343
     (logo) in both pressed and released states."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1344
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1345
    focusLogo := anImageOrString.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1346
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1347
    "Created: 17.9.1995 / 19:50:17 / claus"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1348
    "Modified: 17.9.1995 / 20:00:43 / claus"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1349
!
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1350
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1351
isReturnButton:aBoolean
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1352
    "show/dont show a return-key image after the label"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1353
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1354
    isReturnButton ~~ aBoolean ifTrue:[
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1355
	DefaultReturnButtonHasBorder ifTrue:[
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1356
	    self borderWidth:(aBoolean ifTrue:[1] ifFalse:[0])
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1357
	].
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1358
	isReturnButton := aBoolean.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1359
	self newLayout
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1360
    ]
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1361
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1362
1206
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1363
leaveLevel
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1364
    "return the level to be used when the mouse
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1365
     pointer leaves the button area"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1366
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1367
    ^ leaveLevel
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1368
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1369
    "Created: 26.4.1997 / 20:48:26 / cg"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1370
    "Modified: 26.4.1997 / 20:49:47 / cg"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1371
!
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1372
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1373
leaveLevel:aNumber
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1374
    "set the level to be used when the mouse
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1375
     pointer leaves the button area"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1376
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1377
    leaveLevel := aNumber
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1378
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1379
    "Created: 26.4.1997 / 20:49:22 / cg"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1380
    "Modified: 26.4.1997 / 20:49:53 / cg"
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1381
!
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1382
1094
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1383
loseDefault
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1384
    "ST-80 compatibility - clear isReturnButton attribute"
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1385
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1386
    self isReturnButton:false
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1387
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1388
    "Created: 3.3.1997 / 16:20:47 / cg"
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1389
    "Modified: 3.3.1997 / 18:12:06 / cg"
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1390
!
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1391
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1392
offLevel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1393
    "return the level of the button when released.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1394
     Historic leftover; use #passiveLevel."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1395
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1396
    ^ offLevel
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1397
!
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1398
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1399
offLevel:aNumber
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1400
    "set the level of the button when released (i.e. how deep).
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1401
     Historic leftover; use #passiveLevel:."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1402
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1403
    ^ self passiveLevel:aNumber
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1404
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1405
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1406
onLevel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1407
    "return the level of the button when pressed.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1408
     Historic leftover; use #activeLevel."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1409
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1410
    ^ onLevel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1411
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1412
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1413
onLevel:aNumber
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1414
    "set the level of the button when pressed (i.e. how deep).
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1415
     Historic leftover; use #activeLevel:."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1416
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1417
    ^ self activeLevel:aNumber
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1418
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1419
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1420
passiveLevel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1421
    "return the level of the button when released"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1422
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1423
    ^ offLevel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1424
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1425
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1426
passiveLevel:aNumber
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1427
    "set the level of the button when not pressed (i.e. how high)"
118
claus
parents: 113
diff changeset
  1428
1630
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1429
    offLevel ~~ aNumber ifTrue:[
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1430
        offLevel := aNumber.
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1431
        (controller notNil
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1432
        and:[controller pressed not]) ifTrue:[
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1433
            self level:offLevel.
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1434
            margin := onLevel abs max:offLevel abs.
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1435
            shown ifTrue:[
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1436
                self invalidate.
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1437
            ]
992
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1438
        ]
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1439
    ]
711
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  1440
1630
7e1f6d3e45f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1441
    "Modified: / 30.7.1998 / 22:29:17 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1442
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1443
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1444
passiveLogo:anImageOrString
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1445
    "define the logo to be displayed while inactive -
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1446
     this is optional; the default is to display the same
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1447
     (logo) in both pressed and released states."
118
claus
parents: 113
diff changeset
  1448
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1449
    passiveLogo := anImageOrString.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1450
    controller pressed ifFalse:[
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1451
	self logo:anImageOrString
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1452
    ]
1094
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1453
!
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1454
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1455
takeDefault
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1456
    "ST-80 compatibility - set isReturnButton attribute"
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1457
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1458
    self isReturnButton:true
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1459
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1460
    "Created: 3.3.1997 / 16:20:52 / cg"
472652d88011 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1093
diff changeset
  1461
    "Modified: 3.3.1997 / 18:11:58 / cg"
1223
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1462
!
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1463
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1464
viewBackground:something
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1465
    super viewBackground:something.
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1466
    something isColor ifTrue:[
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1467
        device hasGrayscales ifTrue:[
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1468
            halfLightColor notNil ifTrue:[
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1469
                halfLightColor := something lightened "on:device".
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1470
            ].
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1471
            halfShadowColor notNil ifTrue:[
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1472
                halfShadowColor := something darkened "on:device".
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1473
            ]
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1474
        ]
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1475
    ].
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1476
840e31e3f140 care for halfLight & halfShadow, when the viewBackground changes.
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
  1477
    "Modified: 3.5.1997 / 10:37:24 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1478
! !
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1479
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1480
!Button methodsFor:'changing state'!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1481
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1482
toggle
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1483
    "toggle and perform the action"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1484
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1485
    controller toggle
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1486
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1487
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1488
toggleNoAction
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1489
    "toggle, but do NOT perform any action - can be used to change a toggle
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1490
     under program control (i.e. turn one toggle off from another one)"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1491
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1492
    controller toggleNoAction
118
claus
parents: 113
diff changeset
  1493
!
claus
parents: 113
diff changeset
  1494
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1495
turnOff
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1496
    "turn the button off (if not already off) do NOT perform actions/change notifications"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1497
328
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1498
    (controller notNil and:[controller pressed]) ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1499
        offLevel ~~ level ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1500
            self level:offLevel.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1501
        ].
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1502
        (passiveLogo notNil and:[passiveLogo ~~ logo]) ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1503
            self logo:passiveLogo
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1504
        ].
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1505
        controller setPressed:false.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1506
        controller active:false.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1507
        level := offLevel.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1508
        margin := level abs.
992
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1509
        shown ifTrue:[
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1510
            self invalidate
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1511
        ]
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1512
    ]
328
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1513
992
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1514
    "Modified: 8.2.1997 / 15:21:44 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1515
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1516
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1517
turnOffWithAction
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1518
    "turn the button off (if not already off) and perform any action/change notification"
118
claus
parents: 113
diff changeset
  1519
328
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1520
    (controller notNil and:[controller pressed]) ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1521
        offLevel ~~ level ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1522
            self level:offLevel.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1523
        ].
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1524
        (passiveLogo notNil and:[passiveLogo ~~ logo]) ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1525
            self logo:passiveLogo
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1526
        ].
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1527
        self turnOffWithoutRedraw.
992
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1528
        shown ifTrue:[
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1529
            self invalidate
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1530
        ]
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1531
    ]
118
claus
parents: 113
diff changeset
  1532
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1533
    "Created: 15.11.1995 / 16:55:37 / cg"
992
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1534
    "Modified: 8.2.1997 / 15:21:53 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1535
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1536
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1537
turnOffWithoutRedraw
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1538
    "turn the button off - no redraw but perform any action/change notification"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1539
328
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1540
    controller notNil ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1541
        controller pressed:false.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1542
        controller active:false.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1543
    ].
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1544
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1545
    "do not use super level:offLevel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1546
     - because that one does redraw the edges.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1547
     Sure, this is no good coding style"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1548
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1549
    level := offLevel.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1550
    margin := level abs
328
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1551
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1552
    "Modified: 8.2.1996 / 15:28:53 / cg"
118
claus
parents: 113
diff changeset
  1553
!
claus
parents: 113
diff changeset
  1554
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1555
turnOn
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1556
    "turn the button on (if not already on) - do NOT perform any action/notification"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1557
328
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1558
    (controller notNil and:[controller pressed not]) ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1559
        onLevel ~~ level ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1560
            self level:onLevel.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1561
        ].
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1562
        (activeLogo notNil and:[activeLogo ~~ logo]) ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1563
            self logo:activeLogo
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1564
        ].
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1565
        controller setPressed:true.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1566
        level := onLevel.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1567
        margin := level abs.
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1568
992
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1569
        shown ifTrue:[
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1570
            self invalidate
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1571
        ]
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1572
    ]
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1573
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1574
    "Created: 14.11.1995 / 22:00:45 / cg"
992
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1575
    "Modified: 8.2.1997 / 15:22:01 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1576
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1577
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1578
turnOnWithAction
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1579
    "turn the button on (if not already on) and perform any change actions/notifications"
118
claus
parents: 113
diff changeset
  1580
328
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1581
    (controller notNil and:[controller pressed not]) ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1582
        onLevel ~~ level ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1583
            self level:onLevel.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1584
        ].
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1585
        (activeLogo notNil and:[activeLogo ~~ logo]) ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1586
            self logo:activeLogo
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1587
        ].
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1588
        self turnOnWithoutRedraw.
992
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1589
        shown ifTrue:[
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1590
            self invalidate
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1591
        ]
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1592
    ]
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1593
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1594
    "Created: 15.11.1995 / 16:55:56 / cg"
992
62c869350c73 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1595
    "Modified: 8.2.1997 / 15:22:09 / cg"
118
claus
parents: 113
diff changeset
  1596
!
claus
parents: 113
diff changeset
  1597
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1598
turnOnWithoutRedraw
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1599
    "turn the button on - no redraw but perform any change actions/notifications"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1600
328
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1601
    controller notNil ifTrue:[
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1602
        controller pressed:true.
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1603
    ].
118
claus
parents: 113
diff changeset
  1604
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1605
    "do not use super level:offLevel
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1606
     - because that one does redraw the edges.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1607
     Sure, this is no good coding style"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1608
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1609
    level := onLevel.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1610
    margin := level abs
328
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1611
6c4daccc6fb5 check for nil controller (turnOn/Off might be called after destroy)
Claus Gittinger <cg@exept.de>
parents: 315
diff changeset
  1612
    "Modified: 8.2.1996 / 15:29:23 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1613
! !
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1614
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1615
!Button methodsFor:'focus change'!
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1616
309
b5c9d68e95e1 new tabbing scheme (asking via #canTab); new focus change (passing explicit to showFocus/noFocus);
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
  1617
showFocus:explicit
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1618
    focusLogo notNil ifTrue:[
1170
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1619
        controller enabled ifTrue:[
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1620
            logo := focusLogo.  
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1621
            ^ self redraw
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1622
        ]
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1623
    ].
309
b5c9d68e95e1 new tabbing scheme (asking via #canTab); new focus change (passing explicit to showFocus/noFocus);
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
  1624
    super showFocus:explicit
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1625
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1626
    "Created: 17.9.1995 / 19:58:50 / claus"
1170
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1627
    "Modified: 1.4.1997 / 13:26:33 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1628
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1629
309
b5c9d68e95e1 new tabbing scheme (asking via #canTab); new focus change (passing explicit to showFocus/noFocus);
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
  1630
showNoFocus:explicit
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1631
    focusLogo notNil ifTrue:[
1170
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1632
        disabledLogo notNil ifTrue:[
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1633
            controller enabled ifTrue:[
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1634
                logo := passiveLogo.  
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1635
            ] ifFalse:[
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1636
                logo := disabledLogo.  
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1637
            ].
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1638
        ] ifFalse:[
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1639
            logo := passiveLogo
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1640
        ].
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1641
        ^ self redraw
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1642
    ].
309
b5c9d68e95e1 new tabbing scheme (asking via #canTab); new focus change (passing explicit to showFocus/noFocus);
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
  1643
    super showNoFocus:explicit
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1644
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1645
    "Created: 17.9.1995 / 20:00:06 / claus"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1646
    "Modified: 17.9.1995 / 20:26:32 / claus"
1170
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  1647
    "Modified: 1.4.1997 / 13:26:35 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1648
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1649
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1650
!Button methodsFor:'initialization'!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1651
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1652
defaultControllerClass
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1653
    ^ ButtonController
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1654
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1655
931
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1656
fetchDeviceResources
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1657
    "fetch device colors, to avoid reallocation at redraw time"
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1658
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1659
    super fetchDeviceResources.
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1660
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1661
    disabledFgColor notNil ifTrue:[disabledFgColor := disabledFgColor on:device].
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1662
    activeFgColor notNil ifTrue:[activeFgColor := activeFgColor on:device].
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1663
    activeBgColor notNil ifTrue:[activeBgColor := activeBgColor on:device].
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1664
    enteredFgColor notNil ifTrue:[enteredFgColor := enteredFgColor on:device].
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1665
    enteredBgColor notNil ifTrue:[enteredBgColor := enteredBgColor on:device].
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1666
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1667
    formColor notNil ifTrue:[formColor := formColor on:device].
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1668
    formLightColor notNil ifTrue:[formLightColor := formLightColor on:device].
945
6888e5b26b47 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  1669
    formShadowColor notNil ifTrue:[formShadowColor := formShadowColor on:device].
931
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1670
    halfShadowColor notNil ifTrue:[halfShadowColor := halfShadowColor on:device].
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1671
    halfLightColor notNil ifTrue:[halfLightColor := halfLightColor on:device].
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1672
945
6888e5b26b47 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  1673
    "Modified: 15.2.1997 / 17:14:16 / cg"
931
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1674
!
a22726fd8e32 fetchDeviceResources added
Claus Gittinger <cg@exept.de>
parents: 899
diff changeset
  1675
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1676
initCursor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1677
    "set up a hand cursor"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1678
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1679
    cursor := Cursor hand
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1680
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1681
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1682
initEvents
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1683
    super initEvents.
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1684
    self enableEnterLeaveEvents
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1685
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1686
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1687
initStyle
959
331da6bc19ec commentary
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  1688
    "setup viewStyle specifics"
331da6bc19ec commentary
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  1689
761
5bd603d649d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  1690
    <resource: #style (#name)>
5bd603d649d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  1691
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1692
    |hasGreyscales nm|
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1693
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1694
    super initStyle.
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1695
392
81343306d796 eliminated all DefaultFont classVars (are now classINSTvars)
Claus Gittinger <cg@exept.de>
parents: 366
diff changeset
  1696
"/    DefaultFont notNil ifTrue:[font := DefaultFont on:device].
81343306d796 eliminated all DefaultFont classVars (are now classINSTvars)
Claus Gittinger <cg@exept.de>
parents: 366
diff changeset
  1697
74
9d0d6a11939e last version before introduction of controller
claus
parents: 62
diff changeset
  1698
    DefaultBorderWidth notNil ifTrue:[borderWidth := DefaultBorderWidth].
934
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1699
    DefaultForegroundColor notNil ifTrue:[fgColor := DefaultForegroundColor].
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1700
    DefaultBackgroundColor notNil ifTrue:[bgColor := DefaultBackgroundColor].
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1701
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1702
    edgeStyle := DefaultEdgeStyle.
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1703
    onLevel := DefaultActiveLevel.
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1704
    offLevel := DefaultPassiveLevel.
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1705
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1706
    DefaultDisabledForegroundColor notNil ifTrue:[
934
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1707
        disabledFgColor := DefaultDisabledForegroundColor
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1708
    ] ifFalse:[
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1709
        disabledFgColor := fgColor
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1710
    ].
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1711
934
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1712
    DefaultEnteredForegroundColor notNil ifTrue:[enteredFgColor := DefaultEnteredForegroundColor].
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1713
    DefaultEnteredBackgroundColor notNil ifTrue:[enteredBgColor := DefaultEnteredBackgroundColor].
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1714
    DefaultActiveForegroundColor notNil ifTrue:[activeFgColor := DefaultActiveForegroundColor].
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1715
    DefaultActiveBackgroundColor notNil ifTrue:[activeBgColor := DefaultActiveBackgroundColor].
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1716
934
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1717
    DefaultShadowColor notNil ifTrue:[shadowColor := DefaultShadowColor].
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1718
    DefaultLightColor notNil ifTrue:[lightColor := DefaultLightColor].
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1719
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1720
    shadowColor isNil ifTrue:[
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1721
        shadowColor := Black.
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1722
    ].
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1723
    lightColor isNil ifTrue:[
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1724
        lightColor := White.
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1725
    ].
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1726
707
9e5ed6312943 grey vs. gray
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  1727
    hasGreyscales := device hasGrayscales.
1651
b7f06a53ddd9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1644
diff changeset
  1728
    (edgeStyle == #soft or:[edgeStyle == #softWin95]) ifTrue:[
934
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1729
        DefaultHalfShadowColor notNil ifTrue:[halfShadowColor := DefaultHalfShadowColor].
afed7a7f101d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
  1730
        DefaultHalfLightColor notNil ifTrue:[halfLightColor := DefaultHalfLightColor].
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1731
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1732
        halfShadowColor isNil ifTrue:[
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1733
"/            hasGreyscales ifTrue:[
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1734
"/                halfShadowColor := Color darkGrey
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1735
"/            ] ifFalse:[
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1736
"/                halfShadowColor := shadowColor
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1737
"/            ]
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1738
            halfShadowColor := shadowColor lightened
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1739
        ]
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1740
    ].
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1741
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1742
    "
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1743
     actually, the stuf below should not be needed
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1744
     - the styleSheet should provide values for nonGreyscale displays too
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1745
    "
130
claus
parents: 128
diff changeset
  1746
    nm := styleSheet name.
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1747
    (nm == #iris) ifTrue:[
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1748
        hasGreyscales ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1749
            DefaultEnteredBackgroundColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1750
                enteredBgColor := bgColor lightened "Color lightGray".
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1751
            ].
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1752
            DefaultActiveBackgroundColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1753
                activeBgColor := enteredBgColor.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1754
            ].
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1755
            DefaultActiveForegroundColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1756
                activeFgColor := enteredFgColor.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1757
            ].
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1758
        ] ifFalse:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1759
            DefaultEnteredBackgroundColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1760
                enteredBgColor := Color veryLightGray.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1761
            ].
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1762
            DefaultActiveBackgroundColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1763
                activeBgColor := Black.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1764
            ].
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1765
            DefaultActiveForegroundColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1766
                activeFgColor := White.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1767
            ].
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1768
        ].
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1769
    ] ifFalse:[
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1770
        nm == #motif ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1771
            lightColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1772
                lightColor := bgColor lightened
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1773
            ].
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1774
"/            hasGreyscales ifTrue:[
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1775
"/                lightColor := Color lightGrey
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1776
"/            ]
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1777
        ] ifFalse:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1778
            nm == #st80 ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1779
                hasGreyscales ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1780
                    DefaultActiveForegroundColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1781
                        activeFgColor := fgColor.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1782
                    ].
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1783
                    DefaultActiveBackgroundColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1784
                        activeBgColor := bgColor darkened.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1785
                    ].
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1786
                ] ifFalse:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1787
                    DefaultActiveForegroundColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1788
                        activeFgColor := White.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1789
                    ].
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1790
                    DefaultActiveBackgroundColor isNil ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1791
                        activeBgColor := Black
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1792
                    ]
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1793
                ]
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1794
            ]
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1795
        ]
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1796
    ].
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1797
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1798
    offLevel ~~ level ifTrue:[
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1799
        self level:offLevel.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1800
        margin := (onLevel abs) max:(offLevel abs).
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1801
    ].
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1802
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1803
    DefaultReturnButtonHasImage ifTrue:[
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1804
        (styleSheet is3D and:[hasGreyscales]) ifTrue:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1805
            shadowForm := self class returnShadowFormOn:device.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1806
            lightForm := self class returnLightFormOn:device.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1807
            formColor := viewBackground.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1808
            formShadowColor := shadowColor.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1809
            formLightColor := lightColor
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1810
        ] ifFalse:[
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1811
            shadowForm := self class returnFormOn:device.
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1812
            formColor := Black
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1813
        ].
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1814
    ].
705
e2e7e718eb93 gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  1815
1651
b7f06a53ddd9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1644
diff changeset
  1816
    "Modified: / 20.8.1998 / 12:07:37 / cg"
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1817
!
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  1818
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1819
initialize
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1820
    super initialize.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1821
1051
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1822
    isReturnButton := defaultable := false.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1823
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1824
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1825
reinitialize
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1826
    super reinitialize.
77
565b052f5277 *** empty log message ***
claus
parents: 74
diff changeset
  1827
    controller notNil ifTrue:[
565b052f5277 *** empty log message ***
claus
parents: 74
diff changeset
  1828
	controller active:false.
565b052f5277 *** empty log message ***
claus
parents: 74
diff changeset
  1829
	controller entered:false.
565b052f5277 *** empty log message ***
claus
parents: 74
diff changeset
  1830
    ]
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1831
! !
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1832
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1833
!Button methodsFor:'private'!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1834
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1835
computeLabelOrigin
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1836
    "compute the origin of the text - if  I am a returnButton,
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1837
     shift it somwehat to the right (we have already allocated the
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1838
     real estate, since computeLabelSize returned some extra space
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1839
     before)."
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1840
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1841
    super computeLabelOrigin.
1093
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1842
    shadowForm notNil ifTrue:[
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1843
        isReturnButton ifTrue:[
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1844
            labelOriginX := labelOriginX + hSpace + hSpace.
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1845
        ].
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1846
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1847
        defaultable ifTrue:[
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1848
            labelOriginX < margin ifTrue:[
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1849
                labelOriginX := margin
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1850
            ]
cb7b2c99f5cc care for defaultable labels which fit while
Claus Gittinger <cg@exept.de>
parents: 1092
diff changeset
  1851
        ]
1663
c6cc4fe918ea nicer 3D effect (shift label down-right) when pressed.
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  1852
    ].
1669
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1853
"/    self class == Button ifTrue:[
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1854
"/        labelOriginY := labelOriginY + 1.
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1855
"/        labelOriginX := labelOriginX + 1.
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1856
"/    ]
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1857
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1858
    "Modified: / 9.9.1998 / 20:22:01 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1859
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1860
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1861
computeLabelSize
1051
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1862
    "compute the extent needed to hold the label (plus the return form)"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1863
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1864
    super computeLabelSize.
1051
52111b0631da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1050
diff changeset
  1865
    ((isReturnButton or:[defaultable]) and:[shadowForm notNil]) ifTrue:[
1387
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1866
        labelWidth := labelWidth + (hSpace * 2) + shadowForm width.
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1867
        labelHeight := labelHeight max: (shadowForm height "+ vSpace")
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1868
    ]
1387
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1869
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1870
    "Modified: / 3.11.1997 / 09:15:52 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1871
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1872
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1873
!Button methodsFor:'queries'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1874
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1875
is3D
850
11c857edb53b comment
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
  1876
    "return true, if the receiver is a 3D style view"
761
5bd603d649d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  1877
850
11c857edb53b comment
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
  1878
    <resource: #style (#name)>
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1879
130
claus
parents: 128
diff changeset
  1880
    styleSheet name == #mswindows ifTrue:[^ true].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1881
    ^ super is3D
761
5bd603d649d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  1882
850
11c857edb53b comment
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
  1883
    "Modified: 22.10.1996 / 18:26:41 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1884
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1885
127
claus
parents: 125
diff changeset
  1886
isOn
claus
parents: 125
diff changeset
  1887
    "return true, if this button is currently pressed"
claus
parents: 125
diff changeset
  1888
claus
parents: 125
diff changeset
  1889
    ^ controller pressed
155
claus
parents: 149
diff changeset
  1890
!
claus
parents: 149
diff changeset
  1891
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1892
isReturnButton
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1893
    "return true, if this is a return button"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1894
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1895
    ^ isReturnButton
156
claus
parents: 155
diff changeset
  1896
!
claus
parents: 155
diff changeset
  1897
1370
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1898
isTriggerOnDown
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1899
    "return true, if I fire on press (instead of fire-on-release)"
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1900
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1901
    ^ controller isTriggerOnDown
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1902
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1903
    "Created: / 31.10.1997 / 19:33:56 / cg"
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1904
    "Modified: / 31.10.1997 / 19:34:34 / cg"
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1905
!
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1906
130
claus
parents: 128
diff changeset
  1907
preferredExtent
claus
parents: 128
diff changeset
  1908
    "return my preferred extent - this is the minimum size I would like to have"
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
  1909
1021
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1910
    |extraH extraV oldLogo wActive hActive wPassive hPassive
1664
0f66226e84dc oops - only shift label for buttons (not for checkToggles)
Claus Gittinger <cg@exept.de>
parents: 1663
diff changeset
  1911
     wMax hMax anyLogo ext|
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
  1912
800
0d8a2d42398d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 781
diff changeset
  1913
    "/ If I have an explicit preferredExtent ..
0d8a2d42398d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 781
diff changeset
  1914
713
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1915
    preferredExtent notNil ifTrue:[
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1916
        ^ preferredExtent
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1917
    ].
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1918
1021
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1919
    "/ compute the max-extent of both passive- and activeLogos
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1920
    "/ (if any)
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1921
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1922
    wActive := wPassive := labelWidth.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1923
    hActive := hPassive := labelHeight.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1924
    oldLogo := logo.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1925
    anyLogo := false.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1926
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1927
    (activeLogo notNil and:[activeLogo ~~ logo]) ifTrue:[
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1928
        logo := activeLogo.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1929
        self computeLabelSize.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1930
        wActive := labelWidth.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1931
        hActive := labelHeight.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1932
        anyLogo := true.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1933
    ].
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1934
    (passiveLogo notNil and:[passiveLogo ~~ logo]) ifTrue:[
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1935
        logo := passiveLogo.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1936
        self computeLabelSize.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1937
        wPassive := labelWidth.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1938
        hPassive := labelHeight.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1939
        anyLogo := true.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1940
    ].
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1941
    oldLogo ~~ logo ifTrue:[
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1942
        logo := oldLogo.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1943
        self computeLabelSize.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1944
    ].
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1945
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1946
    wMax := wActive max:wPassive.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1947
    hMax := hActive max:hPassive.
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1948
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1949
    anyLogo ifTrue:[
131
claus
parents: 130
diff changeset
  1950
"
713
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1951
        extraH := extraV := (onLevel abs max:offLevel abs) + ViewSpacing * 2.
131
claus
parents: 130
diff changeset
  1952
"
713
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1953
        extraH := extraV := (onLevel abs max:offLevel abs).
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1954
        extraH := (extraH + hSpace * 2).
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1955
        extraV := (extraV + vSpace * 2).
131
claus
parents: 130
diff changeset
  1956
713
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1957
        self is3D ifFalse:[
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1958
            "add space for a frame around"
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1959
            extraH := extraH + 2. extraV := extraV + 2.
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1960
        ].
1021
73ec8663c4cb care for BOTH active- and passive logos,
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
  1961
1664
0f66226e84dc oops - only shift label for buttons (not for checkToggles)
Claus Gittinger <cg@exept.de>
parents: 1663
diff changeset
  1962
        ext := (wMax + extraH) @ (hMax + extraV)
0f66226e84dc oops - only shift label for buttons (not for checkToggles)
Claus Gittinger <cg@exept.de>
parents: 1663
diff changeset
  1963
    ] ifFalse:[
0f66226e84dc oops - only shift label for buttons (not for checkToggles)
Claus Gittinger <cg@exept.de>
parents: 1663
diff changeset
  1964
        ext := super preferredExtent
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
  1965
    ].
1669
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1966
"/    (self class == Button) ifTrue:[
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1967
"/        self is3D ifTrue:[
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1968
"/            ext := ext + (1@1)
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1969
"/        ]
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1970
"/    ].
1664
0f66226e84dc oops - only shift label for buttons (not for checkToggles)
Claus Gittinger <cg@exept.de>
parents: 1663
diff changeset
  1971
    ^ ext
1663
c6cc4fe918ea nicer 3D effect (shift label down-right) when pressed.
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  1972
1669
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  1973
    "Modified: / 9.9.1998 / 20:21:29 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1974
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1975
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1976
specClass
1370
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1977
    "redefined, since the name of my specClass is nonStandard (i.e. not ButtonSpec)"
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1978
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1979
    self class == Button ifTrue:[^ ActionButtonSpec].
1050
2335acd8efb8 specClass query
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1980
    ^ super specClass
2335acd8efb8 specClass query
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1981
1370
56b6ea4b8f57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  1982
    "Modified: / 31.10.1997 / 19:49:07 / cg"
162
claus
parents: 156
diff changeset
  1983
! !
claus
parents: 156
diff changeset
  1984
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1985
!Button methodsFor:'redrawing'!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1986
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1987
drawBottomEdge
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1988
    "draw bottom 3D edge into window frame"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1989
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1990
    self drawBottomEdgeLevel:level
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1991
		      shadow:shadowColor 
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1992
		      light:lightColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1993
		      halfShadow:halfShadowColor 
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1994
		      halfLight:halfLightColor
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1995
		      style:edgeStyle.
133
claus
parents: 131
diff changeset
  1996
!
claus
parents: 131
diff changeset
  1997
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1998
drawEdges
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  1999
    "draw all of my 3D edges"
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2000
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2001
    self drawEdgesForX:0 y:0 width:width height:height level:level 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2002
		shadow:shadowColor 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2003
		light:lightColor
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2004
		halfShadow:halfShadowColor 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2005
		halfLight:halfLightColor
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2006
		style:edgeStyle 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2007
!
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2008
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2009
drawLeftEdge
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2010
    "draw left 3D edge into window frame"
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2011
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2012
    self drawLeftEdgeLevel:level
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2013
		    shadow:shadowColor 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2014
		     light:lightColor
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2015
		     halfShadow:halfShadowColor 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2016
		     halfLight:halfLightColor
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2017
		     style:edgeStyle.
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2018
!
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2019
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2020
drawRightEdge
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2021
    "draw right 3D edge into window frame"
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2022
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2023
    self drawRightEdgeLevel:level
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2024
		     shadow:shadowColor 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2025
		      light:lightColor
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2026
		      halfShadow:halfShadowColor 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2027
		      halfLight:halfLightColor
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2028
		      style:edgeStyle.
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2029
!
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2030
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2031
drawTopEdge
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2032
    "draw top 3D edge into window frame"
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2033
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2034
    self drawTopEdgeLevel:level
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2035
		   shadow:shadowColor 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2036
		   light:lightColor
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2037
		   halfShadow:halfShadowColor 
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2038
		   halfLight:halfLightColor
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2039
		   style:edgeStyle.
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2040
!
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2041
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2042
drawWith:fg and:bg
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2043
    "redraw myself with fg/bg. Use super to draw the label, add
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2044
     the return-arrow here."
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2045
18
66bf62e27141 *** empty log message ***
claus
parents: 6
diff changeset
  2046
    |x y sColor lColor|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2047
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  2048
    shown ifFalse:[^ self].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2049
    super drawWith:fg and:bg.   "this draws the text"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2050
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  2051
    (isReturnButton and:[shadowForm notNil]) ifTrue:[
932
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2052
        y := (height - shadowForm height) // 2.
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2053
        x := width - shadowForm width - (hSpace // 2).
59
450ce95a72a4 *** empty log message ***
claus
parents: 42
diff changeset
  2054
1665
085d9d2f0f1c geometry
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
  2055
        (self class == Button and:[level < 0]) ifTrue:[
085d9d2f0f1c geometry
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
  2056
            x := x + 1.
085d9d2f0f1c geometry
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
  2057
            y := y + 1
1663
c6cc4fe918ea nicer 3D effect (shift label down-right) when pressed.
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  2058
        ].
c6cc4fe918ea nicer 3D effect (shift label down-right) when pressed.
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  2059
932
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2060
        formShadowColor isNil ifTrue:[
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2061
            self paint:fg on:bg.
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2062
            self displayOpaqueForm:shadowForm x:x y:y.
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2063
            ^ self
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2064
        ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2065
932
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2066
        "
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2067
         drawing form in 3d-style (i.e. with shadow and light)
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2068
        "
955
fb460392a553 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 945
diff changeset
  2069
        (formShadowColor isColor and:[formShadowColor isDithered not
fb460392a553 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 945
diff changeset
  2070
         and:[formLightColor isColor and:[formLightColor isDithered not
fb460392a553 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 945
diff changeset
  2071
         and:[formColor isColor and:[formColor isDithered not]]]]])
932
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2072
        ifTrue:[
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2073
            sColor := formShadowColor.
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2074
            lColor := formLightColor.
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2075
        ] ifFalse:[
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2076
            sColor := device blackColor.
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2077
            lColor := device whiteColor.
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2078
        ].
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2079
        self foreground:sColor.
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2080
        self displayForm:shadowForm x:x y:y.
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
  2081
932
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2082
        lightForm notNil ifTrue:[
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2083
            self foreground:lColor.
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2084
            self displayForm:lightForm x:x y:y.
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2085
        ].
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2086
        self paint:fg.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2087
    ]
932
43879de4e75d use devices black/whiteColor instead of Black/White
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  2088
1663
c6cc4fe918ea nicer 3D effect (shift label down-right) when pressed.
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  2089
    "Modified: / 8.9.1998 / 20:50:23 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2090
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2091
1170
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  2092
redraw
82
6f2d05f1da80 *** empty log message ***
claus
parents: 77
diff changeset
  2093
    "redraw the button. 
6f2d05f1da80 *** empty log message ***
claus
parents: 77
diff changeset
  2094
     Thats like redrawing a label, but use different colors when pressed
6f2d05f1da80 *** empty log message ***
claus
parents: 77
diff changeset
  2095
     or entered."
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2096
1206
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2097
    |fg bg entered noFrame lvl|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2098
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2099
    shown ifFalse:[^ self].
35
83bd380c4383 clear entered-flag on realize
claus
parents: 24
diff changeset
  2100
1092
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2101
    disabledLogo notNil ifTrue:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2102
        controller enabled ifFalse:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2103
            logo := disabledLogo.
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2104
        ] ifTrue:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2105
            controller active ifTrue:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2106
                logo := activeLogo
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2107
            ] ifFalse:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2108
                logo := passiveLogo
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2109
            ].
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2110
        ].
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2111
    ].
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2112
265
76336839475b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2113
    noFrame := true.
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2114
    fg := fgColor.
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2115
    bg := bgColor.
77
565b052f5277 *** empty log message ***
claus
parents: 74
diff changeset
  2116
    controller enabled ifFalse:[
1092
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2117
        fg := disabledFgColor
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2118
    ] ifTrue:[
1092
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2119
        entered := controller entered.
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2120
        entered ifTrue:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2121
            enteredFgColor notNil ifTrue:[fg := enteredFgColor].
1206
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2122
            enteredBgColor notNil ifTrue:[bg := enteredBgColor].
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2123
            lvl := enterLevel.
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2124
        ] ifFalse:[
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2125
            lvl := leaveLevel
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2126
        ].
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2127
        (enterLevel notNil and:[leaveLevel notNil]) ifTrue:[
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2128
            offLevel ~~ lvl ifTrue:[
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2129
                offLevel := lvl.
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2130
                offLevel ~~ level ifTrue:[
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2131
                    self level:offLevel
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2132
                ]
003498bf0349 added enter- and leaveLevels.
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  2133
            ]
1092
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2134
        ].
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2135
        (controller pressed and:[entered or:[controller isTriggerOnDown]]) ifTrue:[
1387
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2136
            noFrame := self is3D "false".
1092
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2137
            activeFgColor isNil ifTrue:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2138
                onLevel == offLevel ifTrue:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2139
                    fg := bgColor
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2140
                ]
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2141
            ] ifFalse:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2142
                fg := activeFgColor.
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2143
            ].
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2144
            activeBgColor isNil ifTrue:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2145
                onLevel == offLevel ifTrue:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2146
                    bg := fgColor
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2147
                ]
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2148
            ] ifFalse:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2149
                bg := activeBgColor
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2150
            ].
232
2fbe1b72e96a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 230
diff changeset
  2151
1092
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2152
            self is3D ifFalse:[
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2153
                noFrame := (fgColor = fg) and:[bgColor = bg].
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2154
            ].
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2155
        ].
62
7cc1e330da47 *** empty log message ***
claus
parents: 60
diff changeset
  2156
    ].
265
76336839475b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2157
    self drawWith:fg and:bg.
76336839475b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2158
    noFrame ifFalse:[
1092
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2159
        "
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2160
         draw a rectangle around (2D styles only)
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2161
        "
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2162
        self paint:fg.
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2163
        self displayRectangleX:0 y:0 width:width height:height.
ccd72fe62ef5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
  2164
        ^ self
265
76336839475b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2165
    ].
76336839475b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2166
1387
98ec98a96dc6 slightly smaller returnForm
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2167
    "Modified: / 3.11.1997 / 11:56:02 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2168
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2169
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2170
redrawIfPressed
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2171
    "redraw the button, but only if visible and currently being pressed"
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2172
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2173
    shown ifTrue:[
1170
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  2174
        controller pressed ifTrue:[
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  2175
            self redraw
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  2176
        ]
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2177
    ]
1170
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  2178
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  2179
    "Modified: 1.4.1997 / 13:26:27 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2180
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2181
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2182
redrawX:x y:y width:w height:h 
1170
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  2183
    self redraw.
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  2184
5864abd318f6 #redisplay is #redraw
Claus Gittinger <cg@exept.de>
parents: 1153
diff changeset
  2185
    "Modified: 1.4.1997 / 13:26:31 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2186
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2187
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2188
showActive
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2189
    "redraw myself as active (i.e. busy)"
162
claus
parents: 156
diff changeset
  2190
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2191
    onLevel ~~ level ifTrue:[
711
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2192
        self level:onLevel.
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2193
    ].
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2194
    (activeLogo notNil and:[activeLogo ~~ logo]) ifTrue:[
711
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2195
        self logo:activeLogo
162
claus
parents: 156
diff changeset
  2196
    ].
711
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2197
    self invalidate
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2198
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2199
    "Modified: 26.5.1996 / 18:08:52 / cg"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2200
!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2201
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2202
showPassive
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2203
    "redraw myself as passive"
162
claus
parents: 156
diff changeset
  2204
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2205
    offLevel ~~ level ifTrue:[
711
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2206
        self level:offLevel.
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2207
    ].
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2208
    (passiveLogo notNil and:[passiveLogo ~~ logo]) ifTrue:[
711
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2209
        self logo:passiveLogo
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2210
    ].
711
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2211
    self invalidate.
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2212
c830bb66598b use new #invalidate instead of redraw
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2213
    "Modified: 26.5.1996 / 18:08:56 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  2214
! !
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2215
850
11c857edb53b comment
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
  2216
!Button class methodsFor:'documentation'!
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2217
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2218
version
1669
8c48fac7e961 geometry again
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  2219
    ^ '$Header: /cvs/stx/stx/libwidg/Button.st,v 1.99 1998-09-09 19:07:09 cg Exp $'
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  2220
! !