SimpleView.st
author Claus Gittinger <cg@exept.de>
Tue, 28 May 1996 22:33:30 +0200
changeset 754 a50c0b52aa82
parent 753 cb2c6ba6f4d5
child 756 5358dbd9d4be
permissions -rw-r--r--
checkin from browser
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
135
claus
parents:
diff changeset
     1
"
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
claus
parents:
diff changeset
     3
	      All Rights Reserved
claus
parents:
diff changeset
     4
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
claus
parents:
diff changeset
    10
 hereby transferred.
claus
parents:
diff changeset
    11
"
claus
parents:
diff changeset
    12
727
bf23a306b6f2 renamed PseudoView to DisplaySurface
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
    13
DisplaySurface subclass:#SimpleView
358
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
    14
	instanceVariableNames:'superView subViews components styleSheet resources borderColor
312
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
    15
		borderWidth borderShape viewShape top left extentChanged
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
    16
		originChanged cornerChanged relativeOrigin relativeExtent
734
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    17
		relativeCorner originRule extentRule cornerRule insets layout
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    18
		shown hiddenOnRealize name level margin innerClipRect shadowColor
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    19
		lightColor bitGravity viewGravity controller windowGroup'
358
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
    20
	classVariableNames:'Grey CentPoint ViewSpacing DefaultStyle StyleSheet
312
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
    21
		DefaultViewBackgroundColor DefaultBorderColor DefaultLightColor
472
621c17076f00 static menus override dynamic ones (is this good ?)
Claus Gittinger <cg@exept.de>
parents: 468
diff changeset
    22
		DefaultShadowColor DefaultBorderWidth DefaultFocusColor
621c17076f00 static menus override dynamic ones (is this good ?)
Claus Gittinger <cg@exept.de>
parents: 468
diff changeset
    23
		DefaultFocusBorderWidth ReturnFocusWhenClosingModalBoxes'
358
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
    24
	poolDictionaries:''
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
    25
	category:'Views-Basic'
135
claus
parents:
diff changeset
    26
!
claus
parents:
diff changeset
    27
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    28
SimpleView class instanceVariableNames:'ClassResources DefaultFont'
734
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    29
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    30
"
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    31
 The following class instance variables are inherited by this class:
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    32
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    33
	DisplaySurface - 
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    34
	GraphicsMedium - 
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    35
	DeviceGraphicsContext - 
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    36
	GraphicsContext - 
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    37
	Object - 
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    38
"
140
claus
parents: 138
diff changeset
    39
!
135
claus
parents:
diff changeset
    40
claus
parents:
diff changeset
    41
!SimpleView class methodsFor:'documentation'!
claus
parents:
diff changeset
    42
claus
parents:
diff changeset
    43
copyright
claus
parents:
diff changeset
    44
"
claus
parents:
diff changeset
    45
 COPYRIGHT (c) 1989 by Claus Gittinger
claus
parents:
diff changeset
    46
	      All Rights Reserved
claus
parents:
diff changeset
    47
claus
parents:
diff changeset
    48
 This software is furnished under a license and may be used
claus
parents:
diff changeset
    49
 only in accordance with the terms of that license and with the
claus
parents:
diff changeset
    50
 inclusion of the above copyright notice.   This software may not
claus
parents:
diff changeset
    51
 be provided or otherwise made available to, or used by, any
claus
parents:
diff changeset
    52
 other person.  No title to or ownership of the software is
claus
parents:
diff changeset
    53
 hereby transferred.
claus
parents:
diff changeset
    54
"
claus
parents:
diff changeset
    55
!
claus
parents:
diff changeset
    56
claus
parents:
diff changeset
    57
documentation
claus
parents:
diff changeset
    58
"
claus
parents:
diff changeset
    59
    this class implements functions common to all Views which do not work on / show a model. 
claus
parents:
diff changeset
    60
    Previously, all of this functionality used to be in the old View class, but has been
claus
parents:
diff changeset
    61
    separated into this new SimpleView (which does not know about models) and the new View, which
claus
parents:
diff changeset
    62
    does so.
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    63
    I'd prefer to call this class View and the current View class a ModelView,
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    64
    but for backward compatibility its better to leave things the way they are
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    65
    (there are simply too many subclasses of View around ...).
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    66
135
claus
parents:
diff changeset
    67
    Instances of SimpleView are seldom used, most views in the system inherit 
claus
parents:
diff changeset
    68
    from this class. 
claus
parents:
diff changeset
    69
    However, sometimes a view is used to create a dummy view for framing 
claus
parents:
diff changeset
    70
    or layout purposes.
claus
parents:
diff changeset
    71
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
    72
    [Instance variables:]
135
claus
parents:
diff changeset
    73
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    74
        superView               <View>                  my superview i.e. the view I am in
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    75
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    76
        subViews                <Collection>            the collection of subviews
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    77
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    78
        components              <Collection>            collection of gadgets (will be merged with subViews, soon)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    79
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    80
        borderColor             <Color>                 color of border
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    81
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    82
        borderWidth             <Number>                borderWidth in pixels (device dep.)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    83
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    84
        borderShape             <Form>                  shape of border (if device supports it)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    85
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    86
        viewShape               <Form>                  shape of view (if device supports it)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    87
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    88
        top                     <Number>                actual top coordinate (pixels) in superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    89
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    90
        left                    <Number>                actual left coordinate (pixels) in superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    91
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    92
        extendChanged           <Boolean>               true if extend changed during setup
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    93
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    94
        originChanged           <Boolean>               true if origin changed during setup
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    95
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    96
        relativeOrigin          <Number>                relative origin in percent within superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    97
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    98
        relativeExtent          <Number>                relative extent in percent within superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    99
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   100
        relativeCorner          <Number>                relative corner in percent within superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   101
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   102
        originRule              <Block>                 rule to compute origin if superview changes size
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   103
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   104
        extentRule              <Block>                 rule to compute extent if superview changes size
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   105
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   106
        cornerRule              <Block>                 rule to compute corner if superview changes size
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   107
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   108
        insets                  <Array>                 array with top, left, bottom & right insets (or nil)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   109
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   110
        layout                  <LayoutObject>          not yet implemented - will replace the above layout
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   111
                                                        variables.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   112
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   113
        shown                   <Boolean>               true if visible (false if iconified, unmapped or covered)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   114
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   115
        hiddenOnRealize         <Boolean>               dont show automatically when superview is realized
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   116
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   117
        name                    <String>                my name (future use for resources)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   118
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   119
        level                   <Number>                3D level relative to superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   120
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   121
        margin                  <Number>                convenient margin
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   122
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   123
        innerClipRect           <Rectangle>             convenient inner clip (minus margin)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   124
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   125
        shadowColor             <Color>                 color used to draw 3D shadowed edges
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   126
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   127
        lightColor              <Color>                 color used to draw 3D lighted edges
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   128
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   129
        bitGravity              <nil | Symbol>          gravity of contents (if device supports it)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   130
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   131
        viewGravity             <nil | Symbol>          gravity of view (if device supports it)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   132
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   133
        controller              <nil | Controller>      the controller (if any)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   134
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   135
        windowGroup             <WindowGroup>           the windowGroup
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   136
135
claus
parents:
diff changeset
   137
claus
parents:
diff changeset
   138
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   139
    [Class variables:]
135
claus
parents:
diff changeset
   140
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   141
        Grey                    <Color>                 the color grey - its used so often
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   142
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   143
        ViewSpacing             <Number>                preferred spacing between views; 1mm
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   144
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   145
        CentPoint               <Point>                 100 @ 100 - its used so often
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   146
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   147
        StyleSheet              <ResourcePack>          contains all view-style specifics
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   148
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   149
        ReturnFocusWhenClosingModalBoxes                if true, a closing modalBox returns
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   150
                                <Boolean>               the keyboard focus to the view which was
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   151
                                                        active when the box was opened.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   152
                                                        If false (the default), it is left to
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   153
                                                        window manager to assign a new focus.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   154
                                                        If running on olwm/olvwm (which requires an
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   155
                                                        explicit click to reassign a focus), it is
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   156
                                                        better to turn this on in a private.rc file.
135
claus
parents:
diff changeset
   157
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   158
    [styleSheet parameters:]
135
claus
parents:
diff changeset
   159
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   160
        popupShadow             <Boolean>               if true, popupViews show a shadow below
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   161
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   162
        popupLevel              <nil | Integer>         3D level
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   163
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   164
        borderWidth             <nil | Integer>         borderWidth (ignored in 3D styles)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   165
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   166
        borderColor             <nil | Color>           borderColor (ignored in 3D styles)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   167
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   168
        viewBackground          <nil | Color>           views background
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   169
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   170
        shadowColor             <nil | Color>           color for shadow edges (ignored in 2D styles)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   171
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   172
        lightColor              <nil | Color>           color for light edges (ignored in 2D styles)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   173
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   174
        font                    <nil | Font>            font to use
135
claus
parents:
diff changeset
   175
claus
parents:
diff changeset
   176
claus
parents:
diff changeset
   177
    TODO:
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   178
        get rid of relativeOrigin, relativeCorner, originRule, extentRule,
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   179
        and insets; replace by a single object which defines the size
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   180
        (mhmh - ST-80 seems to call this LayoutFrame ?)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   181
        -> be prepared for a change here in the near future and ONLY use
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   182
           access methods to get those instance variables' values
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   183
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   184
        get rid of 3D level & margin, move it to extra wrappers
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   185
        (although this will make view setup more complicated, it will remove
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   186
         complexity from the internals of view. Also, it will allow for more
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   187
         varieties of borders.)
151
claus
parents: 145
diff changeset
   188
        
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   189
        add components (could also call them gadgets or lightweight views)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   190
        - views are expensive in terms of X resources. This would make all
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   191
        framing/edge and panel helper views become cheap ST objects, instead
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   192
        of views.
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   193
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   194
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   195
    [see also:]
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   196
        StandardSystemView DialogBox
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   197
        WindowGroup WindowEvent
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   198
        Layout
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   199
        ( introduction to view programming :html: programming/viewintro.html )
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   200
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   201
    [author:]
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   202
        Claus Gittinger
135
claus
parents:
diff changeset
   203
"
151
claus
parents: 145
diff changeset
   204
!
claus
parents: 145
diff changeset
   205
claus
parents: 145
diff changeset
   206
examples 
claus
parents: 145
diff changeset
   207
"
claus
parents: 145
diff changeset
   208
    (all examples below use different viewBackgrounds, 
claus
parents: 145
diff changeset
   209
     to make the individual subviews visible)
claus
parents: 145
diff changeset
   210
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   211
    a subView in a topView:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   212
                                                                        [exBegin]
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   213
        |top v|
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   214
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   215
        topView := StandardSystemView new.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   216
        v := View new.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   217
        v origin:0.25 @ 0.25 corner:0.75 @ 0.75.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   218
        top addSubView:v.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   219
        top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   220
                                                                        [exEnd]
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   221
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   222
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   223
    the same, a bit more compact:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   224
                                                                        [exBegin]
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   225
        |top v|
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   226
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   227
        topView := StandardSystemView new.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   228
        v := View origin:0.25 @ 0.25 corner:0.75 @ 0.75 in:topView.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   229
        top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   230
                                                                        [exEnd]
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   231
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   232
151
claus
parents: 145
diff changeset
   233
    fixed position/size:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   234
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   235
       |top v1 v2|
claus
parents: 145
diff changeset
   236
claus
parents: 145
diff changeset
   237
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   238
       top extent:300@300.
claus
parents: 145
diff changeset
   239
claus
parents: 145
diff changeset
   240
       v1 := View origin:10@10
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   241
                  corner:50@50
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   242
                      in:top.
151
claus
parents: 145
diff changeset
   243
       v2 := View origin:60@10
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   244
                  corner:150@100
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   245
                      in:top.
151
claus
parents: 145
diff changeset
   246
claus
parents: 145
diff changeset
   247
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   248
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   249
claus
parents: 145
diff changeset
   250
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   251
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   252
claus
parents: 145
diff changeset
   253
    same, using ST-80 way of bulding up view hierarchies
claus
parents: 145
diff changeset
   254
    (recommended, if you plan to port applications later)
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   255
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   256
       |top v1 v2|
claus
parents: 145
diff changeset
   257
claus
parents: 145
diff changeset
   258
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   259
       top extent:300@300.
claus
parents: 145
diff changeset
   260
claus
parents: 145
diff changeset
   261
       v1 := View new.
claus
parents: 145
diff changeset
   262
       v1 origin:10@10 corner:50@50.
claus
parents: 145
diff changeset
   263
claus
parents: 145
diff changeset
   264
       v2 := View new.
claus
parents: 145
diff changeset
   265
       v2 origin:60@10 corner:150@100.
claus
parents: 145
diff changeset
   266
claus
parents: 145
diff changeset
   267
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   268
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   269
claus
parents: 145
diff changeset
   270
       top add:v1.
claus
parents: 145
diff changeset
   271
       top add:v2.
claus
parents: 145
diff changeset
   272
claus
parents: 145
diff changeset
   273
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   274
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   275
claus
parents: 145
diff changeset
   276
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   277
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   278
claus
parents: 145
diff changeset
   279
    fixed origin, variable size:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   280
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   281
       |top v1 v2|
claus
parents: 145
diff changeset
   282
claus
parents: 145
diff changeset
   283
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   284
       top extent:300@300.
claus
parents: 145
diff changeset
   285
claus
parents: 145
diff changeset
   286
       v1 := View new.
claus
parents: 145
diff changeset
   287
       v1 origin:10@10 corner:50@0.5.
claus
parents: 145
diff changeset
   288
claus
parents: 145
diff changeset
   289
       v2 := View new.
claus
parents: 145
diff changeset
   290
       v2 origin:60@10 corner:150@0.5.
claus
parents: 145
diff changeset
   291
claus
parents: 145
diff changeset
   292
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   293
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   294
claus
parents: 145
diff changeset
   295
       top add:v1.
claus
parents: 145
diff changeset
   296
       top add:v2.
claus
parents: 145
diff changeset
   297
claus
parents: 145
diff changeset
   298
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   299
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   300
claus
parents: 145
diff changeset
   301
    fixed origin, variable size, 
claus
parents: 145
diff changeset
   302
    bottomInset for constant distance from bottom:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   303
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   304
       |top v1 v2|
claus
parents: 145
diff changeset
   305
claus
parents: 145
diff changeset
   306
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   307
       top extent:300@300.
claus
parents: 145
diff changeset
   308
claus
parents: 145
diff changeset
   309
       v1 := View new.
claus
parents: 145
diff changeset
   310
       v1 origin:10@10 corner:50@1.0.
claus
parents: 145
diff changeset
   311
       v1 bottomInset:10.
claus
parents: 145
diff changeset
   312
claus
parents: 145
diff changeset
   313
       v2 := View new.
claus
parents: 145
diff changeset
   314
       v2 origin:60@10 corner:150@1.0.
claus
parents: 145
diff changeset
   315
       v2 bottomInset:10.
claus
parents: 145
diff changeset
   316
claus
parents: 145
diff changeset
   317
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   318
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   319
claus
parents: 145
diff changeset
   320
       top add:v1.
claus
parents: 145
diff changeset
   321
       top add:v2.
claus
parents: 145
diff changeset
   322
claus
parents: 145
diff changeset
   323
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   324
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   325
claus
parents: 145
diff changeset
   326
    variable origin, variable size, 
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   327
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   328
       |top v1 v2|
claus
parents: 145
diff changeset
   329
claus
parents: 145
diff changeset
   330
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   331
       top extent:300@300.
claus
parents: 145
diff changeset
   332
claus
parents: 145
diff changeset
   333
       v1 := View new.
claus
parents: 145
diff changeset
   334
       v1 origin:0.0@0.0 corner:0.5@0.5.
claus
parents: 145
diff changeset
   335
claus
parents: 145
diff changeset
   336
       v2 := View new.
claus
parents: 145
diff changeset
   337
       v2 origin:0.5@0.0 corner:1.0@0.5.
claus
parents: 145
diff changeset
   338
claus
parents: 145
diff changeset
   339
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   340
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   341
claus
parents: 145
diff changeset
   342
       top add:v1.
claus
parents: 145
diff changeset
   343
       top add:v2.
claus
parents: 145
diff changeset
   344
claus
parents: 145
diff changeset
   345
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   346
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   347
claus
parents: 145
diff changeset
   348
    variable origin, variable size, 
claus
parents: 145
diff changeset
   349
    insets for some constant distance
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   350
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   351
       |top v1 v2|
claus
parents: 145
diff changeset
   352
claus
parents: 145
diff changeset
   353
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   354
       top extent:300@300.
claus
parents: 145
diff changeset
   355
claus
parents: 145
diff changeset
   356
       v1 := View new.
claus
parents: 145
diff changeset
   357
       v1 origin:0.0@0.0 corner:0.5@0.5.
claus
parents: 145
diff changeset
   358
       v1 rightInset:5.
claus
parents: 145
diff changeset
   359
claus
parents: 145
diff changeset
   360
       v2 := View new.
claus
parents: 145
diff changeset
   361
       v2 origin:0.5@0.0 corner:1.0@0.5.
claus
parents: 145
diff changeset
   362
       v2 leftInset:5.
claus
parents: 145
diff changeset
   363
claus
parents: 145
diff changeset
   364
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   365
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   366
claus
parents: 145
diff changeset
   367
       top add:v1.
claus
parents: 145
diff changeset
   368
       top add:v2.
claus
parents: 145
diff changeset
   369
claus
parents: 145
diff changeset
   370
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   371
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   372
claus
parents: 145
diff changeset
   373
    using layout objects (ST-80 style):
claus
parents: 145
diff changeset
   374
    fully specifying the frame
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   375
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   376
       |top v1 v2|
claus
parents: 145
diff changeset
   377
claus
parents: 145
diff changeset
   378
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   379
       top extent:300@300.
claus
parents: 145
diff changeset
   380
claus
parents: 145
diff changeset
   381
       v1 := View new.
claus
parents: 145
diff changeset
   382
       v2 := View new.
claus
parents: 145
diff changeset
   383
claus
parents: 145
diff changeset
   384
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   385
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   386
claus
parents: 145
diff changeset
   387
       top add:v1 in:(LayoutFrame new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   388
                        leftFraction:0.25;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   389
                        rightFraction:0.75;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   390
                        topFraction:0.0;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   391
                        bottomFraction:0.5).
151
claus
parents: 145
diff changeset
   392
       top add:v2 in:(LayoutFrame new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   393
                        leftFraction:0.5;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   394
                        rightFraction:1.0;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   395
                        topFraction:0.5;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   396
                        bottomFraction:0.75).
151
claus
parents: 145
diff changeset
   397
claus
parents: 145
diff changeset
   398
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   399
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   400
claus
parents: 145
diff changeset
   401
    another one, with offsets:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   402
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   403
       |top v1 v2|
claus
parents: 145
diff changeset
   404
claus
parents: 145
diff changeset
   405
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   406
       top extent:300@300.
claus
parents: 145
diff changeset
   407
claus
parents: 145
diff changeset
   408
       v1 := View new.
claus
parents: 145
diff changeset
   409
       v2 := View new.
claus
parents: 145
diff changeset
   410
claus
parents: 145
diff changeset
   411
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   412
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   413
claus
parents: 145
diff changeset
   414
       top add:v1 in:(LayoutFrame new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   415
                        leftFraction:0.0 offset:10;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   416
                        rightFraction:1.0 offset:-10;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   417
                        topFraction:0.0 offset:10;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   418
                        bottomFraction:0.5).
151
claus
parents: 145
diff changeset
   419
       top add:v2 in:(LayoutFrame new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   420
                        leftFraction:0.0 offset:30;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   421
                        rightFraction:1.0 offset:-30;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   422
                        topFraction:0.5 offset:10;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   423
                        bottomFraction:0.75).
151
claus
parents: 145
diff changeset
   424
claus
parents: 145
diff changeset
   425
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   426
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   427
claus
parents: 145
diff changeset
   428
    specifying origin only. Extent is views preferred
claus
parents: 145
diff changeset
   429
    (notice, that plain views have some defaultExtent of 100@100)
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   430
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   431
       |top v1 v2|
claus
parents: 145
diff changeset
   432
claus
parents: 145
diff changeset
   433
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   434
       top extent:300@300.
claus
parents: 145
diff changeset
   435
claus
parents: 145
diff changeset
   436
       v1 := View new.
claus
parents: 145
diff changeset
   437
       v2 := View new.
claus
parents: 145
diff changeset
   438
claus
parents: 145
diff changeset
   439
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   440
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   441
claus
parents: 145
diff changeset
   442
       top add:v1 in:(LayoutOrigin new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   443
                        leftFraction:0.25;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   444
                        topFraction:0.0).
151
claus
parents: 145
diff changeset
   445
       top add:v2 in:(LayoutOrigin new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   446
                        leftFraction:0.5;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   447
                        topFraction:0.5).
151
claus
parents: 145
diff changeset
   448
claus
parents: 145
diff changeset
   449
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   450
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   451
claus
parents: 145
diff changeset
   452
    same example, using buttons which compute their preferredBounds:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   453
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   454
       |top v1 v2|
claus
parents: 145
diff changeset
   455
claus
parents: 145
diff changeset
   456
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   457
       top extent:300@300.
claus
parents: 145
diff changeset
   458
claus
parents: 145
diff changeset
   459
       v1 := Button label:'foo'.
claus
parents: 145
diff changeset
   460
       v2 := Button label:'a very long buttonLabel'.
claus
parents: 145
diff changeset
   461
claus
parents: 145
diff changeset
   462
       v1 backgroundColor:(Color red).
claus
parents: 145
diff changeset
   463
       v2 backgroundColor:(Color yellow).
claus
parents: 145
diff changeset
   464
claus
parents: 145
diff changeset
   465
       top add:v1 in:(LayoutOrigin new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   466
                        leftFraction:0.25;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   467
                        topFraction:0.0).
151
claus
parents: 145
diff changeset
   468
       top add:v2 in:(LayoutOrigin new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   469
                        leftFraction:0.5;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   470
                        topFraction:0.5).
151
claus
parents: 145
diff changeset
   471
claus
parents: 145
diff changeset
   472
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   473
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   474
"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   475
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   476
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   477
layoutComputation 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   478
"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   479
    Due to historic reasons, there are 2 mechanisms to resize a view:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   480
	- (old, to be eliminated mechanism)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   481
	    based upon info found in 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   482
		relativeOrigin / relativeCorner / relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   483
		originRule / cornerRule / extentRule
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   484
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   485
	- (new, will migrate to that one)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   486
	    letting a layoutObject compute things
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   487
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   488
    Actually, the old mechanism is just as powerful, as the new (layoutObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   489
    based) mechanism; with the help of block=rules, you can compute whatever
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   490
    geometry is desired.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   491
    However, having 6 instance variables in every view creates some overhead,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   492
    which can be avoided in most cases (most views are either fixed-size or
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   493
    relative-sized).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   494
    Therefore (and also to make porting of ST-80 apps easier), ST/X will migrate 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   495
    to use layoutObjects.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   496
    You will not see a difference at the views protocol level, since
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   497
    existing interfaces will (silently) create layoutObjects as appropriate.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   498
    However, you should remove all direct accesses to the above mentioned
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   499
    instance variables, to be prepared for that change.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   500
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   501
    Notice, that a view recomputes its size whenever its superview
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   502
    changes size. This is done via:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   503
	sizeChanged
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   504
	    -> allSubviews: superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   505
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   506
    If the geometry computation as performed in superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   507
    is not powerful enough for your application, you can either:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   508
	- redefine superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   509
	- create a special layoutObject which computes a new layout.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   510
"
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   511
!
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   512
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   513
popupMenus 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   514
"
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   515
    Due to historic reasons, there are multiple mechanisms for popupMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   516
    definition:
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   517
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   518
        - static menus
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   519
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   520
        - dynamic menus from the view
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   521
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   522
        - dynamic menus from the model / menuHolder
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   523
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   524
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   525
    static menus
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   526
    ------------
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   527
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   528
    The easiest to use is a static menu; this is useful, if some view
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   529
    has a constant menu which never changes.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   530
    It can be defined at initialization time or redefined any time later.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   531
    The menu is defined with:
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   532
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   533
        someView middleButtonMenu:<aPopUpMenu>
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   534
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   535
    Compatibility note: 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   536
        static menus should no longer be used - their operation
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   537
        is incompatible with ST-80 and ST/X's dynamic menus.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   538
        Do not use them if you care for compatibility.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   539
    Also, they do not care for any menuPerformers or menuHolders.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   540
    (instead, they use a receiver instance variable, which gets the messages).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   541
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   542
    example:
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   543
        |top v1 v2|
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   544
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   545
        top := StandardSystemView new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   546
        top extent:300@300.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   547
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   548
        v1 := View origin:0.0@0.0 corner:0.5@1.0 in:top.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   549
        v1 viewBackground:Color red.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   550
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   551
        v2 := View origin:0.5@0.0 corner:1.0@1.0 in:top.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   552
        v2 viewBackground:Color yellow.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   553
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   554
        v1 middleButtonMenu:(
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   555
                                PopUpMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   556
                                   labels:#('foo' 'bar')
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   557
                                   selectors:#(foo bar)
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   558
                                   receiver:v1
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   559
                            ).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   560
                                        
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   561
        top open.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   562
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   563
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   564
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   565
    dynamic menus
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   566
    -------------
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   567
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   568
    A dynamic menu can be provided by the view itself, or by the model.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   569
    In addition, TextViews allow a separate menuHolder to provide the menu
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   570
    (i.e. it may be different from the model).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   571
    If the model shall provide the menu, set the views menuMessage to a selector
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   572
    which is sent to the model. This message should return a popUpMenu.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   573
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   574
    For textViews, the above is also valid, except if the menuHolder is explicitely
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   575
    set - in this case, that one provides the menu; not the model.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   576
    Dont get confused by the fact that menuHolders are only supported
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   577
    by textViews.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   578
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   579
    example: (in your application, the plug would be your application, topView or model)
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   580
    Notice, that all menu messages are sent to the view (because no model was set)
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   581
    - so the textView still performs the copy-function correctly 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   582
    (but of course, does not respond to the fooBar messages).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   583
    If a model was set, the menu would try the model first, but send its messages
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   584
    to the view IFF the model would not respond to the menu message.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   585
    (this allows mixing of menu messages for the view AND the model).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   586
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   587
        |top v1 v2 holder|
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   588
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   589
        holder := Plug new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   590
        holder respondTo:#menu1
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   591
                    with:[
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   592
                            v1 menuMessage:#otherMenu1.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   593
                            PopUpMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   594
                                labels:#('foo' 'bar')
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   595
                                selectors:#(foo bar).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   596
                         ].
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   597
        holder respondTo:#otherMenu1
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   598
                    with:[  
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   599
                            v1 menuMessage:#menu1.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   600
                            PopUpMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   601
                                labels:#('other foo' 'other bar')
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   602
                                selectors:#(foo bar).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   603
                         ].
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   604
        holder respondTo:#menu2
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   605
                    with:[  PopUpMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   606
                                labels:#('copy' 'bar2')
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   607
                                selectors:#(copySelection bar2)
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   608
                         ].
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   609
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   610
        top := StandardSystemView new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   611
        top extent:300@300.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   612
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   613
        v1 := View origin:0.0@0.0 corner:0.5@1.0 in:top.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   614
        v1 viewBackground:Color red.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   615
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   616
        v2 := TextView origin:0.5@0.0 corner:1.0@1.0 in:top.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   617
        v2 contents:'pop me up'.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   618
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   619
        v1 model:holder; menuMessage:#menu1.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   620
        v2 menuHolder:holder; menuMessage:#menu2.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   621
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   622
        top open.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   623
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   624
    an additional goody is the possibility, to change the menuPerformer (textViews only).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   625
    If defined, that one will get the menus message (instead of the model/view).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   626
    However, like above, if it does not respond to the message, its still sent to
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   627
    the view. Notice, that with non-textViews, the menuPerformer is always the model.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   628
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   629
    example:
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   630
    (Notice: the executor understands the #copySelection message - therefore, the
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   631
     views built-in copy is NOT performed 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   632
     - it could be forwarded to the view, though.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   633
     This could be useful to intercept/filter things).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   634
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   635
        |top v menuProvider menuExecutor |
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   636
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   637
        menuProvider := Plug new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   638
        menuProvider respondTo:#menu
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   639
                    with:[  PopUpMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   640
                                labels:#('copy' 'foo')
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   641
                                selectors:#(copySelection foo)
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   642
                         ].
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   643
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   644
        menuExecutor := Plug new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   645
        menuExecutor respondTo:#copySelection 
697
cba925eed3da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 696
diff changeset
   646
                           with:[Transcript showCR:'copy function'].
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   647
        menuExecutor respondTo:#foo 
697
cba925eed3da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 696
diff changeset
   648
                           with:[Transcript showCR:'foo function'].
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   649
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   650
        top := StandardSystemView new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   651
        top extent:300@300.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   652
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   653
        v := TextView origin:0.0@0.0 corner:1.0@1.0 in:top.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   654
        v contents:'pop me up'.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   655
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   656
        v menuHolder:menuProvider; menuMessage:#menu.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   657
        v menuPerformer:menuExecutor.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   658
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   659
        top open.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   660
"
135
claus
parents:
diff changeset
   661
! !
claus
parents:
diff changeset
   662
claus
parents:
diff changeset
   663
!SimpleView class methodsFor:'initialization'!
claus
parents:
diff changeset
   664
claus
parents:
diff changeset
   665
initialize
claus
parents:
diff changeset
   666
    DefaultStyle isNil ifTrue:[
696
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   667
        Font initialize.
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   668
        Form initialize.
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   669
        Color initialize.
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   670
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   671
"/        Display notNil ifTrue:[
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   672
"/            self defaultStyle:#normal.
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   673
"/        ].
135
claus
parents:
diff changeset
   674
claus
parents:
diff changeset
   675
"/    self updateStyleCache.
696
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   676
        self == SimpleView ifTrue:[
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   677
            Smalltalk addDependent:self   "/ to get language changes
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   678
        ]
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   679
    ].
365
347a478d8cf5 default returnFocus to false
Claus Gittinger <cg@exept.de>
parents: 364
diff changeset
   680
    ReturnFocusWhenClosingModalBoxes := false.
696
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   681
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   682
    "Modified: 18.5.1996 / 16:56:28 / cg"
135
claus
parents:
diff changeset
   683
!
claus
parents:
diff changeset
   684
claus
parents:
diff changeset
   685
postAutoload
claus
parents:
diff changeset
   686
    self updateStyleCache.
claus
parents:
diff changeset
   687
! !
claus
parents:
diff changeset
   688
claus
parents:
diff changeset
   689
!SimpleView class methodsFor:'instance creation'!
claus
parents:
diff changeset
   690
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   691
extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   692
    "create a new view with given extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   693
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   694
    ^ self origin:nil extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   695
		      font:nil label:nil in:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   696
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   697
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   698
extent:extent in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   699
    "create a new view as a subview of aView with given extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   700
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   701
    ^ self origin:nil extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   702
		      font:nil label:nil in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   703
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   704
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   705
extent:extent label:label
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   706
    "create a new view with given extent and label"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   707
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   708
    ^ self origin:nil extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   709
		      font:nil label:label in:nil
135
claus
parents:
diff changeset
   710
!
claus
parents:
diff changeset
   711
claus
parents:
diff changeset
   712
in:aView
claus
parents:
diff changeset
   713
    "return a new view as a subview of aView.
claus
parents:
diff changeset
   714
     If aView is nil, it is left unspecified, in which superview
claus
parents:
diff changeset
   715
     the new view will be placed. The view can later be assigned
claus
parents:
diff changeset
   716
     by adding it to the superview via #addSubView:.
claus
parents:
diff changeset
   717
     If realized and no superview has ever been set, it will come
claus
parents:
diff changeset
   718
     up as a topview."
claus
parents:
diff changeset
   719
claus
parents:
diff changeset
   720
    |newView|
claus
parents:
diff changeset
   721
claus
parents:
diff changeset
   722
    newView := self basicNew.
claus
parents:
diff changeset
   723
    aView notNil ifTrue:[
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   724
        newView device:(aView graphicsDevice).
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
   725
        newView container:aView.
135
claus
parents:
diff changeset
   726
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
   727
        newView device:Screen current "Display"
135
claus
parents:
diff changeset
   728
    ].
claus
parents:
diff changeset
   729
    newView initialize.
claus
parents:
diff changeset
   730
    aView notNil ifTrue:[aView addSubView:newView].
claus
parents:
diff changeset
   731
    ^ newView
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
   732
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   733
    "Modified: 28.5.1996 / 20:24:58 / cg"
135
claus
parents:
diff changeset
   734
!
claus
parents:
diff changeset
   735
140
claus
parents: 138
diff changeset
   736
label:label
claus
parents: 138
diff changeset
   737
    "create a new view with given label"
135
claus
parents:
diff changeset
   738
claus
parents:
diff changeset
   739
    ^ self origin:nil extent:nil borderWidth:nil
140
claus
parents: 138
diff changeset
   740
		      font:nil label:label in:nil
claus
parents: 138
diff changeset
   741
!
claus
parents: 138
diff changeset
   742
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   743
label:label in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   744
    "create a new view as subview of aView with given label"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   745
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   746
    ^ self origin:nil extent:nil borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   747
		      font:nil label:label in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   748
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   749
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   750
on:aModel
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   751
    "create a new drawable on aModel"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   752
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   753
    "although this one does not know about models,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   754
     it can still send the model-assign message. This was done
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   755
     to catch obsolete calls to on:aDevice.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   756
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   757
    ^ self new model:aModel.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   758
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   759
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   760
onSameDeviceAs:anotherView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   761
    "create a view on the same device as anotherView.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   762
     Used with popUpMenus, which should be created on the device of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   763
     its masterView."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   764
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   765
    |device|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   766
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   767
    anotherView notNil ifTrue:[
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   768
        device := anotherView graphicsDevice.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   769
    ] ifFalse:[
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   770
        device := Screen current.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   771
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   772
    ^ self onDevice:device
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   773
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   774
    "Modified: 28.5.1996 / 20:25:05 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   775
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   776
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   777
origin:origin corner:corner 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   778
    "create a new view with given origin and extent"
135
claus
parents:
diff changeset
   779
140
claus
parents: 138
diff changeset
   780
    ^ self origin:origin corner:corner borderWidth:nil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   781
			 font:nil label:nil in:nil
135
claus
parents:
diff changeset
   782
!
claus
parents:
diff changeset
   783
claus
parents:
diff changeset
   784
origin:anOrigin corner:aCorner borderWidth:bw font:aFont label:aLabel in:aView
claus
parents:
diff changeset
   785
    |newView|
claus
parents:
diff changeset
   786
claus
parents:
diff changeset
   787
    aView notNil ifTrue:[
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   788
        newView := self basicNew.
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   789
        newView device:(aView graphicsDevice).
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   790
        newView initialize.
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   791
        aView addSubView:newView.
135
claus
parents:
diff changeset
   792
    ] ifFalse:[
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   793
        newView := self onDevice:Screen current "Display"
135
claus
parents:
diff changeset
   794
    ].
claus
parents:
diff changeset
   795
    bw notNil ifTrue:[newView borderWidth:bw].
claus
parents:
diff changeset
   796
    anOrigin notNil ifTrue:[newView origin:anOrigin].
claus
parents:
diff changeset
   797
    aCorner notNil ifTrue:[newView corner:aCorner].
claus
parents:
diff changeset
   798
    aFont notNil ifTrue:[newView font:aFont].
claus
parents:
diff changeset
   799
    aLabel notNil ifTrue:[newView label:aLabel].
claus
parents:
diff changeset
   800
    ^ newView
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   801
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   802
    "Modified: 28.5.1996 / 20:25:15 / cg"
135
claus
parents:
diff changeset
   803
!
claus
parents:
diff changeset
   804
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   805
origin:origin corner:corner borderWidth:bw in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   806
    "create a new view as a subview of aView with given origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   807
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   808
    ^ self origin:origin corner:corner borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   809
			 font:nil label:nil in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   810
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   811
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   812
origin:origin corner:corner in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   813
    "create a new view as a subview of aView with given origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   814
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   815
    ^ self origin:origin corner:corner borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   816
			 font:nil label:nil in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   817
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   818
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   819
origin:origin extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   820
    "create a new view with given origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   821
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   822
    ^ self origin:origin extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   823
			 font:nil label:nil in:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   824
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   825
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   826
origin:origin extent:extent borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   827
    "create a new view with given origin, extent and borderWidth"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   828
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   829
    ^ self origin:origin extent:extent borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   830
			 font:nil label:nil in:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   831
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   832
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   833
origin:anOrigin extent:anExtent borderWidth:bw font:aFont label:aLabel in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   834
    |newView|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   835
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   836
    aView notNil ifTrue:[
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   837
        newView := self basicNew.
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   838
        newView device:(aView graphicsDevice).
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   839
        newView initialize.
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   840
        aView addSubView:newView.
140
claus
parents: 138
diff changeset
   841
    ] ifFalse:[
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   842
        newView := self onDevice:Screen current "Display"
140
claus
parents: 138
diff changeset
   843
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   844
    bw notNil ifTrue:[newView borderWidth:bw].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   845
    anExtent notNil ifTrue:[newView extent:anExtent].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   846
    anOrigin notNil ifTrue:[newView origin:anOrigin].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   847
    aFont notNil ifTrue:[newView font:aFont].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   848
    aLabel notNil ifTrue:[newView label:aLabel].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   849
    ^ newView
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   850
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   851
    "Modified: 28.5.1996 / 20:25:19 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   852
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   853
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   854
origin:origin extent:extent borderWidth:bw in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   855
    "create a new view as a subview of aView with given origin, extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   856
     and borderWidth"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   857
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   858
    ^ self origin:origin extent:extent borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   859
			 font:nil label:nil in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   860
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   861
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   862
origin:origin extent:extent font:aFont label:label
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   863
    ^ self origin:origin extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   864
			 font:nil label:label in:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   865
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   866
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   867
origin:origin extent:extent font:aFont label:label in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   868
    ^ self origin:origin extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   869
			 font:aFont label:label in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   870
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   871
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   872
origin:origin extent:extent in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   873
    "create a new view as a subview of aView with given origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   874
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   875
    ^ self origin:origin extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   876
			 font:nil label:nil in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   877
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   878
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   879
origin:origin extent:extent label:label
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   880
    "create a new view with given origin, extent and label"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   881
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   882
    ^ self origin:origin extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   883
			 font:nil label:label in:nil
135
claus
parents:
diff changeset
   884
!
claus
parents:
diff changeset
   885
claus
parents:
diff changeset
   886
origin:anOrigin extent:anExtent
claus
parents:
diff changeset
   887
		label:aLabel icon:aForm
claus
parents:
diff changeset
   888
		minExtent:minExtent maxExtent:maxExtent
claus
parents:
diff changeset
   889
    |newView|
claus
parents:
diff changeset
   890
151
claus
parents: 145
diff changeset
   891
    newView := self onDevice:Screen current "Display".
135
claus
parents:
diff changeset
   892
    anOrigin notNil ifTrue:[newView origin:anOrigin].
claus
parents:
diff changeset
   893
    anExtent notNil ifTrue:[newView extent:anExtent].
claus
parents:
diff changeset
   894
    aLabel notNil ifTrue:[newView label:aLabel].
claus
parents:
diff changeset
   895
    aForm notNil ifTrue:[newView icon:aForm].
claus
parents:
diff changeset
   896
    minExtent notNil ifTrue:[newView minExtent:minExtent].
claus
parents:
diff changeset
   897
    maxExtent notNil ifTrue:[newView maxExtent:maxExtent].
claus
parents:
diff changeset
   898
    ^ newView
claus
parents:
diff changeset
   899
!
claus
parents:
diff changeset
   900
140
claus
parents: 138
diff changeset
   901
origin:origin in:aView
claus
parents: 138
diff changeset
   902
    "create a new view as a subview of aView with given origin"
claus
parents: 138
diff changeset
   903
claus
parents: 138
diff changeset
   904
    ^ self origin:origin extent:nil borderWidth:nil
claus
parents: 138
diff changeset
   905
			 font:nil label:nil in:aView
135
claus
parents:
diff changeset
   906
! !
claus
parents:
diff changeset
   907
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   908
!SimpleView class methodsFor:'change & update'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   909
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   910
update:something
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   911
    something == #Language ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   912
	"flush resources on language changes"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   913
	self flushAllClassResources
135
claus
parents:
diff changeset
   914
    ]
claus
parents:
diff changeset
   915
! !
claus
parents:
diff changeset
   916
claus
parents:
diff changeset
   917
!SimpleView class methodsFor:'defaults'!
claus
parents:
diff changeset
   918
140
claus
parents: 138
diff changeset
   919
defaultExtent
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
   920
    "return the default extent of my instances.
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
   921
     The value returned here is usually ignored, and
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
   922
     the value from preferredExtent taken instead."
140
claus
parents: 138
diff changeset
   923
claus
parents: 138
diff changeset
   924
    CentPoint isNil ifTrue:[CentPoint := 100 @ 100].
claus
parents: 138
diff changeset
   925
    ^ CentPoint
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
   926
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
   927
    "Modified: 22.4.1996 / 23:38:39 / cg"
140
claus
parents: 138
diff changeset
   928
!
claus
parents: 138
diff changeset
   929
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   930
defaultFont
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   931
    DefaultFont notNil ifTrue:[^ DefaultFont].
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   932
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   933
    DefaultFont isNil ifTrue:[
467
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   934
        self == SimpleView ifFalse:[
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   935
            DefaultFont := self superclass defaultFont.
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   936
        ] ifTrue:[
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   937
"/            DefaultFont := super defaultFont
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   938
        ].
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   939
    ].
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   940
    DefaultFont notNil ifTrue:[DefaultFont := DefaultFont on:Display].
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   941
    ^ DefaultFont
467
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   942
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   943
    "Modified: 27.2.1996 / 02:20:54 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   944
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   945
450
9eb6198de8f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 433
diff changeset
   946
defaultFont:aFont
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   947
    "set the default font used for drawing"
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   948
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   949
    DefaultFont := aFont.
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   950
    aFont notNil ifTrue:[
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   951
        DefaultFont := aFont on:Display
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   952
    ]
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   953
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   954
    "Modified: 18.3.1996 / 12:56:20 / cg"
450
9eb6198de8f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 433
diff changeset
   955
!
9eb6198de8f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 433
diff changeset
   956
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   957
defaultStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   958
    "return the default view style"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   959
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   960
    ^ DefaultStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   961
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   962
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   963
     View defaultStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   964
    "
135
claus
parents:
diff changeset
   965
!
claus
parents:
diff changeset
   966
claus
parents:
diff changeset
   967
defaultStyle:aStyle
claus
parents:
diff changeset
   968
    "set the view style for new views"
claus
parents:
diff changeset
   969
180
claus
parents: 176
diff changeset
   970
"/    aStyle ~~ DefaultStyle ifTrue:[
135
claus
parents:
diff changeset
   971
	DefaultStyle := aStyle.
claus
parents:
diff changeset
   972
	self updateAllStyleCaches.
180
claus
parents: 176
diff changeset
   973
"/    ]
135
claus
parents:
diff changeset
   974
claus
parents:
diff changeset
   975
    "
claus
parents:
diff changeset
   976
     View defaultStyle:#next. SystemBrowser start
claus
parents:
diff changeset
   977
     View defaultStyle:#motif. SystemBrowser start
claus
parents:
diff changeset
   978
     View defaultStyle:#iris. SystemBrowser start
claus
parents:
diff changeset
   979
     View defaultStyle:#st80. SystemBrowser start
claus
parents:
diff changeset
   980
     View defaultStyle:#normal. SystemBrowser start
claus
parents:
diff changeset
   981
    "
claus
parents:
diff changeset
   982
!
claus
parents:
diff changeset
   983
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   984
returnFocusWhenClosingModalBoxes
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   985
    "return the current focus-return behavior.
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   986
     See #returnFocusWhenClosingModalBoxes: for a description."
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   987
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   988
    ^ ReturnFocusWhenClosingModalBoxes
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   989
!
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   990
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   991
returnFocusWhenClosingModalBoxes:aBoolean
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   992
    "control the keyboard-focus behavior when a modal dialog
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   993
     is closed. The default (true) is to return the focus to the view
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   994
     which was active when the dialog was opened.
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   995
     If false, it is left up to the display to set the focus.
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   996
     For owm / ovwm (which requires an explicit click for the focus),
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   997
     it is better to return the focus automatically.
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   998
     For managers which assign the focus according the pointer position,
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   999
     it may be better to turn the focus-return off.
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1000
     You should add a corresponding expression into your private.rc or 
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1001
     display.rc file."
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1002
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1003
    ReturnFocusWhenClosingModalBoxes := aBoolean
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1004
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1005
    "
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1006
     Dialog returnFocusWhenClosingModalBoxes:false
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1007
     Dialog returnFocusWhenClosingModalBoxes:true
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1008
    "
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1009
!
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1010
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1011
styleSheet:aViewStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1012
    "set the view style from a style-sheet"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1013
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1014
    StyleSheet := aViewStyle.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1015
    DefaultStyle := (StyleSheet at:'name' ifAbsent:'unknown') asSymbol.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1016
    self updateAllStyleCaches.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1017
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1018
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1019
updateAllStyleCaches
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1020
    "reload all style caches in all view classes.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1021
     Needed after a style change or when a style file has been changed"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1022
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1023
    StyleSheet := ViewStyle fromFile:(DefaultStyle , '.style').
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1024
    StyleSheet fileReadFailed ifTrue:[
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1025
        ('***** WARNING: no styleSheet for ' , DefaultStyle , '-style.') errorPrintNL.
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1026
        DefaultStyle ~~ #normal ifTrue:[
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1027
            DefaultStyle := #normal.
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1028
            StyleSheet := ViewStyle fromFile:(DefaultStyle , '.style').
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1029
        
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1030
            StyleSheet fileReadFailed ifTrue:[
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1031
                '***** WARNING: not even a styleSheet for normal-style (using defaults).' errorPrintNL.
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1032
            ]
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1033
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1034
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1035
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1036
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1037
     tell all view classes to flush any
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1038
     cached style-data
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1039
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1040
    self changed:#style.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1041
    SimpleView updateStyleCache.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1042
    SimpleView allSubclassesDo:[:aClass |
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1043
        aClass defaultFont:nil.
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1044
        (aClass class implements:#updateStyleCache) ifTrue:[
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1045
            aClass updateStyleCache
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1046
        ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1047
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1048
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1049
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1050
     View updateAllStyleCaches
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1051
    "
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1052
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1053
    "Modified: 18.3.1996 / 12:56:26 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1054
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1055
135
claus
parents:
diff changeset
  1056
updateStyleCache
claus
parents:
diff changeset
  1057
    "this method gets some heavily used style stuff and keeps
claus
parents:
diff changeset
  1058
     it in class-variables for faster access.
claus
parents:
diff changeset
  1059
     Subclasses should redefine this to load any cached style-values
claus
parents:
diff changeset
  1060
     into faster class variables as well. These should NOT do a 
claus
parents:
diff changeset
  1061
     super updateStyleCache, since this method is called for all view-classes
claus
parents:
diff changeset
  1062
     anyway."
claus
parents:
diff changeset
  1063
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1064
    <resource: #style (#viewSpacing #font #borderWidth
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1065
                       #viewBackground #shadowColor #lightColor
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1066
                       #focusColor #focusBorderWidth)>
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1067
135
claus
parents:
diff changeset
  1068
    |bgGrey|
claus
parents:
diff changeset
  1069
claus
parents:
diff changeset
  1070
    "
claus
parents:
diff changeset
  1071
     when coming here the first time, we read the styleSheet
claus
parents:
diff changeset
  1072
     and keep the values in fast class variables
claus
parents:
diff changeset
  1073
    "
claus
parents:
diff changeset
  1074
    StyleSheet isNil ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1075
        DefaultStyle := #normal.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1076
        StyleSheet := ViewStyle fromFile:'normal.style'.
135
claus
parents:
diff changeset
  1077
    ].
claus
parents:
diff changeset
  1078
claus
parents:
diff changeset
  1079
    Grey := StyleSheet viewGrey.
claus
parents:
diff changeset
  1080
    Grey isNil ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1081
        Grey := Color grey
135
claus
parents:
diff changeset
  1082
    ].
claus
parents:
diff changeset
  1083
    Grey := Grey on:Display.
claus
parents:
diff changeset
  1084
151
claus
parents: 145
diff changeset
  1085
    StyleSheet fileReadFailed ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1086
        bgGrey := White
135
claus
parents:
diff changeset
  1087
    ] ifFalse:[
749
c83c6d93760d grey vs. gray
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  1088
        Display hasGrayscales ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1089
            bgGrey := Grey
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1090
        ] ifFalse:[
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1091
            bgGrey := White 
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1092
        ]
135
claus
parents:
diff changeset
  1093
    ].
151
claus
parents: 145
diff changeset
  1094
    bgGrey := bgGrey on:Display.
135
claus
parents:
diff changeset
  1095
claus
parents:
diff changeset
  1096
    ViewSpacing := StyleSheet at:'viewSpacing'.
claus
parents:
diff changeset
  1097
    ViewSpacing isNil ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1098
        ViewSpacing := Display verticalPixelPerMillimeter rounded.
135
claus
parents:
diff changeset
  1099
    ].
claus
parents:
diff changeset
  1100
claus
parents:
diff changeset
  1101
    DefaultBorderColor := StyleSheet colorAt:'borderColor' default:Black.
151
claus
parents: 145
diff changeset
  1102
claus
parents: 145
diff changeset
  1103
    StyleSheet fileReadFailed ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1104
        DefaultBorderWidth := 1.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1105
        DefaultShadowColor := Black.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1106
        DefaultLightColor :=  White.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1107
        DefaultFocusColor := Black.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1108
        DefaultFocusBorderWidth := 2.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1109
        DefaultViewBackgroundColor := bgGrey.
151
claus
parents: 145
diff changeset
  1110
    ] ifFalse:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1111
        DefaultBorderWidth := StyleSheet at:'borderWidth' default:0.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1112
        DefaultViewBackgroundColor := StyleSheet colorAt:'viewBackground' default:bgGrey.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1113
        DefaultShadowColor := StyleSheet colorAt:'shadowColor'.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1114
        DefaultLightColor := StyleSheet colorAt:'lightColor'.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1115
        DefaultFocusColor := StyleSheet colorAt:'focusColor' default:Color red.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1116
        DefaultFocusBorderWidth := StyleSheet at:'focusBorderWidth' default:2.
151
claus
parents: 145
diff changeset
  1117
    ].
135
claus
parents:
diff changeset
  1118
526
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1119
    self == SimpleView ifTrue:[
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1120
        DefaultFont := StyleSheet at:'font'.
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1121
        DefaultFont isNil ifTrue:[
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1122
            DefaultFont := Font family:'courier' face:'medium' style:'roman' size:12.
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1123
        ].
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1124
        DefaultFont := DefaultFont on:Display.
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1125
    ] ifFalse:[
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1126
        DefaultFont := nil
135
claus
parents:
diff changeset
  1127
    ].
claus
parents:
diff changeset
  1128
claus
parents:
diff changeset
  1129
    DefaultViewBackgroundColor isNil ifTrue:[
517
ffc3316a7d3b nicer message
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1130
        'VIEW: bad viewBackground in style - using white' errorPrintNL.
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1131
        DefaultViewBackgroundColor := White
135
claus
parents:
diff changeset
  1132
    ].
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1133
749
c83c6d93760d grey vs. gray
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  1134
    "Modified: 28.5.1996 / 21:14:06 / cg"
135
claus
parents:
diff changeset
  1135
!
claus
parents:
diff changeset
  1136
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1137
viewSpacing
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1138
    "return a convenient number of pixels used to separate views (usually 1mm).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1139
     Having this value here at a common place makes certain that all views
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1140
     get a common look"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1141
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1142
    ^ ViewSpacing
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1143
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1144
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1145
!SimpleView class methodsFor:'resources'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1146
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1147
classResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1148
    "if not already loaded, get the classes resourcePack
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1149
     and return it"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1150
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1151
    ClassResources isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1152
	ClassResources := ResourcePack for:self.
140
claus
parents: 138
diff changeset
  1153
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1154
    ^ ClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1155
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1156
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1157
classResources:aResourcePack
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1158
    "allow setting of the classResources"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1159
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1160
    ClassResources := aResourcePack
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1161
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1162
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1163
flushAllClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1164
    "flush all classes resource translations.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1165
     Needed after a resource file has changed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1166
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1167
    ResourcePack flushCachedResourcePacks.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1168
    SimpleView flushClassResources.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1169
    SimpleView allSubclasses do:[:aClass |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1170
	aClass flushClassResources.
140
claus
parents: 138
diff changeset
  1171
    ]
claus
parents: 138
diff changeset
  1172
claus
parents: 138
diff changeset
  1173
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1174
     View flushAllClassResources
140
claus
parents: 138
diff changeset
  1175
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1176
    "to change the language:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1177
	Language := #english.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1178
	Smalltalk changed:#Language.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1179
	View flushAllClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1180
     or:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1181
	Language := #german.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1182
	Smalltalk changed:#Language.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1183
	View flushAllClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1184
    "     
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1185
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1186
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1187
flushClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1188
    "flush classes resource string translations.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1189
     Needed whenever a resource file or language has changed"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1190
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1191
    ClassResources := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1192
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1193
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1194
updateClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1195
    "flush classes resource string translations and reload them.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1196
     Needed whenever a resource file or language has changed"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1197
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1198
    ClassResources := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1199
    self classResources
135
claus
parents:
diff changeset
  1200
! !
claus
parents:
diff changeset
  1201
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1202
!SimpleView methodsFor:'ST-80 compatibility'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1203
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1204
checkForEvents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1205
    (shown and:[windowGroup notNil]) ifTrue:[windowGroup processEvents].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1206
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1207
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1208
sensor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1209
    "return the views sensor"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1210
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1211
    windowGroup notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1212
	^ windowGroup sensor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1213
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1214
    ^ nil
151
claus
parents: 145
diff changeset
  1215
! !
claus
parents: 145
diff changeset
  1216
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1217
!SimpleView methodsFor:'accessing-bg & border'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1218
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1219
borderColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1220
    "return my borderColor"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1221
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1222
    ^ borderColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1223
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1224
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1225
borderColor:aColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1226
    "set my borderColor"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1227
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1228
    (aColor ~~ borderColor) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1229
	borderColor := aColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1230
	drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1231
	    self setBorderColor
135
claus
parents:
diff changeset
  1232
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1233
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1234
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1235
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1236
borderShape:aForm
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1237
    "set the borderShape to aForm"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1238
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1239
    borderShape := aForm.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1240
    drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1241
	device setWindowBorderShape:(aForm id) in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1242
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1243
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1244
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1245
borderWidth
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1246
    "return my borderWidth"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1247
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1248
    ^ borderWidth
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1249
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1250
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1251
borderWidth:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1252
    "set my borderWidth"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1253
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1254
    (aNumber ~~ borderWidth) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1255
	borderWidth := aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1256
	drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1257
	    device setWindowBorderWidth:aNumber in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1258
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1259
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1260
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1261
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1262
level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1263
    "return my level relative to superView (3D)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1264
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1265
    ^ level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1266
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1267
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1268
level:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1269
    "set my level relative to superView (3D)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1270
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1271
    |oldMargin how|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1272
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1273
    (aNumber ~~ level and:[aNumber notNil]) ifTrue:[
433
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1274
        self is3D ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1275
            level := aNumber.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1276
            oldMargin := margin.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1277
            margin := level abs.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1278
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1279
            realized ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1280
                margin ~~ oldMargin ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1281
                    (margin > oldMargin) ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1282
                        how := #smaller
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1283
                    ] ifFalse:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1284
                        how := #larger
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1285
                    ].
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1286
                    self sizeChanged:how.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1287
                    self setInnerClip.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1288
                ].
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1289
                shown ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1290
                    margin ~~ oldMargin ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1291
                        self clear.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1292
                        self redrawX:margin y:margin
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1293
                               width:width-(margin*2) 
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1294
                              height:height-(margin*2)
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1295
                    ].
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1296
                    self redrawEdges.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1297
               ]
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1298
            ]
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1299
        ]
135
claus
parents:
diff changeset
  1300
    ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1301
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1302
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1303
lightColor:aColorOrImage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1304
    "set the color to be used for lighted edges (3D only)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1305
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1306
    lightColor := aColorOrImage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1307
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1308
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1309
margin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1310
    "return my margin - this is usually the level,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1311
     but can be more for some views"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1312
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1313
    ^ margin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1314
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1315
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1316
shadowColor:aColorOrImage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1317
    "set the color to be used for shadowed edges (3D only)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1318
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1319
    shadowColor := aColorOrImage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1320
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1321
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1322
viewBackground:something
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1323
    "set the viewBackground to something, a color, image or form.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1324
     If its a color and we run on a color display, also set shadow and light
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1325
     colors - this means, that a red view will get light-red and dark-red
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1326
     edges."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1327
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1328
    something isColor ifTrue:[
749
c83c6d93760d grey vs. gray
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  1329
        device hasGrayscales ifTrue:[
754
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  1330
            shadowColor := something darkened "on:device".
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  1331
            lightColor := something lightened "on:device".
749
c83c6d93760d grey vs. gray
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  1332
        ]
135
claus
parents:
diff changeset
  1333
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1334
    super viewBackground:something
749
c83c6d93760d grey vs. gray
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  1335
754
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  1336
    "Modified: 28.5.1996 / 22:33:03 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1337
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1338
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1339
viewShape:aForm
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1340
    "set the viewShape to aForm"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1341
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1342
    viewShape := aForm.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1343
    drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1344
	device setWindowShape:(aForm id) in:drawableId
135
claus
parents:
diff changeset
  1345
    ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1346
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1347
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1348
!SimpleView methodsFor:'accessing-contents'!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1349
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1350
heightOfContents
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1351
    "return the height of the contents in logical units 
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1352
     - defaults to views visible area here.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1353
    This method MUST be redefined in all view classess which are
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1354
    going to be scrolled AND show data which has different size than
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1355
    the view. For example, a view showing A4-size documents should return
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1356
    the number of vertical pixels such a document has on this device.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1357
    A view showing a bitmap of height 1000 should return 1000.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1358
    If not redefined, scrollbars have no way of knowing the actual size
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1359
    of the contents being shown. This is called by scrollBars to compute
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1360
    the relative height of the document vs. the views actual size.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1361
    The value returned here must be based on a scale of 1, since users
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1362
    of this will scale as appropriate."
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1363
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1364
    ^ (self innerHeight max:(self maxSubViewBottom)) max:self maxComponentBottom
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1365
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1366
    "Modified: 26.5.1996 / 12:44:21 / cg"
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1367
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1368
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1369
widthOfContents
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1370
    "return the width of the contents in logical units 
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1371
     - defaults to views visible area here.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1372
    This method MUST be redefined in all view classess which are
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1373
    going to be scrolled AND show data which has different size than
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1374
    the view. For example, a view showing A4-size documents should return
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1375
    the number of horizontal pixels such a document has on this device.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1376
    A view showing a bitmap of width 500 should return 500.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1377
    If not redefined, scrollbars have no way of knowing the actual size
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1378
    of the contents being shown. This is called by scrollBars to compute
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1379
    the relative width of the document vs. the views actual width.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1380
    The value returned here must be based on a scale of 1, since users
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1381
    of this will scale as appropriate."
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1382
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1383
    ^ (self innerWidth max:(self maxSubViewRight)) max:self maxComponentRight
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1384
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1385
    "Modified: 26.5.1996 / 13:02:50 / cg"
422
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  1386
! !
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1387
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1388
!SimpleView methodsFor:'accessing-dimensions'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1389
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1390
allInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1391
    "set all insets; positive makes the view smaller,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1392
     negative makes it larger."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1393
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1394
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1395
	insets := Array new:4.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1396
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1397
    insets atAllPut:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1398
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1399
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1400
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1401
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1402
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1403
	self superViewChangedSize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1404
"/    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1405
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1406
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1407
bottom
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1408
    "return the y position of the actual bottom edge (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1409
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1410
    ^ top + height - 1
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1411
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1412
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1413
bottom:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1414
    "set the corners y position"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1415
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1416
    self corner:(self corner x @ aNumber)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1417
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1418
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1419
bottomInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1420
    "return the inset of the bottom edge; positive is to the top,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1421
     negative to the bottom"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1422
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1423
    insets isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1424
    ^ insets at:4
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1425
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1426
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1427
bottomInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1428
    "set the inset of the bottom edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1429
     positive is to the top (view becomes smaller),
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1430
     negative to the bottom (becomes larger)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1431
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1432
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1433
	insets := Array with:0 with:0 with:0 with:0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1434
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1435
    insets at:4 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1436
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1437
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1438
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1439
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1440
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1441
	self superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1442
"/    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1443
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1444
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1445
center
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1446
    "return the point at the center of the receiver (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1447
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1448
    ^ (left + (width // 2)) @ (top + (height // 2))
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1449
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1450
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1451
center:newCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1452
    "move the receiver so that newCenter, aPoint becomes the center point"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1453
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1454
    self origin:(newCenter - ((width // 2) @ (height // 2)))
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1455
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1456
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1457
computeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1458
    "compute my corner; if I have a layoutObject,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1459
     relative origins or blocks to evaluate, compute it now ..
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1460
     Blocks may return relative values or nil; nil means: take current value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1461
     Returns the corner point in device coordinates (pixels)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1462
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1463
    |org newCorner newExt x y|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1464
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1465
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1466
     slowly migrating to use layoutObjects ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1467
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1468
    layout notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1469
	^ (layout rectangleRelativeTo:(superView viewRectangle)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1470
			    preferred:(self preferredBounds)) corner rounded
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1471
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1472
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1473
    (cornerRule notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1474
	newCorner := cornerRule value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1475
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1476
	 allow return of relative values ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1477
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1478
	x := newCorner x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1479
	y := newCorner y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1480
	x isNil ifTrue:[x := self corner x].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1481
	y isNil ifTrue:[y := self corner y].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1482
	((x isInteger not) or:[y isInteger not]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1483
	    newCorner := self cornerFromRelativeCorner:x@y 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1484
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1485
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1486
	(relativeCorner notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1487
	    newCorner := self cornerFromRelativeCorner:relativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1488
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1489
	    org := self computeOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1490
	    (extentRule notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1491
		newExt := extentRule value
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1492
	    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1493
		(relativeExtent notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1494
		    newExt := self extentFromRelativeExtent:relativeExtent 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1495
		]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1496
	    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1497
	    newCorner := org + newExt
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1498
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1499
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1500
    ^ newCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1501
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1502
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1503
computeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1504
    "compute my extent; if I have a layoutObject, a relative extent 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1505
     or blocks to evaluate, compute it now ..
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1506
     There is one catch here, if the dimension was defined
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1507
     by origin/corner, compute them here and take that value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1508
     I.e. origin/corner definition has precedence over extent definition.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1509
     Returns the extent in device coordinates (pixels)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1510
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1511
    |newOrg newExt newCorner x y|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1512
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1513
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1514
     slowly migrating to use layoutObjects ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1515
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1516
    layout notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1517
	^ (layout rectangleRelativeTo:(superView viewRectangle)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1518
			    preferred:(self preferredBounds)) extent rounded
135
claus
parents:
diff changeset
  1519
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1520
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1521
    (cornerRule notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1522
	newCorner := cornerRule value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1523
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1524
	 allow return of relative values ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1525
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1526
	x := newCorner x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1527
	y := newCorner y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1528
	x isNil ifTrue:[x := self corner x].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1529
	y isNil ifTrue:[y := self corner y].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1530
	((x isInteger not) or:[y isInteger not]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1531
	    newCorner := self cornerFromRelativeCorner:x@y
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1532
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1533
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1534
	(relativeCorner notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1535
	    newCorner := self cornerFromRelativeCorner:relativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1536
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1537
	    (extentRule notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1538
		newExt := extentRule value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1539
		"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1540
		 allow return of relative values ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1541
		"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1542
		x := newExt x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1543
		y := newExt y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1544
		x isNil ifTrue:[x := width].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1545
		y isNil ifTrue:[y := height].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1546
		((x isInteger not) or:[y isInteger not]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1547
		    newExt := self extentFromRelativeExtent:x@y
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1548
		]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1549
	    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1550
		(relativeExtent notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1551
		    newExt := self extentFromRelativeExtent:relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1552
		] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1553
		    newExt := (width @ height).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1554
		].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1555
	    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1556
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1557
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1558
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1559
    newCorner notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1560
	newOrg := self computeOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1561
	^ newCorner - newOrg.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1562
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1563
    ^ newExt.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1564
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1565
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1566
computeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1567
    "compute my origin; if I have a layoutObject, a relative origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1568
     or blocks to evaluate, compute it now ..
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1569
     Blocks may return relative values or nil; nil means: take current value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1570
     Returns the origin point in device coordinates (pixels)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1571
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1572
    |newOrg x y|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1573
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1574
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1575
     slowly migrating to use layoutObjects ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1576
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1577
    layout notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1578
	^ (layout rectangleRelativeTo:(superView viewRectangle)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1579
			    preferred:(self preferredBounds)) origin rounded
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1580
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1581
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1582
    (originRule notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1583
	newOrg := originRule value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1584
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1585
	 allow return of relative values ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1586
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1587
	x := newOrg x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1588
	y := newOrg y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1589
	x isNil ifTrue:[x := self origin x].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1590
	y isNil ifTrue:[y := self origin y].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1591
	((x isInteger not) or:[y isInteger not]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1592
	    newOrg := self originFromRelativeOrigin:x@y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1593
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1594
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1595
	(relativeOrigin notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1596
	    newOrg := self originFromRelativeOrigin:relativeOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1597
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1598
	    ^ (left @ top).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1599
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1600
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1601
    ^ newOrg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1602
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1603
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1604
corner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1605
    "return the lower right corner-point (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1606
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1607
"/    ^ (left + width "- 1") @ (top + height "- 1")
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1608
    ^ (left + width - 1) @ (top + height - 1)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1609
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1610
    "Modified: 31.8.1995 / 16:51:40 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1611
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1612
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1613
corner:corner 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1614
    "set the views corner; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1615
     the corner argument may be:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1616
	 a point 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1617
	    where integer fields mean 'pixel-values'
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1618
	    and float values mean 'relative-to-superview'
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1619
	    and nil means 'take current value';
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1620
     or a block returning a point which is interpreted as above.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1621
     Please migrate to use layoutObjects, if possible."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1622
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1623
    |x y pixelCorner c|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1624
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1625
    corner isBlock ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1626
	cornerRule := corner.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1627
	drawableId notNil ifTrue:[    
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1628
	    pixelCorner := corner value
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1629
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1630
	    extentChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1631
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1632
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1633
	x := corner x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1634
	y := corner y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1635
	x isNil ifTrue:[x := self corner x].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1636
	y isNil ifTrue:[y := self corner y].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1637
	c := x @ y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1638
	((x isInteger not) or:[y isInteger not]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1639
	    relativeCorner := c.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1640
	    pixelCorner := self cornerFromRelativeCorner.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1641
	    pixelCorner isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1642
		extentChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1643
	    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1644
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1645
	    pixelCorner := c
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1646
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1647
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1648
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1649
    pixelCorner notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1650
	self pixelCorner:pixelCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1651
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1652
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1653
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1654
extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1655
    "set the views extent; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1656
     extent may be:
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1657
        a point 
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1658
            where integer fields mean 'pixel-values'
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1659
            and float values mean 'relative-to-superview'
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1660
            and nil means 'leave current value';
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1661
     or a block returning a point which is interpreted as above.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1662
     Be careful when using relative extents: rounding errors may
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1663
     accumulate. Better use origin/corner. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1664
     Best: migrate to use layour objects."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1665
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1666
    |w h pixelExtent e|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1667
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1668
    extent isBlock ifTrue:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1669
        extentRule := extent.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1670
        drawableId notNil ifTrue:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1671
            pixelExtent := extent value
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1672
        ] ifFalse:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1673
            extentChanged := true
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1674
        ]
135
claus
parents:
diff changeset
  1675
    ] ifFalse:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1676
        w := extent x.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1677
        h := extent y.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1678
        w isNil ifTrue:[w := width].
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1679
        h isNil ifTrue:[h := height].
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1680
        e := w@h.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1681
        ((w isInteger not) or:[h isInteger not]) ifTrue:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1682
            relativeExtent := e.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1683
            pixelExtent := self extentFromRelativeExtent.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1684
            pixelExtent isNil ifTrue:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1685
                extentChanged := true
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1686
            ]
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1687
        ] ifFalse:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1688
            relativeExtent := nil.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1689
            pixelExtent := e
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1690
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1691
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1692
    pixelExtent notNil ifTrue:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1693
        self pixelExtent:pixelExtent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1694
    ]
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1695
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1696
    "Modified: 19.4.1996 / 15:11:15 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1697
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1698
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1699
geometryLayout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1700
    "this method will vanish, as soon as all implementations of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1701
     #layout: are removed ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1702
     (conflict for example in label>>layout:).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1703
     DO NOT USE #geometryLayout: in your code; it will be removed without
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1704
     notice."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1705
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1706
    ^ here layout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1707
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1708
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1709
geometryLayout:aLayoutObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1710
    "this method will vanish, as soon as all implementations of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1711
     #layout: are removed ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1712
     (conflict for example in label>>layout:).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1713
     DO NOT USE #geometryLayout: in your code; it will be removed without
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1714
     notice."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1715
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1716
    here layout:aLayoutObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1717
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1718
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1719
height:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1720
    "set the views height in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1721
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1722
    self extent:(width @ aNumber)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1723
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1724
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1725
heightIncludingBorder
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1726
    "return my height including border 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1727
     (this is my height as seen from the outside view;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1728
      while #height returns the height as seen by myself)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1729
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1730
    ^ height + (2*borderWidth)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1731
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1732
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1733
horizontalInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1734
    "set the insets of the left/right edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1735
     positive makes it smaller, negative makes it larger"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1736
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1737
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1738
	insets := Array with:0 with:0 with:0 with:0
135
claus
parents:
diff changeset
  1739
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1740
    insets at:1 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1741
    insets at:3 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1742
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1743
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1744
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1745
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1746
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1747
	self superViewChangedSize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1748
"/    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1749
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1750
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1751
innerHeight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1752
    "return the height of the view minus any 3D-shadow-borders"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1753
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1754
    (margin == 0) ifTrue:[^ height].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1755
    ^ height - (2 * margin)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1756
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1757
369
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1758
innerHeight:pixels
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1759
    "set the height of the view plus any 3D-shadow-borders.
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1760
     This does not work with a relative size."
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1761
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1762
    ^ self height:( pixels + (margin + self innerVerticalMargin * 2) ).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1763
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1764
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1765
innerHorizontalMargin
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1766
    "return any additional inner margin (i.e. contents margin).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1767
     This should be redefined by views which do add margins
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1768
     (for example: textViews do this)"
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1769
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1770
    ^ 0
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1771
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1772
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1773
innerVerticalMargin
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1774
    "return any additional inner margin (i.e. contents margin).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1775
     This should be redefined by views which do add margins
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1776
     (for example: textViews do this)"
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1777
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1778
    ^ 0
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1779
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1780
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1781
innerWidth
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1782
    "return the width of the view minus any 3D-shadow-borders"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1783
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1784
    (level == 0) ifTrue:[^ width].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1785
    ^ width - (2 * margin)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1786
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1787
369
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1788
innerWidth:pixels
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1789
    "set the width of the view plus any 3D-shadow-borders.
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1790
     This does not work with a relative size."
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1791
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1792
    ^ self width:( pixels + (margin + self innerHorizontalMargin * 2) ).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1793
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1794
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1795
inset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1796
    "set all insets; positive makes the view smaller,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1797
     negative makes it larger."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1798
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1799
    self allInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1800
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1801
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1802
layout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1803
    "return the layout object which controls my geometry.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1804
     Currently, this is nil in most cases, and my geometry is
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1805
     defined by relativeOrigin/relativeCorner/relativeExtent,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1806
     originRule/extentRule/cornerRule and inset.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1807
     Applications should be changed to use layoutObjects,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1808
     since the above listed instance variables will vanish."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1809
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1810
    ^ layout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1811
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1812
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1813
layout:aLayoutObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1814
    "set the layout object which controls my geometry.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1815
     Currently, this is almost nowhere used but views will be
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1816
     incrementally changed to use this new geometry management."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1817
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1818
    layout := aLayoutObject.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1819
    superView isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1820
	originChanged := cornerChanged := extentChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1821
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1822
	self superViewChangedSize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1823
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1824
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1825
    "Modified: 19.9.1995 / 16:17:25 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1826
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1827
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1828
left
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1829
    "return the x position of the left border (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1830
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1831
    ^ left
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1832
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1833
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1834
left:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1835
    "set the x position"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1836
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1837
    self origin:(aNumber @ top)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1838
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1839
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1840
left:newLeft top:newTop width:newWidth height:newHeight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1841
    "another way of specifying origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1842
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1843
    self origin:(newLeft @ newTop) extent:(newWidth @ newHeight)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1844
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1845
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1846
leftInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1847
    "return the inset of the left edge; positive is to the right,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1848
     negative to the left"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1849
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1850
    insets isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1851
    ^ insets at:1 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1852
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1853
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1854
leftInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1855
    "set the inset of the left edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1856
     positive is to the right (view becomes smaller),
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1857
     negative to the left (becomes larger)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1858
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1859
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1860
	insets := Array with:0 with:0 with:0 with:0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1861
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1862
    insets at:1 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1863
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1864
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1865
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1866
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1867
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1868
	self superViewChangedSize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1869
"/    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1870
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1871
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1872
makeFullyVisible
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1873
    "make sure, that the view is fully visible by shifting it
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1874
     into the visible screen area if nescessary.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1875
     This method will be moved to StandardSystemView ..."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1876
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1877
    |devBot devRight newTop newLeft|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1878
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1879
    newTop := top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1880
    newLeft := left.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1881
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1882
    ((top + height) > (devBot := device height)) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1883
	newTop := devBot - height
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1884
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1885
    ((left + width) > (devRight := device width)) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1886
	newLeft := devRight - width
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1887
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1888
    (newTop < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1889
	newTop := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1890
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1891
    (newLeft < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1892
	newLeft := 0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1893
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1894
    ((newTop ~~ top) or:[newLeft ~~ left]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1895
	self origin:newLeft @ newTop
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1896
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1897
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1898
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1899
origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1900
    "return the origin (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1901
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1902
    ^ left@top
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1903
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1904
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1905
origin:origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1906
    "set the views origin; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1907
     origin may be:
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1908
        a point 
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1909
            where integer fields mean 'pixel-values'
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1910
            and float values mean 'relative-to-superview'
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1911
            and nil means 'take current value';
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1912
     or a block returning a point which is interpreted as above.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1913
     Please migrate to use layout objects."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1914
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1915
    |newLeft newTop pixelOrigin o|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1916
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1917
    origin isBlock ifTrue:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1918
        originRule := origin.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1919
        drawableId notNil ifTrue:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1920
            pixelOrigin := origin value
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1921
        ] ifFalse:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1922
            originChanged := true
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1923
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1924
    ] ifFalse:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1925
        o := origin.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1926
        newLeft := origin x.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1927
        newTop := origin y.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1928
        newLeft isNil ifTrue:[newLeft := left].
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1929
        newTop isNil ifTrue:[newTop := top].
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1930
        o := newLeft @ newTop.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1931
        ((newLeft isInteger not) or:[newTop isInteger not]) ifTrue:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1932
            relativeOrigin := o.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1933
            pixelOrigin := self originFromRelativeOrigin.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1934
            pixelOrigin isNil ifTrue:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1935
                originChanged := true
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1936
            ]
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1937
        ] ifFalse:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1938
            relativeOrigin := nil.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1939
            pixelOrigin := o
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1940
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1941
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1942
    pixelOrigin notNil ifTrue:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1943
        self pixelOrigin:pixelOrigin
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1944
    ].
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1945
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1946
    "Modified: 19.4.1996 / 15:12:36 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1947
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1948
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1949
origin:origin corner:corner 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1950
    "set both origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1951
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1952
    |newLeft newTop newRight newBot|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1953
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1954
    "do it as one operation if possible"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1955
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1956
    origin isBlock ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1957
	corner isBlock ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1958
	    newLeft := origin x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1959
	    newLeft isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1960
		newTop := origin y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1961
		newTop isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1962
		    newRight := corner x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1963
		    newRight isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1964
			newBot := corner y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1965
			newBot isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1966
			    self pixelOrigin:origin corner:corner 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1967
			]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1968
		    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1969
		]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1970
	    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1971
	]
135
claus
parents:
diff changeset
  1972
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1973
    self origin:origin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1974
    self corner:corner 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1975
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1976
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1977
origin:origin extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1978
    "set both origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1979
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1980
    |newLeft newTop newWidth newHeight|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1981
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1982
    "do it as one operation if possible"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1983
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1984
    origin isBlock ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1985
	extent isBlock ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1986
	    newLeft := origin x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1987
	    newLeft isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1988
		newTop := origin y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1989
		newTop isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1990
		    newWidth := extent x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1991
		    newWidth isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1992
			newHeight := extent y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1993
			newHeight isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1994
			    self pixelOrigin:origin extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1995
			]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1996
		    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1997
		]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1998
	    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1999
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2000
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2001
    self extent:extent.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2002
    self origin:origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2003
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2004
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2005
originRelativeTo:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2006
    "return the origin (in pixels) relative to a superView,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2007
     or relative to the rootView (if the aView argument is nil).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2008
     If the receiver is nonNil and not a subview of aView, return nil."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2009
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2010
    |currentView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2011
     org  "{ Class: Point }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2012
     sumX "{ Class: SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2013
     sumY "{ Class: SmallInteger }" |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2014
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2015
    currentView := self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2016
    sumX := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2017
    sumY := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2018
    [currentView notNil] whileTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2019
	(currentView == aView) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2020
	    ^ (sumX @ sumY)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2021
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2022
	org := currentView origin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2023
	sumX := sumX + org x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2024
	sumY := sumY + org y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2025
	currentView := currentView superView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2026
    ].
729
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
  2027
    (aView isNil or:[aView == device rootView]) ifTrue:[
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2028
	"return relative to screen ..."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2029
	^ (sumX @ sumY)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2030
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2031
    ^ nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2032
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2033
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2034
     |top sub1 sub2|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2035
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2036
     top := StandardSystemView new.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2037
     top extent:200@200.   
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2038
     sub1 := View origin:0.2 @ 0.2 corner:0.8 @ 0.8 in:top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2039
     sub2 := Button origin:0.3 @ 0.3 corner:0.7 @ 0.7 in:sub1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2040
     top openAndWait.
697
cba925eed3da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 696
diff changeset
  2041
     Transcript show:'button in top:'; showCR:(sub2 originRelativeTo:top).
cba925eed3da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 696
diff changeset
  2042
     Transcript show:'button on screen:'; showCR:(sub2 originRelativeTo:nil).
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2043
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2044
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2045
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2046
relativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2047
    "return the relative corner or nil"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2048
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2049
    ^ relativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2050
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2051
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2052
relativeCorner:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2053
    "set the relative corner"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2054
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2055
    relativeCorner := aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2056
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2057
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2058
relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2059
    "return the relative extent or nil"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2060
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2061
    ^ relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2062
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2063
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2064
relativeExtent:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2065
    "set the relative extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2066
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2067
    relativeExtent := aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2068
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2069
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2070
relativeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2071
    "return the relative origin or nil"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2072
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2073
    ^ relativeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2074
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2075
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2076
relativeOrigin:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2077
    "set the relative origin"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2078
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2079
    relativeOrigin := aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2080
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2081
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2082
right
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2083
    "return the x position of the right edge  (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2084
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2085
    ^ left + width - 1
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2086
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2087
    "Modified: 31.8.1995 / 19:31:10 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2088
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2089
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2090
right:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2091
    "set the corners x position"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2092
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2093
    self corner:(aNumber @ self corner y)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2094
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2095
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2096
rightInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2097
    "return the inset of the right edge; positive is to the left,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2098
     negative to the right"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2099
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2100
    insets isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2101
    ^ insets at:3 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2102
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2103
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2104
rightInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2105
    "set the inset of the right edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2106
     positive is to the left (view becomes smaller), 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2107
     negative to the right (becomes larger)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2108
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2109
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2110
	insets := Array with:0 with:0 with:0 with:0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2111
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2112
    insets at:3 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2113
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2114
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2115
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2116
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2117
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2118
	self superViewChangedSize.
135
claus
parents:
diff changeset
  2119
"/    ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2120
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2121
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2122
sizeFixed:aBoolean
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2123
    "set/clear the fix-size attribute, if supported by concrete subclasses.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2124
     Views which want to resize themselfes as appropriate to their contents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2125
     should cease to do so and take their current size if sizeFixed is set to
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2126
     true. Currently, only supported by Labels.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2127
     This does NOT prevent the window manager from resizing the view, 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2128
     instead it tell the view to NOT resize ITSELF.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2129
     Added here to provide a common protocol for all views."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2130
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2131
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2132
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2133
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2134
top
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2135
    "return the y position of the top border"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2136
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2137
    ^ top
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2138
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2139
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2140
top:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2141
    "set the y position"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2142
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2143
    self origin:(left @ aNumber)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2144
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2145
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2146
topInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2147
    "return the inset of the top edge; positive is to the bottom,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2148
     negative to the top"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2149
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2150
    insets isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2151
    ^ insets at:2 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2152
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2153
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2154
topInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2155
    "set the inset of the top edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2156
     positive is to the bottom (view becomes smaller),
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2157
     negative to the top (becomes larger)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2158
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2159
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2160
	insets := Array with:0 with:0 with:0 with:0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2161
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2162
    insets at:2 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2163
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2164
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2165
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2166
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2167
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2168
	self superViewChangedSize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2169
"/    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2170
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2171
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2172
verticalInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2173
    "set the insets of the top/bottom edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2174
     positive makes it smaller, negative makes it larger"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2175
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2176
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2177
	insets := Array with:0 with:0 with:0 with:0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2178
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2179
    insets at:2 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2180
    insets at:4 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2181
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2182
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2183
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2184
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2185
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2186
	self superViewChangedSize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2187
"/    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2188
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2189
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2190
viewRectangle
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2191
    "return the inside area.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2192
     This is used by relative sized subviews and layout-computations
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2193
     to base relative coordinates on.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2194
     For most views, the value returned here (actual extent minus any
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2195
     margins required for 3D levels) is ok.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2196
     However, views which want some extra area around (for example: FramedBox)
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2197
     may redefine this method to return a rectangle without this area
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2198
     (thus, a relative sized subviews coordinates will be based on this net area) "
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2199
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2200
    |m2|
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2201
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2202
    m2 := margin + margin.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2203
    ^ (margin @ margin) extent:((width - m2) @ (height - m2))
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2204
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2205
    "Modified: 8.2.1996 / 20:05:00 / cg"
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2206
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2207
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2208
width:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2209
    "set the views width in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2210
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2211
    self extent:(aNumber @ height)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2212
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2213
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2214
widthIncludingBorder
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2215
    "return my width including border
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2216
     (this is my width as seen from the outside view;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2217
      while #width returns the width as seen by myself)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2218
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2219
    ^ width + (2*borderWidth)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2220
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2221
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2222
!SimpleView methodsFor:'accessing-hierarchy'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2223
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2224
container:aContainer
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2225
    "set my container (i.e. superView) to be aContainer"
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2226
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2227
    superView := aContainer
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2228
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2229
    "Created: 9.5.1996 / 00:40:56 / cg"
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2230
    "Modified: 9.5.1996 / 00:45:40 / cg"
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2231
!
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2232
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2233
lower
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2234
    "bring to back"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2235
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2236
    drawableId isNil ifTrue:[self create].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2237
    device lowerWindow:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2238
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2239
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2240
     Transcript topView lower
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2241
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2242
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2243
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2244
raise
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2245
    "bring to front"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2246
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2247
    drawableId isNil ifTrue:[self create].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2248
    device raiseWindow:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2249
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2250
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2251
     Transcript topView raise
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2252
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2253
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2254
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2255
subViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2256
    "return the collection of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2257
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2258
    ^ subViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2259
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2260
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2261
subViews:aListOfViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2262
    "set the collection of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2263
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2264
    subViews := aListOfViews.
135
claus
parents:
diff changeset
  2265
    subViews notNil ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2266
        subViews do:[:view |
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2267
            view container:self
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2268
        ]
135
claus
parents:
diff changeset
  2269
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2270
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2271
    "Modified: 9.5.1996 / 00:42:28 / cg"
135
claus
parents:
diff changeset
  2272
!
claus
parents:
diff changeset
  2273
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2274
superView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2275
    "return my superView"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2276
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2277
    ^ superView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2278
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2279
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2280
superView:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2281
    "set my superView to be aView"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2282
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2283
    self obsoleteMethodWarning:'use #container:'.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2284
    self container:aView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2285
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2286
    "Modified: 9.5.1996 / 00:46:24 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2287
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2288
662
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2289
topComponent
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2290
    "return the topmost component - thats the one with no superview.
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2291
     For ST-80 compatibility."
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2292
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2293
    ^ self topView
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2294
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2295
    "Modified: 9.5.1996 / 01:40:24 / cg"
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2296
!
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2297
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2298
topView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2299
    "return the topView - thats the one with no superview"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2300
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2301
    |v|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2302
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2303
    v := self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2304
    [v notNil] whileTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2305
	v superView isNil ifTrue:[^ v].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2306
	v := v superView
135
claus
parents:
diff changeset
  2307
    ].
claus
parents:
diff changeset
  2308
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2309
    ^ nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2310
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2311
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2312
!SimpleView methodsFor:'accessing-menus'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2313
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2314
menuHolder
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2315
    "who has the menu ? 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2316
     By default, I have it."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2317
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2318
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2319
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2320
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2321
menuMessage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2322
    "Return the symbol sent to myself to aquire the menu"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2323
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2324
    ^ #middleButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2325
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2326
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2327
menuPerformer
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2328
    "who should perform the menu actions ? 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2329
     By default, I do it."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2330
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2331
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2332
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2333
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2334
yellowButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2335
    "actually, this should be called 'middleButtonMenu'.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2336
     But for ST-80 compatibility ....
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2337
     This method will vanish, once all views have controllers
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2338
     associated with them; for now, duplicate some code also found in
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2339
     controller."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2340
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2341
    |sym menuHolder|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2342
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2343
"/    middleButtonMenu notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2344
"/        "/
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2345
"/        "/ has been assigned a static middleButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2346
"/        "/ (or a cached menu)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2347
"/        "/
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2348
"/        ^ middleButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2349
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2350
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2351
    menuHolder := self menuHolder.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2352
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2353
    menuHolder notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2354
	sym := self menuMessage.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2355
	sym notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2356
	    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2357
	     mhmh - for backward compatibility, try to ask
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2358
	     the model first, then use the views menu.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2359
	    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2360
	    (menuHolder respondsTo:sym) ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2361
		(self respondsTo:sym) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2362
		    menuHolder := self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2363
		]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2364
	    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2365
	    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2366
	     ask the menuHolder for the menu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2367
	    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2368
	    ^ menuHolder perform:sym.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2369
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2370
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2371
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2372
    ^ nil
135
claus
parents:
diff changeset
  2373
! !
claus
parents:
diff changeset
  2374
claus
parents:
diff changeset
  2375
!SimpleView methodsFor:'accessing-misc'!
claus
parents:
diff changeset
  2376
claus
parents:
diff changeset
  2377
bitGravity
claus
parents:
diff changeset
  2378
    "return the bitGravity - thats the direction where the contents will move
claus
parents:
diff changeset
  2379
     when the the view is resized."
claus
parents:
diff changeset
  2380
claus
parents:
diff changeset
  2381
    ^ bitGravity
claus
parents:
diff changeset
  2382
!
claus
parents:
diff changeset
  2383
claus
parents:
diff changeset
  2384
bitGravity:gravity
claus
parents:
diff changeset
  2385
    "set the bitGravity - thats the direction where the contents will move
claus
parents:
diff changeset
  2386
     when the view is resized."
claus
parents:
diff changeset
  2387
claus
parents:
diff changeset
  2388
    bitGravity ~~ gravity ifTrue:[
claus
parents:
diff changeset
  2389
	bitGravity := gravity.
claus
parents:
diff changeset
  2390
	drawableId notNil ifTrue:[
claus
parents:
diff changeset
  2391
	    device setBitGravity:gravity in:drawableId
claus
parents:
diff changeset
  2392
	]
claus
parents:
diff changeset
  2393
    ]
claus
parents:
diff changeset
  2394
!
claus
parents:
diff changeset
  2395
737
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2396
clippingRectangle:aRectangle
153
claus
parents: 151
diff changeset
  2397
    "set the clipping rectangle for drawing (in logical coordinates);
754
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  2398
     a nil argument turns off clipping (i.e. whole view is drawable).
153
claus
parents: 151
diff changeset
  2399
     Redefined to care for any margin."
claus
parents: 151
diff changeset
  2400
claus
parents: 151
diff changeset
  2401
    |x y w h|
claus
parents: 151
diff changeset
  2402
claus
parents: 151
diff changeset
  2403
    aRectangle isNil ifTrue:[
737
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2404
        clipRect isNil ifTrue:[^ self].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2405
        gcId notNil ifTrue:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2406
            device noClipIn:gcId
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2407
        ]
153
claus
parents: 151
diff changeset
  2408
    ] ifFalse:[
737
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2409
        clipRect notNil ifTrue:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2410
            (clipRect = aRectangle) ifTrue:[^ self]
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2411
        ].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2412
        gcId notNil ifTrue:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2413
            x := aRectangle left.
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2414
            y := aRectangle top.
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2415
            w := aRectangle width.
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2416
            h := aRectangle height.
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2417
            transformation notNil ifTrue:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2418
                x := transformation applyToX:x.
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2419
                y := transformation applyToY:y.
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2420
                w := transformation applyScaleX:w.
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2421
                h := transformation applyScaleY:h.
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2422
            ].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2423
            (x isMemberOf:SmallInteger) ifFalse:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2424
                w := w + (x - x truncated).
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2425
                x := x truncated
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2426
            ].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2427
            (y isMemberOf:SmallInteger) ifFalse:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2428
                h := h + (y - y truncated).
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2429
                y := y truncated
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2430
            ].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2431
            (w isMemberOf:SmallInteger) ifFalse:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2432
                w := w truncated + 1
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2433
            ].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2434
            (h isMemberOf:SmallInteger) ifFalse:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2435
                h := h truncated + 1
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2436
            ].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2437
            x < margin ifTrue:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2438
                x := margin.
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2439
            ].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2440
            y < margin ifTrue:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2441
                y := margin.
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2442
            ].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2443
            x + w - 1 >= (width-margin) ifTrue:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2444
                w := width - margin - x
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2445
            ].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2446
            y + h - 1 >= (height-margin) ifTrue:[
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2447
                h := height - margin - y
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2448
            ].
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2449
            device setClipX:x y:y width:w height:h in:gcId
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2450
        ]
153
claus
parents: 151
diff changeset
  2451
    ].
claus
parents: 151
diff changeset
  2452
    clipRect := aRectangle
737
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2453
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  2454
    "Created: 28.5.1996 / 19:50:03 / cg"
754
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  2455
    "Modified: 28.5.1996 / 22:32:15 / cg"
153
claus
parents: 151
diff changeset
  2456
!
claus
parents: 151
diff changeset
  2457
claus
parents: 151
diff changeset
  2458
fullName
claus
parents: 151
diff changeset
  2459
    "return my full name to be used for resource-access"
claus
parents: 151
diff changeset
  2460
claus
parents: 151
diff changeset
  2461
    superView notNil ifTrue:[
claus
parents: 151
diff changeset
  2462
	^ superView fullName , '.' , name
claus
parents: 151
diff changeset
  2463
    ].
claus
parents: 151
diff changeset
  2464
    ^ name
claus
parents: 151
diff changeset
  2465
!
claus
parents: 151
diff changeset
  2466
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2467
inputOnly
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2468
    "return true, if this view is an input-only view;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2469
     input only views are transparent and can be layed on top of a view to
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2470
     catch its input"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2471
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2472
    ^ false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2473
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2474
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2475
name
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2476
    "return my name component to be used for resource-access"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2477
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2478
    ^ name
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2479
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2480
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2481
name:aString
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2482
    "set my name component to be used for resource-access"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2483
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2484
    name := aString
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2485
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2486
153
claus
parents: 151
diff changeset
  2487
processName
claus
parents: 151
diff changeset
  2488
    "return a string to be shown in the process monitor"
claus
parents: 151
diff changeset
  2489
claus
parents: 151
diff changeset
  2490
    ^ self name
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2491
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2492
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2493
styleSheet 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2494
    "return the styleSheet. This is set at early view-creation time,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2495
     from the defaultStyleSheet which is valid at that time.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2496
     It is not affected by later defaultStyle changes"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2497
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2498
    ^ styleSheet
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2499
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2500
    "Created: 10.9.1995 / 11:02:20 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2501
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2502
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2503
viewGravity
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2504
    "return the viewGravity - thats the direction where the view will move
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2505
     when the superView is resized."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2506
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2507
    ^ viewGravity
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2508
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2509
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2510
viewGravity:gravity
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2511
    "set the viewGravity - thats the direction where the view will move
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2512
     when the superView is resized."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2513
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2514
    viewGravity ~~ gravity ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2515
	viewGravity := gravity.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2516
	drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2517
	    device setWindowGravity:gravity in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2518
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2519
    ]
140
claus
parents: 138
diff changeset
  2520
! !
claus
parents: 138
diff changeset
  2521
claus
parents: 138
diff changeset
  2522
!SimpleView methodsFor:'accessing-mvc'!
claus
parents: 138
diff changeset
  2523
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2524
aspect:aspectSymbol
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2525
    "ST-80 style updating: If a views aspectSymbol is nonNil, 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2526
     it will respond to changes of this aspect from the model.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2527
     Alias for aspectMessage: for ST-80 compatibility."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2528
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2529
    self aspectMessage:aspectSymbol
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2530
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2531
140
claus
parents: 138
diff changeset
  2532
controller
claus
parents: 138
diff changeset
  2533
    "return the controller. For non MVC views, return nil"
claus
parents: 138
diff changeset
  2534
claus
parents: 138
diff changeset
  2535
    ^ controller
claus
parents: 138
diff changeset
  2536
!
claus
parents: 138
diff changeset
  2537
claus
parents: 138
diff changeset
  2538
controller:aController
claus
parents: 138
diff changeset
  2539
    "set the controller"
claus
parents: 138
diff changeset
  2540
claus
parents: 138
diff changeset
  2541
    controller := aController.
claus
parents: 138
diff changeset
  2542
    controller notNil ifTrue:[
claus
parents: 138
diff changeset
  2543
	controller view:self.
135
claus
parents:
diff changeset
  2544
    ]
claus
parents:
diff changeset
  2545
!
claus
parents:
diff changeset
  2546
140
claus
parents: 138
diff changeset
  2547
model
135
claus
parents:
diff changeset
  2548
    ^ nil
claus
parents:
diff changeset
  2549
!
claus
parents:
diff changeset
  2550
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2551
windowGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2552
    "return the window group. For old style views, return nil"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2553
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2554
    ^ windowGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2555
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2556
140
claus
parents: 138
diff changeset
  2557
windowGroup:aGroup
claus
parents: 138
diff changeset
  2558
    "set the window group."
claus
parents: 138
diff changeset
  2559
claus
parents: 138
diff changeset
  2560
    windowGroup := aGroup
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2561
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2562
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2563
!SimpleView methodsFor:'accessing-transformation'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2564
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2565
maxComponentBottom
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2566
    "return the maximum of all components bottom"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2567
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2568
    components isNil ifTrue:[^ 0].
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2569
    ^ components inject:0 into:[:maxSoFar :sub 
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2570
                                        | (sub bottom) max:maxSoFar].
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2571
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2572
    "Created: 26.5.1996 / 12:44:05 / cg"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2573
    "Modified: 26.5.1996 / 12:56:39 / cg"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2574
!
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2575
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2576
maxComponentRight
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2577
    "return the maximum of all components rights"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2578
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2579
    components isNil ifTrue:[^ 0].
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2580
    ^ components inject:0 into:[:maxSoFar :sub 
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2581
                                        | (sub right) max:maxSoFar].
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2582
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2583
    "Modified: 26.5.1996 / 12:56:39 / cg"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2584
    "Created: 26.5.1996 / 13:02:19 / cg"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2585
!
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2586
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2587
maxSubViewBottom 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2588
"/    subViews isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2589
"/    ^ subViews inject:0 into:[:maxSoFar :sub | (sub top + sub height) max:maxSoFar].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2590
      ^ 0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2591
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2592
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2593
maxSubViewRight 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2594
"/    subViews isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2595
"/    ^ subViews inject:0 into:[:maxSoFar :sub | (sub left + sub width) max:maxSoFar].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2596
    ^ 0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2597
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2598
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2599
scale:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2600
    "set the scale factor of the transformation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2601
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2602
    super scale:aPoint.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2603
    self computeInnerClip
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2604
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2605
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2606
setViewOrigin:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2607
    "set the viewOrigin - i.e. virtually scroll without redrawing"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2608
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2609
    |p|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2610
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2611
    p := aPoint negated.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2612
    transformation isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2613
	transformation := WindowingTransformation scale:1 translation:p 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2614
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2615
	transformation translation:p 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2616
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2617
    clipRect notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2618
	self setInnerClip.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2619
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2620
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2621
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2622
viewOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2623
    "return the viewOrigin; thats the coordinate of the contents 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2624
     which is shown topLeft in the view 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2625
     (i.e. the origin of the visible part of the contents)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2626
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2627
    transformation isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2628
	^ 0@0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2629
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2630
    ^ transformation translation negated
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2631
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2632
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2633
xOriginOfContents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2634
    "return the x coordinate of the viewOrigin in pixels; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2635
     used by scrollBars to compute thumb position within the document."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2636
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2637
    ^ self viewOrigin x
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2638
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2639
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2640
yOriginOfContents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2641
    "return the y coordinate of the viewOrigin in pixels; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2642
     used by scrollBars to compute thumb position within the document."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2643
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2644
    ^ self viewOrigin y
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2645
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2646
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2647
!SimpleView methodsFor:'accessing-visibility'!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2648
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2649
beInvisible
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2650
    self hiddenOnRealize:true.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2651
    realized ifTrue:[
711
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2652
        superView isNil               "/ I am a topView
574
41257c050cf4 beVisible
ca
parents: 573
diff changeset
  2653
        ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2654
            self unmap
711
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2655
        ] ifFalse:[
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2656
            superView realized        "/ superview already shown
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2657
            ifTrue:[
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2658
                self unmap
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2659
            ]
574
41257c050cf4 beVisible
ca
parents: 573
diff changeset
  2660
        ]
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2661
    ]
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2662
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2663
    "Created: 22.9.1995 / 15:29:01 / claus"
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2664
    "Modified: 3.5.1996 / 23:49:12 / stefan"
711
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2665
    "Modified: 25.5.1996 / 12:06:14 / cg"
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2666
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2667
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2668
beVisible
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2669
    self hiddenOnRealize:false.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2670
    realized ifFalse:[
711
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2671
        superView isNil                 "/ I am a topView
574
41257c050cf4 beVisible
ca
parents: 573
diff changeset
  2672
        ifTrue:[
711
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2673
            self remap
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2674
        ] ifFalse:[
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2675
            superView realized          "/ superview already shown
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2676
            ifTrue:[
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2677
                self realize
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2678
            ]
574
41257c050cf4 beVisible
ca
parents: 573
diff changeset
  2679
        ]
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2680
    ]
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2681
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2682
    "
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2683
     |top topFrame check list|
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2684
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2685
     top := StandardSystemView new.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2686
     top extent:150@400.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2687
     topFrame := VerticalPanelView origin:0.0@0.0 corner:1.0@0.4 in:top.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2688
     topFrame horizontalLayout:#leftSpace.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2689
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2690
     topFrame add:(check := CheckBox label:'hidden').
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2691
     check pressAction:[list beInvisible].
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2692
     check releaseAction:[list beVisible].
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2693
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2694
     list := ScrollableView for:SelectionInListView.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2695
     list origin:0.0@0.4 corner:1.0@1.0.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2696
     list list:#('foo' 'bar' 'baz').
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2697
     top add:list.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2698
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2699
     check turnOn.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2700
     list beInvisible.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2701
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2702
     top open
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2703
    "
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2704
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2705
    "Created: 22.9.1995 / 15:50:33 / claus"
711
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2706
    "Modified: 25.5.1996 / 12:05:28 / cg"
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2707
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2708
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2709
hidden
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2710
    "return true, if the view does not want to be realized
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2711
     automatically when superview is realized"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2712
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2713
    self obsoleteMethodWarning:'use #isHiddenOnRealize'.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2714
    ^ hiddenOnRealize
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2715
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2716
    "Modified: 17.1.1996 / 11:44:47 / cg"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2717
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2718
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2719
hidden:aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2720
    "if the argument is true, the receiver view will not
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2721
     be realized automatically when superview is realized"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2722
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2723
    self obsoleteMethodWarning:'use #beVisible / #beInvisible'.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2724
    hiddenOnRealize := aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2725
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2726
    "Modified: 17.1.1996 / 11:45:06 / cg"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2727
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2728
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2729
hiddenOnRealize:aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2730
    "if the argument is true, the receiver view will not
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2731
     be mapped automatically when the superview is realized.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2732
     The hiddenOnRealize flag is useful to create views which are
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2733
     to be made visible conditionally or later."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2734
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2735
    hiddenOnRealize := aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2736
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2737
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2738
isHiddenOnRealize:aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2739
    "return true, if the receiver will NOT be mapped when
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2740
     realized. False otherwise.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2741
     The hiddenOnRealize flag is useful to create views which are
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2742
     to be made visible conditionally or later."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2743
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2744
    ^ hiddenOnRealize
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2745
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2746
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2747
shown
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2748
    "return true if the view is shown; false if not.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2749
     Shown means: the view is mapped and is not completely covered."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2750
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2751
    ^ shown
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2752
! !
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2753
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2754
!SimpleView methodsFor:'adding & removing components'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2755
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2756
add:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2757
    "add a component (either a view or gadget) to the collection of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2758
     subComponents."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2759
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2760
    self addComponent:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2761
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2762
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2763
add:aComponent in:aRectangleOrLayoutFrame 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2764
    "for ST-80 compatibility.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2765
     add a component in some frame; the argument may be either a rectangle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2766
     with relative coordinates, or an instance of LayoutFrame, specifying
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2767
     both relative coordinates and the insets."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2768
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2769
"/ old code:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2770
"/    |origin corner l|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2771
"/
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2772
"/    origin := aRectangleOrLayoutFrame origin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2773
"/    origin := origin x asFloat @ origin y asFloat.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2774
"/    corner := aRectangleOrLayoutFrame corner.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2775
"/    corner := corner x asFloat @ corner y asFloat.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2776
"/    aComponent origin:origin corner:corner.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2777
"/
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2778
"/    (aRectangleOrLayoutFrame isMemberOf:Rectangle) ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2779
"/        aComponent leftInset:aRectangleOrLayoutFrame leftOffset.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2780
"/        aComponent rightInset:aRectangleOrLayoutFrame rightOffset negated.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2781
"/        aComponent topInset:aRectangleOrLayoutFrame topOffset.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2782
"/        aComponent bottomInset:aRectangleOrLayoutFrame bottomOffset negated.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2783
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2784
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2785
"/ new (being validated):
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2786
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2787
    |l|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2788
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2789
    (aRectangleOrLayoutFrame isMemberOf:Rectangle) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2790
	l := aRectangleOrLayoutFrame asLayout.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2791
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2792
	l := aRectangleOrLayoutFrame
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2793
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2794
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2795
"/  will soon be replaced by:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2796
"/    aComponent layout:l.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2797
    aComponent geometryLayout:l.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2798
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2799
    self addComponent:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2800
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2801
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2802
addComponent:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2803
    "components (i.e. gadgets or lightweight views) are being prepared. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2804
     Dont use this right now for non-views"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2805
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2806
    aComponent isView ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2807
        self addSubView:aComponent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2808
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2809
        components isNil ifTrue:[
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2810
            components := OrderedCollection new
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2811
        ].
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2812
        components add:aComponent.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2813
        aComponent container:self.
683
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2814
        shown ifTrue:[
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2815
            aComponent displayOn:self
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2816
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2817
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2818
683
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2819
    "Modified: 13.5.1996 / 21:19:51 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2820
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2821
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2822
addSubView:newView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2823
    "add a view to the collection of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2824
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2825
    subViews isNil ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2826
        subViews := OrderedCollection with:newView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2827
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2828
        subViews add:newView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2829
    ].
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2830
    self setContainerIn:newView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2831
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2832
    "Modified: 9.5.1996 / 00:47:16 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2833
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2834
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2835
addSubView:newView after:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2836
    "add a view to the collection of subviews after another view.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2837
     This makes sense, in Panels and other layout views, to enter a new
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2838
     element at some defined place."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2839
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2840
    subViews isNil ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2841
        subViews := OrderedCollection with:newView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2842
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2843
        aView isNil ifTrue:[
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2844
            subViews add:newView
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2845
        ] ifFalse:[
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2846
            subViews add:newView after:aView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2847
        ]
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2848
    ].
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2849
    self setContainerIn:newView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2850
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2851
    "Modified: 9.5.1996 / 00:47:20 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2852
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2853
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2854
addSubView:newView before:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2855
    "add a view to the collection of subviews before another view.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2856
     This makes sense, in Panels and other layout views, to enter a new
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2857
     element at some defined place."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2858
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2859
    subViews isNil ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2860
        subViews := OrderedCollection with:newView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2861
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2862
        aView isNil ifTrue:[
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2863
            subViews addFirst:newView
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2864
        ] ifFalse:[
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2865
            subViews add:newView before:aView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2866
        ]
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2867
    ].
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2868
    self setContainerIn:newView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2869
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2870
    "Modified: 9.5.1996 / 00:47:23 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2871
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2872
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2873
addSubView:aView in:bounds borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2874
    "for ST-80 V2.x compatibility"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2875
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2876
    aView borderWidth:bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2877
    self add:aView in:bounds.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2878
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2879
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2880
component:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2881
    "components (i.e. gadgets or lightweight views) are being prepared. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2882
     Dont use this right now for non-views"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2883
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2884
    aComponent origin:0.0@0.0 corner:1.0@1.0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2885
    aComponent isView ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2886
        self addSubView:aComponent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2887
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2888
        components := OrderedCollection with:aComponent.
683
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2889
        aComponent container:self.
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2890
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2891
        shown ifTrue:[
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2892
            aComponent displayOn:self
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2893
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2894
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2895
683
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2896
    "Modified: 13.5.1996 / 21:20:29 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2897
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2898
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2899
destroySubViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2900
    "remove all subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2901
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2902
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2903
	subViews copy do:[:aSubView |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2904
	    aSubView destroy.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2905
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2906
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2907
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2908
    "Modified: 5.9.1995 / 22:35:36 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2909
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2910
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2911
removeComponent:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2912
    "components (i.e. gadgets or lightweight views) are being prepared. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2913
     Dont use this right now for non-views"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2914
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2915
    aComponent isView ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2916
	self removeSubView:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2917
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2918
	components isNil ifTrue:[^self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2919
	components remove:aComponent ifAbsent:[].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2920
	aComponent parent:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2921
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2922
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2923
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2924
removeSubView:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2925
    "remove a view from the collection of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2926
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2927
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2928
	subViews remove:aView ifAbsent:[nil].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2929
	(subViews size == 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2930
	    subViews := nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2931
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2932
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2933
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2934
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2935
setContainerIn:aView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2936
    "common code for addSubView* methods"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2937
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2938
    aView container:self.
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  2939
    (aView graphicsDevice ~~ device) ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2940
        'VIEW: warning subview (' errorPrint. aView class name errorPrint.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2941
        ') has different device than me (' errorPrint.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2942
        self class name errorPrint. ').' errorPrintNL.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2943
        aView device:device
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2944
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2945
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2946
    "Created: 9.5.1996 / 00:46:59 / cg"
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  2947
    "Modified: 28.5.1996 / 20:24:49 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2948
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2949
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2950
!SimpleView methodsFor:'change & update'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2951
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2952
update:aspect with:aParameter from:changedObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2953
    "an update request"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2954
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2955
    aspect == #sizeOfView ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2956
	"one of the views we depend on changed its size"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2957
	^ self superViewChangedSize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2958
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2959
    ^super update:aspect with:aParameter from:changedObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2960
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2961
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2962
!SimpleView methodsFor:'cursor animation'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2963
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2964
showBusyWhile:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2965
    "evaluate some time consuming block, while doing this,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2966
     show a spinning wheel cursor"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2967
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2968
    |ok bitmaps cursors mask process oldCursor|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2969
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2970
    oldCursor := cursor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2971
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2972
    ok := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2973
    bitmaps := #('wheel1' 'wheel2' 'wheel3' 'wheel4') 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2974
	       collect:[:name |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2975
		   |f|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2976
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2977
		   f := Form fromFile:(name , '.xbm').
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2978
		   f isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2979
			('no bitmap file: ' , name , '.xbm') errorPrintNL.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2980
			ok := false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2981
		   ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2982
		   f
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2983
	       ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2984
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2985
    mask := Form fromFile:'wheelm.xbm'.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2986
    mask isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2987
	('no bitmap file: ' , mask , '.xbm') errorPrintNL.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2988
	ok := false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2989
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2990
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2991
    ok ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2992
	self cursor:Cursor wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2993
	aBlock valueNowOrOnUnwindDo:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2994
	    self cursor:oldCursor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2995
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2996
    ] ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2997
	cursors := bitmaps collect:[:form | (Cursor sourceForm:form
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2998
						      maskForm:mask
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2999
							  hotX:8
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3000
							  hotY:8) on:device].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3001
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3002
	process := [
371
cc32d8f8bc8d use new Delay-wait
Claus Gittinger <cg@exept.de>
parents: 370
diff changeset
  3003
		    Delay waitForSeconds:0.25.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3004
		    [true] whileTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3005
			cursors do:[:curs |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3006
			    self cursor:curs.
371
cc32d8f8bc8d use new Delay-wait
Claus Gittinger <cg@exept.de>
parents: 370
diff changeset
  3007
			    Delay waitForSeconds:0.05
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3008
			]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3009
		    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3010
		   ] fork.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3011
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3012
	Processor activeProcess priority:7.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3013
	aBlock valueNowOrOnUnwindDo:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3014
	    Processor activeProcess priority:8.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3015
	    process terminate.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3016
	    self cursor:oldCursor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3017
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3018
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3019
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3020
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3021
     View new realize showBusyWhile:[10 timesRepeat:[3000 factorial]]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3022
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3023
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3024
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3025
!SimpleView methodsFor:'edge drawing'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3026
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3027
drawBottomEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3028
    "draw bottom 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3029
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3030
    self drawBottomEdgeLevel:level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3031
		      shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3032
		      light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3033
		      halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3034
		      halfLight:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3035
		      style:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3036
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3037
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3038
drawBottomEdgeLevel:level shadow:shadowColor light:lightColor halfShadow:halfShadowColor halfLight:halfLightColor style:edgeStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3039
    |botFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3040
     count "{ Class: SmallInteger }" 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3041
     b r|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3042
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3043
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3044
    count == 0 ifTrue:[^ self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3045
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3046
    (count < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3047
	botFg := lightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3048
	count := count negated
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3049
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3050
	((edgeStyle == #soft) and:[level > 1]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3051
	    botFg := halfShadowColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3052
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3053
	    botFg := shadowColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3054
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3055
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3056
    super paint:botFg.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3057
    super lineWidth:0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3058
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3059
    r := width - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3060
    0 to:(count - 1) do:[:i |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3061
	b := height - 1 - i.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3062
	super displayDeviceLineFromX:i y:b toX:(r - i) y:b
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3063
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3064
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3065
    ((edgeStyle == #soft) and:[level > 1]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3066
	b := height - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3067
	super paint:shadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3068
	super displayDeviceLineFromX:1 y:b toX:r y:b. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3069
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3070
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3071
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3072
drawEdges
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3073
    "draw all of my 3D edges"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3074
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3075
    self drawEdgesForX:0 y:0 width:width height:height level:level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3076
		shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3077
		light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3078
		halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3079
		halfLight:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3080
		style:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3081
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3082
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3083
drawEdgesForX:x y:y width:w height:h level:l
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3084
    "draw 3D edges into a rectangle"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3085
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3086
    self drawEdgesForX:x y:y width:w height:h level:l 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3087
		shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3088
		light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3089
		halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3090
		halfLight:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3091
		style:nil 
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  3092
!
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3093
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3094
drawLeftEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3095
    "draw left 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3096
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3097
    self drawLeftEdgeLevel:level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3098
		    shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3099
		     light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3100
		     halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3101
		     halfLight:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3102
		     style:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3103
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3104
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3105
drawLeftEdgeLevel:level shadow:shadowColor light:lightColor halfShadow:halfShadowColor halfLight:halfLightColor style:edgeStyle 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3106
    |leftFg leftHalfFg paint b
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3107
     count "{ Class: SmallInteger }" |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3108
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3109
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3110
    count == 0 ifTrue:[^ self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3111
    
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3112
    (count < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3113
	leftFg := shadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3114
	leftHalfFg := halfShadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3115
	count := count negated.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3116
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3117
	leftFg := lightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3118
	leftHalfFg := halfLightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3119
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3120
    leftHalfFg isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3121
	leftHalfFg := leftFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3122
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3123
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3124
    ((edgeStyle == #soft) and:[level > 0]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3125
	paint := leftHalfFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3126
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3127
	paint := leftFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3128
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3129
    super paint:paint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3130
    super lineWidth:0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3131
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3132
    b := height - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3133
    0 to:(count - 1) do:[:i |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3134
	super displayDeviceLineFromX:i y:i toX:i y:(b - i)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3135
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3136
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3137
    ((edgeStyle == #soft) and:[level > 2]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3138
	super paint:Black.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3139
	super displayDeviceLineFromX:0 y:0 toX:0 y:b. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3140
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3141
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3142
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3143
drawRightEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3144
    "draw right 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3145
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3146
    self drawRightEdgeLevel:level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3147
		     shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3148
		      light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3149
		      halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3150
		      halfLight:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3151
		      style:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3152
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3153
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3154
drawRightEdgeLevel:level shadow:shadowColor light:lightColor halfShadow:halfShadowColor halfLight:halfLightColor style:edgeStyle 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3155
    |rightFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3156
     count "{ Class: SmallInteger }" 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3157
     r b|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3158
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3159
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3160
    count == 0 ifTrue:[^ self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3161
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3162
    (count < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3163
	rightFg := lightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3164
	count := count negated
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3165
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3166
	((edgeStyle == #soft) and:[level > 1]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3167
	    rightFg := halfShadowColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3168
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3169
	    rightFg := shadowColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3170
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3171
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3172
    super paint:rightFg.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3173
    super lineWidth:0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3174
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3175
    b := height - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3176
    0 to:(count - 1) do:[:i |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3177
	r := width - 1 - i.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3178
	super displayDeviceLineFromX:r y:i toX:r y:(b - i)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3179
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3180
    ((edgeStyle == #soft) and:[level > 1]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3181
	r := width - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3182
	super paint:shadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3183
	super displayDeviceLineFromX:r y:1 toX:r y:b. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3184
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3185
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3186
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3187
drawTopEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3188
    "draw top 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3189
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3190
    self drawTopEdgeLevel:level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3191
		   shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3192
		    light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3193
		    halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3194
		    halfLight:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3195
		    style:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3196
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3197
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3198
drawTopEdgeLevel:level shadow:shadowColor light:lightColor halfShadow:halfShadowColor halfLight:halfLightColor style:edgeStyle 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3199
    |topFg topHalfFg paint r
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3200
     count "{ Class: SmallInteger }" |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3201
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3202
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3203
    count == 0 ifTrue:[^ self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3204
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3205
    (count < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3206
	topFg := shadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3207
	topHalfFg := halfShadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3208
	count := count negated
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3209
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3210
	topFg := lightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3211
	topHalfFg := halfLightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3212
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3213
    topHalfFg isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3214
	topHalfFg := topFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3215
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3216
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3217
    ((edgeStyle == #soft) and:[level > 0]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3218
	paint := topHalfFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3219
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3220
	paint := topFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3221
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3222
    super paint:paint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3223
    super lineWidth:0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3224
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3225
    r := width - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3226
    0 to:(count - 1) do:[:i |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3227
	super displayDeviceLineFromX:i y:i toX:(r - i) y:i
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3228
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3229
    ((edgeStyle == #soft) and:[level > 2]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3230
	super paint:Black.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3231
	super displayDeviceLineFromX:0 y:0 toX:r y:0. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3232
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3233
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3234
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3235
redrawEdges
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3236
    "redraw my edges (if any)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3237
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3238
    (level ~~ 0) ifTrue:[
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3239
        shown ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3240
            self clippingRectangle:nil.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3241
            self drawEdges.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3242
            self clippingRectangle:innerClipRect
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3243
        ]                  
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3244
    ]
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3245
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3246
    "Modified: 28.5.1996 / 20:04:51 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3247
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3248
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3249
!SimpleView methodsFor:'enumerating subviews'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3250
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3251
allSubViewsDo:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3252
    "evaluate aBlock for all subviews (recursively)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3253
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3254
    (subViews isNil or:[subViews isEmpty]) ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3255
	subViews do:[:aSubview |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3256
	    aSubview withAllSubViewsDo:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3257
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3258
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3259
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3260
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3261
withAllSubViewsDo:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3262
    "evaluate aBlock for the receiver and all subviews (recursively)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3263
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3264
    aBlock value:self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3265
    self allSubViewsDo:aBlock
135
claus
parents:
diff changeset
  3266
! !
claus
parents:
diff changeset
  3267
claus
parents:
diff changeset
  3268
!SimpleView methodsFor:'event handling'!
claus
parents:
diff changeset
  3269
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3270
activateMenu
520
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3271
    "activate my menu.
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3272
     If there is a static middleButtonMenu, that one is taken,
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3273
     and handled in the superClass (static menus are a historic leftOver).
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3274
     Otherwise, the follwing steps are performed:
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3275
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3276
        - ask the receiver for the menu (via #yellowButtonMenu)
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3277
        - ask the receiver for the menuPerformer.
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3278
        - startUp the menu - it is supposed to return an actionSelector
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3279
        - if the menuPerformer responds to the selector,
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3280
          send it to the performer;
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3281
          otherwise send it to the view (the receiver)
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3282
          This is funny, it allows additional menuItems to be added
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3283
          AND still get the views copy/cut/paste functionality.
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3284
          Without this, you had to redefine and forward all of those
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3285
          messages in the performer."
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3286
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3287
    |menu menuPerformer actionSelector actionArg haveArg|
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3288
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3289
    middleButtonMenu isNil ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3290
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3291
        haveArg := false.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3292
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3293
        "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3294
         try ST-80 style menus first:
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3295
         if there is a model, and a menuMessage is defined,
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3296
         ask model for the menu and launch that if non-nil.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3297
        "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3298
        menu := self yellowButtonMenu.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3299
        menu notNil ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3300
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3301
             got one, launch the menu. It is supposed
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3302
             to return an actionSelector.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3303
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3304
            menuPerformer := self menuPerformer.
520
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3305
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3306
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3307
             a temporary kludge: subMenus dont know about 
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3308
             actionSelectors yet ...
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3309
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3310
            menu receiver isNil ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3311
                menu receiver:menuPerformer
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3312
            ].
520
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3313
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3314
            "/
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3315
            "/ startup the menu - this returns a selector
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3316
            "/
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3317
            actionSelector := menu startUp.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3318
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3319
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3320
             mhmh - kludge for selectors with argument
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3321
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3322
            (actionSelector isMemberOf:Array) ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3323
                actionArg := actionSelector at:2.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3324
                actionSelector := actionSelector at:1.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3325
                haveArg := true.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3326
            ].
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3327
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3328
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3329
             mhmh - ST-80 seems to send some to the model and
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3330
             others (copy/cut/paste) to the controller/view
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3331
             Simulate this behavior, by looking what the model responds to.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3332
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3333
            (actionSelector notNil
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3334
            and:[actionSelector isSymbol]) ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3335
                (menuPerformer respondsTo:actionSelector) ifFalse:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3336
                    (self respondsTo:actionSelector) ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3337
                        menuPerformer := self
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3338
                    ]
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3339
                ].
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3340
                actionSelector numArgs ~~ 0 ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3341
                    menuPerformer perform:actionSelector with:actionArg
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3342
                ] ifFalse:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3343
                    menuPerformer perform:actionSelector
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3344
                ]
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3345
            ].
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3346
            ^ self
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3347
        ].
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3348
    ].
520
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3349
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3350
    "/
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3351
    "/ old style static menu
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3352
    "/
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3353
    super activateMenu
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3354
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3355
    "Created: 1.3.1996 / 13:24:18 / cg"
584
6106ad13708d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 574
diff changeset
  3356
    "Modified: 22.4.1996 / 19:41:41 / cg"
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3357
!
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3358
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3359
buttonPress:button x:x y:y
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3360
    "button was pressed - check my components for a hit."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3361
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3362
    components notNil ifTrue:[
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3363
        self componentsContainingX:x y:y do:[:comp :cx :cy |
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3364
            comp buttonPress:button x:cx y:cy.
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3365
            ^ self
472
621c17076f00 static menus override dynamic ones (is this good ?)
Claus Gittinger <cg@exept.de>
parents: 468
diff changeset
  3366
        ]
140
claus
parents: 138
diff changeset
  3367
    ].
claus
parents: 138
diff changeset
  3368
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3369
    super buttonPress:button x:x y:y
271
88d9e485a5da menu handling: if entry is a checkToggleEntry, AND selector wants an argument,
Claus Gittinger <cg@exept.de>
parents: 269
diff changeset
  3370
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3371
    "Modified: 8.5.1996 / 23:43:41 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3372
!
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3373
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3374
buttonRelease:button x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3375
    "button was released - check my components for a hit."
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3376
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3377
    components notNil ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3378
        self componentsContainingX:x y:y do:[:comp :cx :cy |
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3379
            comp buttonRelease:button x:cx y:cy.
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3380
            ^ self
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3381
        ]
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3382
    ].
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3383
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3384
    super buttonRelease:button x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3385
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3386
    "Modified: 8.5.1996 / 23:41:58 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3387
    "Created: 8.5.1996 / 23:43:25 / cg"
193
Claus Gittinger <cg@exept.de>
parents: 192
diff changeset
  3388
!
Claus Gittinger <cg@exept.de>
parents: 192
diff changeset
  3389
140
claus
parents: 138
diff changeset
  3390
configureX:x y:y width:newWidth height:newHeight
claus
parents: 138
diff changeset
  3391
    "my size has changed by window manager action"
claus
parents: 138
diff changeset
  3392
180
claus
parents: 176
diff changeset
  3393
    |how anyEdge mustRedrawBottomEdge mustRedrawRightEdge p|
claus
parents: 176
diff changeset
  3394
claus
parents: 176
diff changeset
  3395
    (superView isNil 
claus
parents: 176
diff changeset
  3396
    and:[drawableId notNil]) ifTrue:[
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3397
        "/ have to be careful - some window managers (motif) wrap another
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3398
        "/ view around and the reported origin is relative to that.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3399
        "/ not relative to the screen.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3400
        p := device translatePoint:0@0 from:drawableId to:device rootWindowId.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3401
        left := p x.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3402
        top := p y.
180
claus
parents: 176
diff changeset
  3403
    ] ifFalse:[
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3404
        left := x.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3405
        top := y.
180
claus
parents: 176
diff changeset
  3406
    ].
140
claus
parents: 138
diff changeset
  3407
    ((width ~~ newWidth) or:[height ~~ newHeight]) ifTrue:[
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3408
        realized ifFalse:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3409
            width := newWidth.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3410
            height := newHeight.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3411
            extentChanged := true.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3412
            ^ self
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3413
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3414
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3415
        ((newWidth <= width) and:[newHeight <= height]) ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3416
            how := #smaller
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3417
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3418
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3419
        level ~~ 0 ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3420
            mustRedrawBottomEdge := newHeight < height.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3421
            mustRedrawRightEdge := newWidth < width.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3422
            anyEdge := mustRedrawBottomEdge or:[mustRedrawRightEdge]
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3423
        ] ifFalse:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3424
            anyEdge := false
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3425
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3426
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3427
        width := newWidth.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3428
        height := newHeight.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3429
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3430
        "recompute inner-clip if needed"
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3431
        self setInnerClip.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3432
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3433
        "
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3434
         must first process pending exposes;
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3435
         otherwise, those may be drawn at a wrong position
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3436
        "
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3437
        windowGroup notNil ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3438
            windowGroup processExposeEvents
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3439
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3440
        self sizeChanged:how.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3441
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3442
        (anyEdge and:[shown]) ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3443
            self clippingRectangle:nil.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3444
            mustRedrawBottomEdge ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3445
                self drawBottomEdge
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3446
            ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3447
            mustRedrawRightEdge ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3448
                self drawRightEdge
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3449
            ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3450
            self clippingRectangle:innerClipRect
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3451
        ]
140
claus
parents: 138
diff changeset
  3452
    ]
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3453
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  3454
    "Modified: 28.5.1996 / 20:04:31 / cg"
138
claus
parents: 137
diff changeset
  3455
!
claus
parents: 137
diff changeset
  3456
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3457
coveredBy:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3458
    "the receiver has been covered by another view;
320
b7b8dc88fe9f interest is written with one 'r' (shame on me)
Claus Gittinger <cg@exept.de>
parents: 312
diff changeset
  3459
     we are not interested in that here (but see modalBox for more)."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3460
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3461
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3462
destroyed
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3463
    "view has been destroyed by someone else (usually window system)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3464
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3465
    shown := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3466
    super destroyed
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3467
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3468
135
claus
parents:
diff changeset
  3469
exposeX:x y:y width:w height:h
claus
parents:
diff changeset
  3470
    "a low level redraw event from device
claus
parents:
diff changeset
  3471
      - let subclass handle the redraw and take care of edges here"
claus
parents:
diff changeset
  3472
754
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  3473
    |leftEdge topEdge rightEdge botEdge anyEdge nx ny nw nh old|
135
claus
parents:
diff changeset
  3474
claus
parents:
diff changeset
  3475
    nw := w.
claus
parents:
diff changeset
  3476
    nh := h.
claus
parents:
diff changeset
  3477
    nx := x.
claus
parents:
diff changeset
  3478
    ny := y.
claus
parents:
diff changeset
  3479
claus
parents:
diff changeset
  3480
    anyEdge := false.
claus
parents:
diff changeset
  3481
claus
parents:
diff changeset
  3482
    "
claus
parents:
diff changeset
  3483
     check if there is a need to draw an edge (i.e. if margin is hit)
claus
parents:
diff changeset
  3484
    "
claus
parents:
diff changeset
  3485
    (margin ~~ 0) ifTrue:[
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3486
        leftEdge := false.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3487
        topEdge := false.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3488
        rightEdge := false.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3489
        botEdge := false.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3490
        transformation notNil ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3491
            "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3492
             need device coordinates for this test
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3493
            "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3494
            nx := transformation applyToX:nx.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3495
            ny := transformation applyToY:ny.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3496
            nw := transformation applyScaleX:nw.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3497
            nh := transformation applyScaleY:nh.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3498
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3499
        "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3500
         adjust expose rectangle, to exclude the margin.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3501
         Care for rounding errors ...
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3502
        "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3503
        (nx isMemberOf:SmallInteger) ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3504
            old := nx.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3505
            nx := nx truncated.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3506
            nw := nw + (nx - old).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3507
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3508
        (ny isMemberOf:SmallInteger) ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3509
            old := ny.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3510
            ny := ny truncated.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3511
            nh := nh + (ny - old).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3512
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3513
        (nw isMemberOf:SmallInteger) ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3514
            nw := nw truncated + 1
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3515
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3516
        (nh isMemberOf:SmallInteger) ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3517
            nh := nh truncated + 1
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3518
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3519
        (nx < margin) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3520
            old := nx.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3521
            nx := margin.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3522
            nw := nw - (nx - old).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3523
            leftEdge := anyEdge := true.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3524
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3525
        ((nx + nw - 1) >= (width - margin)) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3526
            nw := (width - margin - nx).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3527
            rightEdge := anyEdge := true.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3528
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3529
        (ny < margin) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3530
            old := ny.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3531
            ny := margin.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3532
            nh := nh - (ny - old).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3533
            topEdge := anyEdge := true.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3534
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3535
        ((ny + nh - 1) >= (height - margin)) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3536
            nh := (height - margin - ny).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3537
            botEdge := anyEdge := true.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3538
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3539
        transformation notNil ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3540
            "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3541
             need logical coordinates for redraw
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3542
            "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3543
            nx := transformation applyInverseToX:nx.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3544
            ny := transformation applyInverseToY:ny.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3545
            nw := transformation applyInverseScaleX:nw.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3546
            nh := transformation applyInverseScaleY:nh.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3547
        ].
135
claus
parents:
diff changeset
  3548
    ].
claus
parents:
diff changeset
  3549
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3550
    (nw > 0 and:[nh > 0]) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3551
        "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3552
         redraw inside area
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3553
        "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3554
        self redrawX:nx y:ny width:nw height:nh.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3555
    ].
135
claus
parents:
diff changeset
  3556
claus
parents:
diff changeset
  3557
    "
claus
parents:
diff changeset
  3558
     redraw edge(s)
claus
parents:
diff changeset
  3559
    "
claus
parents:
diff changeset
  3560
    anyEdge ifTrue:[
738
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  3561
        self clippingRectangle:nil.
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3562
        (topEdge and:[leftEdge and:[botEdge and:[rightEdge]]]) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3563
            self drawEdges
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3564
        ] ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3565
            topEdge ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3566
                self drawTopEdge
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3567
            ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3568
            leftEdge ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3569
                self drawLeftEdge
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3570
            ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3571
            botEdge ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3572
                self drawBottomEdge
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3573
            ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3574
            rightEdge ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3575
                self drawRightEdge
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3576
            ]
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3577
        ].
754
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  3578
        self clippingRectangle:innerClipRect
135
claus
parents:
diff changeset
  3579
    ]
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3580
754
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  3581
    "Modified: 28.5.1996 / 22:31:49 / cg"
135
claus
parents:
diff changeset
  3582
!
claus
parents:
diff changeset
  3583
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3584
focusIn
385
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  3585
    "got keyboard focus (via the window manager)"
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  3586
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  3587
    self showFocus:false
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3588
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3589
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3590
focusOut
385
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  3591
    "lost keyboard focus (via the window manager)"
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  3592
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  3593
    self showNoFocus:false
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3594
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3595
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3596
hasKeyboardFocus:aBoolean
140
claus
parents: 138
diff changeset
  3597
    ^ self
claus
parents: 138
diff changeset
  3598
!
claus
parents: 138
diff changeset
  3599
claus
parents: 138
diff changeset
  3600
keyPress:key x:x y:y
claus
parents: 138
diff changeset
  3601
    "a key has been pressed. If there are components,
claus
parents: 138
diff changeset
  3602
     pass it to the corresponding one. 
claus
parents: 138
diff changeset
  3603
     Otherwise, forward it to the superview, if there is any."
claus
parents: 138
diff changeset
  3604
510
c0c7a04317a9 resources
Claus Gittinger <cg@exept.de>
parents: 503
diff changeset
  3605
    <resource: #keyboard ( #Menu ) >
c0c7a04317a9 resources
Claus Gittinger <cg@exept.de>
parents: 503
diff changeset
  3606
140
claus
parents: 138
diff changeset
  3607
    components notNil ifTrue:[
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3608
        components notNil ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3609
            self componentsContainingX:x y:y do:[:comp :cx :cy |
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3610
                comp keyPress:key x:cx y:cy.
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3611
                ^ self
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3612
            ]
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3613
        ].
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3614
    ].
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3615
494
cc7765901744 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 490
diff changeset
  3616
    key == #Menu ifTrue:[
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3617
        ^ self activateMenu.
135
claus
parents:
diff changeset
  3618
    ].
claus
parents:
diff changeset
  3619
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3620
    x isNil ifTrue:[
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3621
        "/ already redelegated, but nowhere handled
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3622
        superView notNil ifTrue:[
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3623
            superView keyPress:key x:nil y:nil.
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3624
        ].
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3625
        ^ self
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3626
    ].
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3627
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3628
    superView notNil ifTrue:[
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3629
        WindowEvent
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3630
            sendEvent:#keyPress:x:y:
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3631
            arguments:(Array with:key with:0 with:0)
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3632
            view:superView
411
2d5deb02d8f8 if not already forwarded, let keyEvents be handled by superView
Claus Gittinger <cg@exept.de>
parents: 393
diff changeset
  3633
    ] ifFalse:[
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3634
        super keyPress:key x:x y:y
135
claus
parents:
diff changeset
  3635
    ]
411
2d5deb02d8f8 if not already forwarded, let keyEvents be handled by superView
Claus Gittinger <cg@exept.de>
parents: 393
diff changeset
  3636
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3637
    "Modified: 8.5.1996 / 23:44:36 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3638
!
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3639
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3640
keyRelease:key x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3641
    "a key has been released. If there are components,
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3642
     pass it to the corresponding one. 
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3643
     Otherwise, do whatever my superclass would do."
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3644
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3645
    components notNil ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3646
        components notNil ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3647
            self componentsContainingX:x y:y do:[:comp :cx :cy |
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3648
                comp keyRelease:key x:cx y:cy.
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3649
                ^ self
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3650
            ]
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3651
        ].
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3652
    ].
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3653
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3654
    super keyRelease:key x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3655
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3656
    "Modified: 8.5.1996 / 23:44:36 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3657
    "Created: 8.5.1996 / 23:45:28 / cg"
135
claus
parents:
diff changeset
  3658
!
claus
parents:
diff changeset
  3659
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3660
mapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3661
    "the view has been mapped (by some outside
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3662
     action - i.e. window manager de-iconified me)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3663
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3664
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3665
     the old code was:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3666
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3667
	realized := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3668
	shown := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3669
	...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3670
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3671
     this created a race condition, if the view was
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3672
     realized and shortly after unrealized - before the mapped event
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3673
     arrived. This lead to shown being set to true even thought the
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3674
     view was not. Boy - that was a bad one (hard to reproduce and hard to find).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3675
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3676
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3677
    realized ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3678
	shown := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3679
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3680
	 backed views will not get expose events - have
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3681
	 to force a redraw here to get things drawn into
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3682
	 backing store.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3683
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3684
	backed ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3685
	    self redraw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3686
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3687
	subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3688
	    subViews do:[:v |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3689
		v superViewMapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3690
	    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3691
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3692
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3693
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3694
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3695
reparented
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3696
    "the view has changed its parent by some outside
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3697
     action - i.e. window manager has added a frame.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3698
     nothing done here"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3699
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3700
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3701
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3702
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3703
saveAndTerminate
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3704
    "window manager wants me to save and go away; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3705
     - notice, that not all window managers are nice enough to 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3706
       send this event, but simply destroy the view instead.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3707
     Can be redefined in subclasses to do whatever is required
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3708
     to prepare for restart."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3709
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3710
    ^ self destroy
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3711
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3712
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3713
sizeChanged:how
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3714
    "tell subviews if I change size.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3715
     How is either #smaller, #larger or nil, and is used to control the order,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3716
     in which subviews are notified (possibly reducing redraw activity)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3717
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3718
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3719
	(how isNil "false" 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3720
	or:[how == #smaller]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3721
	    subViews do:[:view |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3722
		view superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3723
	    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3724
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3725
	    "doing it reverse speeds up resizing - usually subviews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3726
	     are created from top-left to bottom-right; therefore
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3727
	     bottom-right views will be moved/resized first, then top-left ones;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3728
	     this avoids multiple redraws of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3729
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3730
	    subViews reverseDo:[:view |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3731
		view superViewChangedSize
135
claus
parents:
diff changeset
  3732
	    ]
claus
parents:
diff changeset
  3733
	]
claus
parents:
diff changeset
  3734
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3735
    self changed:#sizeOfView with:how.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3736
    superView notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3737
	superView subViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3738
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3739
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3740
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3741
subViewChangedSize
320
b7b8dc88fe9f interest is written with one 'r' (shame on me)
Claus Gittinger <cg@exept.de>
parents: 312
diff changeset
  3742
    "some subview has changed its size; we are not interested
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3743
     in that here, but some geometry managers redefine this, to reorganize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3744
     components if that happens."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3745
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3746
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3747
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3748
    "Created: 22.9.1995 / 14:44:59 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3749
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3750
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3751
superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3752
    "my superView has changed size; if I have relative
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3753
     origin/extent or blocks to evaluate, do it now .."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3754
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3755
    |oldWidth oldHeight oldTop oldLeft newExt newOrg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3756
     winSuper newWidth newHeight newLeft newTop
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3757
     superWidth superHeight superWinWidth superWinHeight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3758
     r|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3759
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3760
    oldWidth := width.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3761
    oldHeight := height.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3762
    oldTop := top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3763
    oldLeft := left.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3764
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3765
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3766
     slowly migrating to use layoutObjects ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3767
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3768
    layout isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3769
	newOrg := self computeOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3770
	newExt := self computeExtent.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3771
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3772
	r := (layout rectangleRelativeTo:(superView viewRectangle)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3773
			       preferred:(self preferredBounds)).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3774
	newOrg := r origin rounded.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3775
	newExt := r extent rounded.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3776
"/ newOrg printNL.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3777
"/ newExt printNL.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3778
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3779
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3780
    newOrg notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3781
	((newOrg x == oldLeft) and:[newOrg y == oldTop]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3782
	    newOrg := nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3783
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3784
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3785
    newExt notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3786
	((newExt x == width) and:[newExt y == height]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3787
	    newExt := nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3788
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3789
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3790
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3791
    newExt isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3792
	newOrg notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3793
	    self pixelOrigin:newOrg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3794
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3795
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3796
	newOrg isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3797
	    self pixelExtent:newExt
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3798
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3799
	    self pixelOrigin:newOrg extent:newExt
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3800
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3801
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3802
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3803
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3804
superViewMapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3805
    "my superview was mapped (became visible)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3806
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3807
    realized ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3808
	shown := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3809
	subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3810
	    subViews do:[:v |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3811
		v superViewMapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3812
	    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3813
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3814
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3815
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3816
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3817
superViewUnmapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3818
    "my superView was unmapped"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3819
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3820
    self unmapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3821
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3822
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3823
terminate
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3824
    "window manager wants me to go away;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3825
     - notice, that not all window managers are nice enough to 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3826
       send this event, but simply destroy the view instead.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3827
     Can be redefined in subclasses to do whatever cleanup is 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3828
     required."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3829
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3830
    ^ self destroy
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3831
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3832
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3833
unmapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3834
    "the view has been unmapped 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3835
     (either by some outside action - i.e. window manager iconified me,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3836
     or due to unmapping of my parentView)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3837
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3838
    shown := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3839
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3840
	subViews do:[:v |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3841
	    v superViewUnmapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3842
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3843
    ]
135
claus
parents:
diff changeset
  3844
!
claus
parents:
diff changeset
  3845
claus
parents:
diff changeset
  3846
visibilityChange:how
claus
parents:
diff changeset
  3847
    "the visibility of the view has changed (by some outside
claus
parents:
diff changeset
  3848
     action - i.e. window manager rearranged things).
claus
parents:
diff changeset
  3849
     Using this knowledge avoids useless redraw in obsucred views."
claus
parents:
diff changeset
  3850
claus
parents:
diff changeset
  3851
    how == #fullyObscured ifTrue:[
claus
parents:
diff changeset
  3852
	shown := false
claus
parents:
diff changeset
  3853
    ] ifFalse:[
claus
parents:
diff changeset
  3854
	shown := true.
claus
parents:
diff changeset
  3855
    ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3856
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3857
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3858
!SimpleView methodsFor:'informing others of changes'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3859
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3860
contentsChanged
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3861
    "this one is sent, whenever contents changes size -
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3862
     tell dependents about the change (i.e. scrollers)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3863
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3864
    self changed:#sizeOfContents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3865
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3866
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3867
originChanged:delta
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3868
    "this one is sent, after the origin of my contents has changed -
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3869
     tell dependents (i.e. scrollers) about this"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3870
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3871
    self changed:#originOfContents with:delta.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3872
"/   subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3873
"/        subViews do:[:aSubView |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3874
"/            aSubView pixelOrigin:((aSubView left @ aSubView top) - delta)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3875
"/        ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3876
"/    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3877
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3878
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3879
originWillChange
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3880
    "this one is sent, just before viewOrigin changes -
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3881
     gives subclasses a chance to catch scrolls easily
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3882
     (for example to hide cursor before scroll)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3883
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3884
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3885
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3886
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3887
!SimpleView methodsFor:'initialization'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3888
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3889
defaultControllerClass
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3890
    ^ nil "/ Controller
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3891
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3892
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3893
defaultExtent
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  3894
    "return the default extent of my instances."
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  3895
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3896
    ^ self class defaultExtent
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3897
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3898
    "Created: 1.3.1996 / 19:20:46 / cg"
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  3899
    "Modified: 22.4.1996 / 23:38:27 / cg"
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3900
!
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3901
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3902
initEvents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3903
    "will be sent by create - can be redefined by subclasses to enable
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3904
     view events"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3905
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3906
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3907
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3908
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3909
initStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3910
    "this method sets up all style dependent things"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3911
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3912
    self initStyleSheet.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3913
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3914
    borderWidth := DefaultBorderWidth.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3915
    borderWidth isNil ifTrue:[borderWidth := 1].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3916
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3917
    viewBackground := DefaultViewBackgroundColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3918
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3919
    DefaultLightColor notNil ifTrue:[
747
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3920
        lightColor := DefaultLightColor.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3921
    ] ifFalse:[
749
c83c6d93760d grey vs. gray
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  3922
        device hasGrayscales ifTrue:[
747
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3923
            DefaultLightColor := lightColor := viewBackground lightened.
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3924
        ] ifFalse:[
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3925
            "
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3926
             this seems strange: on B&W screens, we create the light color 
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3927
             darker than normal viewBackground (White) -
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3928
             to make the boundary of the view visible
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3929
            "
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3930
            lightColor := Color gray:50
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3931
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3932
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3933
    DefaultShadowColor notNil ifTrue:[
747
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3934
        shadowColor := DefaultShadowColor.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3935
    ] ifFalse:[
747
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3936
        shadowColor := Black
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3937
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3938
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3939
    lightColor := lightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3940
    shadowColor := shadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3941
    borderColor := DefaultBorderColor.
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  3942
    font := self class defaultFont.
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  3943
    font := font on:device.
747
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  3944
749
c83c6d93760d grey vs. gray
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  3945
    "Modified: 28.5.1996 / 21:13:58 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3946
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3947
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3948
initStyleSheet
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3949
    "this method gets the styleSheet"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3950
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3951
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3952
     when coming here the first time, we read the styleSheet
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3953
     and keep the values in fast class variables
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3954
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3955
    StyleSheet isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3956
	self class updateStyleCache
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3957
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3958
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3959
    styleSheet := StyleSheet.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3960
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3961
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3962
initialize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3963
    "initialize all state of the view - usually redefined in subclasses,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3964
     but always doing a 'super initialize'. Each class should setup its
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3965
     locals - and not forget the others.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3966
     View setup is separated into two parts, the general setup done here
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3967
     and the style specific setup in initStyle. Each view should be prepared
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3968
     for a stylechange by being sent another initStyle with a new style value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3969
     (in this case, it should set all of its style-dependent things, but
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3970
      leave the state and contents as-is)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3971
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3972
    |ext myClass controllerClass|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3973
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3974
    super initialize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3975
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  3976
    font := self class defaultFont.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3977
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3978
    shown := hiddenOnRealize := realized := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3979
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3980
    "fill in some defaults - some of them are usually redefined in subclasses
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3981
     initialize methods"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3982
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3983
    myClass := self class.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3984
    name := myClass name "asString" asLowercaseFirst.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3985
    resources := myClass classResources.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3986
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3987
    level := margin := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3988
    margin := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3989
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3990
    self initStyle.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3991
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3992
    ext := self defaultExtent.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3993
    left := top := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3994
    width := ext x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3995
    height := ext y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3996
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3997
    originChanged := extentChanged := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3998
    bitGravity := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3999
    viewGravity := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4000
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4001
    controllerClass := self defaultControllerClass.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4002
    controllerClass notNil ifTrue:[
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  4003
        controller := controllerClass new.
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  4004
        controller view:self.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4005
    ].
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  4006
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  4007
    "Modified: 1.3.1996 / 19:21:24 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4008
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4009
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4010
initializeMiddleButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4011
    "a place to initialize menu - this one is sent once when the view is
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4012
     first created; usually redefined in subclasses; default here is no menu.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4013
     Notice, that static middleButtonmenus are a historic thing in ST/X;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4014
     you may prefer to create the menu dynamically (i.e. the ST-80 way)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4015
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4016
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4017
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4018
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4019
prepareForReinit
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4020
    super prepareForReinit.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4021
    windowGroup notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4022
	windowGroup reinitialize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4023
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4024
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4025
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4026
reinitStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4027
    "this method is called for a style change"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4028
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4029
    |t|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4030
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4031
    self initStyle.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4032
    drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4033
	"force a change"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4034
	t := borderWidth. borderWidth := nil. self borderWidth:t.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4035
	t := viewBackground. viewBackground := nil. self viewBackground:t.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4036
	self clear.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4037
	self redraw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4038
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4039
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4040
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4041
reinitialize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4042
    "this is called right snapIn"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4043
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4044
    |myController|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4045
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4046
    "if I have already been reinited - return"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4047
    drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4048
	^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4049
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4050
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4051
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4052
     superView must be there, first
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4053
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4054
    superView notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4055
	superView id isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4056
	    superView reinitialize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4057
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4058
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4059
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4060
    myController := controller.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4061
    controller := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4062
    self recreate.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4063
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4064
    "if I was mapped, do it again"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4065
    realized ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4066
	"only remap if I have a superview - otherwise, I might be
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4067
	 a hidden iconView or menu ..."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4068
	superView notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4069
"/            shown ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4070
		device mapView:self id:drawableId iconified:false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4071
			   atX:left y:top width:width height:height
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4072
"/            ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4073
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4074
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4075
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4076
    "restore controller"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4077
    controller := myController
135
claus
parents:
diff changeset
  4078
! !
claus
parents:
diff changeset
  4079
140
claus
parents: 138
diff changeset
  4080
!SimpleView methodsFor:'private'!
claus
parents: 138
diff changeset
  4081
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4082
componentsContainingX:x y:y do:aBlock
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4083
    components notNil ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4084
        components do:[:aComponent |
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4085
            |thisFrame|
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4086
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4087
            thisFrame := aComponent bounds.
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4088
            (thisFrame containsPointX:x y:y) ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4089
                aBlock value:aComponent 
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4090
                       value:x - thisFrame left
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4091
                       value:y - thisFrame top.
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4092
            ]
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4093
        ]
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4094
    ].
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4095
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4096
    "Created: 8.5.1996 / 23:40:59 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4097
!
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4098
140
claus
parents: 138
diff changeset
  4099
computeInnerClip
claus
parents: 138
diff changeset
  4100
    "compute, but do not set the inside clip-area"
claus
parents: 138
diff changeset
  4101
claus
parents: 138
diff changeset
  4102
    |m2 nX nY nW nH|
claus
parents: 138
diff changeset
  4103
claus
parents: 138
diff changeset
  4104
    (margin ~~ 0) ifTrue:[
claus
parents: 138
diff changeset
  4105
	m2 := margin + margin.
claus
parents: 138
diff changeset
  4106
	nX := nY := margin.
claus
parents: 138
diff changeset
  4107
	nW := width - m2.
claus
parents: 138
diff changeset
  4108
	nH := height - m2.
claus
parents: 138
diff changeset
  4109
	transformation notNil ifTrue:[
claus
parents: 138
diff changeset
  4110
	    nX := transformation applyInverseToX:nX.
claus
parents: 138
diff changeset
  4111
	    nY := transformation applyInverseToY:nY.
claus
parents: 138
diff changeset
  4112
	    nW := transformation applyInverseScaleX:nW.
claus
parents: 138
diff changeset
  4113
	    nH := transformation applyInverseScaleY:nH.
claus
parents: 138
diff changeset
  4114
	].
claus
parents: 138
diff changeset
  4115
	innerClipRect := Rectangle 
claus
parents: 138
diff changeset
  4116
				 left:nX 
claus
parents: 138
diff changeset
  4117
				 top:nY 
claus
parents: 138
diff changeset
  4118
				 width:nW 
claus
parents: 138
diff changeset
  4119
				 height:nH
claus
parents: 138
diff changeset
  4120
    ] ifFalse:[
claus
parents: 138
diff changeset
  4121
	"no clipping"
claus
parents: 138
diff changeset
  4122
	innerClipRect := nil
claus
parents: 138
diff changeset
  4123
    ]
claus
parents: 138
diff changeset
  4124
!
claus
parents: 138
diff changeset
  4125
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4126
cornerFromRelativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4127
    "compute & return pixel corner from relativeCorner"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4128
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4129
    ^ self cornerFromRelativeCorner:relativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4130
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4131
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4132
cornerFromRelativeCorner:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4133
    "compute & return pixel corner from a relativeCorner, aPoint"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4134
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4135
    |p r b bw|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4136
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4137
    p := self pointFromRelative:aPoint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4138
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4139
    bw := borderWidth.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4140
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4141
	bw == 0 ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4142
	    ^ p
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4143
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4144
	^ (p x - bw) @ (p y - bw)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4145
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4146
    r := (insets at:3) + bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4147
    b := (insets at:4) + bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4148
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4149
"/    r := b := bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4150
"/    rightInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4151
"/        r := rightInset + bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4152
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4153
"/    bottomInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4154
"/        b := bottomInset + bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4155
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4156
    ((r ~~ 0) or:[b ~~ 0]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4157
	^ (p x - r) @ (p y - b)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4158
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4159
    ^ p
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4160
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4161
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4162
extentFromRelativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4163
    "compute & return pixel extent from relativeExtent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4164
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4165
    ^ self extentFromRelativeExtent:relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4166
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4167
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4168
extentFromRelativeExtent:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4169
    "compute & return pixel extent from relativeExtent, aPoint"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4170
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4171
    |rel newX newY inRect bw2 i|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4172
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4173
    superView isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4174
	inRect := 0@0 extent:device extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4175
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4176
	inRect := superView viewRectangle.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4177
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4178
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4179
    bw2 := borderWidth * 2.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4180
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4181
    rel := aPoint x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4182
    rel isInteger ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4183
	newX := (rel * (inRect width + bw2)) asInteger + inRect left.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4184
	(borderWidth ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4185
	    newX := newX - borderWidth
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4186
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4187
    ] ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4188
	newX := rel
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4189
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4190
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4191
    rel := aPoint y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4192
    rel isInteger ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4193
	newY := (rel * (inRect height + bw2)) asInteger + inRect top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4194
	(borderWidth ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4195
	    newY := newY - borderWidth
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4196
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4197
    ] ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4198
	newY := rel
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4199
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4200
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4201
    insets notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4202
	i := insets at:1.   "top"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4203
	(i  ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4204
	    newX := newX - i
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4205
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4206
	i := insets at:3.   "left"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4207
	(i  ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4208
	    newX := newX - i
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4209
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4210
	i := insets at:2.   "right"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4211
	(i ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4212
	    newY := newY - i
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4213
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4214
	i := insets at:4.   "bottom"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4215
	(i ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4216
	    newY := newY - i
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4217
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4218
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4219
    ^ newX @ newY
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4220
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4221
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4222
originFromRelativeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4223
    "compute & return pixel origin from relativeOrigin"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4224
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4225
    ^ self originFromRelativeOrigin:relativeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4226
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4227
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4228
originFromRelativeOrigin:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4229
    "compute & return pixel origin from relativeOrigin, aPoint"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4230
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4231
    |p l t|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4232
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4233
    p := self pointFromRelative:aPoint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4234
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4235
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4236
	^ p
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4237
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4238
    l := insets at:1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4239
    t := insets at:2.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4240
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4241
"/  l := t := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4242
"/    leftInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4243
"/        l := leftInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4244
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4245
"/    topInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4246
"/        t := topInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4247
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4248
    ((l ~~ 0) or:[t ~~ 0]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4249
	^ (p x + l) @ (p y + t)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4250
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4251
    ^ p
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4252
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4253
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4254
pixelCorner:corner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4255
    "set the views corner in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4256
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4257
    |w h|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4258
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4259
    w := corner x - left + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4260
    h := corner y - top + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4261
    self pixelOrigin:(left @ top) extent:(w @ h)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4262
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4263
    "Modified: 31.8.1995 / 18:20:22 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4264
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4265
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4266
pixelExtent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4267
    "set the views extent in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4268
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4269
    self pixelOrigin:(left @ top) extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4270
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4271
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4272
pixelOrigin:origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4273
    "set the views origin in pixels. For subviews. the origin is relative
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4274
     to the superviews top-left. For topViews, its the screen origin."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4275
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4276
    |newLeft newTop|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4277
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4278
    newLeft := origin x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4279
    newTop := origin y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4280
    ((newTop ~~ top) or:[newLeft ~~ left]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4281
	top := newTop.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4282
	left := newLeft.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4283
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4284
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4285
	 if the receiver is visible, or is a topView, perform the
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4286
	 operation right away - otherwise, simply remember that the
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4287
	 origin has changed - will tell the display once we get realized
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4288
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4289
"/        (shown 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4290
"/        or:[superView isNil and:[drawableId notNil]]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4291
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4292
	"/ no, have to do it if drawableId is there
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4293
	"/ (otherwise, we could not move unmapped views around ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4294
	"/
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4295
	drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4296
	    device moveWindow:drawableId x:left y:top
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4297
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4298
	    originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4299
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4300
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4301
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4302
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4303
pixelOrigin:origin corner:corner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4304
    "set the views origin and corner in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4305
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4306
    |w h|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4307
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4308
    w := corner x - origin x + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4309
    h := corner y - origin y + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4310
    self pixelOrigin:origin extent:(w @ h)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4311
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4312
    "Modified: 31.8.1995 / 18:24:16 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4313
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4314
140
claus
parents: 138
diff changeset
  4315
pixelOrigin:origin extent:extent
claus
parents: 138
diff changeset
  4316
    "set the views origin and extent in pixels"
claus
parents: 138
diff changeset
  4317
claus
parents: 138
diff changeset
  4318
    |newLeft newTop newWidth newHeight how 
claus
parents: 138
diff changeset
  4319
     mustRedrawBottomEdge mustRedrawRightEdge mustRepaintBottom
claus
parents: 138
diff changeset
  4320
     mustRepaintRight sameOrigin oldWidth oldHeight|
claus
parents: 138
diff changeset
  4321
claus
parents: 138
diff changeset
  4322
    newLeft := origin x.
claus
parents: 138
diff changeset
  4323
    newTop := origin y.
claus
parents: 138
diff changeset
  4324
    sameOrigin := ((newTop == top) and:[newLeft == left]).
claus
parents: 138
diff changeset
  4325
claus
parents: 138
diff changeset
  4326
    newWidth := extent x.
claus
parents: 138
diff changeset
  4327
    newHeight := extent y.
claus
parents: 138
diff changeset
  4328
claus
parents: 138
diff changeset
  4329
    "
claus
parents: 138
diff changeset
  4330
     X complains badly if you try to create/resize a view with
claus
parents: 138
diff changeset
  4331
     a dimension <= 0 ... (although I think that 0 maks sense ...)
claus
parents: 138
diff changeset
  4332
    "
claus
parents: 138
diff changeset
  4333
    newWidth < 1 ifTrue:[
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4334
        newWidth := 1.
140
claus
parents: 138
diff changeset
  4335
    ].
claus
parents: 138
diff changeset
  4336
    newHeight < 1 ifTrue:[
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4337
        newHeight := 1
140
claus
parents: 138
diff changeset
  4338
    ].
claus
parents: 138
diff changeset
  4339
claus
parents: 138
diff changeset
  4340
    ((newWidth == width) and:[newHeight == height]) ifTrue:[
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4341
        sameOrigin ifTrue:[^ self].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4342
        ^ self pixelOrigin:origin
140
claus
parents: 138
diff changeset
  4343
    ].
claus
parents: 138
diff changeset
  4344
    top := newTop.
claus
parents: 138
diff changeset
  4345
    left := newLeft.
claus
parents: 138
diff changeset
  4346
claus
parents: 138
diff changeset
  4347
"/    shown ifTrue:[                  "4-nov-94 actually correct,"
claus
parents: 138
diff changeset
  4348
    drawableId notNil ifTrue:[        "but theres a bug in menus when resized while hidden"
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4349
        mustRedrawBottomEdge := (level ~~ 0) and:[newHeight < height].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4350
        mustRedrawRightEdge := (level ~~ 0) and:[newWidth < width].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4351
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4352
        ((newHeight <= height) and:[newWidth <= width]) ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4353
            how := #smaller
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4354
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4355
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4356
        mustRepaintRight := false.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4357
        mustRepaintBottom := false.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4358
        (level ~~ 0) ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4359
            "clear the old edges"
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4360
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4361
            newWidth > width ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4362
                self clippingRectangle:nil.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4363
                self paint:viewBackground.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4364
                self fillDeviceRectangleX:(width - margin)
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4365
                                        y:0
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4366
                                    width:margin
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4367
                                   height:height.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4368
                mustRepaintRight := true.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4369
                oldWidth := width
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4370
            ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4371
            newHeight > height ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4372
                self clippingRectangle:nil.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4373
                self paint:viewBackground.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4374
                self fillDeviceRectangleX:0
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4375
                                        y:(height - margin)
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4376
                                    width:width
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4377
                                   height:margin.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4378
                mustRepaintBottom := true.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4379
                oldHeight := height
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4380
            ]
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4381
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4382
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4383
        width := newWidth.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4384
        height := newHeight.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4385
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4386
        self setInnerClip.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4387
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4388
        "if view becomes smaller, send sizeChanged first"
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4389
        (how == #smaller) ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4390
            self sizeChanged:how
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4391
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4392
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4393
        "have to tell X, when extent of view is changed"
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4394
        sameOrigin ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4395
            device resizeWindow:drawableId width:width height:height.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4396
        ] ifFalse:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4397
            "claus: some xservers seem to do better when resizing
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4398
             first ...."
140
claus
parents: 138
diff changeset
  4399
" 
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4400
            (how == #smaller) ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4401
                device resizeWindow:drawableId width:width height:height.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4402
                device moveWindow:drawableId x:left y:top
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4403
            ] ifFalse:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4404
                device moveResizeWindow:drawableId x:left y:top width:width height:height
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4405
            ].
140
claus
parents: 138
diff changeset
  4406
" 
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4407
            device moveResizeWindow:drawableId x:left y:top
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4408
                                           width:width height:height.
140
claus
parents: 138
diff changeset
  4409
" "
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4410
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4411
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4412
        "if view becomes bigger, send sizeChanged after"
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4413
        (how ~~ #smaller) ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4414
            self sizeChanged:how
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4415
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4416
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4417
        (mustRedrawBottomEdge or:[mustRedrawRightEdge]) ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4418
            self clippingRectangle:nil.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4419
            mustRedrawBottomEdge ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4420
                self drawBottomEdge
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4421
            ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4422
            mustRedrawRightEdge ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4423
                self drawRightEdge
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4424
            ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4425
            self clippingRectangle:innerClipRect
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4426
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4427
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4428
        mustRepaintRight ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4429
            self redrawDeviceX:(oldWidth - margin)
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4430
                             y:0
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4431
                         width:margin
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4432
                        height:height.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4433
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4434
        mustRepaintBottom ifTrue:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4435
            self redrawDeviceX:0
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4436
                             y:(oldHeight - margin)
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4437
                         width:width
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4438
                        height:margin.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4439
        ].
140
claus
parents: 138
diff changeset
  4440
    ] ifFalse:[
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4441
        "otherwise memorize the need for a sizeChanged message"
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4442
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4443
        width := newWidth.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4444
        height := newHeight.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4445
        sameOrigin ifFalse:[
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4446
            originChanged := true.
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4447
        ].
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4448
        extentChanged := true
140
claus
parents: 138
diff changeset
  4449
    ]
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4450
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4451
    "Modified: 28.5.1996 / 20:04:48 / cg"
140
claus
parents: 138
diff changeset
  4452
!
claus
parents: 138
diff changeset
  4453
claus
parents: 138
diff changeset
  4454
pointFromRelative:p
claus
parents: 138
diff changeset
  4455
    "compute absolute coordinate from p"
claus
parents: 138
diff changeset
  4456
claus
parents: 138
diff changeset
  4457
    |newX newY rel inRect bw superWidth superHeight superLeft superTop |
claus
parents: 138
diff changeset
  4458
claus
parents: 138
diff changeset
  4459
    bw := borderWidth.
claus
parents: 138
diff changeset
  4460
claus
parents: 138
diff changeset
  4461
    superView isNil ifTrue:[
claus
parents: 138
diff changeset
  4462
	superWidth := device width + bw.      
claus
parents: 138
diff changeset
  4463
	superHeight := device height + bw.
claus
parents: 138
diff changeset
  4464
	superLeft := superTop := 0.
claus
parents: 138
diff changeset
  4465
    ] ifFalse:[
claus
parents: 138
diff changeset
  4466
	inRect := superView viewRectangle.
claus
parents: 138
diff changeset
  4467
	superWidth := inRect width.
claus
parents: 138
diff changeset
  4468
	superHeight := inRect height.
claus
parents: 138
diff changeset
  4469
	superLeft := inRect left.
claus
parents: 138
diff changeset
  4470
	superTop := inRect top.
claus
parents: 138
diff changeset
  4471
    ].
claus
parents: 138
diff changeset
  4472
claus
parents: 138
diff changeset
  4473
    rel := p x.
claus
parents: 138
diff changeset
  4474
    rel isInteger ifTrue:[
claus
parents: 138
diff changeset
  4475
	newX := rel
claus
parents: 138
diff changeset
  4476
    ] ifFalse:[
claus
parents: 138
diff changeset
  4477
	newX := (rel * superWidth) asInteger + superLeft.
claus
parents: 138
diff changeset
  4478
	(bw ~~ 0) ifTrue:[
claus
parents: 138
diff changeset
  4479
	    rel ~= 1.0 ifTrue:[
claus
parents: 138
diff changeset
  4480
		newX := newX - bw
claus
parents: 138
diff changeset
  4481
	    ]
claus
parents: 138
diff changeset
  4482
	]
claus
parents: 138
diff changeset
  4483
    ].
claus
parents: 138
diff changeset
  4484
claus
parents: 138
diff changeset
  4485
    rel := p y.
claus
parents: 138
diff changeset
  4486
    rel isInteger ifTrue:[
claus
parents: 138
diff changeset
  4487
	newY := rel
claus
parents: 138
diff changeset
  4488
    ] ifFalse:[
claus
parents: 138
diff changeset
  4489
	newY := (rel * superHeight) asInteger + superTop.
claus
parents: 138
diff changeset
  4490
	(bw ~~ 0) ifTrue:[
claus
parents: 138
diff changeset
  4491
	    rel ~= 1.0 ifTrue:[
claus
parents: 138
diff changeset
  4492
		newY := newY - bw
claus
parents: 138
diff changeset
  4493
	    ]
claus
parents: 138
diff changeset
  4494
	]
claus
parents: 138
diff changeset
  4495
    ].
claus
parents: 138
diff changeset
  4496
    ^ newX @ newY
claus
parents: 138
diff changeset
  4497
!
claus
parents: 138
diff changeset
  4498
claus
parents: 138
diff changeset
  4499
setBorderColor
claus
parents: 138
diff changeset
  4500
    "set my borderColor"
claus
parents: 138
diff changeset
  4501
claus
parents: 138
diff changeset
  4502
    |id dither|
claus
parents: 138
diff changeset
  4503
claus
parents: 138
diff changeset
  4504
    drawableId notNil ifTrue:[
claus
parents: 138
diff changeset
  4505
	borderColor := borderColor on:device.
claus
parents: 138
diff changeset
  4506
	id := borderColor colorId.
claus
parents: 138
diff changeset
  4507
	id notNil ifTrue:[
claus
parents: 138
diff changeset
  4508
	    device setWindowBorderColor:id in:drawableId
claus
parents: 138
diff changeset
  4509
	] ifFalse:[
claus
parents: 138
diff changeset
  4510
	    dither := borderColor ditherForm.
claus
parents: 138
diff changeset
  4511
	    dither notNil ifTrue:[
claus
parents: 138
diff changeset
  4512
		device setWindowBorderPixmap:(dither id) in:drawableId
claus
parents: 138
diff changeset
  4513
	    ] ifFalse:[
145
claus
parents: 144
diff changeset
  4514
		'VIEW: bad borderColor' errorPrintNL
135
claus
parents:
diff changeset
  4515
	    ]
claus
parents:
diff changeset
  4516
	]
claus
parents:
diff changeset
  4517
    ]
claus
parents:
diff changeset
  4518
!
claus
parents:
diff changeset
  4519
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4520
setInnerClip
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4521
    "compute, and set the inside clip-area"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4522
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4523
    self computeInnerClip.
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4524
    self clippingRectangle:innerClipRect
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4525
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4526
    "Modified: 28.5.1996 / 20:04:53 / cg"
140
claus
parents: 138
diff changeset
  4527
! !
claus
parents: 138
diff changeset
  4528
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4529
!SimpleView methodsFor:'queries'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4530
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4531
buttonMotionEventPending
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4532
    "return true, if a button motion event is pending.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4533
     Normally, you dont want to use this, since no polling is needed
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4534
     (not even for mouse-tracking).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4535
     Dont use it, since it does not honor the windowGroup, but
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4536
     goes directly to the device instead.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4537
     Actually, its a historical leftover"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4538
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4539
    windowGroup notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4540
	^ windowGroup sensor hasButtonMotionEventsFor:self
140
claus
parents: 138
diff changeset
  4541
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4542
    ^ super buttonMotionEventPending
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4543
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4544
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4545
canDrop:anObjectOrCollection
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4546
    "return true, if anObjectOrCollection can be
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4547
     dropped in the receiver. This method should be
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4548
     redefined in views which can take objects"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4549
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4550
    ^ false
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4551
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4552
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4553
canHandle:aKey
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4554
    "return true, if I like to handle the key (from a keyPress event).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4555
     OBSOLETE: do not use & depend on this method, it is a historic
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4556
     leftOver and will be removed. Use the delegation mechanism for this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4557
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4558
    ^ false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4559
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4560
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4561
canHandle:aKey from:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4562
    "return true, if I like to handle the key (from a keyPress event)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4563
     in aView.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4564
     OBSOLETE: do not use & depend on this method, it is a historic
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4565
     leftOver and will be removed. Use the delegation mechanism for this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4566
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4567
    ^ self canHandle:aKey
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4568
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4569
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4570
delegatesTo:someone
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4571
    "return true, if I delegate events to someone"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4572
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4573
    delegate isNil ifTrue:[^ false].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4574
    ^ delegate delegatesTo:someone
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4575
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4576
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4577
hasFocus
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4578
    "return true, if the receiver has the keyboard focus
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4579
     (either via the focusView mechanism in the windowGroup,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4580
      or via delegation)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4581
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4582
    |focusView delegate|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4583
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4584
    windowGroup isNil ifTrue:[^ false].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4585
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4586
    (focusView := windowGroup focusView) == self ifTrue:[^ true].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4587
    focusView notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4588
	"mhmh - is there a delegation to me ?"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4589
	(delegate := focusView delegate) notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4590
	    delegate == self ifTrue:[^ true].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4591
	    ^ delegate delegatesTo:self
135
claus
parents:
diff changeset
  4592
	]
claus
parents:
diff changeset
  4593
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4594
    ^ false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4595
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4596
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4597
is3D
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4598
    "return true, if my style is some kind of 3D style
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4599
     This is OBSOLETE and will be removed."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4600
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4601
    ^ styleSheet is3D
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4602
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4603
497
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4604
isInputField
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4605
    "return true, if the receiver is some kind of input view,
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4606
     i.e. it should (can) be part of an enterGroup.
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4607
     Return false here, this is redefined in EnterField."
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4608
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4609
    ^ false
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4610
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4611
    "Created: 4.3.1996 / 11:34:07 / cg"
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4612
!
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4613
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4614
isPopUpView
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4615
    "return true, if this view should be put on top (raised) automatically.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4616
     usually this is true for alertBoxes etc."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4617
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4618
    ^ false
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4619
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4620
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4621
isSubViewOf:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4622
    "return true, if I am a subview of aView"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4623
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4624
    aView == self isNil ifTrue:[^ true].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4625
    superView isNil ifTrue:[^ false].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4626
    superView == aView ifTrue:[^ true].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4627
    ^ superView isSubViewOf:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4628
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4629
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4630
preferredBounds
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4631
    "ST-80 compatibility."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4632
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4633
    ^ 0@0 corner:self preferredExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4634
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4635
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4636
preferredExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4637
    "return my preferred extent - this is the minimum size I would like to have.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4638
     The default here is the actual extent, the receiver currently has."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4639
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4640
    "mhmh - if I have components, collect their
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4641
     preferred bounds ..."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4642
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4643
    |maxX maxY|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4644
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4645
    subViews isNil ifTrue:[^ self extent].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4646
"/    ^ self extent.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4647
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4648
    maxX := maxY := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4649
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4650
	subViews do:[:aSubView |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4651
	    |org corn|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4652
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4653
	    org := aSubView computeOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4654
	    corn := org + aSubView preferredExtent.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4655
	    maxX := maxX max:corn x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4656
	    maxY := maxY max:corn y.
140
claus
parents: 138
diff changeset
  4657
	]
claus
parents: 138
diff changeset
  4658
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4659
    ^ maxX @ maxY.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4660
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4661
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4662
sizeFixed
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4663
    "return true, if this vew wants its size to remain unchanged.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4664
     Used by panels, to check if their components want to keep their size."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4665
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4666
    ^ false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4667
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4668
    "Created: 17.9.1995 / 20:29:20 / claus"
140
claus
parents: 138
diff changeset
  4669
! !
claus
parents: 138
diff changeset
  4670
claus
parents: 138
diff changeset
  4671
!SimpleView methodsFor:'realization'!
claus
parents: 138
diff changeset
  4672
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4673
create
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4674
    "create (i.e. tell my device about me) if not already created.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4675
     This does not make the view visible (needs a #map for that)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4676
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4677
    drawableId isNil ifTrue:[
151
claus
parents: 145
diff changeset
  4678
	"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4679
	 make certain that superview is created also
151
claus
parents: 145
diff changeset
  4680
	"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4681
	superView notNil ifTrue:[
355
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4682
	     superView create.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4683
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4684
"/            "and put my controller into the superviews controller list"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4685
"/            controller notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4686
"/                superView controller notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4687
"/                    controller manager:(superView controller manager)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4688
"/                ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4689
"/            ]
355
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4690
	] ifFalse:[
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4691
	    "/
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4692
	    "/ if the display is not already dispatching events,
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4693
	    "/ this starts the event process.
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4694
	    "/
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4695
	    device startDispatch
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4696
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4697
343
f5d86df5c66b dont care for nil cursors
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4698
	cursor notNil ifTrue:[
f5d86df5c66b dont care for nil cursors
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4699
	    cursor := cursor on:device.
f5d86df5c66b dont care for nil cursors
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4700
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4701
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4702
	self physicalCreate.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4703
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4704
	viewBackground notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4705
	   self setViewBackground
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4706
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4707
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4708
	self initializeMiddleButtonMenu.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4709
	self initEvents.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4710
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4711
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4712
	 this is the first create,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4713
	 force sizechange messages to be sent to the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4714
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4715
	extentChanged := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4716
	originChanged := true
151
claus
parents: 145
diff changeset
  4717
    ]
claus
parents: 145
diff changeset
  4718
!
claus
parents: 145
diff changeset
  4719
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4720
createWithAllSubViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4721
    "create, then create all subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4722
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4723
    drawableId isNil ifTrue:[self create].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4724
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4725
	subViews do:[:subView | subView createWithAllSubViews]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4726
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4727
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4728
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4729
destroy
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4730
    "unmap & destroy - make me invisible, destroy subviews then
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4731
     make me unknown to the device"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4732
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4733
    |subs|
140
claus
parents: 138
diff changeset
  4734
claus
parents: 138
diff changeset
  4735
    realized ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4736
        self unmap.            
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4737
        "make it go away immediately
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4738
         - also, this hides the subview killing"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4739
"
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4740
        device synchronizeOutput. 
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4741
"
151
claus
parents: 145
diff changeset
  4742
    ].
claus
parents: 145
diff changeset
  4743
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4744
"/    controller notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4745
"/      controller release.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4746
"/      controller := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4747
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4748
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4749
    subs := subViews.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4750
    subs notNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4751
        "stupid: destroy removes itself from the subview list
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4752
         - therefore we have to loop over a copy here"
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4753
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4754
        subViews := nil.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4755
        subs do:[:aView |
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4756
            aView notNil ifTrue:[aView destroy]             
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4757
        ]
140
claus
parents: 138
diff changeset
  4758
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4759
    superView notNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4760
        superView removeSubView:self.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4761
        superView := nil
140
claus
parents: 138
diff changeset
  4762
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4763
    super destroy.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4764
312
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  4765
    superView isNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4766
        device flush
312
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  4767
    ].
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  4768
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4769
    controller notNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4770
        controller release.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4771
        controller := nil.
140
claus
parents: 138
diff changeset
  4772
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4773
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4774
    windowGroup notNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4775
        windowGroup removeView:self.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4776
        windowGroup := nil
140
claus
parents: 138
diff changeset
  4777
    ].
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4778
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4779
    "Modified: 3.5.1996 / 23:49:24 / stefan"
140
claus
parents: 138
diff changeset
  4780
!
claus
parents: 138
diff changeset
  4781
claus
parents: 138
diff changeset
  4782
fixSize
claus
parents: 138
diff changeset
  4783
    "This is called right before the view is made visible.
claus
parents: 138
diff changeset
  4784
     Adjust the size of the view according to either relative/abs or
claus
parents: 138
diff changeset
  4785
     block extent; also set origin. Also, subclasses may redefine this
claus
parents: 138
diff changeset
  4786
     method to adjust the size based on some extent (for example, PopUpMenus
claus
parents: 138
diff changeset
  4787
     do so to take care of changed number of menu entries)."
claus
parents: 138
diff changeset
  4788
151
claus
parents: 145
diff changeset
  4789
    |org ext r|
claus
parents: 145
diff changeset
  4790
claus
parents: 145
diff changeset
  4791
    "
claus
parents: 145
diff changeset
  4792
     slowly migrating to use layoutObjects ...
claus
parents: 145
diff changeset
  4793
    "
claus
parents: 145
diff changeset
  4794
    layout notNil ifTrue:[
claus
parents: 145
diff changeset
  4795
	(originChanged or:[extentChanged or:[cornerChanged]]) ifTrue:[
claus
parents: 145
diff changeset
  4796
	    r := (layout rectangleRelativeTo:(superView viewRectangle)
claus
parents: 145
diff changeset
  4797
				   preferred:(self preferredBounds)).
claus
parents: 145
diff changeset
  4798
	    org := r origin rounded.
claus
parents: 145
diff changeset
  4799
	    ext := r extent rounded.
claus
parents: 145
diff changeset
  4800
	    self pixelOrigin:org extent:ext.
claus
parents: 145
diff changeset
  4801
	].
claus
parents: 145
diff changeset
  4802
	^ self.
claus
parents: 145
diff changeset
  4803
    ].
claus
parents: 145
diff changeset
  4804
140
claus
parents: 138
diff changeset
  4805
    "if the extent is not the one we created the window with ..."
claus
parents: 138
diff changeset
  4806
    extentChanged ifTrue:[
claus
parents: 138
diff changeset
  4807
	self sizeChanged:nil.
claus
parents: 138
diff changeset
  4808
	extentChanged := false
claus
parents: 138
diff changeset
  4809
    ].
claus
parents: 138
diff changeset
  4810
claus
parents: 138
diff changeset
  4811
    originChanged ifTrue:[
claus
parents: 138
diff changeset
  4812
"/        org := self computeOrigin.
claus
parents: 138
diff changeset
  4813
"/        self pixelOrigin:org.    
claus
parents: 138
diff changeset
  4814
	originRule notNil ifTrue:[
claus
parents: 138
diff changeset
  4815
	    self pixelOrigin:self computeOrigin
claus
parents: 138
diff changeset
  4816
	] ifFalse:[
claus
parents: 138
diff changeset
  4817
	    relativeOrigin notNil ifTrue:[
claus
parents: 138
diff changeset
  4818
		self originFromRelativeOrigin:relativeOrigin
claus
parents: 138
diff changeset
  4819
	    ] ifFalse:[
151
claus
parents: 145
diff changeset
  4820
		shown ifTrue:[
claus
parents: 145
diff changeset
  4821
		    device moveWindow:drawableId x:left y:top.
claus
parents: 145
diff changeset
  4822
		] ifFalse:[
claus
parents: 145
diff changeset
  4823
		    self pixelOrigin:left@top
claus
parents: 145
diff changeset
  4824
		].
140
claus
parents: 138
diff changeset
  4825
	    ].
claus
parents: 138
diff changeset
  4826
	].
claus
parents: 138
diff changeset
  4827
	originChanged := false
claus
parents: 138
diff changeset
  4828
    ]
claus
parents: 138
diff changeset
  4829
!
claus
parents: 138
diff changeset
  4830
393
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4831
hide
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4832
    "for protocol compatibility with modal dialogs;
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4833
     ignored here."
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4834
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4835
    ^ self
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4836
!
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4837
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4838
hideRequest
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4839
    "for protocol compatibility with modal dialogs;
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4840
     ignored here."
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4841
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4842
    ^ self
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4843
!
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4844
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4845
map
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4846
    "make the view visible on the screen"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4847
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4848
    realized ifFalse:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4849
        drawableId isNil ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4850
            self realize
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4851
        ] ifFalse:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4852
            "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4853
             now, make the view visible
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4854
            "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4855
            device mapWindow:drawableId.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4856
            realized := true.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4857
        ]
140
claus
parents: 138
diff changeset
  4858
    ]
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4859
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4860
    "Modified: 8.5.1996 / 09:36:21 / cg"
140
claus
parents: 138
diff changeset
  4861
!
claus
parents: 138
diff changeset
  4862
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4863
physicalCreate
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4864
    "common code for create & recreate: 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4865
     physically create (but do not map) the view on the device."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4866
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4867
    "associate colors to device"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4868
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4869
    drawableId := device 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4870
		      createWindowFor:self 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4871
			  origin:(left @ top)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4872
			  extent:(width @ height)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4873
			  minExtent:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4874
			  maxExtent:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4875
			  borderWidth:borderWidth
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4876
			  subViewOf:superView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4877
			  onTop:(self isPopUpView)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4878
			  inputOnly:(self inputOnly)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4879
			  label:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4880
			  cursor:cursor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4881
			  icon:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4882
			  iconView:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4883
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4884
    Lobby registerChange:self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4885
    extentChanged := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4886
    originChanged := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4887
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4888
    (borderColor notNil and:[borderColor ~~ Black]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4889
"/        borderColor := borderColor on:device.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4890
	self setBorderColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4891
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4892
    (viewGravity notNil "and:[viewGravity ~~ #NorthWest]") ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4893
	device setWindowGravity:viewGravity in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4894
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4895
    (bitGravity notNil "and:[bitGravity ~~ #NorthWest]") ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4896
	device setBitGravity:bitGravity in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4897
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4898
    borderShape notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4899
	device setWindowBorderShape:(borderShape id) in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4900
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4901
    viewShape notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4902
	device setWindowShape:(viewShape id) in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4903
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4904
    (backed notNil and:[backed ~~ false]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4905
	device setBackingStore:backed in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4906
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4907
    saveUnder ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4908
	device setSaveUnder:true in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4909
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4910
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4911
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4912
realize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4913
    "realize - make visible;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4914
     realizing is done very late (after layout is fixed) to avoid
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4915
     visible rearranging of windows on the screen"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4916
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4917
    self realizeKeepingGroup:false
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4918
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4919
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4920
realizeAllSubViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4921
    "realize all my subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4922
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4923
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4924
	subViews do:[:subView |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4925
	    subView realize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4926
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4927
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4928
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4929
    "Modified: 5.9.1995 / 23:30:47 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4930
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4931
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4932
realizeInGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4933
    "special realize - leave windowgroup as is; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4934
     This allows a view to be realized in any windowgroup; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4935
     for special applications, like the kill button in the Filebrowser which has
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4936
     a windowGroup different from its superview's and is handled as a separate process."
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4937
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4938
    windowGroup isForModalSubview:true.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4939
    self realize.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4940
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4941
"/    self realizeKeepingGroup:true
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4942
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4943
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4944
realizeKeepingGroup:keepGroupAsIs 
151
claus
parents: 145
diff changeset
  4945
    "common helper for realize and realizeInGroup.
claus
parents: 145
diff changeset
  4946
     Create the view, if the argument is not true, assign my windowGroup,
claus
parents: 145
diff changeset
  4947
     if hiddenOnRealize is not true, map it."
140
claus
parents: 138
diff changeset
  4948
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4949
    |superGroup groupChange keep|
140
claus
parents: 138
diff changeset
  4950
claus
parents: 138
diff changeset
  4951
    drawableId isNil ifTrue:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4952
        self create.
140
claus
parents: 138
diff changeset
  4953
    ].
claus
parents: 138
diff changeset
  4954
372
78e5b6e96649 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 371
diff changeset
  4955
    groupChange := false.
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4956
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4957
    (windowGroup notNil and:[windowGroup isForModalSubview]) ifTrue:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4958
        keep := true.
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4959
    ] ifFalse:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4960
        keep := keepGroupAsIs
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4961
    ].
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4962
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4963
    keep ifFalse:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4964
        "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4965
         put myself into superviews windowgroup if there is a superview
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4966
        "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4967
        superView notNil ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4968
            superGroup := superView windowGroup.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4969
            (windowGroup notNil and:[superGroup ~~ windowGroup]) ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4970
                "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4971
                 mhmh - seems that the windowgroup has changed ....
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4972
                "
145
claus
parents: 144
diff changeset
  4973
"/                'oops - wgroup change on realize' printNL.
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4974
                windowGroup removeView:self.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4975
                windowGroup := nil
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4976
            ].
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4977
            superGroup ~~ windowGroup ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4978
                groupChange := true.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4979
                windowGroup := superGroup.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4980
                windowGroup notNil ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4981
                    windowGroup addView:self.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4982
                ]
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4983
            ]
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4984
        ].
140
claus
parents: 138
diff changeset
  4985
    ].
claus
parents: 138
diff changeset
  4986
151
claus
parents: 145
diff changeset
  4987
    hiddenOnRealize ifFalse:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4988
        (originChanged or:[extentChanged]) ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4989
            self fixSize.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4990
            self sizeChanged:nil.   "/ new 29-aug-1995
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4991
        ].
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4992
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4993
        subViews notNil ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4994
            (realized not or:[groupChange]) ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4995
                self realizeAllSubViews.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4996
            ].
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4997
        ].
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4998
        self setInnerClip.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4999
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5000
        realized ifFalse:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5001
            "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5002
             now, make the view visible
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5003
            "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5004
            self map
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5005
        ]
140
claus
parents: 138
diff changeset
  5006
    ].
claus
parents: 138
diff changeset
  5007
claus
parents: 138
diff changeset
  5008
    controller notNil ifTrue:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5009
        controller startUp
140
claus
parents: 138
diff changeset
  5010
    ]
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5011
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5012
    "Modified: 8.5.1996 / 09:31:20 / cg"
140
claus
parents: 138
diff changeset
  5013
!
claus
parents: 138
diff changeset
  5014
claus
parents: 138
diff changeset
  5015
recreate
claus
parents: 138
diff changeset
  5016
    "recreate (i.e. tell X about me) after a snapin"
claus
parents: 138
diff changeset
  5017
claus
parents: 138
diff changeset
  5018
    drawableId isNil ifTrue:[
claus
parents: 138
diff changeset
  5019
	super recreate.
claus
parents: 138
diff changeset
  5020
	self physicalCreate.
claus
parents: 138
diff changeset
  5021
claus
parents: 138
diff changeset
  5022
	viewBackground notNil ifTrue:[
claus
parents: 138
diff changeset
  5023
	    self setViewBackground 
claus
parents: 138
diff changeset
  5024
	].
claus
parents: 138
diff changeset
  5025
claus
parents: 138
diff changeset
  5026
	"
claus
parents: 138
diff changeset
  5027
	 XXX has to be changed: eventmasks are device specific -
claus
parents: 138
diff changeset
  5028
	 XXX will not allow restart on another Workstation-type.
claus
parents: 138
diff changeset
  5029
	 XXX event masks must become symbolic
claus
parents: 138
diff changeset
  5030
	"
claus
parents: 138
diff changeset
  5031
	device setEventMask:eventMask in:drawableId
claus
parents: 138
diff changeset
  5032
    ]
claus
parents: 138
diff changeset
  5033
!
claus
parents: 138
diff changeset
  5034
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5035
remap
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5036
    "make the view visible on the screen at its previous position.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5037
     In contrast to map, this asks the windowManager to show the view
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5038
     immediately (instead of asking for a frame). However, some windowManagers
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5039
     are known to ignore this ..."
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5040
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5041
    realized ifFalse:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5042
        "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5043
         now, make the view visible
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5044
        "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5045
        device mapView:self id:drawableId iconified:false
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5046
                   atX:left y:top width:width height:height.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5047
        realized := true.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5048
    ]
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5049
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5050
    "Created: 8.5.1996 / 09:33:06 / cg"
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5051
!
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5052
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5053
rerealizeInGroup:aWindowGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5054
    "rerealize at old position in (a possibly different) windowGroup."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5055
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5056
    drawableId isNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5057
        self create
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5058
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5059
    drawableId notNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5060
        aWindowGroup ~~ windowGroup ifTrue:[
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5061
            windowGroup notNil ifTrue:[
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5062
                windowGroup removeView:self
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5063
            ].
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5064
            windowGroup := aWindowGroup.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5065
            aWindowGroup addTopView:self.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5066
        ].
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5067
        self map.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5068
    ]
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5069
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5070
    "Modified: 3.5.1996 / 23:59:30 / stefan"
140
claus
parents: 138
diff changeset
  5071
!
claus
parents: 138
diff changeset
  5072
claus
parents: 138
diff changeset
  5073
rerealizeWithAllSubViews
claus
parents: 138
diff changeset
  5074
    "rerealize myself with all subviews"
claus
parents: 138
diff changeset
  5075
claus
parents: 138
diff changeset
  5076
    drawableId notNil ifTrue:[
claus
parents: 138
diff changeset
  5077
	realized := true.
claus
parents: 138
diff changeset
  5078
	subViews notNil ifTrue:[
180
claus
parents: 176
diff changeset
  5079
	    self realizeAllSubViews.
140
claus
parents: 138
diff changeset
  5080
	].
claus
parents: 138
diff changeset
  5081
	device mapView:self id:drawableId iconified:false
claus
parents: 138
diff changeset
  5082
		   atX:left y:top width:width height:height
claus
parents: 138
diff changeset
  5083
    ]
180
claus
parents: 176
diff changeset
  5084
!
claus
parents: 176
diff changeset
  5085
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5086
resize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5087
    "resize myself to make everything fit into me.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5088
     Nothing special done here, but redefined in some subclasses"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5089
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5090
    self extent:(self preferredExtent)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5091
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5092
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5093
unmap
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5094
    "hide me - the view stays created, and can be mapped again later."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5095
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5096
    realized ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5097
	drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5098
	    device unmapWindow:drawableId
151
claus
parents: 145
diff changeset
  5099
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5100
	realized := shown := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5101
    ].
190
claus
parents: 189
diff changeset
  5102
claus
parents: 189
diff changeset
  5103
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5104
     |top sub|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5105
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5106
     top := StandardSystemView new.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5107
     top extent:200@200.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5108
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5109
     sub := View
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5110
		origin:0.2@0.2
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5111
		corner:0.8@0.8
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5112
		in:top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5113
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5114
     sub viewBackground:Color red.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5115
     sub hiddenOnRealize:true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5116
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5117
     top open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5118
     (Delay forSeconds:5) wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5119
     sub map.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5120
     (Delay forSeconds:3) wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5121
     sub unmap.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5122
     sub viewBackground:(Color green).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5123
     (Delay forSeconds:3) wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5124
     sub map.
151
claus
parents: 145
diff changeset
  5125
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5126
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5127
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5128
unrealize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5129
    "alias for unmap, for historic reasons"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5130
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5131
    self obsoleteMethodWarning:'use unmap'.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5132
    self unmap.
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5133
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5134
    "Modified: 4.5.1996 / 00:07:48 / stefan"
151
claus
parents: 145
diff changeset
  5135
! !
claus
parents: 145
diff changeset
  5136
claus
parents: 145
diff changeset
  5137
!SimpleView methodsFor:'redrawing'!
claus
parents: 145
diff changeset
  5138
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5139
invalidate
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5140
    "add a damage to redraw the recevier to its input event queue.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5141
     This is preferable to calling redraw directly, in that the drawing is done by
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5142
     the views process itself, and there is a possibilty to merge
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5143
     multiple damage rectangles into single redraws."
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5144
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5145
    |sensor|
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5146
753
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5147
    shown ifTrue:[
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5148
        (sensor := self sensor) notNil ifTrue:[
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5149
            sensor addDamage:(0@0 extent:width@height) view:self
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5150
        ] ifFalse:[
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5151
            self redrawX:0 y:0 width:width height:height
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5152
        ]
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5153
    ]
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5154
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5155
    "Created: 26.5.1996 / 17:17:38 / cg"
753
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5156
    "Modified: 28.5.1996 / 22:15:05 / cg"
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5157
!
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5158
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5159
invalidate:aRectangle
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5160
    "add a damage to redraw part of the recevier, to its input event queue.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5161
     This is preferable to calling redraw directly, 
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5162
     in that the drawing is done by the views process itself, 
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5163
     and there is a possibilty to merge multiple damage rectangles into 
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5164
     single redraws."
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5165
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5166
    |sensor|
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5167
753
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5168
    shown ifTrue:[
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5169
        (sensor := self sensor) notNil ifTrue:[
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5170
            sensor addDamage:aRectangle view:self.
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5171
        ] ifFalse:[
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5172
            self redrawX:(aRectangle left)
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5173
                       y:(aRectangle top)
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5174
                   width:(aRectangle width)
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5175
                  height:(aRectangle height)
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5176
        ]
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5177
    ]
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5178
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5179
    "Created: 26.5.1996 / 17:18:25 / cg"
753
cb2c6ba6f4d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 751
diff changeset
  5180
    "Modified: 28.5.1996 / 22:15:21 / cg"
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5181
!
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5182
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5183
redraw
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5184
    "redraw myself completely
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5185
     cannot do much here - has to be redefined in subclasses"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5186
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5187
    "Modified: 26.5.1996 / 17:48:48 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5188
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5189
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5190
redrawDeviceX:x y:y width:w height:h
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5191
    "have to redraw part of the view.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5192
     The coordinates are in device space - if there is a transformation,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5193
     must inverse-transform back to logical coordinates. (since the view thinks
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5194
     in its coordinate space)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5195
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5196
    |lx ly lw lh|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5197
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5198
    lx := x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5199
    ly := y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5200
    lw := w.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5201
    lh := h.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5202
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5203
    transformation notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5204
	lx := transformation applyInverseToX:lx.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5205
	ly := transformation applyInverseToY:ly.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5206
	lw := transformation applyInverseScaleX:lw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5207
	lh := transformation applyInverseScaleY:lh.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5208
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5209
    self redrawX:lx y:ly width:lw height:lh
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5210
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5211
151
claus
parents: 145
diff changeset
  5212
redrawX:x y:y width:w height:h
claus
parents: 145
diff changeset
  5213
    "have to redraw part of myself, given logical coordinates (if trans is nonNil)
claus
parents: 145
diff changeset
  5214
     default is to redraw everything - subclasses should add intelligence"
claus
parents: 145
diff changeset
  5215
738
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5216
    |area oldClip|
151
claus
parents: 145
diff changeset
  5217
claus
parents: 145
diff changeset
  5218
    shown ifFalse:[^ self].
claus
parents: 145
diff changeset
  5219
claus
parents: 145
diff changeset
  5220
    area := Rectangle left:x top:y width:w height:h.      
738
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5221
    oldClip := clipRect.
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5222
    self clippingRectangle:area.
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5223
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5224
    components notNil ifTrue:[
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5225
        self clearRectangleX:x y:y width:w height:h.
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5226
        components do:[:aComponent |
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5227
            |thisFrame is|
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5228
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5229
            thisFrame := aComponent bounds.
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5230
            (thisFrame intersects:area) ifTrue:[
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5231
                aComponent displayOn:self
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5232
            ]
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5233
        ]
738
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5234
    ] ifFalse:[
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5235
        self redraw
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5236
    ].
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5237
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5238
    self clippingRectangle:oldClip.
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5239
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
  5240
    "Modified: 28.5.1996 / 19:55:10 / cg"
151
claus
parents: 145
diff changeset
  5241
!
claus
parents: 145
diff changeset
  5242
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5243
showActive
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5244
    "redraw myself as active (i.e. busy).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5245
     Nothing done here, but redefined in some classes."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5246
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5247
    ^ self
135
claus
parents:
diff changeset
  5248
!
claus
parents:
diff changeset
  5249
385
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5250
showFocus:explicit
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5251
    "highlight myself somehow to tell user that I have the focus.
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5252
     Explicit tells if the focus came via focusStepping (i.e. tabbing)
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5253
     or via the window manager (i.e. pointer entering).
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5254
     Only change my border, if this is an explicit focusChange."
135
claus
parents:
diff changeset
  5255
claus
parents:
diff changeset
  5256
    |delta|
claus
parents:
diff changeset
  5257
385
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5258
    explicit ifTrue:[
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5259
	drawableId notNil ifTrue:[
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5260
	    delta := DefaultFocusBorderWidth - borderWidth.
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5261
	    delta ~~ 0 ifTrue:[
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5262
		device moveWindow:drawableId x:left-delta y:top-delta
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5263
	    ].
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5264
	    device setWindowBorderWidth:DefaultFocusBorderWidth in:drawableId.
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5265
	    device setWindowBorderColor:(DefaultFocusColor on:device) colorId in:drawableId.
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5266
	]
135
claus
parents:
diff changeset
  5267
    ]
claus
parents:
diff changeset
  5268
!
claus
parents:
diff changeset
  5269
385
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5270
showNoFocus:explicit
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5271
    "undo the effect of showFocus.
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5272
     Explicit tells if the focus came via focusStepping (i.e. tabbing)
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5273
     or via the window manager (i.e. pointer entering).
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5274
     Only change my border, if this is an explicit focusChange."
135
claus
parents:
diff changeset
  5275
claus
parents:
diff changeset
  5276
    |delta|
claus
parents:
diff changeset
  5277
385
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5278
    explicit ifTrue:[
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5279
	drawableId notNil ifTrue:[
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5280
	    (windowGroup notNil
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5281
	    and:[windowGroup focusView == self]) ifTrue:[
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5282
		delta := DefaultFocusBorderWidth - borderWidth.
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5283
		delta ~~ 0 ifTrue:[
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5284
		    device moveWindow:drawableId x:left+delta y:top+delta
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5285
		].
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5286
		device setWindowBorderWidth:borderWidth in:drawableId.
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5287
		self setBorderColor.
15fd1c806d2a pass info if focus change was explicit (i.e. Tab-key) or by window manager.
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5288
	    ]
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  5289
	]
135
claus
parents:
diff changeset
  5290
    ]
358
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
  5291
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
  5292
    "Modified: 9.1.1996 / 16:02:32 / cg"
135
claus
parents:
diff changeset
  5293
!
claus
parents:
diff changeset
  5294
claus
parents:
diff changeset
  5295
showPassive
claus
parents:
diff changeset
  5296
    "redraw myself as inactive (i.e. nonbusy).
151
claus
parents: 145
diff changeset
  5297
     Nothing done here, but redefined in some classes."
135
claus
parents:
diff changeset
  5298
claus
parents:
diff changeset
  5299
    ^ self
claus
parents:
diff changeset
  5300
! !
claus
parents:
diff changeset
  5301
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5302
!SimpleView methodsFor:'scrolling'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5303
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5304
horizontalScrollStep
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5305
    "return the amount to scroll when stepping left/right.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5306
     Subclasses may want to redefine this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5307
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5308
    ^ (device horizontalPixelPerMillimeter * 20) asInteger
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5309
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5310
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5311
scrollDown
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5312
    "scroll down by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5313
     scroll-step down button is pressed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5314
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5315
    self scrollDown:(self verticalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5316
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5317
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5318
scrollHorizontalTo:aPixelOffset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5319
    "change origin to make aPixelOffset be the left col"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5320
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5321
    |orgX|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5322
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5323
    orgX := self viewOrigin x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5324
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5325
    (aPixelOffset < orgX) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5326
	self scrollLeft:(orgX - aPixelOffset)
140
claus
parents: 138
diff changeset
  5327
    ] ifFalse:[
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5328
	(aPixelOffset > orgX) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5329
	    self scrollRight:(aPixelOffset - orgX)
140
claus
parents: 138
diff changeset
  5330
	]
claus
parents: 138
diff changeset
  5331
    ]
claus
parents: 138
diff changeset
  5332
!
claus
parents: 138
diff changeset
  5333
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5334
scrollHorizontalToPercent:percent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5335
    "scroll to a position given in percent of total"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5336
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5337
    |wCont|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5338
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5339
    wCont := self widthOfContents.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5340
    transformation notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5341
	wCont := transformation applyScaleX:wCont.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5342
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5343
    self scrollHorizontalTo:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5344
	    ((((wCont * percent) / 100.0) + 0.5) asInteger)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5345
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5346
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5347
scrollLeft
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5348
    "scroll left by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5349
     scroll-step left button is pressed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5350
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5351
    self scrollLeft:(self horizontalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5352
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5353
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5354
scrollRight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5355
    "scroll right by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5356
     scroll-step right button is pressed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5357
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5358
    self scrollRight:(self horizontalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5359
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5360
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5361
scrollToTop
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5362
    "move viewOrigin to top"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5363
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5364
    self scrollVerticalTo:0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5365
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5366
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5367
scrollToTopLeft
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5368
    "move viewOrigin to top/left"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5369
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5370
    self scrollTo:(0 @ 0).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5371
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5372
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5373
scrollUp
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5374
    "scroll up by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5375
     scroll-step up button is pressed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5376
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5377
    self scrollUp:(self verticalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5378
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5379
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5380
scrollVerticalTo:aPixelOffset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5381
    "change origin to make aPixelOffset be the top line"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5382
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5383
    |orgY|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5384
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5385
    orgY := self viewOrigin y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5386
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5387
    (aPixelOffset < orgY) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5388
	self scrollUp:(orgY - aPixelOffset)
140
claus
parents: 138
diff changeset
  5389
    ] ifFalse:[
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5390
	(aPixelOffset > orgY) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5391
	    self scrollDown:(aPixelOffset - orgY)
135
claus
parents:
diff changeset
  5392
	]
claus
parents:
diff changeset
  5393
    ]
claus
parents:
diff changeset
  5394
!
claus
parents:
diff changeset
  5395
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5396
scrollVerticalToPercent:percent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5397
    "scroll to a position given in percent of total"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5398
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5399
    |hCont|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5400
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5401
    hCont := self heightOfContents.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5402
    transformation notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5403
	hCont := transformation applyScaleY:hCont.
140
claus
parents: 138
diff changeset
  5404
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5405
    self scrollVerticalTo:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5406
	    ((((hCont * percent) / 100.0) + 0.5) asInteger)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5407
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5408
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5409
verticalScrollStep
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5410
    "return the amount to scroll when stepping up/down.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5411
     Subclasses may want to redefine this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5412
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5413
    ^ (device verticalPixelPerMillimeter * 20) asInteger
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5414
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5415
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5416
widthForScrollBetween:yStart and:yEnd 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5417
    "return the width in pixels for a scroll between yStart and yEnd
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5418
     - return full width here since we do not know how wide contents is.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5419
     Views which only use part of their space (short lists, text) may redefine
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5420
     this method and return the number of pixels that have to be scrolled.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5421
     On slow displays, this may make a difference; on fast ones you will probably
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5422
     not notice any difference."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5423
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5424
    ^ (width - margin - margin)
135
claus
parents:
diff changeset
  5425
! !
claus
parents:
diff changeset
  5426
claus
parents:
diff changeset
  5427
!SimpleView methodsFor:'scrolling-basic'!
claus
parents:
diff changeset
  5428
claus
parents:
diff changeset
  5429
scrollDown:nPixels
claus
parents:
diff changeset
  5430
    "change origin to scroll down some pixels"
claus
parents:
diff changeset
  5431
claus
parents:
diff changeset
  5432
    |count "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5433
     m2    "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5434
     w     "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5435
     h     "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5436
     hCont 
claus
parents:
diff changeset
  5437
     ih    "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5438
     orgX  
claus
parents:
diff changeset
  5439
     orgY  "{ Class:SmallInteger }"
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5440
     newOrigin|
135
claus
parents:
diff changeset
  5441
claus
parents:
diff changeset
  5442
    hCont := self heightOfContents.
claus
parents:
diff changeset
  5443
    transformation isNil ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5444
        orgY := orgX := 0
135
claus
parents:
diff changeset
  5445
    ] ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5446
        hCont := (transformation applyScaleY:hCont) rounded.
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5447
        orgY := transformation translationY negated.
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5448
        orgX := transformation translationX negated.
135
claus
parents:
diff changeset
  5449
    ].
claus
parents:
diff changeset
  5450
claus
parents:
diff changeset
  5451
    count := nPixels.
claus
parents:
diff changeset
  5452
    ih := self innerHeight.
claus
parents:
diff changeset
  5453
claus
parents:
diff changeset
  5454
    ((orgY + nPixels + ih) > hCont) ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5455
        count := hCont - orgY - ih
135
claus
parents:
diff changeset
  5456
    ].
claus
parents:
diff changeset
  5457
    (count <= 0) ifTrue:[^ self].
claus
parents:
diff changeset
  5458
claus
parents:
diff changeset
  5459
    self originWillChange.
claus
parents:
diff changeset
  5460
    newOrigin := orgX @ (orgY + count).
claus
parents:
diff changeset
  5461
    shown ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5462
        self setViewOrigin:newOrigin.
135
claus
parents:
diff changeset
  5463
    ] ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5464
        m2 := margin * 2.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5465
        (count >= ih) ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5466
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5467
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5468
                         width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5469
                        height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5470
        ] ifFalse:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5471
            h := height - m2 - count.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5472
            w := self width.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5473
            self catchExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5474
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5475
            self copyFrom:self x:margin y:(count + margin)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5476
                             toX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5477
                           width:w 
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5478
                          height:h.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5479
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5480
            self setInnerClip.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5481
            self redrawDeviceX:margin y:(h + margin) 
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5482
                         width:(width - m2) height:count.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5483
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5484
            self waitForExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5485
        ]
135
claus
parents:
diff changeset
  5486
    ].
claus
parents:
diff changeset
  5487
    self originChanged:(0 @ count).
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5488
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5489
    "Modified: 21.5.1996 / 21:18:24 / cg"
135
claus
parents:
diff changeset
  5490
!
claus
parents:
diff changeset
  5491
claus
parents:
diff changeset
  5492
scrollLeft:nPixels
claus
parents:
diff changeset
  5493
    "change origin to scroll left some pixels"
claus
parents:
diff changeset
  5494
claus
parents:
diff changeset
  5495
    |count "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5496
     m2    "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5497
     h     "{ Class:SmallInteger }"
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5498
     orgX orgY newOrigin|
135
claus
parents:
diff changeset
  5499
claus
parents:
diff changeset
  5500
    transformation isNil ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5501
        orgY := orgX := 0
135
claus
parents:
diff changeset
  5502
    ] ifFalse:[
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5503
        orgY := transformation translation y negated.
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5504
        orgX := transformation translation x negated.
135
claus
parents:
diff changeset
  5505
    ].
claus
parents:
diff changeset
  5506
claus
parents:
diff changeset
  5507
    count := nPixels.
claus
parents:
diff changeset
  5508
    (count > orgX) ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5509
        count := orgX
135
claus
parents:
diff changeset
  5510
    ].
claus
parents:
diff changeset
  5511
    (count <= 0) ifTrue:[^ self].
claus
parents:
diff changeset
  5512
claus
parents:
diff changeset
  5513
    self originWillChange.
claus
parents:
diff changeset
  5514
    newOrigin := (orgX - count) @ orgY.
claus
parents:
diff changeset
  5515
claus
parents:
diff changeset
  5516
    shown ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5517
        self setViewOrigin:newOrigin.
135
claus
parents:
diff changeset
  5518
    ] ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5519
        m2 := margin * 2.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5520
        (count >= self innerWidth) ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5521
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5522
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5523
                         width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5524
                        height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5525
        ] ifFalse:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5526
            h := (height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5527
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5528
            self catchExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5529
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5530
            self copyFrom:self x:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5531
                             toX:(count + margin) y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5532
                           width:(width - m2 - count) 
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5533
                          height:h.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5534
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5535
            self setInnerClip.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5536
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5537
                         width:count height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5538
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5539
            self waitForExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5540
        ]
135
claus
parents:
diff changeset
  5541
    ].
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5542
    self originChanged:(count @ 0).
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5543
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5544
    "Modified: 22.5.1996 / 11:18:27 / cg"
135
claus
parents:
diff changeset
  5545
!
claus
parents:
diff changeset
  5546
claus
parents:
diff changeset
  5547
scrollRight:nPixels
claus
parents:
diff changeset
  5548
    "change origin to scroll right some pixels"
claus
parents:
diff changeset
  5549
claus
parents:
diff changeset
  5550
    |count "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5551
     m2    "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5552
     h     "{ Class:SmallInteger }" 
claus
parents:
diff changeset
  5553
     wCont 
claus
parents:
diff changeset
  5554
     iw    "{ Class:SmallInteger }"
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5555
     orgX orgY newOrigin|
135
claus
parents:
diff changeset
  5556
claus
parents:
diff changeset
  5557
    wCont := self widthOfContents.
claus
parents:
diff changeset
  5558
    transformation isNil ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5559
        orgY := orgX := 0
135
claus
parents:
diff changeset
  5560
    ] ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5561
        wCont := (transformation applyScaleX:wCont) rounded.
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5562
        orgY := transformation translation y negated.
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5563
        orgX := transformation translation x negated.
135
claus
parents:
diff changeset
  5564
    ].
claus
parents:
diff changeset
  5565
claus
parents:
diff changeset
  5566
    count := nPixels.
claus
parents:
diff changeset
  5567
    iw := self innerWidth.
claus
parents:
diff changeset
  5568
claus
parents:
diff changeset
  5569
    ((orgX + nPixels + iw) > wCont) ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5570
        count := wCont - orgX - iw
135
claus
parents:
diff changeset
  5571
    ].
claus
parents:
diff changeset
  5572
    (count <= 0) ifTrue:[^ self].
claus
parents:
diff changeset
  5573
claus
parents:
diff changeset
  5574
    self originWillChange.
claus
parents:
diff changeset
  5575
    newOrigin := (orgX + count) @ orgY.
claus
parents:
diff changeset
  5576
claus
parents:
diff changeset
  5577
    shown ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5578
        self setViewOrigin:newOrigin.
135
claus
parents:
diff changeset
  5579
    ] ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5580
        m2 := margin * 2.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5581
        (count >= iw) ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5582
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5583
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5584
                         width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5585
                        height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5586
        ] ifFalse:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5587
            m2 := margin * 2.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5588
            h := (height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5589
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5590
            self catchExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5591
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5592
            self copyFrom:self x:(count + margin) y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5593
                             toX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5594
                           width:(width - m2 - count) 
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5595
                          height:h.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5596
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5597
            self setInnerClip.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5598
            self redrawDeviceX:(width - margin - count) y:margin 
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5599
                         width:count height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5600
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5601
            self waitForExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5602
        ].
135
claus
parents:
diff changeset
  5603
    ].
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5604
    self originChanged:(count negated @ 0).
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5605
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5606
    "Modified: 22.5.1996 / 11:18:29 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5607
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5608
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5609
scrollTo:newOrigin 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5610
    "change origin to have newOrigin be visible at the top-left.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5611
     The argument defines the integer device coordinates of the new top-left 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5612
     point."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5613
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5614
    "due to historic reasons, the work is actually done by scrollUp/Down
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5615
     scrollLeft/Right (those where implemented first).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5616
     This will be changed to do all work here, and call it from
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5617
     the other scrolling methods."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5618
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5619
    |dX   "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5620
     dY   "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5621
     m2   "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5622
     orgX "{ Class:SmallInteger }"
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5623
     orgY "{ Class:SmallInteger }" |
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5624
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5625
    transformation isNil ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5626
        orgY := orgX := 0
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5627
    ] ifFalse:[
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5628
        orgY := transformation translation y negated.
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5629
        orgX := transformation translation x negated
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5630
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5631
    dX := newOrigin x - orgX.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5632
    dY := newOrigin y - orgY.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5633
    dX = 0 ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5634
        dY < 0 ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5635
            ^ self scrollUp:(dY negated).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5636
        ].
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5637
        dY > 0 ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5638
            ^ self scrollDown:dY.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5639
        ].
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5640
        ^ self
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5641
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5642
    dY = 0 ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5643
        dX < 0 ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5644
            ^ self scrollLeft:dX negated
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5645
        ].
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5646
        dX > 0 ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5647
            ^ self scrollRight:dX
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5648
        ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5649
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5650
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5651
    self originWillChange.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5652
    self setViewOrigin:newOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5653
    shown ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5654
        m2 := margin * 2. "top & bottom margins"
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5655
        self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5656
                     width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5657
                    height:(height - m2).
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5658
    ].
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5659
    self originChanged:(dX negated @ dY negated).
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5660
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5661
    "Modified: 22.5.1996 / 11:18:30 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5662
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5663
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5664
scrollUp:nPixels
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5665
    "change origin to scroll up (towards the origin) by some pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5666
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5667
    |count "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5668
     m2    "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5669
     w     "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5670
     h     "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5671
     orgX
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5672
     orgY  "{ Class:SmallInteger }"
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5673
     newOrigin|
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5674
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5675
    transformation isNil ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5676
        orgY := orgX := 0
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5677
    ] ifFalse:[
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5678
        orgY := transformation translation y negated.
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5679
        orgX := transformation translation x negated
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5680
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5681
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5682
    count := nPixels.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5683
    (count > orgY) ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5684
        count := orgY
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5685
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5686
    (count <= 0) ifTrue:[^ self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5687
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5688
    self originWillChange.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5689
    newOrigin := orgX @ (orgY - count).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5690
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5691
    shown ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5692
        self setViewOrigin:newOrigin.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5693
    ] ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5694
        m2 := margin * 2. "top & bottom margins"
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5695
        (count >= self innerHeight) ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5696
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5697
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5698
                         width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5699
                        height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5700
        ] ifFalse:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5701
            h := height - m2 - count.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5702
            w := width.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5703
            self catchExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5704
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5705
            self copyFrom:self x:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5706
                             toX:margin y:(count + margin)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5707
                           width:w height:h.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5708
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5709
            self setInnerClip.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5710
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5711
                         width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5712
                        height:count.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5713
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5714
            self waitForExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5715
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5716
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5717
    self originChanged:(0 @ count negated).
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5718
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5719
    "Modified: 22.5.1996 / 11:18:32 / cg"
135
claus
parents:
diff changeset
  5720
! !
claus
parents:
diff changeset
  5721
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5722
!SimpleView methodsFor:'startup'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5723
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5724
open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5725
    "open up the view - for normal views, this is a modeless open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5726
     (i.e. the new view comes up as independent process).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5727
     Although #open is only to be sent to topviews (i.e. it could have been
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5728
     implemented in TopView), it is implemented here - therefore, every view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5729
     can be opened as a topView.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5730
     This is redefined in ModalBox, which comes up modal (i.e. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5731
     control is under the current process, so that interaction with the
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5732
     current group is blocked while the modalBox is active)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5733
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5734
    ^ self openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5735
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5736
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5737
     View new open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5738
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5739
     (Button label:'hello') open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5740
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5741
     |top|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5742
     top := StandardSystemView new.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5743
     top extent:200@200.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5744
     Button label:'hello' in:top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5745
     top open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5746
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5747
     YesNoBox new open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5748
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5749
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5750
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5751
openAndWait
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5752
    "open up the view - wait until it is visible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5753
     In normal applications, you do not need to wait till the view is
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5754
     open - it should do all of its drawing itself when it gets the
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5755
     first expose event.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5756
     However, if you want to 'manually' draw into the view (for example,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5757
     in doIt expressions) the view must be visible (realized) before doing so.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5758
     Use this open in those situations."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5759
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5760
    self open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5761
    self waitUntilVisible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5762
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5763
    "does not work:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5764
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5765
	|v|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5766
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5767
	v := View new open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5768
	v displayLineFrom:0@0 to:50@50
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5769
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5770
     does work:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5771
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5772
	|v|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5773
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5774
	v := View new openAndWait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5775
	v displayLineFrom:0@0 to:50@50
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5776
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5777
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5778
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5779
openAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5780
    "open up the view modeless - positions the view"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5781
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5782
    ^self openModelessAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5783
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5784
    "Created: 18.9.1995 / 23:30:43 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5785
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5786
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5787
openAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5788
    "open up the view modeless - positions the view"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5789
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5790
    ^self openModelessAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5791
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5792
    "Created: 18.9.1995 / 23:30:56 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5793
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5794
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5795
openAutonomous
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5796
    "create and schedule a new windowgroup for me and open the view.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5797
     The view will be handled by its own process, effectively running in
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5798
     parallel. This entry is for non-topviews, which want to be served
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5799
     autonomous from the topview. (see the fileBrowsers kill-button
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5800
     when executing unix commands as an example)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5801
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5802
    |wg|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5803
566
530567d2984f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
  5804
    Processor isPureEventDriven ifFalse:[
422
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5805
        wg := WindowGroup new.
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5806
        self windowGroup:wg.
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5807
        wg addView:self.
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5808
        wg startup:false.
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5809
        wg isForModalSubview:true.
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5810
        self realizeInGroup.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5811
    ] ifTrue:[
422
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5812
        self realize
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5813
    ]
422
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5814
566
530567d2984f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
  5815
    "Modified: 13.4.1996 / 20:34:41 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5816
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5817
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5818
openInGroup:aGroup
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5819
    "special open within another windowGroup.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5820
     This allows a view to be realized in any windowgroup; 
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5821
     for applications where multiple views act as a group
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5822
     (i.e. close and iconify together)."
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5823
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5824
    self windowGroup:aGroup.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5825
    aGroup addTopView:self.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5826
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5827
"/    self realizeKeepingGroup:true
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5828
    aGroup isForModalSubview:true.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5829
    self realize.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5830
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5831
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5832
openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5833
    "create a new windowgroup, but start processing in the current process
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5834
     actually suspending event processing for the currently active group.
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5835
     Stay in the modalLoop while the view is visible.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5836
     (i.e. control is returned to the sender when the receiver is closed)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5837
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5838
    self openModal:[true]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5839
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5840
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5841
     the same:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5842
	 YesNoBox new open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5843
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5844
	 YesNoBox new openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5845
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5846
     different:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5847
	 (Button label:'hello') open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5848
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5849
	 (Button label:'hello') openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5850
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5851
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5852
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5853
openModal:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5854
    "create a new windowgroup, but start processing in the current process -
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5855
     actually suspending event processing for the currently active group.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5856
     Stay in this modal loop while aBlock evaluates to true AND the receiver is
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5857
     visible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5858
     (i.e. control is returned to the sender when the receiver is closed)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5859
     This makes any interaction with the current window impossible - 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5860
     however, other views (in other windowgroups) still work."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5861
299
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5862
    ^ self openModal:aBlock inGroup:WindowGroup activeGroup.
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5863
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5864
    "Created: 10.12.1995 / 14:06:45 / cg"
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5865
    "Modified: 10.12.1995 / 14:08:48 / cg"
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5866
!
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5867
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5868
openModal:aBlock inGroup:mainGroup
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5869
    "create a new windowgroup, but start processing in the current process -
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5870
     actually suspending event processing for the main group.
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5871
     Stay in this modal loop while aBlock evaluates to true AND the receiver is
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5872
     visible.
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5873
     (i.e. control is returned to the sender when the receiver is closed)
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5874
     This makes any interaction with the current window impossible - 
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5875
     however, other views (in other windowgroups) still work."
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5876
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5877
    |tops|
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5878
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5879
    Processor activeProcessIsSystemProcess ifTrue:[
424
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5880
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5881
         put myself into the modal group, let it handle events for
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5882
         me as well. This is only a half way solution, since the view
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5883
         is not modal at all ... however, the only situation
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5884
         where this happens is with modal boxes popped while in a
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5885
         modal browser. You will forgive me for that inconvenience.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5886
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5887
        windowGroup := mainGroup.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5888
        mainGroup notNil ifTrue:[mainGroup addTopView:self].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5889
        self realize
135
claus
parents:
diff changeset
  5890
    ] ifFalse:[
424
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5891
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5892
         show a stop-cursor in the main group
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5893
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5894
        mainGroup notNil ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5895
            self isPopUpView ifFalse:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5896
                mainGroup showCursor:(Cursor stop).
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5897
            ]
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5898
        ].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5899
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5900
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5901
         create a new window group and put myself into it
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5902
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5903
        windowGroup := WindowGroup new.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5904
        windowGroup addTopView:self.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5905
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5906
        superView notNil ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5907
            "/
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5908
            "/ special: this is a modal subview,
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5909
            "/ prevent the view to reassign its windowGroup when realized
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5910
            "/ (subviews normally place themself into the superviews group)
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5911
            "/        
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5912
            windowGroup isForModalSubview:true.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5913
        ].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5914
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5915
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5916
         go dispatch events in this new group
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5917
         (thus current windowgroup is blocked from interaction)
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5918
        "
426
7f0f723980e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  5919
        AbortSignal handle:[:ex |
424
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5920
            self hide.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5921
            ex return.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5922
        ] do:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5923
            [
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5924
                windowGroup startupModal:[realized and:aBlock] forGroup:mainGroup
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5925
            ] valueOnUnwindDo:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5926
                mainGroup notNil ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5927
                    self isPopUpView ifFalse:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5928
                        mainGroup restoreCursors.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5929
                    ].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5930
                    mainGroup sensor flushUserEvents.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5931
                ].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5932
                self hide.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5933
            ]
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5934
        ].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5935
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5936
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5937
         restore cursors in the main group & flush its buffered events
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5938
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5939
        mainGroup notNil ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5940
            mainGroup restoreCursors.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5941
            mainGroup sensor flushUserEvents.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5942
        ].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5943
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5944
        ReturnFocusWhenClosingModalBoxes ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5945
            "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5946
             return input focus to previously active groups top.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5947
             This helps with windowmanagers which need an explicit click
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5948
             on the view for the focus.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5949
            "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5950
            mainGroup notNil ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5951
                tops := mainGroup topViews.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5952
                (tops notNil and:[tops notEmpty]) ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5953
                    tops first getKeyboardFocus
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5954
                ]
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5955
            ]
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5956
        ]
135
claus
parents:
diff changeset
  5957
    ]
299
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5958
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5959
    "Created: 10.12.1995 / 14:06:14 / cg"
424
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5960
    "Modified: 11.2.1996 / 14:38:24 / cg"
135
claus
parents:
diff changeset
  5961
!
claus
parents:
diff changeset
  5962
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5963
openModalAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5964
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5965
     (i.e. circumvents window managers positioning)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5966
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5967
    self origin:aPoint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5968
    self create.
560
968d062c79cb oops - openAt did set transient; definitely wrong ...
Claus Gittinger <cg@exept.de>
parents: 527
diff changeset
  5969
"/    device setTransient:drawableId for:0.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5970
    ^ self openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5971
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5972
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5973
     View new openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5974
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5975
     View new openModalAt:100@100
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5976
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5977
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5978
    "Created: 18.9.1995 / 23:21:42 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5979
    "Modified: 18.9.1995 / 23:32:26 / claus"
560
968d062c79cb oops - openAt did set transient; definitely wrong ...
Claus Gittinger <cg@exept.de>
parents: 527
diff changeset
  5980
    "Modified: 12.4.1996 / 19:02:29 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5981
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5982
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5983
openModalAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5984
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5985
     (i.e. circumvents window managers positioning)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5986
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5987
    ^ self openModalAt:(device center - (self extent//2)).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5988
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5989
    "Created: 18.9.1995 / 23:31:47 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5990
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5991
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5992
openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5993
    "create and schedule a new windowgroup for me and open the view.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5994
     The view will be handled by its own process, effectively running in
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5995
     parallel (i.e. control is returned to the sender immediately)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5996
566
530567d2984f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
  5997
    Processor isPureEventDriven ifFalse:[
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5998
        windowGroup isNil ifTrue:[
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5999
            windowGroup := WindowGroup new.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6000
            windowGroup addTopView:self.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6001
            windowGroup startup:false.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6002
        ] ifFalse:[
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6003
            windowGroup addTopView:self.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6004
            windowGroup startup:false.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6005
            self realizeInGroup.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6006
        ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6007
    ] ifTrue:[
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6008
        self realize
135
claus
parents:
diff changeset
  6009
    ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6010
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6011
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6012
     the same:
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6013
         (Button label:'hello') open
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6014
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6015
         (Button label:'hello') openModeless
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6016
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6017
     different:
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6018
         YesNoBox new open
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6019
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6020
         YesNoBox new openModeless
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6021
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6022
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6023
     (almost) the same:
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6024
         YesNoBox new open
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6025
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6026
         YesNoBox new openModal
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6027
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6028
     different:
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6029
         (Button label:'hello') open
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6030
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6031
         (Button label:'hello') openModal
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6032
    "
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6033
566
530567d2984f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
  6034
    "Modified: 13.4.1996 / 20:34:45 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6035
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6036
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6037
openModelessAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6038
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6039
     (i.e. circumvents window managers positioning)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6040
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6041
    self origin:aPoint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6042
    self create.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6043
    ^ self openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6044
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6045
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6046
     View new openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6047
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6048
     View new openModelessAt:100@100
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6049
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6050
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6051
    "Created: 18.9.1995 / 23:21:42 / claus"
560
968d062c79cb oops - openAt did set transient; definitely wrong ...
Claus Gittinger <cg@exept.de>
parents: 527
diff changeset
  6052
    "Modified: 12.4.1996 / 19:02:28 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6053
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6054
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6055
openModelessAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6056
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6057
     (i.e. circumvents window managers positioning)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6058
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6059
    ^ self openModelessAt:(device center - (self extent//2)).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6060
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6061
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6062
     View new openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6063
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6064
     View new openModelessAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6065
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6066
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6067
    "Created: 18.9.1995 / 23:21:42 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6068
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6069
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6070
waitUntilVisible
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6071
    "wait until the receiver visible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6072
     In normal applications, you do not need to wait till a view is
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6073
     open - it should do all of its drawing itself when it gets the
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6074
     first expose event.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6075
     However, if you want to 'manually' draw into the view (for example,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6076
     in doIt expressions), or subsequent views depend on some state of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6077
     another view (which is only available once visible), 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6078
     use this to suspend the current process until the receiver is shown.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6079
     Caveat:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6080
	we poll here for the view to be shown - we need a semaphore
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6081
	which is raised by the view in order to do it right."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6082
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6083
    [self shown] whileFalse:[
371
cc32d8f8bc8d use new Delay-wait
Claus Gittinger <cg@exept.de>
parents: 370
diff changeset
  6084
	Delay waitForSeconds:0.05.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6085
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6086
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6087
    "does not work (the view is in its opening phase,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6088
     when we attempt to draw a line - this gives an error, since
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6089
     its internals are not yet correctly setup):
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6090
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6091
	|v|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6092
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6093
	v := View new open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6094
	v displayLineFrom:0@0 to:50@50
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6095
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6096
     does work (since we wait until the view has completely finished
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6097
     its startup phase):
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6098
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6099
	|v|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6100
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6101
	v := View new open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6102
	v waitUntilVisible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6103
	v displayLineFrom:0@0 to:50@50
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6104
    "
135
claus
parents:
diff changeset
  6105
! !
claus
parents:
diff changeset
  6106
claus
parents:
diff changeset
  6107
!SimpleView methodsFor:'user notification'!
claus
parents:
diff changeset
  6108
claus
parents:
diff changeset
  6109
warn:aString
claus
parents:
diff changeset
  6110
    "like Objects warn, but translates the string via the
claus
parents:
diff changeset
  6111
     resourcePack, thus giving a translated string automatically"
claus
parents:
diff changeset
  6112
151
claus
parents: 145
diff changeset
  6113
    super warn:(resources string:aString) withCRs
135
claus
parents:
diff changeset
  6114
!
claus
parents:
diff changeset
  6115
claus
parents:
diff changeset
  6116
warn:aString with:argument
claus
parents:
diff changeset
  6117
    "like Objects warn, but translates the string via the
claus
parents:
diff changeset
  6118
     resourcePack, thus giving a translated string automatically"
claus
parents:
diff changeset
  6119
151
claus
parents: 145
diff changeset
  6120
    super warn:(resources string:aString with:argument) withCRs
claus
parents: 145
diff changeset
  6121
!
claus
parents: 145
diff changeset
  6122
claus
parents: 145
diff changeset
  6123
warn:aString with:arg1 with:arg2
claus
parents: 145
diff changeset
  6124
    "like Objects warn, but translates the string via the
claus
parents: 145
diff changeset
  6125
     resourcePack, thus giving a translated string automatically"
claus
parents: 145
diff changeset
  6126
claus
parents: 145
diff changeset
  6127
    super warn:(resources string:aString with:arg1 with:arg2) withCRs
135
claus
parents:
diff changeset
  6128
! !
claus
parents:
diff changeset
  6129
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6130
!SimpleView class methodsFor:'documentation'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6131
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6132
version
754
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  6133
    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.110 1996-05-28 20:33:30 cg Exp $'
135
claus
parents:
diff changeset
  6134
! !
claus
parents:
diff changeset
  6135
SimpleView initialize!