SimpleView.st
author Claus Gittinger <cg@exept.de>
Tue, 28 May 1996 18:29:33 +0200
changeset 729 d2fdca1c2895
parent 727 bf23a306b6f2
child 734 1a778cedbbf5
permissions -rw-r--r--
eliminated references to RootView
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
724
fce5e9ad7837 removed window & viewport stuff (old ST80 support)
Claus Gittinger <cg@exept.de>
parents: 718
diff changeset
    17
		relativeCorner originRule extentRule cornerRule insets 
312
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
    18
		layout shown hiddenOnRealize name level margin innerClipRect
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
    19
		shadowColor lightColor bitGravity viewGravity controller
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
    20
		windowGroup'
358
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
    21
	classVariableNames:'Grey CentPoint ViewSpacing DefaultStyle StyleSheet
312
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
    22
		DefaultViewBackgroundColor DefaultBorderColor DefaultLightColor
472
621c17076f00 static menus override dynamic ones (is this good ?)
Claus Gittinger <cg@exept.de>
parents: 468
diff changeset
    23
		DefaultShadowColor DefaultBorderWidth DefaultFocusColor
621c17076f00 static menus override dynamic ones (is this good ?)
Claus Gittinger <cg@exept.de>
parents: 468
diff changeset
    24
		DefaultFocusBorderWidth ReturnFocusWhenClosingModalBoxes'
358
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
    25
	poolDictionaries:''
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
    26
	category:'Views-Basic'
135
claus
parents:
diff changeset
    27
!
claus
parents:
diff changeset
    28
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    29
SimpleView class instanceVariableNames:'ClassResources DefaultFont'
140
claus
parents: 138
diff changeset
    30
!
135
claus
parents:
diff changeset
    31
claus
parents:
diff changeset
    32
!SimpleView class methodsFor:'documentation'!
claus
parents:
diff changeset
    33
claus
parents:
diff changeset
    34
copyright
claus
parents:
diff changeset
    35
"
claus
parents:
diff changeset
    36
 COPYRIGHT (c) 1989 by Claus Gittinger
claus
parents:
diff changeset
    37
	      All Rights Reserved
claus
parents:
diff changeset
    38
claus
parents:
diff changeset
    39
 This software is furnished under a license and may be used
claus
parents:
diff changeset
    40
 only in accordance with the terms of that license and with the
claus
parents:
diff changeset
    41
 inclusion of the above copyright notice.   This software may not
claus
parents:
diff changeset
    42
 be provided or otherwise made available to, or used by, any
claus
parents:
diff changeset
    43
 other person.  No title to or ownership of the software is
claus
parents:
diff changeset
    44
 hereby transferred.
claus
parents:
diff changeset
    45
"
claus
parents:
diff changeset
    46
!
claus
parents:
diff changeset
    47
claus
parents:
diff changeset
    48
documentation
claus
parents:
diff changeset
    49
"
claus
parents:
diff changeset
    50
    this class implements functions common to all Views which do not work on / show a model. 
claus
parents:
diff changeset
    51
    Previously, all of this functionality used to be in the old View class, but has been
claus
parents:
diff changeset
    52
    separated into this new SimpleView (which does not know about models) and the new View, which
claus
parents:
diff changeset
    53
    does so.
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    54
    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
    55
    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
    56
    (there are simply too many subclasses of View around ...).
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    57
135
claus
parents:
diff changeset
    58
    Instances of SimpleView are seldom used, most views in the system inherit 
claus
parents:
diff changeset
    59
    from this class. 
claus
parents:
diff changeset
    60
    However, sometimes a view is used to create a dummy view for framing 
claus
parents:
diff changeset
    61
    or layout purposes.
claus
parents:
diff changeset
    62
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
    63
    [Instance variables:]
135
claus
parents:
diff changeset
    64
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    65
        superView               <View>                  my superview i.e. the view I am in
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    66
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    67
        subViews                <Collection>            the collection of subviews
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    68
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    69
        components              <Collection>            collection of gadgets (will be merged with subViews, soon)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    70
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    71
        borderColor             <Color>                 color of border
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    72
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    73
        borderWidth             <Number>                borderWidth in pixels (device dep.)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    74
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    75
        borderShape             <Form>                  shape of border (if device supports it)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    76
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    77
        viewShape               <Form>                  shape of view (if device supports it)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    78
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    79
        top                     <Number>                actual top coordinate (pixels) in superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    80
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    81
        left                    <Number>                actual left coordinate (pixels) in superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    82
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    83
        extendChanged           <Boolean>               true if extend changed during setup
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    84
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    85
        originChanged           <Boolean>               true if origin changed during setup
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    86
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    87
        relativeOrigin          <Number>                relative origin in percent within superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    88
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    89
        relativeExtent          <Number>                relative extent in percent within superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    90
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    91
        relativeCorner          <Number>                relative corner in percent within superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    92
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    93
        originRule              <Block>                 rule to compute origin if superview changes size
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    94
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    95
        extentRule              <Block>                 rule to compute extent if superview changes size
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    96
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    97
        cornerRule              <Block>                 rule to compute corner if superview changes size
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    98
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    99
        insets                  <Array>                 array with top, left, bottom & right insets (or nil)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   100
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   101
        layout                  <LayoutObject>          not yet implemented - will replace the above layout
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   102
                                                        variables.
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
        shown                   <Boolean>               true if visible (false if iconified, unmapped or covered)
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
        hiddenOnRealize         <Boolean>               dont show automatically when superview is realized
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
        name                    <String>                my name (future use for resources)
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
        level                   <Number>                3D level relative to superview
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   111
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   112
        margin                  <Number>                convenient margin
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   113
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   114
        innerClipRect           <Rectangle>             convenient inner clip (minus margin)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   115
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   116
        shadowColor             <Color>                 color used to draw 3D shadowed edges
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   117
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   118
        lightColor              <Color>                 color used to draw 3D lighted edges
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   119
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   120
        bitGravity              <nil | Symbol>          gravity of contents (if device supports it)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   121
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   122
        viewGravity             <nil | Symbol>          gravity of view (if device supports it)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   123
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   124
        controller              <nil | Controller>      the controller (if any)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   125
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   126
        windowGroup             <WindowGroup>           the windowGroup
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   127
135
claus
parents:
diff changeset
   128
claus
parents:
diff changeset
   129
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   130
    [Class variables:]
135
claus
parents:
diff changeset
   131
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   132
        Grey                    <Color>                 the color grey - its used so often
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   133
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   134
        ViewSpacing             <Number>                preferred spacing between views; 1mm
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   135
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   136
        CentPoint               <Point>                 100 @ 100 - its used so often
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   137
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   138
        StyleSheet              <ResourcePack>          contains all view-style specifics
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   139
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   140
        ReturnFocusWhenClosingModalBoxes                if true, a closing modalBox returns
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   141
                                <Boolean>               the keyboard focus to the view which was
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   142
                                                        active when the box was opened.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   143
                                                        If false (the default), it is left to
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   144
                                                        window manager to assign a new focus.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   145
                                                        If running on olwm/olvwm (which requires an
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   146
                                                        explicit click to reassign a focus), it is
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   147
                                                        better to turn this on in a private.rc file.
135
claus
parents:
diff changeset
   148
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   149
    [styleSheet parameters:]
135
claus
parents:
diff changeset
   150
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   151
        popupShadow             <Boolean>               if true, popupViews show a shadow below
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   152
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   153
        popupLevel              <nil | Integer>         3D level
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   154
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   155
        borderWidth             <nil | Integer>         borderWidth (ignored in 3D styles)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   156
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   157
        borderColor             <nil | Color>           borderColor (ignored in 3D styles)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   158
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   159
        viewBackground          <nil | Color>           views background
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   160
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   161
        shadowColor             <nil | Color>           color for shadow edges (ignored in 2D styles)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   162
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   163
        lightColor              <nil | Color>           color for light edges (ignored in 2D styles)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   164
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   165
        font                    <nil | Font>            font to use
135
claus
parents:
diff changeset
   166
claus
parents:
diff changeset
   167
claus
parents:
diff changeset
   168
    TODO:
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   169
        get rid of relativeOrigin, relativeCorner, originRule, extentRule,
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   170
        and insets; replace by a single object which defines the size
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   171
        (mhmh - ST-80 seems to call this LayoutFrame ?)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   172
        -> 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
   173
           access methods to get those instance variables' values
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   174
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   175
        get rid of 3D level & margin, move it to extra wrappers
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   176
        (although this will make view setup more complicated, it will remove
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   177
         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
   178
         varieties of borders.)
151
claus
parents: 145
diff changeset
   179
        
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   180
        add components (could also call them gadgets or lightweight views)
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   181
        - 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
   182
        framing/edge and panel helper views become cheap ST objects, instead
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
   183
        of views.
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   184
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   185
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   186
    [see also:]
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   187
        StandardSystemView DialogBox
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   188
        WindowGroup WindowEvent
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   189
        Layout
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   190
        ( introduction to view programming :html: programming/viewintro.html )
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   191
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   192
    [author:]
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   193
        Claus Gittinger
135
claus
parents:
diff changeset
   194
"
151
claus
parents: 145
diff changeset
   195
!
claus
parents: 145
diff changeset
   196
claus
parents: 145
diff changeset
   197
examples 
claus
parents: 145
diff changeset
   198
"
claus
parents: 145
diff changeset
   199
    (all examples below use different viewBackgrounds, 
claus
parents: 145
diff changeset
   200
     to make the individual subviews visible)
claus
parents: 145
diff changeset
   201
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   202
    a subView in a topView:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   203
                                                                        [exBegin]
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   204
        |top v|
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   205
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   206
        topView := StandardSystemView new.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   207
        v := View new.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   208
        v origin:0.25 @ 0.25 corner:0.75 @ 0.75.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   209
        top addSubView:v.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   210
        top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   211
                                                                        [exEnd]
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   212
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   213
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   214
    the same, a bit more compact:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   215
                                                                        [exBegin]
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   216
        |top v|
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   217
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   218
        topView := StandardSystemView new.
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   219
        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
   220
        top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   221
                                                                        [exEnd]
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   222
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   223
151
claus
parents: 145
diff changeset
   224
    fixed position/size:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   225
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   226
       |top v1 v2|
claus
parents: 145
diff changeset
   227
claus
parents: 145
diff changeset
   228
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   229
       top extent:300@300.
claus
parents: 145
diff changeset
   230
claus
parents: 145
diff changeset
   231
       v1 := View origin:10@10
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   232
                  corner:50@50
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   233
                      in:top.
151
claus
parents: 145
diff changeset
   234
       v2 := View origin:60@10
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   235
                  corner:150@100
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   236
                      in:top.
151
claus
parents: 145
diff changeset
   237
claus
parents: 145
diff changeset
   238
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   239
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   240
claus
parents: 145
diff changeset
   241
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   242
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   243
claus
parents: 145
diff changeset
   244
    same, using ST-80 way of bulding up view hierarchies
claus
parents: 145
diff changeset
   245
    (recommended, if you plan to port applications later)
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   246
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   247
       |top v1 v2|
claus
parents: 145
diff changeset
   248
claus
parents: 145
diff changeset
   249
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   250
       top extent:300@300.
claus
parents: 145
diff changeset
   251
claus
parents: 145
diff changeset
   252
       v1 := View new.
claus
parents: 145
diff changeset
   253
       v1 origin:10@10 corner:50@50.
claus
parents: 145
diff changeset
   254
claus
parents: 145
diff changeset
   255
       v2 := View new.
claus
parents: 145
diff changeset
   256
       v2 origin:60@10 corner:150@100.
claus
parents: 145
diff changeset
   257
claus
parents: 145
diff changeset
   258
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   259
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   260
claus
parents: 145
diff changeset
   261
       top add:v1.
claus
parents: 145
diff changeset
   262
       top add:v2.
claus
parents: 145
diff changeset
   263
claus
parents: 145
diff changeset
   264
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   265
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   266
claus
parents: 145
diff changeset
   267
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   268
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   269
claus
parents: 145
diff changeset
   270
    fixed origin, variable size:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   271
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   272
       |top v1 v2|
claus
parents: 145
diff changeset
   273
claus
parents: 145
diff changeset
   274
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   275
       top extent:300@300.
claus
parents: 145
diff changeset
   276
claus
parents: 145
diff changeset
   277
       v1 := View new.
claus
parents: 145
diff changeset
   278
       v1 origin:10@10 corner:50@0.5.
claus
parents: 145
diff changeset
   279
claus
parents: 145
diff changeset
   280
       v2 := View new.
claus
parents: 145
diff changeset
   281
       v2 origin:60@10 corner:150@0.5.
claus
parents: 145
diff changeset
   282
claus
parents: 145
diff changeset
   283
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   284
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   285
claus
parents: 145
diff changeset
   286
       top add:v1.
claus
parents: 145
diff changeset
   287
       top add:v2.
claus
parents: 145
diff changeset
   288
claus
parents: 145
diff changeset
   289
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   290
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   291
claus
parents: 145
diff changeset
   292
    fixed origin, variable size, 
claus
parents: 145
diff changeset
   293
    bottomInset for constant distance from bottom:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   294
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   295
       |top v1 v2|
claus
parents: 145
diff changeset
   296
claus
parents: 145
diff changeset
   297
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   298
       top extent:300@300.
claus
parents: 145
diff changeset
   299
claus
parents: 145
diff changeset
   300
       v1 := View new.
claus
parents: 145
diff changeset
   301
       v1 origin:10@10 corner:50@1.0.
claus
parents: 145
diff changeset
   302
       v1 bottomInset:10.
claus
parents: 145
diff changeset
   303
claus
parents: 145
diff changeset
   304
       v2 := View new.
claus
parents: 145
diff changeset
   305
       v2 origin:60@10 corner:150@1.0.
claus
parents: 145
diff changeset
   306
       v2 bottomInset:10.
claus
parents: 145
diff changeset
   307
claus
parents: 145
diff changeset
   308
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   309
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   310
claus
parents: 145
diff changeset
   311
       top add:v1.
claus
parents: 145
diff changeset
   312
       top add:v2.
claus
parents: 145
diff changeset
   313
claus
parents: 145
diff changeset
   314
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   315
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   316
claus
parents: 145
diff changeset
   317
    variable origin, variable size, 
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   318
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   319
       |top v1 v2|
claus
parents: 145
diff changeset
   320
claus
parents: 145
diff changeset
   321
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   322
       top extent:300@300.
claus
parents: 145
diff changeset
   323
claus
parents: 145
diff changeset
   324
       v1 := View new.
claus
parents: 145
diff changeset
   325
       v1 origin:0.0@0.0 corner:0.5@0.5.
claus
parents: 145
diff changeset
   326
claus
parents: 145
diff changeset
   327
       v2 := View new.
claus
parents: 145
diff changeset
   328
       v2 origin:0.5@0.0 corner:1.0@0.5.
claus
parents: 145
diff changeset
   329
claus
parents: 145
diff changeset
   330
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   331
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   332
claus
parents: 145
diff changeset
   333
       top add:v1.
claus
parents: 145
diff changeset
   334
       top add:v2.
claus
parents: 145
diff changeset
   335
claus
parents: 145
diff changeset
   336
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   337
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   338
claus
parents: 145
diff changeset
   339
    variable origin, variable size, 
claus
parents: 145
diff changeset
   340
    insets for some constant distance
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   341
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   342
       |top v1 v2|
claus
parents: 145
diff changeset
   343
claus
parents: 145
diff changeset
   344
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   345
       top extent:300@300.
claus
parents: 145
diff changeset
   346
claus
parents: 145
diff changeset
   347
       v1 := View new.
claus
parents: 145
diff changeset
   348
       v1 origin:0.0@0.0 corner:0.5@0.5.
claus
parents: 145
diff changeset
   349
       v1 rightInset:5.
claus
parents: 145
diff changeset
   350
claus
parents: 145
diff changeset
   351
       v2 := View new.
claus
parents: 145
diff changeset
   352
       v2 origin:0.5@0.0 corner:1.0@0.5.
claus
parents: 145
diff changeset
   353
       v2 leftInset:5.
claus
parents: 145
diff changeset
   354
claus
parents: 145
diff changeset
   355
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   356
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   357
claus
parents: 145
diff changeset
   358
       top add:v1.
claus
parents: 145
diff changeset
   359
       top add:v2.
claus
parents: 145
diff changeset
   360
claus
parents: 145
diff changeset
   361
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   362
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   363
claus
parents: 145
diff changeset
   364
    using layout objects (ST-80 style):
claus
parents: 145
diff changeset
   365
    fully specifying the frame
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   366
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   367
       |top v1 v2|
claus
parents: 145
diff changeset
   368
claus
parents: 145
diff changeset
   369
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   370
       top extent:300@300.
claus
parents: 145
diff changeset
   371
claus
parents: 145
diff changeset
   372
       v1 := View new.
claus
parents: 145
diff changeset
   373
       v2 := View new.
claus
parents: 145
diff changeset
   374
claus
parents: 145
diff changeset
   375
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   376
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   377
claus
parents: 145
diff changeset
   378
       top add:v1 in:(LayoutFrame new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   379
                        leftFraction:0.25;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   380
                        rightFraction:0.75;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   381
                        topFraction:0.0;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   382
                        bottomFraction:0.5).
151
claus
parents: 145
diff changeset
   383
       top add:v2 in:(LayoutFrame new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   384
                        leftFraction:0.5;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   385
                        rightFraction:1.0;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   386
                        topFraction:0.5;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   387
                        bottomFraction:0.75).
151
claus
parents: 145
diff changeset
   388
claus
parents: 145
diff changeset
   389
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   390
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   391
claus
parents: 145
diff changeset
   392
    another one, with offsets:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   393
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   394
       |top v1 v2|
claus
parents: 145
diff changeset
   395
claus
parents: 145
diff changeset
   396
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   397
       top extent:300@300.
claus
parents: 145
diff changeset
   398
claus
parents: 145
diff changeset
   399
       v1 := View new.
claus
parents: 145
diff changeset
   400
       v2 := View new.
claus
parents: 145
diff changeset
   401
claus
parents: 145
diff changeset
   402
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   403
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   404
claus
parents: 145
diff changeset
   405
       top add:v1 in:(LayoutFrame new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   406
                        leftFraction:0.0 offset:10;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   407
                        rightFraction:1.0 offset:-10;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   408
                        topFraction:0.0 offset:10;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   409
                        bottomFraction:0.5).
151
claus
parents: 145
diff changeset
   410
       top add:v2 in:(LayoutFrame new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   411
                        leftFraction:0.0 offset:30;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   412
                        rightFraction:1.0 offset:-30;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   413
                        topFraction:0.5 offset:10;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   414
                        bottomFraction:0.75).
151
claus
parents: 145
diff changeset
   415
claus
parents: 145
diff changeset
   416
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   417
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   418
claus
parents: 145
diff changeset
   419
    specifying origin only. Extent is views preferred
claus
parents: 145
diff changeset
   420
    (notice, that plain views have some defaultExtent of 100@100)
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   421
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   422
       |top v1 v2|
claus
parents: 145
diff changeset
   423
claus
parents: 145
diff changeset
   424
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   425
       top extent:300@300.
claus
parents: 145
diff changeset
   426
claus
parents: 145
diff changeset
   427
       v1 := View new.
claus
parents: 145
diff changeset
   428
       v2 := View new.
claus
parents: 145
diff changeset
   429
claus
parents: 145
diff changeset
   430
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   431
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   432
claus
parents: 145
diff changeset
   433
       top add:v1 in:(LayoutOrigin new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   434
                        leftFraction:0.25;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   435
                        topFraction:0.0).
151
claus
parents: 145
diff changeset
   436
       top add:v2 in:(LayoutOrigin new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   437
                        leftFraction:0.5;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   438
                        topFraction:0.5).
151
claus
parents: 145
diff changeset
   439
claus
parents: 145
diff changeset
   440
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   441
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   442
claus
parents: 145
diff changeset
   443
    same example, using buttons which compute their preferredBounds:
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   444
                                                                        [exBegin]
151
claus
parents: 145
diff changeset
   445
       |top v1 v2|
claus
parents: 145
diff changeset
   446
claus
parents: 145
diff changeset
   447
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   448
       top extent:300@300.
claus
parents: 145
diff changeset
   449
claus
parents: 145
diff changeset
   450
       v1 := Button label:'foo'.
claus
parents: 145
diff changeset
   451
       v2 := Button label:'a very long buttonLabel'.
claus
parents: 145
diff changeset
   452
claus
parents: 145
diff changeset
   453
       v1 backgroundColor:(Color red).
claus
parents: 145
diff changeset
   454
       v2 backgroundColor:(Color yellow).
claus
parents: 145
diff changeset
   455
claus
parents: 145
diff changeset
   456
       top add:v1 in:(LayoutOrigin new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   457
                        leftFraction:0.25;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   458
                        topFraction:0.0).
151
claus
parents: 145
diff changeset
   459
       top add:v2 in:(LayoutOrigin new
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   460
                        leftFraction:0.5;
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   461
                        topFraction:0.5).
151
claus
parents: 145
diff changeset
   462
claus
parents: 145
diff changeset
   463
       top open
621
decaeae1910d examples
Claus Gittinger <cg@exept.de>
parents: 616
diff changeset
   464
                                                                        [exEnd]
151
claus
parents: 145
diff changeset
   465
"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   466
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   467
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   468
layoutComputation 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   469
"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   470
    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
   471
	- (old, to be eliminated mechanism)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   472
	    based upon info found in 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   473
		relativeOrigin / relativeCorner / relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   474
		originRule / cornerRule / extentRule
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
	- (new, will migrate to that one)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   477
	    letting a layoutObject compute things
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
    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
   480
    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
   481
    geometry is desired.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   482
    However, having 6 instance variables in every view creates some overhead,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   483
    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
   484
    relative-sized).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   485
    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
   486
    to use layoutObjects.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   487
    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
   488
    existing interfaces will (silently) create layoutObjects as appropriate.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   489
    However, you should remove all direct accesses to the above mentioned
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   490
    instance variables, to be prepared for that change.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   491
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   492
    Notice, that a view recomputes its size whenever its superview
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   493
    changes size. This is done via:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   494
	sizeChanged
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   495
	    -> allSubviews: superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   496
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   497
    If the geometry computation as performed in superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   498
    is not powerful enough for your application, you can either:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   499
	- redefine superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   500
	- create a special layoutObject which computes a new layout.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   501
"
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   502
!
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   503
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   504
popupMenus 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   505
"
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   506
    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
   507
    definition:
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   508
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   509
        - static menus
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   510
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   511
        - dynamic menus from the view
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
        - dynamic menus from the model / menuHolder
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
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   516
    static menus
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
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   519
    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
   520
    has a constant menu which never changes.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   521
    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
   522
    The menu is defined with:
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
        someView middleButtonMenu:<aPopUpMenu>
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   525
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   526
    Compatibility note: 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   527
        static menus should no longer be used - their operation
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   528
        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
   529
        Do not use them if you care for compatibility.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   530
    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
   531
    (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
   532
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   533
    example:
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   534
        |top v1 v2|
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   535
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   536
        top := StandardSystemView new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   537
        top extent:300@300.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   538
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   539
        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
   540
        v1 viewBackground:Color red.
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
        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
   543
        v2 viewBackground:Color yellow.
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
        v1 middleButtonMenu:(
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   546
                                PopUpMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   547
                                   labels:#('foo' 'bar')
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   548
                                   selectors:#(foo bar)
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   549
                                   receiver:v1
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
                                        
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   552
        top open.
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
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   555
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   556
    dynamic menus
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   557
    -------------
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   558
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   559
    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
   560
    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
   561
    (i.e. it may be different from the model).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   562
    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
   563
    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
   564
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   565
    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
   566
    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
   567
    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
   568
    by textViews.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   569
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   570
    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
   571
    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
   572
    - so the textView still performs the copy-function correctly 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   573
    (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
   574
    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
   575
    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
   576
    (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
   577
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   578
        |top v1 v2 holder|
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   579
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   580
        holder := Plug new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   581
        holder respondTo:#menu1
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   582
                    with:[
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   583
                            v1 menuMessage:#otherMenu1.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   584
                            PopUpMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   585
                                labels:#('foo' 'bar')
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   586
                                selectors:#(foo bar).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   587
                         ].
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   588
        holder respondTo:#otherMenu1
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   589
                    with:[  
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   590
                            v1 menuMessage:#menu1.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   591
                            PopUpMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   592
                                labels:#('other foo' 'other bar')
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   593
                                selectors:#(foo bar).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   594
                         ].
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   595
        holder respondTo:#menu2
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   596
                    with:[  PopUpMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   597
                                labels:#('copy' 'bar2')
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   598
                                selectors:#(copySelection bar2)
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   599
                         ].
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   600
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   601
        top := StandardSystemView new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   602
        top extent:300@300.
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
        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
   605
        v1 viewBackground:Color red.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   606
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   607
        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
   608
        v2 contents:'pop me up'.
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
        v1 model:holder; menuMessage:#menu1.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   611
        v2 menuHolder:holder; menuMessage:#menu2.
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
        top open.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   614
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   615
    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
   616
    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
   617
    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
   618
    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
   619
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   620
    example:
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   621
    (Notice: the executor understands the #copySelection message - therefore, the
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   622
     views built-in copy is NOT performed 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   623
     - it could be forwarded to the view, though.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   624
     This could be useful to intercept/filter things).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   625
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   626
        |top v menuProvider menuExecutor |
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   627
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   628
        menuProvider := Plug new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   629
        menuProvider respondTo:#menu
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   630
                    with:[  PopUpMenu 
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   631
                                labels:#('copy' 'foo')
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   632
                                selectors:#(copySelection foo)
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   633
                         ].
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
        menuExecutor := Plug new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   636
        menuExecutor respondTo:#copySelection 
697
cba925eed3da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 696
diff changeset
   637
                           with:[Transcript showCR:'copy function'].
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   638
        menuExecutor respondTo:#foo 
697
cba925eed3da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 696
diff changeset
   639
                           with:[Transcript showCR:'foo function'].
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   640
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   641
        top := StandardSystemView new.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   642
        top extent:300@300.
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
        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
   645
        v contents:'pop me up'.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   646
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   647
        v menuHolder:menuProvider; menuMessage:#menu.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   648
        v menuPerformer:menuExecutor.
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 open.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   651
"
135
claus
parents:
diff changeset
   652
! !
claus
parents:
diff changeset
   653
claus
parents:
diff changeset
   654
!SimpleView class methodsFor:'initialization'!
claus
parents:
diff changeset
   655
claus
parents:
diff changeset
   656
initialize
claus
parents:
diff changeset
   657
    DefaultStyle isNil ifTrue:[
696
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   658
        Font initialize.
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   659
        Form initialize.
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   660
        Color initialize.
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   661
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   662
"/        Display notNil ifTrue:[
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   663
"/            self defaultStyle:#normal.
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   664
"/        ].
135
claus
parents:
diff changeset
   665
claus
parents:
diff changeset
   666
"/    self updateStyleCache.
696
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   667
        self == SimpleView ifTrue:[
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   668
            Smalltalk addDependent:self   "/ to get language changes
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   669
        ]
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   670
    ].
365
347a478d8cf5 default returnFocus to false
Claus Gittinger <cg@exept.de>
parents: 364
diff changeset
   671
    ReturnFocusWhenClosingModalBoxes := false.
696
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   672
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   673
    "Modified: 18.5.1996 / 16:56:28 / cg"
135
claus
parents:
diff changeset
   674
!
claus
parents:
diff changeset
   675
claus
parents:
diff changeset
   676
postAutoload
claus
parents:
diff changeset
   677
    self updateStyleCache.
claus
parents:
diff changeset
   678
! !
claus
parents:
diff changeset
   679
claus
parents:
diff changeset
   680
!SimpleView class methodsFor:'instance creation'!
claus
parents:
diff changeset
   681
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   682
extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   683
    "create a new view with given extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   684
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   685
    ^ self origin:nil extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   686
		      font:nil label:nil in:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   687
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   688
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   689
extent:extent in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   690
    "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
   691
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   692
    ^ self origin:nil extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   693
		      font:nil label:nil in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   694
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   695
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   696
extent:extent label:label
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   697
    "create a new view with given extent and label"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   698
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   699
    ^ self origin:nil extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   700
		      font:nil label:label in:nil
135
claus
parents:
diff changeset
   701
!
claus
parents:
diff changeset
   702
claus
parents:
diff changeset
   703
in:aView
claus
parents:
diff changeset
   704
    "return a new view as a subview of aView.
claus
parents:
diff changeset
   705
     If aView is nil, it is left unspecified, in which superview
claus
parents:
diff changeset
   706
     the new view will be placed. The view can later be assigned
claus
parents:
diff changeset
   707
     by adding it to the superview via #addSubView:.
claus
parents:
diff changeset
   708
     If realized and no superview has ever been set, it will come
claus
parents:
diff changeset
   709
     up as a topview."
claus
parents:
diff changeset
   710
claus
parents:
diff changeset
   711
    |newView|
claus
parents:
diff changeset
   712
claus
parents:
diff changeset
   713
    newView := self basicNew.
claus
parents:
diff changeset
   714
    aView notNil ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
   715
        newView device:(aView device).
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
   716
        newView container:aView.
135
claus
parents:
diff changeset
   717
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
   718
        newView device:Screen current "Display"
135
claus
parents:
diff changeset
   719
    ].
claus
parents:
diff changeset
   720
    newView initialize.
claus
parents:
diff changeset
   721
    aView notNil ifTrue:[aView addSubView:newView].
claus
parents:
diff changeset
   722
    ^ newView
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
   723
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
   724
    "Modified: 9.5.1996 / 00:41:49 / cg"
135
claus
parents:
diff changeset
   725
!
claus
parents:
diff changeset
   726
140
claus
parents: 138
diff changeset
   727
label:label
claus
parents: 138
diff changeset
   728
    "create a new view with given label"
135
claus
parents:
diff changeset
   729
claus
parents:
diff changeset
   730
    ^ self origin:nil extent:nil borderWidth:nil
140
claus
parents: 138
diff changeset
   731
		      font:nil label:label in:nil
claus
parents: 138
diff changeset
   732
!
claus
parents: 138
diff changeset
   733
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   734
label:label in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   735
    "create a new view as subview of aView with given label"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   736
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   737
    ^ self origin:nil extent:nil borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   738
		      font:nil label:label in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   739
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   740
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   741
on:aModel
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   742
    "create a new drawable on aModel"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   743
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   744
    "although this one does not know about models,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   745
     it can still send the model-assign message. This was done
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   746
     to catch obsolete calls to on:aDevice.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   747
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   748
    ^ self new model:aModel.
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   751
onSameDeviceAs:anotherView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   752
    "create a view on the same device as anotherView.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   753
     Used with popUpMenus, which should be created on the device of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   754
     its masterView."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   755
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   756
    |device|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   757
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   758
    anotherView notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   759
	device := anotherView device.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   760
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   761
	device := Screen current "Display".
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   762
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   763
    ^ self onDevice:device
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   766
origin:origin corner:corner 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   767
    "create a new view with given origin and extent"
135
claus
parents:
diff changeset
   768
140
claus
parents: 138
diff changeset
   769
    ^ self origin:origin corner:corner borderWidth:nil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   770
			 font:nil label:nil in:nil
135
claus
parents:
diff changeset
   771
!
claus
parents:
diff changeset
   772
claus
parents:
diff changeset
   773
origin:anOrigin corner:aCorner borderWidth:bw font:aFont label:aLabel in:aView
claus
parents:
diff changeset
   774
    |newView|
claus
parents:
diff changeset
   775
claus
parents:
diff changeset
   776
    aView notNil ifTrue:[
claus
parents:
diff changeset
   777
	newView := self basicNew.
claus
parents:
diff changeset
   778
	newView device:(aView device).
376
2c81dc024e73 initialize views BEFORE sending addSubView to superview
ah
parents: 372
diff changeset
   779
	newView initialize.
135
claus
parents:
diff changeset
   780
	aView addSubView:newView.
claus
parents:
diff changeset
   781
    ] ifFalse:[
151
claus
parents: 145
diff changeset
   782
	newView := self onDevice:Screen current "Display"
135
claus
parents:
diff changeset
   783
    ].
claus
parents:
diff changeset
   784
    bw notNil ifTrue:[newView borderWidth:bw].
claus
parents:
diff changeset
   785
    anOrigin notNil ifTrue:[newView origin:anOrigin].
claus
parents:
diff changeset
   786
    aCorner notNil ifTrue:[newView corner:aCorner].
claus
parents:
diff changeset
   787
    aFont notNil ifTrue:[newView font:aFont].
claus
parents:
diff changeset
   788
    aLabel notNil ifTrue:[newView label:aLabel].
claus
parents:
diff changeset
   789
    ^ newView
claus
parents:
diff changeset
   790
!
claus
parents:
diff changeset
   791
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   792
origin:origin corner:corner borderWidth:bw in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   793
    "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
   794
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   795
    ^ self origin:origin corner:corner borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   796
			 font:nil label:nil in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   797
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   798
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   799
origin:origin corner:corner in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   800
    "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
   801
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   802
    ^ self origin:origin corner:corner borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   803
			 font:nil label:nil in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   804
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   805
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   806
origin:origin extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   807
    "create a new view with given origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   808
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   809
    ^ self origin:origin extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   810
			 font:nil label:nil in:nil
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   813
origin:origin extent:extent borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   814
    "create a new view with given origin, extent and borderWidth"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   815
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   816
    ^ self origin:origin extent:extent borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   817
			 font:nil label:nil in:nil
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   820
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
   821
    |newView|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   822
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   823
    aView notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   824
	newView := self basicNew.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   825
	newView device:(aView device).
376
2c81dc024e73 initialize views BEFORE sending addSubView to superview
ah
parents: 372
diff changeset
   826
	newView initialize.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   827
	aView addSubView:newView.
140
claus
parents: 138
diff changeset
   828
    ] ifFalse:[
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   829
	newView := self onDevice:Screen current "Display"
140
claus
parents: 138
diff changeset
   830
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   831
    bw notNil ifTrue:[newView borderWidth:bw].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   832
    anExtent notNil ifTrue:[newView extent:anExtent].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   833
    anOrigin notNil ifTrue:[newView origin:anOrigin].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   834
    aFont notNil ifTrue:[newView font:aFont].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   835
    aLabel notNil ifTrue:[newView label:aLabel].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   836
    ^ newView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   837
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   838
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   839
origin:origin extent:extent borderWidth:bw in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   840
    "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
   841
     and borderWidth"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   842
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   843
    ^ self origin:origin extent:extent borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   844
			 font:nil label:nil in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   845
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   846
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   847
origin:origin extent:extent font:aFont label:label
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   848
    ^ self origin:origin extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   849
			 font:nil label:label in:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   850
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   851
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   852
origin:origin extent:extent font:aFont label:label in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   853
    ^ self origin:origin extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   854
			 font:aFont label:label in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   855
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   856
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   857
origin:origin extent:extent in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   858
    "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
   859
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   860
    ^ self origin:origin extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   861
			 font:nil label:nil in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   862
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   863
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   864
origin:origin extent:extent label:label
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   865
    "create a new view with given origin, extent and label"
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
    ^ self origin:origin extent:extent borderWidth:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   868
			 font:nil label:label in:nil
135
claus
parents:
diff changeset
   869
!
claus
parents:
diff changeset
   870
claus
parents:
diff changeset
   871
origin:anOrigin extent:anExtent
claus
parents:
diff changeset
   872
		label:aLabel icon:aForm
claus
parents:
diff changeset
   873
		minExtent:minExtent maxExtent:maxExtent
claus
parents:
diff changeset
   874
    |newView|
claus
parents:
diff changeset
   875
151
claus
parents: 145
diff changeset
   876
    newView := self onDevice:Screen current "Display".
135
claus
parents:
diff changeset
   877
    anOrigin notNil ifTrue:[newView origin:anOrigin].
claus
parents:
diff changeset
   878
    anExtent notNil ifTrue:[newView extent:anExtent].
claus
parents:
diff changeset
   879
    aLabel notNil ifTrue:[newView label:aLabel].
claus
parents:
diff changeset
   880
    aForm notNil ifTrue:[newView icon:aForm].
claus
parents:
diff changeset
   881
    minExtent notNil ifTrue:[newView minExtent:minExtent].
claus
parents:
diff changeset
   882
    maxExtent notNil ifTrue:[newView maxExtent:maxExtent].
claus
parents:
diff changeset
   883
    ^ newView
claus
parents:
diff changeset
   884
!
claus
parents:
diff changeset
   885
140
claus
parents: 138
diff changeset
   886
origin:origin in:aView
claus
parents: 138
diff changeset
   887
    "create a new view as a subview of aView with given origin"
claus
parents: 138
diff changeset
   888
claus
parents: 138
diff changeset
   889
    ^ self origin:origin extent:nil borderWidth:nil
claus
parents: 138
diff changeset
   890
			 font:nil label:nil in:aView
135
claus
parents:
diff changeset
   891
! !
claus
parents:
diff changeset
   892
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   893
!SimpleView class methodsFor:'change & update'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   894
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   895
update:something
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   896
    something == #Language ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   897
	"flush resources on language changes"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   898
	self flushAllClassResources
135
claus
parents:
diff changeset
   899
    ]
claus
parents:
diff changeset
   900
! !
claus
parents:
diff changeset
   901
claus
parents:
diff changeset
   902
!SimpleView class methodsFor:'defaults'!
claus
parents:
diff changeset
   903
140
claus
parents: 138
diff changeset
   904
defaultExtent
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
   905
    "return the default extent of my instances.
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
   906
     The value returned here is usually ignored, and
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
   907
     the value from preferredExtent taken instead."
140
claus
parents: 138
diff changeset
   908
claus
parents: 138
diff changeset
   909
    CentPoint isNil ifTrue:[CentPoint := 100 @ 100].
claus
parents: 138
diff changeset
   910
    ^ CentPoint
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
   911
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
   912
    "Modified: 22.4.1996 / 23:38:39 / cg"
140
claus
parents: 138
diff changeset
   913
!
claus
parents: 138
diff changeset
   914
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   915
defaultFont
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   916
    DefaultFont notNil ifTrue:[^ DefaultFont].
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   917
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   918
    DefaultFont isNil ifTrue:[
467
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   919
        self == SimpleView ifFalse:[
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   920
            DefaultFont := self superclass defaultFont.
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   921
        ] ifTrue:[
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   922
"/            DefaultFont := super defaultFont
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   923
        ].
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   924
    ].
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   925
    DefaultFont notNil ifTrue:[DefaultFont := DefaultFont on:Display].
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   926
    ^ DefaultFont
467
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   927
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   928
    "Modified: 27.2.1996 / 02:20:54 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   929
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   930
450
9eb6198de8f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 433
diff changeset
   931
defaultFont:aFont
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   932
    "set the default font used for drawing"
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   933
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   934
    DefaultFont := aFont.
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   935
    aFont notNil ifTrue:[
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   936
        DefaultFont := aFont on:Display
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   937
    ]
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   938
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   939
    "Modified: 18.3.1996 / 12:56:20 / cg"
450
9eb6198de8f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 433
diff changeset
   940
!
9eb6198de8f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 433
diff changeset
   941
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   942
defaultStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   943
    "return the default view style"
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
    ^ DefaultStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   946
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   947
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   948
     View defaultStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   949
    "
135
claus
parents:
diff changeset
   950
!
claus
parents:
diff changeset
   951
claus
parents:
diff changeset
   952
defaultStyle:aStyle
claus
parents:
diff changeset
   953
    "set the view style for new views"
claus
parents:
diff changeset
   954
180
claus
parents: 176
diff changeset
   955
"/    aStyle ~~ DefaultStyle ifTrue:[
135
claus
parents:
diff changeset
   956
	DefaultStyle := aStyle.
claus
parents:
diff changeset
   957
	self updateAllStyleCaches.
180
claus
parents: 176
diff changeset
   958
"/    ]
135
claus
parents:
diff changeset
   959
claus
parents:
diff changeset
   960
    "
claus
parents:
diff changeset
   961
     View defaultStyle:#next. SystemBrowser start
claus
parents:
diff changeset
   962
     View defaultStyle:#motif. SystemBrowser start
claus
parents:
diff changeset
   963
     View defaultStyle:#iris. SystemBrowser start
claus
parents:
diff changeset
   964
     View defaultStyle:#st80. SystemBrowser start
claus
parents:
diff changeset
   965
     View defaultStyle:#normal. SystemBrowser start
claus
parents:
diff changeset
   966
    "
claus
parents:
diff changeset
   967
!
claus
parents:
diff changeset
   968
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   969
returnFocusWhenClosingModalBoxes
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   970
    "return the current focus-return behavior.
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   971
     See #returnFocusWhenClosingModalBoxes: for a description."
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   972
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   973
    ^ ReturnFocusWhenClosingModalBoxes
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   974
!
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   975
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   976
returnFocusWhenClosingModalBoxes:aBoolean
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   977
    "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
   978
     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
   979
     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
   980
     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
   981
     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
   982
     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
   983
     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
   984
     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
   985
     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
   986
     display.rc file."
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 := aBoolean
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   989
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   990
    "
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   991
     Dialog returnFocusWhenClosingModalBoxes:false
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   992
     Dialog returnFocusWhenClosingModalBoxes:true
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   993
    "
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   994
!
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
   995
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   996
styleSheet:aViewStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   997
    "set the view style from a style-sheet"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   998
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   999
    StyleSheet := aViewStyle.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1000
    DefaultStyle := (StyleSheet at:'name' ifAbsent:'unknown') asSymbol.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1001
    self updateAllStyleCaches.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1002
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1003
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1004
updateAllStyleCaches
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1005
    "reload all style caches in all view classes.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1006
     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
  1007
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1008
    StyleSheet := ViewStyle fromFile:(DefaultStyle , '.style').
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1009
    StyleSheet fileReadFailed ifTrue:[
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1010
        ('***** WARNING: no styleSheet for ' , DefaultStyle , '-style.') errorPrintNL.
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1011
        DefaultStyle ~~ #normal ifTrue:[
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1012
            DefaultStyle := #normal.
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1013
            StyleSheet := ViewStyle fromFile:(DefaultStyle , '.style').
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1014
        
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1015
            StyleSheet fileReadFailed ifTrue:[
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1016
                '***** 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
  1017
            ]
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1018
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1019
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1020
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1021
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1022
     tell all view classes to flush any
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1023
     cached style-data
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1024
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1025
    self changed:#style.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1026
    SimpleView updateStyleCache.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1027
    SimpleView allSubclassesDo:[:aClass |
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1028
        aClass defaultFont:nil.
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1029
        (aClass class implements:#updateStyleCache) ifTrue:[
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1030
            aClass updateStyleCache
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1031
        ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1032
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1033
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
     View updateAllStyleCaches
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1036
    "
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1037
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1038
    "Modified: 18.3.1996 / 12:56:26 / cg"
269
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
135
claus
parents:
diff changeset
  1041
updateStyleCache
claus
parents:
diff changeset
  1042
    "this method gets some heavily used style stuff and keeps
claus
parents:
diff changeset
  1043
     it in class-variables for faster access.
claus
parents:
diff changeset
  1044
     Subclasses should redefine this to load any cached style-values
claus
parents:
diff changeset
  1045
     into faster class variables as well. These should NOT do a 
claus
parents:
diff changeset
  1046
     super updateStyleCache, since this method is called for all view-classes
claus
parents:
diff changeset
  1047
     anyway."
claus
parents:
diff changeset
  1048
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1049
    <resource: #style (#viewSpacing #font #borderWidth
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1050
                       #viewBackground #shadowColor #lightColor
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1051
                       #focusColor #focusBorderWidth)>
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1052
135
claus
parents:
diff changeset
  1053
    |bgGrey|
claus
parents:
diff changeset
  1054
claus
parents:
diff changeset
  1055
    "
claus
parents:
diff changeset
  1056
     when coming here the first time, we read the styleSheet
claus
parents:
diff changeset
  1057
     and keep the values in fast class variables
claus
parents:
diff changeset
  1058
    "
claus
parents:
diff changeset
  1059
    StyleSheet isNil ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1060
        DefaultStyle := #normal.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1061
        StyleSheet := ViewStyle fromFile:'normal.style'.
135
claus
parents:
diff changeset
  1062
    ].
claus
parents:
diff changeset
  1063
claus
parents:
diff changeset
  1064
    Grey := StyleSheet viewGrey.
claus
parents:
diff changeset
  1065
    Grey isNil ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1066
        Grey := Color grey
135
claus
parents:
diff changeset
  1067
    ].
claus
parents:
diff changeset
  1068
    Grey := Grey on:Display.
claus
parents:
diff changeset
  1069
151
claus
parents: 145
diff changeset
  1070
    StyleSheet fileReadFailed ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1071
        bgGrey := White
135
claus
parents:
diff changeset
  1072
    ] ifFalse:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1073
        Display hasGreyscales ifTrue:[
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1074
            bgGrey := Grey
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1075
        ] ifFalse:[
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1076
            bgGrey := White 
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1077
        ]
135
claus
parents:
diff changeset
  1078
    ].
151
claus
parents: 145
diff changeset
  1079
    bgGrey := bgGrey on:Display.
135
claus
parents:
diff changeset
  1080
claus
parents:
diff changeset
  1081
    ViewSpacing := StyleSheet at:'viewSpacing'.
claus
parents:
diff changeset
  1082
    ViewSpacing isNil ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1083
        ViewSpacing := Display verticalPixelPerMillimeter rounded.
135
claus
parents:
diff changeset
  1084
    ].
claus
parents:
diff changeset
  1085
claus
parents:
diff changeset
  1086
    DefaultBorderColor := StyleSheet colorAt:'borderColor' default:Black.
151
claus
parents: 145
diff changeset
  1087
claus
parents: 145
diff changeset
  1088
    StyleSheet fileReadFailed ifTrue:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1089
        DefaultBorderWidth := 1.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1090
        DefaultShadowColor := Black.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1091
        DefaultLightColor :=  White.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1092
        DefaultFocusColor := Black.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1093
        DefaultFocusBorderWidth := 2.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1094
        DefaultViewBackgroundColor := bgGrey.
151
claus
parents: 145
diff changeset
  1095
    ] ifFalse:[
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1096
        DefaultBorderWidth := StyleSheet at:'borderWidth' default:0.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1097
        DefaultViewBackgroundColor := StyleSheet colorAt:'viewBackground' default:bgGrey.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1098
        DefaultShadowColor := StyleSheet colorAt:'shadowColor'.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1099
        DefaultLightColor := StyleSheet colorAt:'lightColor'.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1100
        DefaultFocusColor := StyleSheet colorAt:'focusColor' default:Color red.
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1101
        DefaultFocusBorderWidth := StyleSheet at:'focusBorderWidth' default:2.
151
claus
parents: 145
diff changeset
  1102
    ].
135
claus
parents:
diff changeset
  1103
526
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1104
    self == SimpleView ifTrue:[
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1105
        DefaultFont := StyleSheet at:'font'.
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1106
        DefaultFont isNil ifTrue:[
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1107
            DefaultFont := Font family:'courier' face:'medium' style:'roman' size:12.
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1108
        ].
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1109
        DefaultFont := DefaultFont on:Display.
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1110
    ] ifFalse:[
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1111
        DefaultFont := nil
135
claus
parents:
diff changeset
  1112
    ].
claus
parents:
diff changeset
  1113
claus
parents:
diff changeset
  1114
    DefaultViewBackgroundColor isNil ifTrue:[
517
ffc3316a7d3b nicer message
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1115
        'VIEW: bad viewBackground in style - using white' errorPrintNL.
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1116
        DefaultViewBackgroundColor := White
135
claus
parents:
diff changeset
  1117
    ].
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
  1118
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1119
    "Modified: 18.3.1996 / 12:52:12 / cg"
135
claus
parents:
diff changeset
  1120
!
claus
parents:
diff changeset
  1121
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1122
viewSpacing
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1123
    "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
  1124
     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
  1125
     get a common look"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1126
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1127
    ^ ViewSpacing
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1128
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1129
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1130
!SimpleView class methodsFor:'resources'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1131
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1132
classResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1133
    "if not already loaded, get the classes resourcePack
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1134
     and return it"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1135
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1136
    ClassResources isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1137
	ClassResources := ResourcePack for:self.
140
claus
parents: 138
diff changeset
  1138
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1139
    ^ ClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1140
!
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
classResources:aResourcePack
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1143
    "allow setting of the classResources"
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
    ClassResources := aResourcePack
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1148
flushAllClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1149
    "flush all classes resource translations.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1150
     Needed after a resource file has changed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1151
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1152
    ResourcePack flushCachedResourcePacks.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1153
    SimpleView flushClassResources.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1154
    SimpleView allSubclasses do:[:aClass |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1155
	aClass flushClassResources.
140
claus
parents: 138
diff changeset
  1156
    ]
claus
parents: 138
diff changeset
  1157
claus
parents: 138
diff changeset
  1158
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1159
     View flushAllClassResources
140
claus
parents: 138
diff changeset
  1160
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1161
    "to change the language:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1162
	Language := #english.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1163
	Smalltalk changed:#Language.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1164
	View flushAllClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1165
     or:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1166
	Language := #german.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1167
	Smalltalk changed:#Language.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1168
	View flushAllClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1169
    "     
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1170
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1171
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1172
flushClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1173
    "flush classes resource string translations.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1174
     Needed whenever a resource file or language has changed"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1175
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1176
    ClassResources := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1177
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1178
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1179
updateClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1180
    "flush classes resource string translations and reload them.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1181
     Needed whenever a resource file or language has changed"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1182
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1183
    ClassResources := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1184
    self classResources
135
claus
parents:
diff changeset
  1185
! !
claus
parents:
diff changeset
  1186
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1187
!SimpleView methodsFor:'ST-80 compatibility'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1188
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1189
checkForEvents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1190
    (shown and:[windowGroup notNil]) ifTrue:[windowGroup processEvents].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1191
!
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
sensor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1194
    "return the views sensor"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1195
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1196
    windowGroup notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1197
	^ windowGroup sensor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1198
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1199
    ^ nil
151
claus
parents: 145
diff changeset
  1200
! !
claus
parents: 145
diff changeset
  1201
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1202
!SimpleView methodsFor:'accessing-bg & border'!
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
borderColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1205
    "return my borderColor"
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
    ^ borderColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1208
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1209
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1210
borderColor:aColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1211
    "set my borderColor"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1212
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1213
    (aColor ~~ borderColor) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1214
	borderColor := aColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1215
	drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1216
	    self setBorderColor
135
claus
parents:
diff changeset
  1217
	]
269
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
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1220
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1221
borderShape:aForm
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1222
    "set the borderShape to aForm"
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
    borderShape := aForm.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1225
    drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1226
	device setWindowBorderShape:(aForm id) in:drawableId
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
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1229
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1230
borderWidth
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1231
    "return my borderWidth"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1232
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1233
    ^ borderWidth
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
borderWidth:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1237
    "set my borderWidth"
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
    (aNumber ~~ borderWidth) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1240
	borderWidth := aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1241
	drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1242
	    device setWindowBorderWidth:aNumber in:drawableId
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
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1246
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1247
level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1248
    "return my level relative to superView (3D)"
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
    ^ level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1251
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1252
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1253
level:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1254
    "set my level relative to superView (3D)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1255
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1256
    |oldMargin how|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1257
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1258
    (aNumber ~~ level and:[aNumber notNil]) ifTrue:[
433
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1259
        self is3D ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1260
            level := aNumber.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1261
            oldMargin := margin.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1262
            margin := level abs.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1263
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1264
            realized ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1265
                margin ~~ oldMargin ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1266
                    (margin > oldMargin) ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1267
                        how := #smaller
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1268
                    ] ifFalse:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1269
                        how := #larger
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1270
                    ].
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1271
                    self sizeChanged:how.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1272
                    self setInnerClip.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1273
                ].
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1274
                shown ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1275
                    margin ~~ oldMargin ifTrue:[
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1276
                        self clear.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1277
                        self redrawX:margin y:margin
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1278
                               width:width-(margin*2) 
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1279
                              height:height-(margin*2)
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1280
                    ].
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1281
                    self redrawEdges.
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1282
               ]
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1283
            ]
d61b4ce6f578 correctly handle level changes if abs(lvl) changes
ca
parents: 426
diff changeset
  1284
        ]
135
claus
parents:
diff changeset
  1285
    ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1286
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1287
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1288
lightColor:aColorOrImage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1289
    "set the color to be used for lighted edges (3D only)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1290
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1291
    lightColor := aColorOrImage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1292
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1293
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1294
margin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1295
    "return my margin - this is usually the level,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1296
     but can be more for some views"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1297
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1298
    ^ margin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1299
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1300
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1301
shadowColor:aColorOrImage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1302
    "set the color to be used for shadowed edges (3D only)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1303
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1304
    shadowColor := aColorOrImage
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1307
viewBackground:something
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1308
    "set the viewBackground to something, a color, image or form.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1309
     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
  1310
     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
  1311
     edges."
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
    something isColor ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1314
	device hasGreyscales ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1315
	    shadowColor := something darkened.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1316
	    lightColor := something lightened
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1317
	]
135
claus
parents:
diff changeset
  1318
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1319
    super viewBackground:something
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
viewShape:aForm
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1323
    "set the viewShape to aForm"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1324
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1325
    viewShape := aForm.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1326
    drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1327
	device setWindowShape:(aForm id) in:drawableId
135
claus
parents:
diff changeset
  1328
    ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1329
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1330
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1331
!SimpleView methodsFor:'accessing-contents'!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1332
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1333
heightOfContents
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1334
    "return the height of the contents in logical units 
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1335
     - defaults to views visible area here.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1336
    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
  1337
    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
  1338
    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
  1339
    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
  1340
    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
  1341
    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
  1342
    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
  1343
    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
  1344
    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
  1345
    of this will scale as appropriate."
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1346
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1347
    ^ (self innerHeight max:(self maxSubViewBottom)) max:self maxComponentBottom
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1348
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1349
    "Modified: 26.5.1996 / 12:44:21 / cg"
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1350
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1351
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1352
widthOfContents
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1353
    "return the width of the contents in logical units 
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1354
     - defaults to views visible area here.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1355
    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
  1356
    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
  1357
    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
  1358
    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
  1359
    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
  1360
    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
  1361
    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
  1362
    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
  1363
    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
  1364
    of this will scale as appropriate."
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1365
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1366
    ^ (self innerWidth max:(self maxSubViewRight)) max:self maxComponentRight
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1367
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  1368
    "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
  1369
! !
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1370
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1371
!SimpleView methodsFor:'accessing-dimensions'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1372
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1373
allInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1374
    "set all insets; positive makes the view smaller,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1375
     negative makes it larger."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1376
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1377
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1378
	insets := Array new:4.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1379
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1380
    insets atAllPut:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1381
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1382
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1383
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1384
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1385
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1386
	self superViewChangedSize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1387
"/    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1388
!
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
bottom
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1391
    "return the y position of the actual bottom edge (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1392
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1393
    ^ top + height - 1
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1394
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1395
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1396
bottom:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1397
    "set the corners y position"
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
    self corner:(self corner x @ aNumber)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1400
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1401
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1402
bottomInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1403
    "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
  1404
     negative to the bottom"
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
    insets isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1407
    ^ insets at:4
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1408
!
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
bottomInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1411
    "set the inset of the bottom edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1412
     positive is to the top (view becomes smaller),
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1413
     negative to the bottom (becomes larger)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1414
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1415
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1416
	insets := Array with:0 with:0 with:0 with:0
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
    insets at:4 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1419
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1420
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1421
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1422
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1423
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1424
	self superViewChangedSize
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1428
center
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1429
    "return the point at the center of the receiver (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1430
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1431
    ^ (left + (width // 2)) @ (top + (height // 2))
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1432
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1433
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1434
center:newCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1435
    "move the receiver so that newCenter, aPoint becomes the center point"
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
    self origin:(newCenter - ((width // 2) @ (height // 2)))
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1438
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1439
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1440
computeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1441
    "compute my corner; if I have a layoutObject,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1442
     relative origins or blocks to evaluate, compute it now ..
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1443
     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
  1444
     Returns the corner point in device coordinates (pixels)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1445
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1446
    |org newCorner newExt x y|
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
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1449
     slowly migrating to use layoutObjects ...
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
    layout notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1452
	^ (layout rectangleRelativeTo:(superView viewRectangle)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1453
			    preferred:(self preferredBounds)) corner rounded
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1454
    ].
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
    (cornerRule notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1457
	newCorner := cornerRule value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1458
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1459
	 allow return of relative values ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1460
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1461
	x := newCorner x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1462
	y := newCorner y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1463
	x isNil ifTrue:[x := self corner x].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1464
	y isNil ifTrue:[y := self corner y].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1465
	((x isInteger not) or:[y isInteger not]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1466
	    newCorner := self cornerFromRelativeCorner:x@y 
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
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1469
	(relativeCorner notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1470
	    newCorner := self cornerFromRelativeCorner:relativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1471
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1472
	    org := self computeOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1473
	    (extentRule notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1474
		newExt := extentRule value
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1475
	    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1476
		(relativeExtent notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1477
		    newExt := self extentFromRelativeExtent:relativeExtent 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1478
		]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1479
	    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1480
	    newCorner := org + newExt
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1481
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1482
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1483
    ^ newCorner
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1486
computeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1487
    "compute my extent; if I have a layoutObject, a relative extent 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1488
     or blocks to evaluate, compute it now ..
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1489
     There is one catch here, if the dimension was defined
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1490
     by origin/corner, compute them here and take that value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1491
     I.e. origin/corner definition has precedence over extent definition.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1492
     Returns the extent in device coordinates (pixels)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1493
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1494
    |newOrg newExt newCorner x y|
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
     slowly migrating to use layoutObjects ...
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
    layout notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1500
	^ (layout rectangleRelativeTo:(superView viewRectangle)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1501
			    preferred:(self preferredBounds)) extent rounded
135
claus
parents:
diff changeset
  1502
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1503
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1504
    (cornerRule notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1505
	newCorner := cornerRule value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1506
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1507
	 allow return of relative values ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1508
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1509
	x := newCorner x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1510
	y := newCorner y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1511
	x isNil ifTrue:[x := self corner x].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1512
	y isNil ifTrue:[y := self corner y].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1513
	((x isInteger not) or:[y isInteger not]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1514
	    newCorner := self cornerFromRelativeCorner:x@y
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
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1517
	(relativeCorner notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1518
	    newCorner := self cornerFromRelativeCorner:relativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1519
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1520
	    (extentRule notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1521
		newExt := extentRule value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1522
		"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1523
		 allow return of relative values ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1524
		"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1525
		x := newExt x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1526
		y := newExt y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1527
		x isNil ifTrue:[x := width].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1528
		y isNil ifTrue:[y := height].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1529
		((x isInteger not) or:[y isInteger not]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1530
		    newExt := self extentFromRelativeExtent:x@y
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1531
		]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1532
	    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1533
		(relativeExtent notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1534
		    newExt := self extentFromRelativeExtent:relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1535
		] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1536
		    newExt := (width @ height).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1537
		].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1538
	    ].
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
    ].
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
    newCorner notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1543
	newOrg := self computeOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1544
	^ newCorner - newOrg.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1545
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1546
    ^ newExt.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1547
!
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
computeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1550
    "compute my origin; if I have a layoutObject, a relative origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1551
     or blocks to evaluate, compute it now ..
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1552
     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
  1553
     Returns the origin point in device coordinates (pixels)."
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
    |newOrg x y|
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
     slowly migrating to use layoutObjects ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1559
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1560
    layout notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1561
	^ (layout rectangleRelativeTo:(superView viewRectangle)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1562
			    preferred:(self preferredBounds)) origin rounded
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1563
    ].
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
    (originRule notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1566
	newOrg := originRule value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1567
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1568
	 allow return of relative values ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1569
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1570
	x := newOrg x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1571
	y := newOrg y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1572
	x isNil ifTrue:[x := self origin x].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1573
	y isNil ifTrue:[y := self origin y].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1574
	((x isInteger not) or:[y isInteger not]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1575
	    newOrg := self originFromRelativeOrigin:x@y.
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
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1578
	(relativeOrigin notNil) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1579
	    newOrg := self originFromRelativeOrigin:relativeOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1580
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1581
	    ^ (left @ top).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1582
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1583
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1584
    ^ newOrg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1585
!
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
corner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1588
    "return the lower right corner-point (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1589
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1590
"/    ^ (left + width "- 1") @ (top + height "- 1")
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1591
    ^ (left + width - 1) @ (top + height - 1)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1592
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1593
    "Modified: 31.8.1995 / 16:51:40 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1594
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1595
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1596
corner:corner 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1597
    "set the views corner; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1598
     the corner argument may be:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1599
	 a point 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1600
	    where integer fields mean 'pixel-values'
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1601
	    and float values mean 'relative-to-superview'
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1602
	    and nil means 'take current value';
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1603
     or a block returning a point which is interpreted as above.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1604
     Please migrate to use layoutObjects, if possible."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1605
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1606
    |x y pixelCorner c|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1607
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1608
    corner isBlock ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1609
	cornerRule := corner.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1610
	drawableId notNil ifTrue:[    
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1611
	    pixelCorner := corner value
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1612
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1613
	    extentChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1614
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1615
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1616
	x := corner x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1617
	y := corner y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1618
	x isNil ifTrue:[x := self corner x].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1619
	y isNil ifTrue:[y := self corner y].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1620
	c := x @ y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1621
	((x isInteger not) or:[y isInteger not]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1622
	    relativeCorner := c.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1623
	    pixelCorner := self cornerFromRelativeCorner.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1624
	    pixelCorner isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1625
		extentChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1626
	    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1627
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1628
	    pixelCorner := c
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1629
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1630
    ].
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
    pixelCorner notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1633
	self pixelCorner:pixelCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1634
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1635
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1636
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1637
extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1638
    "set the views extent; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1639
     extent may be:
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1640
        a point 
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1641
            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
  1642
            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
  1643
            and nil means 'leave current value';
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1644
     or a block returning a point which is interpreted as above.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1645
     Be careful when using relative extents: rounding errors may
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1646
     accumulate. Better use origin/corner. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1647
     Best: migrate to use layour objects."
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
    |w h pixelExtent e|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1650
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1651
    extent isBlock ifTrue:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1652
        extentRule := extent.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1653
        drawableId notNil ifTrue:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1654
            pixelExtent := extent value
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1655
        ] ifFalse:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1656
            extentChanged := true
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1657
        ]
135
claus
parents:
diff changeset
  1658
    ] ifFalse:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1659
        w := extent x.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1660
        h := extent y.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1661
        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
  1662
        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
  1663
        e := w@h.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1664
        ((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
  1665
            relativeExtent := e.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1666
            pixelExtent := self extentFromRelativeExtent.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1667
            pixelExtent isNil ifTrue:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1668
                extentChanged := true
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1669
            ]
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1670
        ] ifFalse:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1671
            relativeExtent := nil.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1672
            pixelExtent := e
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1673
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1674
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1675
    pixelExtent notNil ifTrue:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1676
        self pixelExtent:pixelExtent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1677
    ]
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1678
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1679
    "Modified: 19.4.1996 / 15:11:15 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1680
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1681
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1682
geometryLayout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1683
    "this method will vanish, as soon as all implementations of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1684
     #layout: are removed ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1685
     (conflict for example in label>>layout:).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1686
     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
  1687
     notice."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1688
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1689
    ^ here layout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1690
!
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
geometryLayout:aLayoutObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1693
    "this method will vanish, as soon as all implementations of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1694
     #layout: are removed ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1695
     (conflict for example in label>>layout:).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1696
     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
  1697
     notice."
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
    here layout:aLayoutObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1700
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1701
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1702
height:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1703
    "set the views height in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1704
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1705
    self extent:(width @ aNumber)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1706
!
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
heightIncludingBorder
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1709
    "return my height including border 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1710
     (this is my height as seen from the outside view;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1711
      while #height returns the height as seen by myself)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1712
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1713
    ^ height + (2*borderWidth)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1714
!
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
horizontalInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1717
    "set the insets of the left/right edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1718
     positive makes it smaller, negative makes it larger"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1719
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1720
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1721
	insets := Array with:0 with:0 with:0 with:0
135
claus
parents:
diff changeset
  1722
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1723
    insets at:1 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1724
    insets at:3 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1725
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1726
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1727
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1728
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1729
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1730
	self superViewChangedSize.
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1734
innerHeight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1735
    "return the height of the view minus any 3D-shadow-borders"
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
    (margin == 0) ifTrue:[^ height].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1738
    ^ height - (2 * margin)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1739
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1740
369
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1741
innerHeight:pixels
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1742
    "set the height of the view plus any 3D-shadow-borders.
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1743
     This does not work with a relative size."
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1744
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1745
    ^ self height:( pixels + (margin + self innerVerticalMargin * 2) ).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1746
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1747
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1748
innerHorizontalMargin
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1749
    "return any additional inner margin (i.e. contents margin).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1750
     This should be redefined by views which do add margins
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1751
     (for example: textViews do this)"
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1752
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1753
    ^ 0
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1754
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1755
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1756
innerVerticalMargin
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1757
    "return any additional inner margin (i.e. contents margin).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1758
     This should be redefined by views which do add margins
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1759
     (for example: textViews do this)"
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1760
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1761
    ^ 0
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1762
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1763
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1764
innerWidth
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1765
    "return the width of the view minus any 3D-shadow-borders"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1766
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1767
    (level == 0) ifTrue:[^ width].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1768
    ^ width - (2 * margin)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1769
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1770
369
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1771
innerWidth:pixels
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1772
    "set the width of the view plus any 3D-shadow-borders.
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1773
     This does not work with a relative size."
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1774
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1775
    ^ self width:( pixels + (margin + self innerHorizontalMargin * 2) ).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1776
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  1777
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1778
inset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1779
    "set all insets; positive makes the view smaller,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1780
     negative makes it larger."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1781
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1782
    self allInset:aNumber
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1785
layout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1786
    "return the layout object which controls my geometry.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1787
     Currently, this is nil in most cases, and my geometry is
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1788
     defined by relativeOrigin/relativeCorner/relativeExtent,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1789
     originRule/extentRule/cornerRule and inset.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1790
     Applications should be changed to use layoutObjects,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1791
     since the above listed instance variables will vanish."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1792
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1793
    ^ layout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1794
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1795
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1796
layout:aLayoutObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1797
    "set the layout object which controls my geometry.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1798
     Currently, this is almost nowhere used but views will be
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1799
     incrementally changed to use this new geometry management."
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
    layout := aLayoutObject.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1802
    superView isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1803
	originChanged := cornerChanged := extentChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1804
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1805
	self superViewChangedSize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1806
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1807
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1808
    "Modified: 19.9.1995 / 16:17:25 / claus"
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1811
left
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1812
    "return the x position of the left border (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1813
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1814
    ^ left
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1815
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1816
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1817
left:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1818
    "set the x position"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1819
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1820
    self origin:(aNumber @ top)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1821
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1822
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1823
left:newLeft top:newTop width:newWidth height:newHeight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1824
    "another way of specifying origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1825
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1826
    self origin:(newLeft @ newTop) extent:(newWidth @ newHeight)
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1829
leftInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1830
    "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
  1831
     negative to the 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
    insets isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1834
    ^ insets at:1 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1835
!
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
leftInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1838
    "set the inset of the left edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1839
     positive is to the right (view becomes smaller),
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1840
     negative to the left (becomes larger)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1841
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1842
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1843
	insets := Array with:0 with:0 with:0 with:0
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
    insets at:1 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1846
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1847
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1848
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1849
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1850
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1851
	self superViewChangedSize.
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1855
makeFullyVisible
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1856
    "make sure, that the view is fully visible by shifting it
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1857
     into the visible screen area if nescessary.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1858
     This method will be moved to StandardSystemView ..."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1859
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1860
    |devBot devRight newTop newLeft|
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
    newTop := top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1863
    newLeft := left.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1864
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1865
    ((top + height) > (devBot := device height)) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1866
	newTop := devBot - height
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1867
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1868
    ((left + width) > (devRight := device width)) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1869
	newLeft := devRight - width
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
    (newTop < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1872
	newTop := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1873
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1874
    (newLeft < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1875
	newLeft := 0
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
    ((newTop ~~ top) or:[newLeft ~~ left]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1878
	self origin:newLeft @ newTop
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1879
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1880
!
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
origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1883
    "return the origin (in pixels)"
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@top
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1886
!
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
origin:origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1889
    "set the views origin; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1890
     origin may be:
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1891
        a point 
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1892
            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
  1893
            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
  1894
            and nil means 'take current value';
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1895
     or a block returning a point which is interpreted as above.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1896
     Please migrate to use layout objects."
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
    |newLeft newTop pixelOrigin o|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1899
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1900
    origin isBlock ifTrue:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1901
        originRule := origin.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1902
        drawableId notNil ifTrue:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1903
            pixelOrigin := origin value
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1904
        ] ifFalse:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1905
            originChanged := true
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1906
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1907
    ] ifFalse:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1908
        o := origin.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1909
        newLeft := origin x.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1910
        newTop := origin y.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1911
        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
  1912
        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
  1913
        o := newLeft @ newTop.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1914
        ((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
  1915
            relativeOrigin := o.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1916
            pixelOrigin := self originFromRelativeOrigin.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1917
            pixelOrigin isNil ifTrue:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1918
                originChanged := true
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1919
            ]
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1920
        ] ifFalse:[
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1921
            relativeOrigin := nil.
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1922
            pixelOrigin := o
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
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1925
    pixelOrigin notNil ifTrue:[
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1926
        self pixelOrigin:pixelOrigin
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1927
    ].
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1928
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  1929
    "Modified: 19.4.1996 / 15:12:36 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1930
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1931
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1932
origin:origin corner:corner 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1933
    "set both origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1934
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1935
    |newLeft newTop newRight newBot|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1936
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1937
    "do it as one operation if possible"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1938
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1939
    origin isBlock ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1940
	corner isBlock ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1941
	    newLeft := origin x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1942
	    newLeft isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1943
		newTop := origin y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1944
		newTop isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1945
		    newRight := corner x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1946
		    newRight isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1947
			newBot := corner y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1948
			newBot isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1949
			    self pixelOrigin:origin corner:corner 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1950
			]
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
		]
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
	]
135
claus
parents:
diff changeset
  1955
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1956
    self origin:origin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1957
    self corner:corner 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1958
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1959
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1960
origin:origin extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1961
    "set both origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1962
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1963
    |newLeft newTop newWidth newHeight|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1964
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1965
    "do it as one operation if possible"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1966
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1967
    origin isBlock ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1968
	extent isBlock ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1969
	    newLeft := origin x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1970
	    newLeft isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1971
		newTop := origin y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1972
		newTop isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1973
		    newWidth := extent x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1974
		    newWidth isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1975
			newHeight := extent y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1976
			newHeight isInteger ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1977
			    self pixelOrigin:origin extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1978
			]
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
		]
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
	]
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
    self extent:extent.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1985
    self origin:origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1986
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1987
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1988
originRelativeTo:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1989
    "return the origin (in pixels) relative to a superView,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1990
     or relative to the rootView (if the aView argument is nil).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1991
     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
  1992
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1993
    |currentView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1994
     org  "{ Class: Point }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1995
     sumX "{ Class: SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1996
     sumY "{ Class: SmallInteger }" |
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
    currentView := self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1999
    sumX := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2000
    sumY := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2001
    [currentView notNil] whileTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2002
	(currentView == aView) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2003
	    ^ (sumX @ sumY)
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
	org := currentView origin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2006
	sumX := sumX + org x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2007
	sumY := sumY + org y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2008
	currentView := currentView superView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2009
    ].
729
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
  2010
    (aView isNil or:[aView == device rootView]) ifTrue:[
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2011
	"return relative to screen ..."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2012
	^ (sumX @ sumY)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2013
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2014
    ^ nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2015
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2016
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2017
     |top sub1 sub2|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2018
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2019
     top := StandardSystemView new.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2020
     top extent:200@200.   
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2021
     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
  2022
     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
  2023
     top openAndWait.
697
cba925eed3da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 696
diff changeset
  2024
     Transcript show:'button in top:'; showCR:(sub2 originRelativeTo:top).
cba925eed3da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 696
diff changeset
  2025
     Transcript show:'button on screen:'; showCR:(sub2 originRelativeTo:nil).
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2026
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2027
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2028
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2029
relativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2030
    "return the relative corner or nil"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2031
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2032
    ^ relativeCorner
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2035
relativeCorner:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2036
    "set the relative corner"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2037
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2038
    relativeCorner := aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2039
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2040
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2041
relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2042
    "return the relative extent or nil"
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
    ^ relativeExtent
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2047
relativeExtent:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2048
    "set the relative extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2049
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2050
    relativeExtent := aPoint
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2053
relativeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2054
    "return the relative origin or nil"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2055
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2056
    ^ relativeOrigin
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2059
relativeOrigin:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2060
    "set the relative origin"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2061
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2062
    relativeOrigin := aPoint
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2065
right
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2066
    "return the x position of the right edge  (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2067
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2068
    ^ left + width - 1
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
    "Modified: 31.8.1995 / 19:31:10 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2071
!
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
right:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2074
    "set the corners x position"
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
    self corner:(aNumber @ self corner y)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2077
!
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
rightInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2080
    "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
  2081
     negative to the right"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2082
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2083
    insets isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2084
    ^ insets at:3 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2085
!
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
rightInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2088
    "set the inset of the right edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2089
     positive is to the left (view becomes smaller), 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2090
     negative to the right (becomes larger)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2091
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2092
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2093
	insets := Array with:0 with:0 with:0 with:0
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
    insets at:3 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2096
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2097
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2098
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2099
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2100
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2101
	self superViewChangedSize.
135
claus
parents:
diff changeset
  2102
"/    ]
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2105
sizeFixed:aBoolean
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2106
    "set/clear the fix-size attribute, if supported by concrete subclasses.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2107
     Views which want to resize themselfes as appropriate to their contents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2108
     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
  2109
     true. Currently, only supported by Labels.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2110
     This does NOT prevent the window manager from resizing the view, 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2111
     instead it tell the view to NOT resize ITSELF.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2112
     Added here to provide a common protocol for all views."
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
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2115
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2116
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2117
top
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2118
    "return the y position of the top border"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2119
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2120
    ^ top
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2123
top:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2124
    "set the y position"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2125
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2126
    self origin:(left @ aNumber)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2127
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2128
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2129
topInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2130
    "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
  2131
     negative to the top"
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
    insets isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2134
    ^ insets at:2 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2135
!
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
topInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2138
    "set the inset of the top edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2139
     positive is to the bottom (view becomes smaller),
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2140
     negative to the top (becomes larger)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2141
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2142
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2143
	insets := Array with:0 with:0 with:0 with:0
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
    insets at:2 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2146
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2147
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2148
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2149
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2150
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2151
	self superViewChangedSize.
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2155
verticalInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2156
    "set the insets of the top/bottom edge; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2157
     positive makes it smaller, negative makes it 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
    insets at:4 put:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2164
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2165
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2166
"/    drawableId isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2167
"/        originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2168
"/    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2169
	self superViewChangedSize.
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
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2173
viewRectangle
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2174
    "return the inside area.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2175
     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
  2176
     to base relative coordinates on.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2177
     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
  2178
     margins required for 3D levels) is ok.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2179
     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
  2180
     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
  2181
     (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
  2182
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2183
    |m2|
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2184
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2185
    m2 := margin + margin.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2186
    ^ (margin @ margin) extent:((width - m2) @ (height - m2))
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2187
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2188
    "Modified: 8.2.1996 / 20:05:00 / cg"
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2189
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2190
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2191
width:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2192
    "set the views width in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2193
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2194
    self extent:(aNumber @ height)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2195
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2196
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2197
widthIncludingBorder
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2198
    "return my width including border
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2199
     (this is my width as seen from the outside view;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2200
      while #width returns the width as seen by myself)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2201
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2202
    ^ width + (2*borderWidth)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2203
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2204
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2205
!SimpleView methodsFor:'accessing-hierarchy'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2206
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2207
container:aContainer
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2208
    "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
  2209
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2210
    superView := aContainer
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2211
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2212
    "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
  2213
    "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
  2214
!
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2215
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2216
lower
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2217
    "bring to back"
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
    drawableId isNil ifTrue:[self create].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2220
    device lowerWindow:drawableId
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
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2223
     Transcript topView lower
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2224
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2225
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2226
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2227
raise
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2228
    "bring to front"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2229
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2230
    drawableId isNil ifTrue:[self create].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2231
    device raiseWindow:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2232
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2233
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2234
     Transcript topView raise
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
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2237
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2238
subViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2239
    "return the collection of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2240
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2241
    ^ subViews
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
subViews:aListOfViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2245
    "set the collection of subviews"
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
    subViews := aListOfViews.
135
claus
parents:
diff changeset
  2248
    subViews notNil ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2249
        subViews do:[:view |
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2250
            view container:self
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2251
        ]
135
claus
parents:
diff changeset
  2252
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2253
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2254
    "Modified: 9.5.1996 / 00:42:28 / cg"
135
claus
parents:
diff changeset
  2255
!
claus
parents:
diff changeset
  2256
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2257
superView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2258
    "return my superView"
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
    ^ superView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2261
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2262
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2263
superView:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2264
    "set my superView to be aView"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2265
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2266
    self obsoleteMethodWarning:'use #container:'.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2267
    self container:aView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2268
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2269
    "Modified: 9.5.1996 / 00:46:24 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2270
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2271
662
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2272
topComponent
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2273
    "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
  2274
     For ST-80 compatibility."
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2275
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2276
    ^ self topView
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2277
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2278
    "Modified: 9.5.1996 / 01:40:24 / cg"
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2279
!
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2280
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2281
topView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2282
    "return the topView - thats the one with no superview"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2283
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2284
    |v|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2285
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2286
    v := self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2287
    [v notNil] whileTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2288
	v superView isNil ifTrue:[^ v].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2289
	v := v superView
135
claus
parents:
diff changeset
  2290
    ].
claus
parents:
diff changeset
  2291
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2292
    ^ nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2293
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2294
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2295
!SimpleView methodsFor:'accessing-menus'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2296
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2297
menuHolder
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2298
    "who has the menu ? 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2299
     By default, I have it."
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
    ^ self
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2304
menuMessage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2305
    "Return the symbol sent to myself to aquire the menu"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2306
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2307
    ^ #middleButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2308
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2309
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2310
menuPerformer
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2311
    "who should perform the menu actions ? 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2312
     By default, I do it."
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
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2315
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2316
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2317
yellowButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2318
    "actually, this should be called 'middleButtonMenu'.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2319
     But for ST-80 compatibility ....
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2320
     This method will vanish, once all views have controllers
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2321
     associated with them; for now, duplicate some code also found in
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2322
     controller."
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
    |sym menuHolder|
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
"/    middleButtonMenu notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2327
"/        "/
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2328
"/        "/ has been assigned a static middleButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2329
"/        "/ (or a cached menu)
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
"/        ^ middleButtonMenu
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
    menuHolder := self menuHolder.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2335
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2336
    menuHolder notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2337
	sym := self menuMessage.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2338
	sym notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2339
	    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2340
	     mhmh - for backward compatibility, try to ask
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2341
	     the model first, then use the views menu.
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
	    (menuHolder respondsTo:sym) ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2344
		(self respondsTo:sym) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2345
		    menuHolder := self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2346
		]
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
	    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2349
	     ask the menuHolder for the menu
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 perform:sym.
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
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2354
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2355
    ^ nil
135
claus
parents:
diff changeset
  2356
! !
claus
parents:
diff changeset
  2357
claus
parents:
diff changeset
  2358
!SimpleView methodsFor:'accessing-misc'!
claus
parents:
diff changeset
  2359
claus
parents:
diff changeset
  2360
bitGravity
claus
parents:
diff changeset
  2361
    "return the bitGravity - thats the direction where the contents will move
claus
parents:
diff changeset
  2362
     when the the view is resized."
claus
parents:
diff changeset
  2363
claus
parents:
diff changeset
  2364
    ^ bitGravity
claus
parents:
diff changeset
  2365
!
claus
parents:
diff changeset
  2366
claus
parents:
diff changeset
  2367
bitGravity:gravity
claus
parents:
diff changeset
  2368
    "set the bitGravity - thats the direction where the contents will move
claus
parents:
diff changeset
  2369
     when the view is resized."
claus
parents:
diff changeset
  2370
claus
parents:
diff changeset
  2371
    bitGravity ~~ gravity ifTrue:[
claus
parents:
diff changeset
  2372
	bitGravity := gravity.
claus
parents:
diff changeset
  2373
	drawableId notNil ifTrue:[
claus
parents:
diff changeset
  2374
	    device setBitGravity:gravity in:drawableId
claus
parents:
diff changeset
  2375
	]
claus
parents:
diff changeset
  2376
    ]
claus
parents:
diff changeset
  2377
!
claus
parents:
diff changeset
  2378
153
claus
parents: 151
diff changeset
  2379
clipRect:aRectangle
claus
parents: 151
diff changeset
  2380
    "set the clipping rectangle for drawing (in logical coordinates);
claus
parents: 151
diff changeset
  2381
     a nil argument turn off clipping (i.e. whole view is drawable).
claus
parents: 151
diff changeset
  2382
     Redefined to care for any margin."
claus
parents: 151
diff changeset
  2383
claus
parents: 151
diff changeset
  2384
    |x y w h|
claus
parents: 151
diff changeset
  2385
claus
parents: 151
diff changeset
  2386
    aRectangle isNil ifTrue:[
claus
parents: 151
diff changeset
  2387
	clipRect isNil ifTrue:[^ self].
claus
parents: 151
diff changeset
  2388
	gcId notNil ifTrue:[
claus
parents: 151
diff changeset
  2389
	    device noClipIn:gcId
claus
parents: 151
diff changeset
  2390
	]
claus
parents: 151
diff changeset
  2391
    ] ifFalse:[
claus
parents: 151
diff changeset
  2392
	clipRect notNil ifTrue:[
claus
parents: 151
diff changeset
  2393
	    (clipRect = aRectangle) ifTrue:[^ self]
claus
parents: 151
diff changeset
  2394
	].
claus
parents: 151
diff changeset
  2395
	gcId notNil ifTrue:[
claus
parents: 151
diff changeset
  2396
	    x := aRectangle left.
claus
parents: 151
diff changeset
  2397
	    y := aRectangle top.
claus
parents: 151
diff changeset
  2398
	    w := aRectangle width.
claus
parents: 151
diff changeset
  2399
	    h := aRectangle height.
claus
parents: 151
diff changeset
  2400
	    transformation notNil ifTrue:[
claus
parents: 151
diff changeset
  2401
		x := transformation applyToX:x.
claus
parents: 151
diff changeset
  2402
		y := transformation applyToY:y.
claus
parents: 151
diff changeset
  2403
		w := transformation applyScaleX:w.
claus
parents: 151
diff changeset
  2404
		h := transformation applyScaleY:h.
claus
parents: 151
diff changeset
  2405
	    ].
claus
parents: 151
diff changeset
  2406
	    (x isMemberOf:SmallInteger) ifFalse:[
claus
parents: 151
diff changeset
  2407
		w := w + (x - x truncated).
claus
parents: 151
diff changeset
  2408
		x := x truncated
claus
parents: 151
diff changeset
  2409
	    ].
claus
parents: 151
diff changeset
  2410
	    (y isMemberOf:SmallInteger) ifFalse:[
claus
parents: 151
diff changeset
  2411
		h := h + (y - y truncated).
claus
parents: 151
diff changeset
  2412
		y := y truncated
claus
parents: 151
diff changeset
  2413
	    ].
claus
parents: 151
diff changeset
  2414
	    (w isMemberOf:SmallInteger) ifFalse:[
claus
parents: 151
diff changeset
  2415
		w := w truncated + 1
claus
parents: 151
diff changeset
  2416
	    ].
claus
parents: 151
diff changeset
  2417
	    (h isMemberOf:SmallInteger) ifFalse:[
claus
parents: 151
diff changeset
  2418
		h := h truncated + 1
claus
parents: 151
diff changeset
  2419
	    ].
claus
parents: 151
diff changeset
  2420
	    x < margin ifTrue:[
claus
parents: 151
diff changeset
  2421
		x := margin.
claus
parents: 151
diff changeset
  2422
	    ].
claus
parents: 151
diff changeset
  2423
	    y < margin ifTrue:[
claus
parents: 151
diff changeset
  2424
		y := margin.
claus
parents: 151
diff changeset
  2425
	    ].
claus
parents: 151
diff changeset
  2426
	    x + w - 1 >= (width-margin) ifTrue:[
claus
parents: 151
diff changeset
  2427
		w := width - margin - x
claus
parents: 151
diff changeset
  2428
	    ].
claus
parents: 151
diff changeset
  2429
	    y + h - 1 >= (height-margin) ifTrue:[
claus
parents: 151
diff changeset
  2430
		h := height - margin - y
claus
parents: 151
diff changeset
  2431
	    ].
claus
parents: 151
diff changeset
  2432
	    device setClipX:x y:y width:w height:h in:gcId
claus
parents: 151
diff changeset
  2433
	]
claus
parents: 151
diff changeset
  2434
    ].
claus
parents: 151
diff changeset
  2435
    clipRect := aRectangle
claus
parents: 151
diff changeset
  2436
!
claus
parents: 151
diff changeset
  2437
claus
parents: 151
diff changeset
  2438
fullName
claus
parents: 151
diff changeset
  2439
    "return my full name to be used for resource-access"
claus
parents: 151
diff changeset
  2440
claus
parents: 151
diff changeset
  2441
    superView notNil ifTrue:[
claus
parents: 151
diff changeset
  2442
	^ superView fullName , '.' , name
claus
parents: 151
diff changeset
  2443
    ].
claus
parents: 151
diff changeset
  2444
    ^ name
claus
parents: 151
diff changeset
  2445
!
claus
parents: 151
diff changeset
  2446
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2447
inputOnly
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2448
    "return true, if this view is an input-only view;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2449
     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
  2450
     catch its input"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2451
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2452
    ^ false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2453
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2454
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2455
name
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2456
    "return my name component to be used for resource-access"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2457
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2458
    ^ name
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2459
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2460
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2461
name:aString
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2462
    "set my name component to be used for resource-access"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2463
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2464
    name := aString
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2465
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2466
153
claus
parents: 151
diff changeset
  2467
processName
claus
parents: 151
diff changeset
  2468
    "return a string to be shown in the process monitor"
claus
parents: 151
diff changeset
  2469
claus
parents: 151
diff changeset
  2470
    ^ self name
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2473
styleSheet 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2474
    "return the styleSheet. This is set at early view-creation time,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2475
     from the defaultStyleSheet which is valid at that time.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2476
     It is not affected by later defaultStyle changes"
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
    ^ styleSheet
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
    "Created: 10.9.1995 / 11:02:20 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2481
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2482
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2483
viewGravity
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2484
    "return the viewGravity - thats the direction where the view will move
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2485
     when the superView is resized."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2486
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2487
    ^ viewGravity
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2488
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2489
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2490
viewGravity:gravity
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2491
    "set the viewGravity - thats the direction where the view will move
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2492
     when the superView is resized."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2493
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2494
    viewGravity ~~ gravity ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2495
	viewGravity := gravity.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2496
	drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2497
	    device setWindowGravity:gravity in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2498
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2499
    ]
140
claus
parents: 138
diff changeset
  2500
! !
claus
parents: 138
diff changeset
  2501
claus
parents: 138
diff changeset
  2502
!SimpleView methodsFor:'accessing-mvc'!
claus
parents: 138
diff changeset
  2503
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2504
aspect:aspectSymbol
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2505
    "ST-80 style updating: If a views aspectSymbol is nonNil, 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2506
     it will respond to changes of this aspect from the model.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2507
     Alias for aspectMessage: for ST-80 compatibility."
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
    self aspectMessage:aspectSymbol
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2510
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2511
140
claus
parents: 138
diff changeset
  2512
controller
claus
parents: 138
diff changeset
  2513
    "return the controller. For non MVC views, return nil"
claus
parents: 138
diff changeset
  2514
claus
parents: 138
diff changeset
  2515
    ^ controller
claus
parents: 138
diff changeset
  2516
!
claus
parents: 138
diff changeset
  2517
claus
parents: 138
diff changeset
  2518
controller:aController
claus
parents: 138
diff changeset
  2519
    "set the controller"
claus
parents: 138
diff changeset
  2520
claus
parents: 138
diff changeset
  2521
    controller := aController.
claus
parents: 138
diff changeset
  2522
    controller notNil ifTrue:[
claus
parents: 138
diff changeset
  2523
	controller view:self.
135
claus
parents:
diff changeset
  2524
    ]
claus
parents:
diff changeset
  2525
!
claus
parents:
diff changeset
  2526
140
claus
parents: 138
diff changeset
  2527
model
135
claus
parents:
diff changeset
  2528
    ^ nil
claus
parents:
diff changeset
  2529
!
claus
parents:
diff changeset
  2530
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2531
windowGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2532
    "return the window group. For old style views, return nil"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2533
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2534
    ^ windowGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2535
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2536
140
claus
parents: 138
diff changeset
  2537
windowGroup:aGroup
claus
parents: 138
diff changeset
  2538
    "set the window group."
claus
parents: 138
diff changeset
  2539
claus
parents: 138
diff changeset
  2540
    windowGroup := aGroup
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2541
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2542
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2543
!SimpleView methodsFor:'accessing-transformation'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2544
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2545
maxComponentBottom
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2546
    "return the maximum of all components bottom"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2547
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2548
    components isNil ifTrue:[^ 0].
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2549
    ^ components inject:0 into:[:maxSoFar :sub 
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2550
                                        | (sub bottom) max:maxSoFar].
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2551
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2552
    "Created: 26.5.1996 / 12:44:05 / cg"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2553
    "Modified: 26.5.1996 / 12:56:39 / cg"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2554
!
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2555
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2556
maxComponentRight
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2557
    "return the maximum of all components rights"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2558
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2559
    components isNil ifTrue:[^ 0].
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2560
    ^ components inject:0 into:[:maxSoFar :sub 
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2561
                                        | (sub right) max:maxSoFar].
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2562
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2563
    "Modified: 26.5.1996 / 12:56:39 / cg"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2564
    "Created: 26.5.1996 / 13:02:19 / cg"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2565
!
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2566
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2567
maxSubViewBottom 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2568
"/    subViews isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2569
"/    ^ 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
  2570
      ^ 0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2571
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2572
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2573
maxSubViewRight 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2574
"/    subViews isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2575
"/    ^ 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
  2576
    ^ 0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2577
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2578
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2579
scale:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2580
    "set the scale factor of the transformation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2581
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2582
    super scale:aPoint.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2583
    self computeInnerClip
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2584
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2585
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2586
setViewOrigin:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2587
    "set the viewOrigin - i.e. virtually scroll without redrawing"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2588
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2589
    |p|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2590
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2591
    p := aPoint negated.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2592
    transformation isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2593
	transformation := WindowingTransformation scale:1 translation:p 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2594
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2595
	transformation translation:p 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2596
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2597
    clipRect notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2598
	self setInnerClip.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2599
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2600
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2601
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2602
viewOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2603
    "return the viewOrigin; thats the coordinate of the contents 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2604
     which is shown topLeft in the view 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2605
     (i.e. the origin of the visible part of the contents)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2606
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2607
    transformation isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2608
	^ 0@0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2609
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2610
    ^ transformation translation negated
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2611
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2612
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2613
xOriginOfContents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2614
    "return the x coordinate of the viewOrigin in pixels; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2615
     used by scrollBars to compute thumb position within the document."
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
    ^ self viewOrigin x
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2618
!
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
yOriginOfContents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2621
    "return the y coordinate of the viewOrigin in pixels; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2622
     used by scrollBars to compute thumb position within the document."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2623
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2624
    ^ self viewOrigin y
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2625
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2626
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2627
!SimpleView methodsFor:'accessing-visibility'!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2628
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2629
beInvisible
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2630
    self hiddenOnRealize:true.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2631
    realized ifTrue:[
711
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2632
        superView isNil               "/ I am a topView
574
41257c050cf4 beVisible
ca
parents: 573
diff changeset
  2633
        ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2634
            self unmap
711
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2635
        ] ifFalse:[
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2636
            superView realized        "/ superview already shown
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2637
            ifTrue:[
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2638
                self unmap
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2639
            ]
574
41257c050cf4 beVisible
ca
parents: 573
diff changeset
  2640
        ]
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2641
    ]
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2642
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2643
    "Created: 22.9.1995 / 15:29:01 / claus"
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2644
    "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
  2645
    "Modified: 25.5.1996 / 12:06:14 / cg"
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2646
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2647
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2648
beVisible
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2649
    self hiddenOnRealize:false.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2650
    realized ifFalse:[
711
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2651
        superView isNil                 "/ I am a topView
574
41257c050cf4 beVisible
ca
parents: 573
diff changeset
  2652
        ifTrue:[
711
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2653
            self remap
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2654
        ] ifFalse:[
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2655
            superView realized          "/ superview already shown
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2656
            ifTrue:[
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2657
                self realize
8aa1b1a9536f fixed beVisible, to remap topViews at old position
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2658
            ]
574
41257c050cf4 beVisible
ca
parents: 573
diff changeset
  2659
        ]
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2660
    ]
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
     |top topFrame check list|
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2664
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2665
     top := StandardSystemView new.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2666
     top extent:150@400.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2667
     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
  2668
     topFrame horizontalLayout:#leftSpace.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2669
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2670
     topFrame add:(check := CheckBox label:'hidden').
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2671
     check pressAction:[list beInvisible].
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2672
     check releaseAction:[list beVisible].
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2673
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2674
     list := ScrollableView for:SelectionInListView.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2675
     list origin:0.0@0.4 corner:1.0@1.0.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2676
     list list:#('foo' 'bar' 'baz').
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2677
     top add:list.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2678
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2679
     check turnOn.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2680
     list beInvisible.
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
     top open
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2683
    "
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
    "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
  2686
    "Modified: 25.5.1996 / 12:05:28 / cg"
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2687
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2688
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2689
hidden
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2690
    "return true, if the view does not want to be realized
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2691
     automatically when superview is realized"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2692
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2693
    self obsoleteMethodWarning:'use #isHiddenOnRealize'.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2694
    ^ hiddenOnRealize
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2695
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2696
    "Modified: 17.1.1996 / 11:44:47 / cg"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2697
!
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
hidden:aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2700
    "if the argument is true, the receiver view will not
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2701
     be realized automatically when superview is realized"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2702
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2703
    self obsoleteMethodWarning:'use #beVisible / #beInvisible'.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2704
    hiddenOnRealize := aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2705
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2706
    "Modified: 17.1.1996 / 11:45:06 / cg"
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
hiddenOnRealize:aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2710
    "if the argument is true, the receiver view will not
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2711
     be mapped automatically when the superview is realized.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2712
     The hiddenOnRealize flag is useful to create views which are
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2713
     to be made visible conditionally or later."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2714
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2715
    hiddenOnRealize := aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2716
!
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
isHiddenOnRealize:aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2719
    "return true, if the receiver will NOT be mapped when
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2720
     realized. False otherwise.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2721
     The hiddenOnRealize flag is useful to create views which are
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2722
     to be made visible conditionally or later."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2723
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2724
    ^ hiddenOnRealize
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
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2727
shown
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2728
    "return true if the view is shown; false if not.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2729
     Shown means: the view is mapped and is not completely covered."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2730
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2731
    ^ shown
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2732
! !
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  2733
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2734
!SimpleView methodsFor:'adding & removing components'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2735
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2736
add:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2737
    "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
  2738
     subComponents."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2739
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2740
    self addComponent:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2741
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2742
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2743
add:aComponent in:aRectangleOrLayoutFrame 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2744
    "for ST-80 compatibility.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2745
     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
  2746
     with relative coordinates, or an instance of LayoutFrame, specifying
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2747
     both relative coordinates and the insets."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2748
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2749
"/ old code:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2750
"/    |origin corner l|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2751
"/
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2752
"/    origin := aRectangleOrLayoutFrame origin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2753
"/    origin := origin x asFloat @ origin y asFloat.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2754
"/    corner := aRectangleOrLayoutFrame corner.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2755
"/    corner := corner x asFloat @ corner y asFloat.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2756
"/    aComponent origin:origin corner:corner.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2757
"/
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2758
"/    (aRectangleOrLayoutFrame isMemberOf:Rectangle) ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2759
"/        aComponent leftInset:aRectangleOrLayoutFrame leftOffset.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2760
"/        aComponent rightInset:aRectangleOrLayoutFrame rightOffset negated.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2761
"/        aComponent topInset:aRectangleOrLayoutFrame topOffset.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2762
"/        aComponent bottomInset:aRectangleOrLayoutFrame bottomOffset negated.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2763
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2764
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2765
"/ new (being validated):
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2766
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2767
    |l|
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
    (aRectangleOrLayoutFrame isMemberOf:Rectangle) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2770
	l := aRectangleOrLayoutFrame asLayout.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2771
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2772
	l := aRectangleOrLayoutFrame
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2773
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2774
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2775
"/  will soon be replaced by:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2776
"/    aComponent layout:l.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2777
    aComponent geometryLayout:l.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2778
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2779
    self addComponent:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2780
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2781
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2782
addComponent:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2783
    "components (i.e. gadgets or lightweight views) are being prepared. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2784
     Dont use this right now for non-views"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2785
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2786
    aComponent isView ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2787
        self addSubView:aComponent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2788
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2789
        components isNil ifTrue:[
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2790
            components := OrderedCollection new
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2791
        ].
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2792
        components add:aComponent.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2793
        aComponent container:self.
683
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2794
        shown ifTrue:[
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2795
            aComponent displayOn:self
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2796
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2797
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2798
683
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2799
    "Modified: 13.5.1996 / 21:19:51 / cg"
269
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
addSubView:newView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2803
    "add a view to the collection of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2804
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2805
    subViews isNil ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2806
        subViews := OrderedCollection with:newView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2807
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2808
        subViews add:newView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2809
    ].
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2810
    self setContainerIn:newView.
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
    "Modified: 9.5.1996 / 00:47:16 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2813
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2814
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2815
addSubView:newView after:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2816
    "add a view to the collection of subviews after another view.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2817
     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
  2818
     element at some defined place."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2819
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2820
    subViews isNil ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2821
        subViews := OrderedCollection with:newView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2822
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2823
        aView isNil ifTrue:[
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2824
            subViews add:newView
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2825
        ] ifFalse:[
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2826
            subViews add:newView after:aView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2827
        ]
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2828
    ].
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2829
    self setContainerIn:newView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2830
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2831
    "Modified: 9.5.1996 / 00:47:20 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2832
!
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
addSubView:newView before:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2835
    "add a view to the collection of subviews before another view.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2836
     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
  2837
     element at some defined place."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2838
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2839
    subViews isNil ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2840
        subViews := OrderedCollection with:newView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2841
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2842
        aView isNil ifTrue:[
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2843
            subViews addFirst:newView
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2844
        ] ifFalse:[
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2845
            subViews add:newView before:aView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2846
        ]
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
    self setContainerIn:newView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2849
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2850
    "Modified: 9.5.1996 / 00:47:23 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2851
!
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
addSubView:aView in:bounds borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2854
    "for ST-80 V2.x compatibility"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2855
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2856
    aView borderWidth:bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2857
    self add:aView in:bounds.
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2860
component:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2861
    "components (i.e. gadgets or lightweight views) are being prepared. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2862
     Dont use this right now for non-views"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2863
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2864
    aComponent origin:0.0@0.0 corner:1.0@1.0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2865
    aComponent isView ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2866
        self addSubView:aComponent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2867
    ] ifFalse:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2868
        components := OrderedCollection with:aComponent.
683
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2869
        aComponent container:self.
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2870
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2871
        shown ifTrue:[
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2872
            aComponent displayOn:self
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2873
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2874
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2875
683
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  2876
    "Modified: 13.5.1996 / 21:20:29 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2877
!
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
destroySubViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2880
    "remove all subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2881
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2882
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2883
	subViews copy do:[:aSubView |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2884
	    aSubView destroy.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2885
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2886
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2887
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2888
    "Modified: 5.9.1995 / 22:35:36 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2889
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2890
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2891
removeComponent:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2892
    "components (i.e. gadgets or lightweight views) are being prepared. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2893
     Dont use this right now for non-views"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2894
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2895
    aComponent isView ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2896
	self removeSubView:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2897
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2898
	components isNil ifTrue:[^self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2899
	components remove:aComponent ifAbsent:[].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2900
	aComponent parent:nil 
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
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2903
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2904
removeSubView:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2905
    "remove a view from the collection of subviews"
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
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2908
	subViews remove:aView ifAbsent:[nil].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2909
	(subViews size == 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2910
	    subViews := nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2911
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2912
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2913
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2914
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2915
setContainerIn:aView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2916
    "common code for addSubView* methods"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2917
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2918
    aView container:self.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2919
    (aView device ~~ device) ifTrue:[
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2920
        '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
  2921
        ') 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
  2922
        self class name errorPrint. ').' errorPrintNL.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2923
        aView device:device
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2924
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2925
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2926
    "Modified: 9.5.1996 / 00:42:49 / cg"
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2927
    "Created: 9.5.1996 / 00:46:59 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2928
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2929
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2930
!SimpleView methodsFor:'change & update'!
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
update:aspect with:aParameter from:changedObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2933
    "an update request"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2934
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2935
    aspect == #sizeOfView ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2936
	"one of the views we depend on changed its size"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2937
	^ self superViewChangedSize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2938
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2939
    ^super update:aspect with:aParameter from:changedObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2940
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2941
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2942
!SimpleView methodsFor:'cursor animation'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2943
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2944
showBusyWhile:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2945
    "evaluate some time consuming block, while doing this,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2946
     show a spinning wheel cursor"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2947
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2948
    |ok bitmaps cursors mask process oldCursor|
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
    oldCursor := cursor.
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
    ok := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2953
    bitmaps := #('wheel1' 'wheel2' 'wheel3' 'wheel4') 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2954
	       collect:[:name |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2955
		   |f|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2956
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2957
		   f := Form fromFile:(name , '.xbm').
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2958
		   f isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2959
			('no bitmap file: ' , name , '.xbm') errorPrintNL.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2960
			ok := false
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
		   f
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2965
    mask := Form fromFile:'wheelm.xbm'.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2966
    mask isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2967
	('no bitmap file: ' , mask , '.xbm') errorPrintNL.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2968
	ok := false
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2971
    ok ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2972
	self cursor:Cursor wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2973
	aBlock valueNowOrOnUnwindDo:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2974
	    self cursor:oldCursor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2975
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2976
    ] ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2977
	cursors := bitmaps collect:[:form | (Cursor sourceForm:form
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2978
						      maskForm:mask
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2979
							  hotX:8
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2980
							  hotY:8) on:device].
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
	process := [
371
cc32d8f8bc8d use new Delay-wait
Claus Gittinger <cg@exept.de>
parents: 370
diff changeset
  2983
		    Delay waitForSeconds:0.25.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2984
		    [true] whileTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2985
			cursors do:[:curs |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2986
			    self cursor:curs.
371
cc32d8f8bc8d use new Delay-wait
Claus Gittinger <cg@exept.de>
parents: 370
diff changeset
  2987
			    Delay waitForSeconds:0.05
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2988
			]
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
		   ] fork.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2991
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2992
	Processor activeProcess priority:7.
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
	    Processor activeProcess priority:8.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2995
	    process terminate.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2996
	    self cursor:oldCursor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2997
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2998
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2999
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3000
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3001
     View new realize showBusyWhile:[10 timesRepeat:[3000 factorial]]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3002
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3003
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3004
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3005
!SimpleView methodsFor:'edge drawing'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3006
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3007
drawBottomEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3008
    "draw bottom 3D edge into window frame"
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
    self drawBottomEdgeLevel:level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3011
		      shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3012
		      light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3013
		      halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3014
		      halfLight:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3015
		      style:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3016
!
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
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
  3019
    |botFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3020
     count "{ Class: SmallInteger }" 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3021
     b r|
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
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3024
    count == 0 ifTrue:[^ self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3025
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3026
    (count < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3027
	botFg := lightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3028
	count := count negated
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3029
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3030
	((edgeStyle == #soft) and:[level > 1]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3031
	    botFg := halfShadowColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3032
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3033
	    botFg := shadowColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3034
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3035
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3036
    super paint:botFg.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3037
    super lineWidth:0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3038
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3039
    r := width - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3040
    0 to:(count - 1) do:[:i |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3041
	b := height - 1 - i.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3042
	super displayDeviceLineFromX:i y:b toX:(r - i) y:b
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3043
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3044
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3045
    ((edgeStyle == #soft) and:[level > 1]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3046
	b := height - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3047
	super paint:shadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3048
	super displayDeviceLineFromX:1 y:b toX:r y:b. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3049
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3050
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3051
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3052
drawEdges
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3053
    "draw all of my 3D edges"
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
    self drawEdgesForX:0 y:0 width:width height:height level:level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3056
		shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3057
		light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3058
		halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3059
		halfLight:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3060
		style:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3061
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3062
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3063
drawEdgesForX:x y:y width:w height:h level:l
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3064
    "draw 3D edges into a rectangle"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3065
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3066
    self drawEdgesForX:x y:y width:w height:h level:l 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3067
		shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3068
		light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3069
		halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3070
		halfLight:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3071
		style:nil 
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  3072
!
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3073
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3074
drawLeftEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3075
    "draw left 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3076
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3077
    self drawLeftEdgeLevel:level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3078
		    shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3079
		     light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3080
		     halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3081
		     halfLight:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3082
		     style:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3083
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3084
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3085
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
  3086
    |leftFg leftHalfFg paint b
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3087
     count "{ Class: SmallInteger }" |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3088
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3089
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3090
    count == 0 ifTrue:[^ self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3091
    
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3092
    (count < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3093
	leftFg := shadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3094
	leftHalfFg := halfShadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3095
	count := count negated.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3096
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3097
	leftFg := lightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3098
	leftHalfFg := halfLightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3099
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3100
    leftHalfFg isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3101
	leftHalfFg := leftFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3102
    ].
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
    ((edgeStyle == #soft) and:[level > 0]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3105
	paint := leftHalfFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3106
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3107
	paint := leftFg
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
    super paint:paint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3110
    super lineWidth:0.
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
    b := height - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3113
    0 to:(count - 1) do:[:i |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3114
	super displayDeviceLineFromX:i y:i toX:i y:(b - i)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3115
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3116
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3117
    ((edgeStyle == #soft) and:[level > 2]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3118
	super paint:Black.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3119
	super displayDeviceLineFromX:0 y:0 toX:0 y:b. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3120
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3121
!
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
drawRightEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3124
    "draw right 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3125
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3126
    self drawRightEdgeLevel:level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3127
		     shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3128
		      light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3129
		      halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3130
		      halfLight:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3131
		      style:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3132
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3133
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3134
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
  3135
    |rightFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3136
     count "{ Class: SmallInteger }" 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3137
     r b|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3138
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3139
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3140
    count == 0 ifTrue:[^ self].
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
    (count < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3143
	rightFg := lightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3144
	count := count negated
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3145
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3146
	((edgeStyle == #soft) and:[level > 1]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3147
	    rightFg := halfShadowColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3148
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3149
	    rightFg := shadowColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3150
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3151
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3152
    super paint:rightFg.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3153
    super lineWidth:0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3154
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3155
    b := height - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3156
    0 to:(count - 1) do:[:i |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3157
	r := width - 1 - i.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3158
	super displayDeviceLineFromX:r y:i toX:r y:(b - i)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3159
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3160
    ((edgeStyle == #soft) and:[level > 1]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3161
	r := width - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3162
	super paint:shadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3163
	super displayDeviceLineFromX:r y:1 toX:r y:b. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3164
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3165
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3166
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3167
drawTopEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3168
    "draw top 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3169
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3170
    self drawTopEdgeLevel:level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3171
		   shadow:shadowColor 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3172
		    light:lightColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3173
		    halfShadow:nil 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3174
		    halfLight:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3175
		    style:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3176
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3177
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3178
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
  3179
    |topFg topHalfFg paint r
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3180
     count "{ Class: SmallInteger }" |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3181
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3182
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3183
    count == 0 ifTrue:[^ self].
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
    (count < 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3186
	topFg := shadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3187
	topHalfFg := halfShadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3188
	count := count negated
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3189
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3190
	topFg := lightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3191
	topHalfFg := halfLightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3192
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3193
    topHalfFg isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3194
	topHalfFg := topFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3195
    ].
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
    ((edgeStyle == #soft) and:[level > 0]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3198
	paint := topHalfFg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3199
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3200
	paint := topFg
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
    super paint:paint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3203
    super lineWidth:0.
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
    r := width - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3206
    0 to:(count - 1) do:[:i |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3207
	super displayDeviceLineFromX:i y:i toX:(r - i) y:i
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3208
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3209
    ((edgeStyle == #soft) and:[level > 2]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3210
	super paint:Black.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3211
	super displayDeviceLineFromX:0 y:0 toX:r y:0. 
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
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3214
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3215
redrawEdges
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3216
    "redraw my edges (if any)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3217
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3218
    (level ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3219
	shown ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3220
	    self clipRect:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3221
	    self drawEdges.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3222
	    self clipRect:innerClipRect
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3223
	]                  
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
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3226
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3227
!SimpleView methodsFor:'enumerating subviews'!
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
allSubViewsDo:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3230
    "evaluate aBlock for all subviews (recursively)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3231
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3232
    (subViews isNil or:[subViews isEmpty]) ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3233
	subViews do:[:aSubview |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3234
	    aSubview withAllSubViewsDo:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3235
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3236
    ]
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3239
withAllSubViewsDo:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3240
    "evaluate aBlock for the receiver and all subviews (recursively)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3241
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3242
    aBlock value:self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3243
    self allSubViewsDo:aBlock
135
claus
parents:
diff changeset
  3244
! !
claus
parents:
diff changeset
  3245
claus
parents:
diff changeset
  3246
!SimpleView methodsFor:'event handling'!
claus
parents:
diff changeset
  3247
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3248
activateMenu
520
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3249
    "activate my menu.
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3250
     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
  3251
     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
  3252
     Otherwise, the follwing steps are performed:
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3253
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3254
        - ask the receiver for the menu (via #yellowButtonMenu)
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3255
        - ask the receiver for the menuPerformer.
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3256
        - 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
  3257
        - if the menuPerformer responds to the selector,
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3258
          send it to the performer;
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3259
          otherwise send it to the view (the receiver)
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3260
          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
  3261
          AND still get the views copy/cut/paste functionality.
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3262
          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
  3263
          messages in the performer."
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3264
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3265
    |menu menuPerformer actionSelector actionArg haveArg|
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3266
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3267
    middleButtonMenu isNil ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3268
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3269
        haveArg := false.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3270
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3271
        "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3272
         try ST-80 style menus first:
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3273
         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
  3274
         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
  3275
        "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3276
        menu := self yellowButtonMenu.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3277
        menu notNil ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3278
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3279
             got one, launch the menu. It is supposed
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3280
             to return an actionSelector.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3281
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3282
            menuPerformer := self menuPerformer.
520
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3283
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3284
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3285
             a temporary kludge: subMenus dont know about 
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3286
             actionSelectors yet ...
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3287
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3288
            menu receiver isNil ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3289
                menu receiver:menuPerformer
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3290
            ].
520
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3291
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3292
            "/
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3293
            "/ startup the menu - this returns a selector
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3294
            "/
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3295
            actionSelector := menu startUp.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3296
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
             mhmh - kludge for selectors with argument
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3299
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3300
            (actionSelector isMemberOf:Array) ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3301
                actionArg := actionSelector at:2.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3302
                actionSelector := actionSelector at:1.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3303
                haveArg := true.
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3304
            ].
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3305
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
             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
  3308
             others (copy/cut/paste) to the controller/view
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3309
             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
  3310
            "
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3311
            (actionSelector notNil
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3312
            and:[actionSelector isSymbol]) ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3313
                (menuPerformer respondsTo:actionSelector) ifFalse:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3314
                    (self respondsTo:actionSelector) ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3315
                        menuPerformer := self
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3316
                    ]
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3317
                ].
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3318
                actionSelector numArgs ~~ 0 ifTrue:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3319
                    menuPerformer perform:actionSelector with:actionArg
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3320
                ] ifFalse:[
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3321
                    menuPerformer perform:actionSelector
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3322
                ]
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3323
            ].
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3324
            ^ self
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3325
        ].
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3326
    ].
520
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3327
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3328
    "/
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3329
    "/ old style static menu
3e947f34a2af describe menuPerformer detection in #activateMenu
Claus Gittinger <cg@exept.de>
parents: 517
diff changeset
  3330
    "/
489
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3331
    super activateMenu
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
    "Created: 1.3.1996 / 13:24:18 / cg"
584
6106ad13708d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 574
diff changeset
  3334
    "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
  3335
!
97c51a9ec661 moved menu activation into separate method
Claus Gittinger <cg@exept.de>
parents: 484
diff changeset
  3336
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3337
buttonPress:button x:x y:y
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3338
    "button was pressed - check my components for a hit."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3339
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3340
    components notNil ifTrue:[
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3341
        self componentsContainingX:x y:y do:[:comp :cx :cy |
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3342
            comp buttonPress:button x:cx y:cy.
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3343
            ^ self
472
621c17076f00 static menus override dynamic ones (is this good ?)
Claus Gittinger <cg@exept.de>
parents: 468
diff changeset
  3344
        ]
140
claus
parents: 138
diff changeset
  3345
    ].
claus
parents: 138
diff changeset
  3346
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3347
    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
  3348
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3349
    "Modified: 8.5.1996 / 23:43:41 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3350
!
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3351
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3352
buttonRelease:button x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3353
    "button was released - check my components for a hit."
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3354
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3355
    components notNil ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3356
        self componentsContainingX:x y:y do:[:comp :cx :cy |
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3357
            comp buttonRelease:button x:cx y:cy.
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3358
            ^ self
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3359
        ]
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3360
    ].
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3361
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3362
    super buttonRelease:button x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3363
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3364
    "Modified: 8.5.1996 / 23:41:58 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3365
    "Created: 8.5.1996 / 23:43:25 / cg"
193
Claus Gittinger <cg@exept.de>
parents: 192
diff changeset
  3366
!
Claus Gittinger <cg@exept.de>
parents: 192
diff changeset
  3367
140
claus
parents: 138
diff changeset
  3368
configureX:x y:y width:newWidth height:newHeight
claus
parents: 138
diff changeset
  3369
    "my size has changed by window manager action"
claus
parents: 138
diff changeset
  3370
180
claus
parents: 176
diff changeset
  3371
    |how anyEdge mustRedrawBottomEdge mustRedrawRightEdge p|
claus
parents: 176
diff changeset
  3372
claus
parents: 176
diff changeset
  3373
    (superView isNil 
claus
parents: 176
diff changeset
  3374
    and:[drawableId notNil]) ifTrue:[
claus
parents: 176
diff changeset
  3375
	"/ have to be careful - some window managers (motif) wrap another
claus
parents: 176
diff changeset
  3376
	"/ view around and the reported origin is relative to that.
claus
parents: 176
diff changeset
  3377
	"/ not relative to the screen.
claus
parents: 176
diff changeset
  3378
	p := device translatePoint:0@0 from:drawableId to:device rootWindowId.
claus
parents: 176
diff changeset
  3379
	left := p x.
claus
parents: 176
diff changeset
  3380
	top := p y.
claus
parents: 176
diff changeset
  3381
    ] ifFalse:[
claus
parents: 176
diff changeset
  3382
	left := x.
claus
parents: 176
diff changeset
  3383
	top := y.
claus
parents: 176
diff changeset
  3384
    ].
140
claus
parents: 138
diff changeset
  3385
    ((width ~~ newWidth) or:[height ~~ newHeight]) ifTrue:[
claus
parents: 138
diff changeset
  3386
	realized ifFalse:[
claus
parents: 138
diff changeset
  3387
	    width := newWidth.
claus
parents: 138
diff changeset
  3388
	    height := newHeight.
claus
parents: 138
diff changeset
  3389
	    extentChanged := true.
claus
parents: 138
diff changeset
  3390
	    ^ self
claus
parents: 138
diff changeset
  3391
	].
claus
parents: 138
diff changeset
  3392
claus
parents: 138
diff changeset
  3393
	((newWidth <= width) and:[newHeight <= height]) ifTrue:[
claus
parents: 138
diff changeset
  3394
	    how := #smaller
claus
parents: 138
diff changeset
  3395
	].
claus
parents: 138
diff changeset
  3396
claus
parents: 138
diff changeset
  3397
	level ~~ 0 ifTrue:[
claus
parents: 138
diff changeset
  3398
	    mustRedrawBottomEdge := newHeight < height.
claus
parents: 138
diff changeset
  3399
	    mustRedrawRightEdge := newWidth < width.
claus
parents: 138
diff changeset
  3400
	    anyEdge := mustRedrawBottomEdge or:[mustRedrawRightEdge]
claus
parents: 138
diff changeset
  3401
	] ifFalse:[
claus
parents: 138
diff changeset
  3402
	    anyEdge := false
claus
parents: 138
diff changeset
  3403
	].
claus
parents: 138
diff changeset
  3404
claus
parents: 138
diff changeset
  3405
	width := newWidth.
claus
parents: 138
diff changeset
  3406
	height := newHeight.
claus
parents: 138
diff changeset
  3407
claus
parents: 138
diff changeset
  3408
	"recompute inner-clip if needed"
claus
parents: 138
diff changeset
  3409
	self setInnerClip.
claus
parents: 138
diff changeset
  3410
claus
parents: 138
diff changeset
  3411
	"
claus
parents: 138
diff changeset
  3412
	 must first process pending exposes;
claus
parents: 138
diff changeset
  3413
	 otherwise, those may be drawn at a wrong position
claus
parents: 138
diff changeset
  3414
	"
claus
parents: 138
diff changeset
  3415
	windowGroup notNil ifTrue:[
claus
parents: 138
diff changeset
  3416
	    windowGroup processExposeEvents
claus
parents: 138
diff changeset
  3417
	].
claus
parents: 138
diff changeset
  3418
	self sizeChanged:how.
claus
parents: 138
diff changeset
  3419
claus
parents: 138
diff changeset
  3420
	(anyEdge and:[shown]) ifTrue:[
claus
parents: 138
diff changeset
  3421
	    self clipRect:nil.
claus
parents: 138
diff changeset
  3422
	    mustRedrawBottomEdge ifTrue:[
claus
parents: 138
diff changeset
  3423
		self drawBottomEdge
claus
parents: 138
diff changeset
  3424
	    ].
claus
parents: 138
diff changeset
  3425
	    mustRedrawRightEdge ifTrue:[
claus
parents: 138
diff changeset
  3426
		self drawRightEdge
claus
parents: 138
diff changeset
  3427
	    ].
claus
parents: 138
diff changeset
  3428
	    self clipRect:innerClipRect
claus
parents: 138
diff changeset
  3429
	]
claus
parents: 138
diff changeset
  3430
    ]
138
claus
parents: 137
diff changeset
  3431
!
claus
parents: 137
diff changeset
  3432
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3433
coveredBy:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3434
    "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
  3435
     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
  3436
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3437
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3438
destroyed
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3439
    "view has been destroyed by someone else (usually window system)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3440
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3441
    shown := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3442
    super destroyed
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3443
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3444
135
claus
parents:
diff changeset
  3445
exposeX:x y:y width:w height:h
claus
parents:
diff changeset
  3446
    "a low level redraw event from device
claus
parents:
diff changeset
  3447
      - let subclass handle the redraw and take care of edges here"
claus
parents:
diff changeset
  3448
claus
parents:
diff changeset
  3449
    |leftEdge topEdge rightEdge botEdge anyEdge nx ny nw nh old|
claus
parents:
diff changeset
  3450
claus
parents:
diff changeset
  3451
    nw := w.
claus
parents:
diff changeset
  3452
    nh := h.
claus
parents:
diff changeset
  3453
    nx := x.
claus
parents:
diff changeset
  3454
    ny := y.
claus
parents:
diff changeset
  3455
claus
parents:
diff changeset
  3456
    anyEdge := false.
claus
parents:
diff changeset
  3457
claus
parents:
diff changeset
  3458
    "
claus
parents:
diff changeset
  3459
     check if there is a need to draw an edge (i.e. if margin is hit)
claus
parents:
diff changeset
  3460
    "
claus
parents:
diff changeset
  3461
    (margin ~~ 0) ifTrue:[
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3462
        leftEdge := false.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3463
        topEdge := false.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3464
        rightEdge := false.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3465
        botEdge := false.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3466
        transformation notNil ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3467
            "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3468
             need device coordinates for this test
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3469
            "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3470
            nx := transformation applyToX:nx.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3471
            ny := transformation applyToY:ny.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3472
            nw := transformation applyScaleX:nw.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3473
            nh := transformation applyScaleY:nh.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3474
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3475
        "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3476
         adjust expose rectangle, to exclude the margin.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3477
         Care for rounding errors ...
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3478
        "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3479
        (nx isMemberOf:SmallInteger) ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3480
            old := nx.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3481
            nx := nx truncated.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3482
            nw := nw + (nx - old).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3483
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3484
        (ny isMemberOf:SmallInteger) ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3485
            old := ny.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3486
            ny := ny truncated.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3487
            nh := nh + (ny - old).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3488
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3489
        (nw isMemberOf:SmallInteger) ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3490
            nw := nw truncated + 1
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
        (nh isMemberOf:SmallInteger) ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3493
            nh := nh truncated + 1
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3494
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3495
        (nx < margin) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3496
            old := nx.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3497
            nx := margin.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3498
            nw := nw - (nx - old).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3499
            leftEdge := anyEdge := true.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3500
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3501
        ((nx + nw - 1) >= (width - margin)) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3502
            nw := (width - margin - nx).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3503
            rightEdge := anyEdge := true.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3504
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3505
        (ny < margin) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3506
            old := ny.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3507
            ny := margin.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3508
            nh := nh - (ny - old).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3509
            topEdge := anyEdge := true.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3510
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3511
        ((ny + nh - 1) >= (height - margin)) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3512
            nh := (height - margin - ny).
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3513
            botEdge := anyEdge := true.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3514
        ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3515
        transformation notNil ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3516
            "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3517
             need logical coordinates for redraw
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 := transformation applyInverseToX:nx.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3520
            ny := transformation applyInverseToY:ny.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3521
            nw := transformation applyInverseScaleX:nw.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3522
            nh := transformation applyInverseScaleY:nh.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3523
        ].
135
claus
parents:
diff changeset
  3524
    ].
claus
parents:
diff changeset
  3525
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3526
    (nw > 0 and:[nh > 0]) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3527
        "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3528
         redraw inside area
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3529
        "
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3530
        self redrawX:nx y:ny width:nw height:nh.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3531
    ].
135
claus
parents:
diff changeset
  3532
claus
parents:
diff changeset
  3533
    "
claus
parents:
diff changeset
  3534
     redraw edge(s)
claus
parents:
diff changeset
  3535
    "
claus
parents:
diff changeset
  3536
    anyEdge ifTrue:[
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3537
        self clipRect:nil.
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3538
        (topEdge and:[leftEdge and:[botEdge and:[rightEdge]]]) ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3539
            self drawEdges
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3540
        ] ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3541
            topEdge ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3542
                self drawTopEdge
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3543
            ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3544
            leftEdge ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3545
                self drawLeftEdge
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3546
            ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3547
            botEdge ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3548
                self drawBottomEdge
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3549
            ].
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3550
            rightEdge ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3551
                self drawRightEdge
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3552
            ]
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 clipRect:innerClipRect
135
claus
parents:
diff changeset
  3555
    ]
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3556
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  3557
    "Modified: 26.5.1996 / 18:00:58 / cg"
135
claus
parents:
diff changeset
  3558
!
claus
parents:
diff changeset
  3559
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3560
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
  3561
    "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
  3562
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
  3563
    self showFocus:false
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3564
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3565
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3566
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
  3567
    "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
  3568
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
  3569
    self showNoFocus:false
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3570
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3571
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3572
hasKeyboardFocus:aBoolean
140
claus
parents: 138
diff changeset
  3573
    ^ self
claus
parents: 138
diff changeset
  3574
!
claus
parents: 138
diff changeset
  3575
claus
parents: 138
diff changeset
  3576
keyPress:key x:x y:y
claus
parents: 138
diff changeset
  3577
    "a key has been pressed. If there are components,
claus
parents: 138
diff changeset
  3578
     pass it to the corresponding one. 
claus
parents: 138
diff changeset
  3579
     Otherwise, forward it to the superview, if there is any."
claus
parents: 138
diff changeset
  3580
510
c0c7a04317a9 resources
Claus Gittinger <cg@exept.de>
parents: 503
diff changeset
  3581
    <resource: #keyboard ( #Menu ) >
c0c7a04317a9 resources
Claus Gittinger <cg@exept.de>
parents: 503
diff changeset
  3582
140
claus
parents: 138
diff changeset
  3583
    components notNil ifTrue:[
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3584
        components notNil ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3585
            self componentsContainingX:x y:y do:[:comp :cx :cy |
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3586
                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
  3587
                ^ self
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3588
            ]
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3589
        ].
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3590
    ].
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3591
494
cc7765901744 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 490
diff changeset
  3592
    key == #Menu ifTrue:[
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3593
        ^ self activateMenu.
135
claus
parents:
diff changeset
  3594
    ].
claus
parents:
diff changeset
  3595
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3596
    x isNil ifTrue:[
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3597
        "/ already redelegated, but nowhere handled
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3598
        superView notNil ifTrue:[
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3599
            superView keyPress:key x:nil y:nil.
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3600
        ].
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3601
        ^ self
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3602
    ].
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3603
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3604
    superView notNil ifTrue:[
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3605
        WindowEvent
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3606
            sendEvent:#keyPress:x:y:
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3607
            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
  3608
            view:superView
411
2d5deb02d8f8 if not already forwarded, let keyEvents be handled by superView
Claus Gittinger <cg@exept.de>
parents: 393
diff changeset
  3609
    ] ifFalse:[
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  3610
        super keyPress:key x:x y:y
135
claus
parents:
diff changeset
  3611
    ]
411
2d5deb02d8f8 if not already forwarded, let keyEvents be handled by superView
Claus Gittinger <cg@exept.de>
parents: 393
diff changeset
  3612
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3613
    "Modified: 8.5.1996 / 23:44:36 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3614
!
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3615
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3616
keyRelease:key x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3617
    "a key has been released. If there are components,
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3618
     pass it to the corresponding one. 
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3619
     Otherwise, do whatever my superclass would do."
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3620
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3621
    components notNil ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3622
        components notNil ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3623
            self componentsContainingX:x y:y do:[:comp :cx :cy |
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3624
                comp keyRelease:key x:cx y:cy.
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3625
                ^ self
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3626
            ]
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3627
        ].
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3628
    ].
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3629
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3630
    super keyRelease:key x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3631
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3632
    "Modified: 8.5.1996 / 23:44:36 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  3633
    "Created: 8.5.1996 / 23:45:28 / cg"
135
claus
parents:
diff changeset
  3634
!
claus
parents:
diff changeset
  3635
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3636
mapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3637
    "the view has been mapped (by some outside
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3638
     action - i.e. window manager de-iconified me)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3639
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3640
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3641
     the old code was:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3642
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3643
	realized := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3644
	shown := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3645
	...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3646
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3647
     this created a race condition, if the view was
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3648
     realized and shortly after unrealized - before the mapped event
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3649
     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
  3650
     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
  3651
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3652
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3653
    realized ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3654
	shown := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3655
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3656
	 backed views will not get expose events - have
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3657
	 to force a redraw here to get things drawn into
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3658
	 backing store.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3659
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3660
	backed ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3661
	    self redraw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3662
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3663
	subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3664
	    subViews do:[:v |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3665
		v superViewMapped
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
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3668
    ]
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
reparented
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3672
    "the view has changed its parent by some outside
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3673
     action - i.e. window manager has added a frame.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3674
     nothing done here"
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
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3677
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3678
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3679
saveAndTerminate
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3680
    "window manager wants me to save and go away; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3681
     - notice, that not all window managers are nice enough to 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3682
       send this event, but simply destroy the view instead.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3683
     Can be redefined in subclasses to do whatever is required
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3684
     to prepare for restart."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3685
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3686
    ^ self destroy
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3687
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3688
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3689
sizeChanged:how
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3690
    "tell subviews if I change size.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3691
     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
  3692
     in which subviews are notified (possibly reducing redraw activity)"
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
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3695
	(how isNil "false" 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3696
	or:[how == #smaller]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3697
	    subViews do:[:view |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3698
		view superViewChangedSize
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
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3701
	    "doing it reverse speeds up resizing - usually subviews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3702
	     are created from top-left to bottom-right; therefore
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3703
	     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
  3704
	     this avoids multiple redraws of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3705
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3706
	    subViews reverseDo:[:view |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3707
		view superViewChangedSize
135
claus
parents:
diff changeset
  3708
	    ]
claus
parents:
diff changeset
  3709
	]
claus
parents:
diff changeset
  3710
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3711
    self changed:#sizeOfView with:how.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3712
    superView notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3713
	superView subViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3714
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3715
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3716
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3717
subViewChangedSize
320
b7b8dc88fe9f interest is written with one 'r' (shame on me)
Claus Gittinger <cg@exept.de>
parents: 312
diff changeset
  3718
    "some subview has changed its size; we are not interested
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3719
     in that here, but some geometry managers redefine this, to reorganize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3720
     components if that happens."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3721
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3722
    ^ self
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
    "Created: 22.9.1995 / 14:44:59 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3725
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3726
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3727
superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3728
    "my superView has changed size; if I have relative
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3729
     origin/extent or blocks to evaluate, do it now .."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3730
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3731
    |oldWidth oldHeight oldTop oldLeft newExt newOrg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3732
     winSuper newWidth newHeight newLeft newTop
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3733
     superWidth superHeight superWinWidth superWinHeight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3734
     r|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3735
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3736
    oldWidth := width.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3737
    oldHeight := height.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3738
    oldTop := top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3739
    oldLeft := left.
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
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3742
     slowly migrating to use layoutObjects ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3743
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3744
    layout isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3745
	newOrg := self computeOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3746
	newExt := self computeExtent.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3747
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3748
	r := (layout rectangleRelativeTo:(superView viewRectangle)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3749
			       preferred:(self preferredBounds)).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3750
	newOrg := r origin rounded.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3751
	newExt := r extent rounded.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3752
"/ newOrg printNL.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3753
"/ newExt printNL.
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3756
    newOrg notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3757
	((newOrg x == oldLeft) and:[newOrg y == oldTop]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3758
	    newOrg := nil
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
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3761
    newExt notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3762
	((newExt x == width) and:[newExt y == height]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3763
	    newExt := nil
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3767
    newExt isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3768
	newOrg notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3769
	    self pixelOrigin:newOrg
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3770
	]
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
	newOrg isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3773
	    self pixelExtent:newExt
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3774
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3775
	    self pixelOrigin:newOrg extent:newExt
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3776
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3777
    ]
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
superViewMapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3781
    "my superview was mapped (became visible)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3782
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3783
    realized ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3784
	shown := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3785
	subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3786
	    subViews do:[:v |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3787
		v superViewMapped
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
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3792
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3793
superViewUnmapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3794
    "my superView was unmapped"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3795
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3796
    self unmapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3797
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3798
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3799
terminate
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3800
    "window manager wants me to go away;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3801
     - notice, that not all window managers are nice enough to 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3802
       send this event, but simply destroy the view instead.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3803
     Can be redefined in subclasses to do whatever cleanup is 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3804
     required."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3805
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3806
    ^ self destroy
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3807
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3808
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3809
unmapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3810
    "the view has been unmapped 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3811
     (either by some outside action - i.e. window manager iconified me,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3812
     or due to unmapping of my parentView)"
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
    shown := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3815
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3816
	subViews do:[:v |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3817
	    v superViewUnmapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3818
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3819
    ]
135
claus
parents:
diff changeset
  3820
!
claus
parents:
diff changeset
  3821
claus
parents:
diff changeset
  3822
visibilityChange:how
claus
parents:
diff changeset
  3823
    "the visibility of the view has changed (by some outside
claus
parents:
diff changeset
  3824
     action - i.e. window manager rearranged things).
claus
parents:
diff changeset
  3825
     Using this knowledge avoids useless redraw in obsucred views."
claus
parents:
diff changeset
  3826
claus
parents:
diff changeset
  3827
    how == #fullyObscured ifTrue:[
claus
parents:
diff changeset
  3828
	shown := false
claus
parents:
diff changeset
  3829
    ] ifFalse:[
claus
parents:
diff changeset
  3830
	shown := true.
claus
parents:
diff changeset
  3831
    ]
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3834
!SimpleView methodsFor:'informing others of changes'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3835
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3836
contentsChanged
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3837
    "this one is sent, whenever contents changes size -
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3838
     tell dependents about the change (i.e. scrollers)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3839
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3840
    self changed:#sizeOfContents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3841
!
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
originChanged:delta
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3844
    "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
  3845
     tell dependents (i.e. scrollers) about this"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3846
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3847
    self changed:#originOfContents with:delta.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3848
"/   subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3849
"/        subViews do:[:aSubView |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3850
"/            aSubView pixelOrigin:((aSubView left @ aSubView top) - delta)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3851
"/        ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3852
"/    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3853
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3854
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3855
originWillChange
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3856
    "this one is sent, just before viewOrigin changes -
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3857
     gives subclasses a chance to catch scrolls easily
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3858
     (for example to hide cursor before scroll)"
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
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3861
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3862
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3863
!SimpleView methodsFor:'initialization'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3864
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3865
defaultControllerClass
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3866
    ^ nil "/ Controller
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3867
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3868
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3869
defaultExtent
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  3870
    "return the default extent of my instances."
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  3871
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3872
    ^ self class defaultExtent
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3873
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3874
    "Created: 1.3.1996 / 19:20:46 / cg"
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  3875
    "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
  3876
!
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3877
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3878
initEvents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3879
    "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
  3880
     view events"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3881
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3882
    ^ self
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3885
initStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3886
    "this method sets up all style dependent things"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3887
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3888
    self initStyleSheet.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3889
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3890
    borderWidth := DefaultBorderWidth.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3891
    borderWidth isNil ifTrue:[borderWidth := 1].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3892
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3893
    viewBackground := DefaultViewBackgroundColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3894
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3895
    DefaultLightColor notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3896
	lightColor := DefaultLightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3897
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3898
	device hasGreyscales ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3899
	    DefaultLightColor := lightColor := viewBackground lightened.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3900
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3901
	    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3902
	     this seems strange: on B&W screens, we create the light color 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3903
	     darker than normal viewBackground (White) -
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3904
	     to make the boundary of the view visible
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
	    lightColor := Color grey:50
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
    DefaultShadowColor notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3910
	shadowColor := DefaultShadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3911
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3912
	shadowColor := Black
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3915
    lightColor := lightColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3916
    shadowColor := shadowColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3917
    borderColor := DefaultBorderColor.
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  3918
    font := self class defaultFont.
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  3919
    font := font on:device.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3920
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3921
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3922
initStyleSheet
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3923
    "this method gets the styleSheet"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3924
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3925
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3926
     when coming here the first time, we read the styleSheet
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3927
     and keep the values in fast class variables
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3928
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3929
    StyleSheet isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3930
	self class updateStyleCache
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3931
    ].
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
    styleSheet := StyleSheet.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3934
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3935
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3936
initialize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3937
    "initialize all state of the view - usually redefined in subclasses,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3938
     but always doing a 'super initialize'. Each class should setup its
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3939
     locals - and not forget the others.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3940
     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
  3941
     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
  3942
     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
  3943
     (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
  3944
      leave the state and contents as-is)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3945
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3946
    |ext myClass controllerClass|
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
    super initialize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3949
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  3950
    font := self class defaultFont.
269
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
    shown := hiddenOnRealize := realized := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3953
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3954
    "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
  3955
     initialize methods"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3956
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3957
    myClass := self class.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3958
    name := myClass name "asString" asLowercaseFirst.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3959
    resources := myClass classResources.
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
    level := margin := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3962
    margin := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3963
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3964
    self initStyle.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3965
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3966
    ext := self defaultExtent.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3967
    left := top := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3968
    width := ext x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3969
    height := ext y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3970
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3971
    originChanged := extentChanged := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3972
    bitGravity := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3973
    viewGravity := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3974
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3975
    controllerClass := self defaultControllerClass.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3976
    controllerClass notNil ifTrue:[
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3977
        controller := controllerClass new.
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3978
        controller view:self.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3979
    ].
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3980
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  3981
    "Modified: 1.3.1996 / 19:21:24 / cg"
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3984
initializeMiddleButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3985
    "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
  3986
     first created; usually redefined in subclasses; default here is no menu.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3987
     Notice, that static middleButtonmenus are a historic thing in ST/X;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3988
     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
  3989
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3990
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3991
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3992
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3993
prepareForReinit
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3994
    super prepareForReinit.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3995
    windowGroup notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3996
	windowGroup reinitialize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3997
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3998
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3999
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4000
reinitStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4001
    "this method is called for a style change"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4002
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4003
    |t|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4004
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4005
    self initStyle.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4006
    drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4007
	"force a change"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4008
	t := borderWidth. borderWidth := nil. self borderWidth:t.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4009
	t := viewBackground. viewBackground := nil. self viewBackground:t.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4010
	self clear.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4011
	self redraw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4012
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4013
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4014
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4015
reinitialize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4016
    "this is called right snapIn"
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
    |myController|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4019
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4020
    "if I have already been reinited - return"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4021
    drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4022
	^ self
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
     superView must be there, first
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4027
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4028
    superView notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4029
	superView id isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4030
	    superView reinitialize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4031
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4032
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4033
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4034
    myController := controller.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4035
    controller := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4036
    self recreate.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4037
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4038
    "if I was mapped, do it again"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4039
    realized ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4040
	"only remap if I have a superview - otherwise, I might be
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4041
	 a hidden iconView or menu ..."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4042
	superView notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4043
"/            shown ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4044
		device mapView:self id:drawableId iconified:false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4045
			   atX:left y:top width:width height:height
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4046
"/            ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4047
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4048
    ].
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
    "restore controller"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4051
    controller := myController
135
claus
parents:
diff changeset
  4052
! !
claus
parents:
diff changeset
  4053
140
claus
parents: 138
diff changeset
  4054
!SimpleView methodsFor:'private'!
claus
parents: 138
diff changeset
  4055
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4056
componentsContainingX:x y:y do:aBlock
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4057
    components notNil ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4058
        components do:[:aComponent |
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4059
            |thisFrame|
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4060
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4061
            thisFrame := aComponent bounds.
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4062
            (thisFrame containsPointX:x y:y) ifTrue:[
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4063
                aBlock value:aComponent 
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4064
                       value:x - thisFrame left
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4065
                       value:y - thisFrame top.
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4066
            ]
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4067
        ]
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4068
    ].
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4069
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4070
    "Created: 8.5.1996 / 23:40:59 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4071
!
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  4072
140
claus
parents: 138
diff changeset
  4073
computeInnerClip
claus
parents: 138
diff changeset
  4074
    "compute, but do not set the inside clip-area"
claus
parents: 138
diff changeset
  4075
claus
parents: 138
diff changeset
  4076
    |m2 nX nY nW nH|
claus
parents: 138
diff changeset
  4077
claus
parents: 138
diff changeset
  4078
    (margin ~~ 0) ifTrue:[
claus
parents: 138
diff changeset
  4079
	m2 := margin + margin.
claus
parents: 138
diff changeset
  4080
	nX := nY := margin.
claus
parents: 138
diff changeset
  4081
	nW := width - m2.
claus
parents: 138
diff changeset
  4082
	nH := height - m2.
claus
parents: 138
diff changeset
  4083
	transformation notNil ifTrue:[
claus
parents: 138
diff changeset
  4084
	    nX := transformation applyInverseToX:nX.
claus
parents: 138
diff changeset
  4085
	    nY := transformation applyInverseToY:nY.
claus
parents: 138
diff changeset
  4086
	    nW := transformation applyInverseScaleX:nW.
claus
parents: 138
diff changeset
  4087
	    nH := transformation applyInverseScaleY:nH.
claus
parents: 138
diff changeset
  4088
	].
claus
parents: 138
diff changeset
  4089
	innerClipRect := Rectangle 
claus
parents: 138
diff changeset
  4090
				 left:nX 
claus
parents: 138
diff changeset
  4091
				 top:nY 
claus
parents: 138
diff changeset
  4092
				 width:nW 
claus
parents: 138
diff changeset
  4093
				 height:nH
claus
parents: 138
diff changeset
  4094
    ] ifFalse:[
claus
parents: 138
diff changeset
  4095
	"no clipping"
claus
parents: 138
diff changeset
  4096
	innerClipRect := nil
claus
parents: 138
diff changeset
  4097
    ]
claus
parents: 138
diff changeset
  4098
!
claus
parents: 138
diff changeset
  4099
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4100
cornerFromRelativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4101
    "compute & return pixel corner from relativeCorner"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4102
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4103
    ^ self cornerFromRelativeCorner:relativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4104
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4105
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4106
cornerFromRelativeCorner:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4107
    "compute & return pixel corner from a relativeCorner, aPoint"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4108
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4109
    |p r b bw|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4110
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4111
    p := self pointFromRelative:aPoint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4112
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4113
    bw := borderWidth.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4114
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4115
	bw == 0 ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4116
	    ^ p
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4117
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4118
	^ (p x - bw) @ (p y - bw)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4119
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4120
    r := (insets at:3) + bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4121
    b := (insets at:4) + bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4122
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4123
"/    r := b := bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4124
"/    rightInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4125
"/        r := rightInset + bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4126
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4127
"/    bottomInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4128
"/        b := bottomInset + bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4129
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4130
    ((r ~~ 0) or:[b ~~ 0]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4131
	^ (p x - r) @ (p y - b)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4132
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4133
    ^ p
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4136
extentFromRelativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4137
    "compute & return pixel extent from relativeExtent"
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
    ^ self extentFromRelativeExtent:relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4140
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4141
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4142
extentFromRelativeExtent:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4143
    "compute & return pixel extent from relativeExtent, aPoint"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4144
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4145
    |rel newX newY inRect bw2 i|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4146
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4147
    superView isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4148
	inRect := 0@0 extent:device extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4149
    ] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4150
	inRect := superView viewRectangle.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4151
    ].
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
    bw2 := borderWidth * 2.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4154
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4155
    rel := aPoint x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4156
    rel isInteger ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4157
	newX := (rel * (inRect width + bw2)) asInteger + inRect left.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4158
	(borderWidth ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4159
	    newX := newX - borderWidth
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
    ] ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4162
	newX := rel
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4163
    ].
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
    rel := aPoint y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4166
    rel isInteger ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4167
	newY := (rel * (inRect height + bw2)) asInteger + inRect top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4168
	(borderWidth ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4169
	    newY := newY - borderWidth
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
    ] ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4172
	newY := rel
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4173
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4174
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4175
    insets notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4176
	i := insets at:1.   "top"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4177
	(i  ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4178
	    newX := newX - i
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4179
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4180
	i := insets at:3.   "left"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4181
	(i  ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4182
	    newX := newX - i
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4183
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4184
	i := insets at:2.   "right"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4185
	(i ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4186
	    newY := newY - i
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4187
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4188
	i := insets at:4.   "bottom"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4189
	(i ~~ 0) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4190
	    newY := newY - i
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4191
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4192
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4193
    ^ newX @ newY
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4194
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4195
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4196
originFromRelativeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4197
    "compute & return pixel origin from relativeOrigin"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4198
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4199
    ^ self originFromRelativeOrigin:relativeOrigin
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4202
originFromRelativeOrigin:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4203
    "compute & return pixel origin from relativeOrigin, aPoint"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4204
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4205
    |p l t|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4206
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4207
    p := self pointFromRelative:aPoint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4208
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4209
    insets isNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4210
	^ p
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4211
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4212
    l := insets at:1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4213
    t := insets at:2.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4214
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4215
"/  l := t := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4216
"/    leftInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4217
"/        l := leftInset
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
"/    topInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4220
"/        t := topInset
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
    ((l ~~ 0) or:[t ~~ 0]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4223
	^ (p x + l) @ (p y + t)
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
    ^ p
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
pixelCorner:corner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4229
    "set the views corner in pixels"
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
    |w h|
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
    w := corner x - left + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4234
    h := corner y - top + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4235
    self pixelOrigin:(left @ top) extent:(w @ h)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4236
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4237
    "Modified: 31.8.1995 / 18:20:22 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4238
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4239
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4240
pixelExtent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4241
    "set the views extent in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4242
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4243
    self pixelOrigin:(left @ top) extent:extent
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4246
pixelOrigin:origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4247
    "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
  4248
     to the superviews top-left. For topViews, its the screen origin."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4249
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4250
    |newLeft newTop|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4251
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4252
    newLeft := origin x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4253
    newTop := origin y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4254
    ((newTop ~~ top) or:[newLeft ~~ left]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4255
	top := newTop.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4256
	left := newLeft.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4257
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
	 if the receiver is visible, or is a topView, perform the
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4260
	 operation right away - otherwise, simply remember that the
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4261
	 origin has changed - will tell the display once we get realized
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
"/        (shown 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4264
"/        or:[superView isNil and:[drawableId notNil]]) ifTrue:[
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
	"/ no, have to do it if drawableId is there
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4267
	"/ (otherwise, we could not move unmapped views around ...
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
	drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4270
	    device moveWindow:drawableId x:left y:top
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4271
	] ifFalse:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4272
	    originChanged := true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4273
	]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4274
    ]
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4277
pixelOrigin:origin corner:corner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4278
    "set the views origin and corner in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4279
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4280
    |w h|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4281
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4282
    w := corner x - origin x + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4283
    h := corner y - origin y + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4284
    self pixelOrigin:origin extent:(w @ h)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4285
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4286
    "Modified: 31.8.1995 / 18:24:16 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4287
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4288
140
claus
parents: 138
diff changeset
  4289
pixelOrigin:origin extent:extent
claus
parents: 138
diff changeset
  4290
    "set the views origin and extent in pixels"
claus
parents: 138
diff changeset
  4291
claus
parents: 138
diff changeset
  4292
    |newLeft newTop newWidth newHeight how 
claus
parents: 138
diff changeset
  4293
     mustRedrawBottomEdge mustRedrawRightEdge mustRepaintBottom
claus
parents: 138
diff changeset
  4294
     mustRepaintRight sameOrigin oldWidth oldHeight|
claus
parents: 138
diff changeset
  4295
claus
parents: 138
diff changeset
  4296
    newLeft := origin x.
claus
parents: 138
diff changeset
  4297
    newTop := origin y.
claus
parents: 138
diff changeset
  4298
    sameOrigin := ((newTop == top) and:[newLeft == left]).
claus
parents: 138
diff changeset
  4299
claus
parents: 138
diff changeset
  4300
    newWidth := extent x.
claus
parents: 138
diff changeset
  4301
    newHeight := extent y.
claus
parents: 138
diff changeset
  4302
claus
parents: 138
diff changeset
  4303
    "
claus
parents: 138
diff changeset
  4304
     X complains badly if you try to create/resize a view with
claus
parents: 138
diff changeset
  4305
     a dimension <= 0 ... (although I think that 0 maks sense ...)
claus
parents: 138
diff changeset
  4306
    "
claus
parents: 138
diff changeset
  4307
    newWidth < 1 ifTrue:[
claus
parents: 138
diff changeset
  4308
	newWidth := 1.
claus
parents: 138
diff changeset
  4309
    ].
claus
parents: 138
diff changeset
  4310
    newHeight < 1 ifTrue:[
claus
parents: 138
diff changeset
  4311
	newHeight := 1
claus
parents: 138
diff changeset
  4312
    ].
claus
parents: 138
diff changeset
  4313
claus
parents: 138
diff changeset
  4314
    ((newWidth == width) and:[newHeight == height]) ifTrue:[
claus
parents: 138
diff changeset
  4315
	sameOrigin ifTrue:[^ self].
claus
parents: 138
diff changeset
  4316
	^ self pixelOrigin:origin
claus
parents: 138
diff changeset
  4317
    ].
claus
parents: 138
diff changeset
  4318
    top := newTop.
claus
parents: 138
diff changeset
  4319
    left := newLeft.
claus
parents: 138
diff changeset
  4320
claus
parents: 138
diff changeset
  4321
"/    shown ifTrue:[                  "4-nov-94 actually correct,"
claus
parents: 138
diff changeset
  4322
    drawableId notNil ifTrue:[        "but theres a bug in menus when resized while hidden"
151
claus
parents: 145
diff changeset
  4323
	mustRedrawBottomEdge := (level ~~ 0) and:[newHeight < height].
claus
parents: 145
diff changeset
  4324
	mustRedrawRightEdge := (level ~~ 0) and:[newWidth < width].
claus
parents: 145
diff changeset
  4325
claus
parents: 145
diff changeset
  4326
	((newHeight <= height) and:[newWidth <= width]) ifTrue:[
claus
parents: 145
diff changeset
  4327
	    how := #smaller
claus
parents: 145
diff changeset
  4328
	].
claus
parents: 145
diff changeset
  4329
140
claus
parents: 138
diff changeset
  4330
	mustRepaintRight := false.
claus
parents: 138
diff changeset
  4331
	mustRepaintBottom := false.
claus
parents: 138
diff changeset
  4332
	(level ~~ 0) ifTrue:[
claus
parents: 138
diff changeset
  4333
	    "clear the old edges"
claus
parents: 138
diff changeset
  4334
claus
parents: 138
diff changeset
  4335
	    newWidth > width ifTrue:[
claus
parents: 138
diff changeset
  4336
		self clipRect:nil.
claus
parents: 138
diff changeset
  4337
		self paint:viewBackground.
claus
parents: 138
diff changeset
  4338
		self fillDeviceRectangleX:(width - margin)
claus
parents: 138
diff changeset
  4339
					y:0
claus
parents: 138
diff changeset
  4340
				    width:margin
claus
parents: 138
diff changeset
  4341
				   height:height.
claus
parents: 138
diff changeset
  4342
		mustRepaintRight := true.
claus
parents: 138
diff changeset
  4343
		oldWidth := width
claus
parents: 138
diff changeset
  4344
	    ].
claus
parents: 138
diff changeset
  4345
	    newHeight > height ifTrue:[
claus
parents: 138
diff changeset
  4346
		self clipRect:nil.
claus
parents: 138
diff changeset
  4347
		self paint:viewBackground.
claus
parents: 138
diff changeset
  4348
		self fillDeviceRectangleX:0
claus
parents: 138
diff changeset
  4349
					y:(height - margin)
claus
parents: 138
diff changeset
  4350
				    width:width
claus
parents: 138
diff changeset
  4351
				   height:margin.
claus
parents: 138
diff changeset
  4352
		mustRepaintBottom := true.
claus
parents: 138
diff changeset
  4353
		oldHeight := height
claus
parents: 138
diff changeset
  4354
	    ]
claus
parents: 138
diff changeset
  4355
	].
claus
parents: 138
diff changeset
  4356
claus
parents: 138
diff changeset
  4357
	width := newWidth.
claus
parents: 138
diff changeset
  4358
	height := newHeight.
claus
parents: 138
diff changeset
  4359
claus
parents: 138
diff changeset
  4360
	self setInnerClip.
claus
parents: 138
diff changeset
  4361
claus
parents: 138
diff changeset
  4362
	"if view becomes smaller, send sizeChanged first"
claus
parents: 138
diff changeset
  4363
	(how == #smaller) ifTrue:[
claus
parents: 138
diff changeset
  4364
	    self sizeChanged:how
claus
parents: 138
diff changeset
  4365
	].
claus
parents: 138
diff changeset
  4366
claus
parents: 138
diff changeset
  4367
	"have to tell X, when extent of view is changed"
claus
parents: 138
diff changeset
  4368
	sameOrigin ifTrue:[
claus
parents: 138
diff changeset
  4369
	    device resizeWindow:drawableId width:width height:height.
claus
parents: 138
diff changeset
  4370
	] ifFalse:[
claus
parents: 138
diff changeset
  4371
	    "claus: some xservers seem to do better when resizing
claus
parents: 138
diff changeset
  4372
	     first ...."
claus
parents: 138
diff changeset
  4373
" 
claus
parents: 138
diff changeset
  4374
	    (how == #smaller) ifTrue:[
claus
parents: 138
diff changeset
  4375
		device resizeWindow:drawableId width:width height:height.
claus
parents: 138
diff changeset
  4376
		device moveWindow:drawableId x:left y:top
claus
parents: 138
diff changeset
  4377
	    ] ifFalse:[
claus
parents: 138
diff changeset
  4378
		device moveResizeWindow:drawableId x:left y:top width:width height:height
claus
parents: 138
diff changeset
  4379
	    ].
claus
parents: 138
diff changeset
  4380
" 
claus
parents: 138
diff changeset
  4381
	    device moveResizeWindow:drawableId x:left y:top
claus
parents: 138
diff changeset
  4382
					   width:width height:height.
claus
parents: 138
diff changeset
  4383
" "
claus
parents: 138
diff changeset
  4384
	].
claus
parents: 138
diff changeset
  4385
claus
parents: 138
diff changeset
  4386
	"if view becomes bigger, send sizeChanged after"
claus
parents: 138
diff changeset
  4387
	(how ~~ #smaller) ifTrue:[
claus
parents: 138
diff changeset
  4388
	    self sizeChanged:how
claus
parents: 138
diff changeset
  4389
	].
claus
parents: 138
diff changeset
  4390
claus
parents: 138
diff changeset
  4391
	(mustRedrawBottomEdge or:[mustRedrawRightEdge]) ifTrue:[
claus
parents: 138
diff changeset
  4392
	    self clipRect:nil.
claus
parents: 138
diff changeset
  4393
	    mustRedrawBottomEdge ifTrue:[
claus
parents: 138
diff changeset
  4394
		self drawBottomEdge
claus
parents: 138
diff changeset
  4395
	    ].
claus
parents: 138
diff changeset
  4396
	    mustRedrawRightEdge ifTrue:[
claus
parents: 138
diff changeset
  4397
		self drawRightEdge
claus
parents: 138
diff changeset
  4398
	    ].
claus
parents: 138
diff changeset
  4399
	    self clipRect:innerClipRect
claus
parents: 138
diff changeset
  4400
	].
claus
parents: 138
diff changeset
  4401
claus
parents: 138
diff changeset
  4402
	mustRepaintRight ifTrue:[
claus
parents: 138
diff changeset
  4403
	    self redrawDeviceX:(oldWidth - margin)
claus
parents: 138
diff changeset
  4404
			     y:0
claus
parents: 138
diff changeset
  4405
			 width:margin
claus
parents: 138
diff changeset
  4406
			height:height.
claus
parents: 138
diff changeset
  4407
	].
claus
parents: 138
diff changeset
  4408
	mustRepaintBottom ifTrue:[
claus
parents: 138
diff changeset
  4409
	    self redrawDeviceX:0
claus
parents: 138
diff changeset
  4410
			     y:(oldHeight - margin)
claus
parents: 138
diff changeset
  4411
			 width:width
claus
parents: 138
diff changeset
  4412
			height:margin.
claus
parents: 138
diff changeset
  4413
	].
claus
parents: 138
diff changeset
  4414
    ] ifFalse:[
claus
parents: 138
diff changeset
  4415
	"otherwise memorize the need for a sizeChanged message"
claus
parents: 138
diff changeset
  4416
claus
parents: 138
diff changeset
  4417
	width := newWidth.
claus
parents: 138
diff changeset
  4418
	height := newHeight.
claus
parents: 138
diff changeset
  4419
	sameOrigin ifFalse:[
claus
parents: 138
diff changeset
  4420
	    originChanged := true.
claus
parents: 138
diff changeset
  4421
	].
claus
parents: 138
diff changeset
  4422
	extentChanged := true
claus
parents: 138
diff changeset
  4423
    ]
claus
parents: 138
diff changeset
  4424
!
claus
parents: 138
diff changeset
  4425
claus
parents: 138
diff changeset
  4426
pointFromRelative:p
claus
parents: 138
diff changeset
  4427
    "compute absolute coordinate from p"
claus
parents: 138
diff changeset
  4428
claus
parents: 138
diff changeset
  4429
    |newX newY rel inRect bw superWidth superHeight superLeft superTop |
claus
parents: 138
diff changeset
  4430
claus
parents: 138
diff changeset
  4431
    bw := borderWidth.
claus
parents: 138
diff changeset
  4432
claus
parents: 138
diff changeset
  4433
    superView isNil ifTrue:[
claus
parents: 138
diff changeset
  4434
	superWidth := device width + bw.      
claus
parents: 138
diff changeset
  4435
	superHeight := device height + bw.
claus
parents: 138
diff changeset
  4436
	superLeft := superTop := 0.
claus
parents: 138
diff changeset
  4437
    ] ifFalse:[
claus
parents: 138
diff changeset
  4438
	inRect := superView viewRectangle.
claus
parents: 138
diff changeset
  4439
	superWidth := inRect width.
claus
parents: 138
diff changeset
  4440
	superHeight := inRect height.
claus
parents: 138
diff changeset
  4441
	superLeft := inRect left.
claus
parents: 138
diff changeset
  4442
	superTop := inRect top.
claus
parents: 138
diff changeset
  4443
    ].
claus
parents: 138
diff changeset
  4444
claus
parents: 138
diff changeset
  4445
    rel := p x.
claus
parents: 138
diff changeset
  4446
    rel isInteger ifTrue:[
claus
parents: 138
diff changeset
  4447
	newX := rel
claus
parents: 138
diff changeset
  4448
    ] ifFalse:[
claus
parents: 138
diff changeset
  4449
	newX := (rel * superWidth) asInteger + superLeft.
claus
parents: 138
diff changeset
  4450
	(bw ~~ 0) ifTrue:[
claus
parents: 138
diff changeset
  4451
	    rel ~= 1.0 ifTrue:[
claus
parents: 138
diff changeset
  4452
		newX := newX - bw
claus
parents: 138
diff changeset
  4453
	    ]
claus
parents: 138
diff changeset
  4454
	]
claus
parents: 138
diff changeset
  4455
    ].
claus
parents: 138
diff changeset
  4456
claus
parents: 138
diff changeset
  4457
    rel := p y.
claus
parents: 138
diff changeset
  4458
    rel isInteger ifTrue:[
claus
parents: 138
diff changeset
  4459
	newY := rel
claus
parents: 138
diff changeset
  4460
    ] ifFalse:[
claus
parents: 138
diff changeset
  4461
	newY := (rel * superHeight) asInteger + superTop.
claus
parents: 138
diff changeset
  4462
	(bw ~~ 0) ifTrue:[
claus
parents: 138
diff changeset
  4463
	    rel ~= 1.0 ifTrue:[
claus
parents: 138
diff changeset
  4464
		newY := newY - bw
claus
parents: 138
diff changeset
  4465
	    ]
claus
parents: 138
diff changeset
  4466
	]
claus
parents: 138
diff changeset
  4467
    ].
claus
parents: 138
diff changeset
  4468
    ^ newX @ newY
claus
parents: 138
diff changeset
  4469
!
claus
parents: 138
diff changeset
  4470
claus
parents: 138
diff changeset
  4471
setBorderColor
claus
parents: 138
diff changeset
  4472
    "set my borderColor"
claus
parents: 138
diff changeset
  4473
claus
parents: 138
diff changeset
  4474
    |id dither|
claus
parents: 138
diff changeset
  4475
claus
parents: 138
diff changeset
  4476
    drawableId notNil ifTrue:[
claus
parents: 138
diff changeset
  4477
	borderColor := borderColor on:device.
claus
parents: 138
diff changeset
  4478
	id := borderColor colorId.
claus
parents: 138
diff changeset
  4479
	id notNil ifTrue:[
claus
parents: 138
diff changeset
  4480
	    device setWindowBorderColor:id in:drawableId
claus
parents: 138
diff changeset
  4481
	] ifFalse:[
claus
parents: 138
diff changeset
  4482
	    dither := borderColor ditherForm.
claus
parents: 138
diff changeset
  4483
	    dither notNil ifTrue:[
claus
parents: 138
diff changeset
  4484
		device setWindowBorderPixmap:(dither id) in:drawableId
claus
parents: 138
diff changeset
  4485
	    ] ifFalse:[
145
claus
parents: 144
diff changeset
  4486
		'VIEW: bad borderColor' errorPrintNL
135
claus
parents:
diff changeset
  4487
	    ]
claus
parents:
diff changeset
  4488
	]
claus
parents:
diff changeset
  4489
    ]
claus
parents:
diff changeset
  4490
!
claus
parents:
diff changeset
  4491
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4492
setInnerClip
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4493
    "compute, and set the inside clip-area"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4494
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4495
    self computeInnerClip.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4496
    self clipRect:innerClipRect
140
claus
parents: 138
diff changeset
  4497
! !
claus
parents: 138
diff changeset
  4498
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4499
!SimpleView methodsFor:'queries'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4500
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4501
buttonMotionEventPending
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4502
    "return true, if a button motion event is pending.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4503
     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
  4504
     (not even for mouse-tracking).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4505
     Dont use it, since it does not honor the windowGroup, but
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4506
     goes directly to the device instead.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4507
     Actually, its a historical leftover"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4508
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4509
    windowGroup notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4510
	^ windowGroup sensor hasButtonMotionEventsFor:self
140
claus
parents: 138
diff changeset
  4511
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4512
    ^ super buttonMotionEventPending
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4513
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4514
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4515
canDrop:anObjectOrCollection
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4516
    "return true, if anObjectOrCollection can be
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4517
     dropped in the receiver. This method should be
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4518
     redefined in views which can take objects"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4519
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4520
    ^ false
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4521
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4522
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4523
canHandle:aKey
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4524
    "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
  4525
     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
  4526
     leftOver and will be removed. Use the delegation mechanism for this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4527
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4528
    ^ false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4529
!
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
canHandle:aKey from:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4532
    "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
  4533
     in aView.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4534
     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
  4535
     leftOver and will be removed. Use the delegation mechanism for this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4536
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4537
    ^ self canHandle:aKey
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4540
delegatesTo:someone
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4541
    "return true, if I delegate events to someone"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4542
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4543
    delegate isNil ifTrue:[^ false].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4544
    ^ delegate delegatesTo:someone
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4545
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4546
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4547
hasFocus
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4548
    "return true, if the receiver has the keyboard focus
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4549
     (either via the focusView mechanism in the windowGroup,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4550
      or via delegation)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4551
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4552
    |focusView delegate|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4553
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4554
    windowGroup isNil ifTrue:[^ false].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4555
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4556
    (focusView := windowGroup focusView) == self ifTrue:[^ true].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4557
    focusView notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4558
	"mhmh - is there a delegation to me ?"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4559
	(delegate := focusView delegate) notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4560
	    delegate == self ifTrue:[^ true].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4561
	    ^ delegate delegatesTo:self
135
claus
parents:
diff changeset
  4562
	]
claus
parents:
diff changeset
  4563
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4564
    ^ false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4565
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4566
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4567
is3D
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4568
    "return true, if my style is some kind of 3D style
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4569
     This is OBSOLETE and will be removed."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4570
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4571
    ^ styleSheet is3D
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4572
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4573
497
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4574
isInputField
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4575
    "return true, if the receiver is some kind of input view,
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4576
     i.e. it should (can) be part of an enterGroup.
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4577
     Return false here, this is redefined in EnterField."
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4578
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4579
    ^ false
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4580
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4581
    "Created: 4.3.1996 / 11:34:07 / cg"
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4582
!
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  4583
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4584
isPopUpView
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4585
    "return true, if this view should be put on top (raised) automatically.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4586
     usually this is true for alertBoxes etc."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4587
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4588
    ^ false
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4589
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4590
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4591
isSubViewOf:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4592
    "return true, if I am a subview of aView"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4593
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4594
    aView == self isNil ifTrue:[^ true].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4595
    superView isNil ifTrue:[^ false].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4596
    superView == aView ifTrue:[^ true].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4597
    ^ superView isSubViewOf:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4598
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4599
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4600
isView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4601
    "return true, if the receiver is some kind of view;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4602
     true is returned here."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4603
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4604
    ^ true
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4605
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4606
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4607
preferredBounds
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4608
    "ST-80 compatibility."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4609
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4610
    ^ 0@0 corner:self preferredExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4611
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4612
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4613
preferredExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4614
    "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
  4615
     The default here is the actual extent, the receiver currently has."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4616
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4617
    "mhmh - if I have components, collect their
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4618
     preferred bounds ..."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4619
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4620
    |maxX maxY|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4621
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4622
    subViews isNil ifTrue:[^ self extent].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4623
"/    ^ self extent.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4624
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4625
    maxX := maxY := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4626
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4627
	subViews do:[:aSubView |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4628
	    |org corn|
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
	    org := aSubView computeOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4631
	    corn := org + aSubView preferredExtent.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4632
	    maxX := maxX max:corn x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4633
	    maxY := maxY max:corn y.
140
claus
parents: 138
diff changeset
  4634
	]
claus
parents: 138
diff changeset
  4635
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4636
    ^ maxX @ maxY.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4637
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4638
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4639
sizeFixed
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4640
    "return true, if this vew wants its size to remain unchanged.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4641
     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
  4642
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4643
    ^ false
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
    "Created: 17.9.1995 / 20:29:20 / claus"
140
claus
parents: 138
diff changeset
  4646
! !
claus
parents: 138
diff changeset
  4647
claus
parents: 138
diff changeset
  4648
!SimpleView methodsFor:'realization'!
claus
parents: 138
diff changeset
  4649
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4650
create
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4651
    "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
  4652
     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
  4653
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4654
    drawableId isNil ifTrue:[
151
claus
parents: 145
diff changeset
  4655
	"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4656
	 make certain that superview is created also
151
claus
parents: 145
diff changeset
  4657
	"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4658
	superView notNil ifTrue:[
355
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4659
	     superView create.
269
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
"/            "and put my controller into the superviews controller list"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4662
"/            controller notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4663
"/                superView controller notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4664
"/                    controller manager:(superView controller manager)
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
"/            ]
355
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4667
	] ifFalse:[
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4668
	    "/
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4669
	    "/ 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
  4670
	    "/ 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
  4671
	    "/
3bff8697c536 automatically start an event dispatch process when a topView is
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
  4672
	    device startDispatch
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4673
	].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4674
343
f5d86df5c66b dont care for nil cursors
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4675
	cursor notNil ifTrue:[
f5d86df5c66b dont care for nil cursors
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4676
	    cursor := cursor on:device.
f5d86df5c66b dont care for nil cursors
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4677
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4678
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4679
	self physicalCreate.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4680
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4681
	viewBackground notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4682
	   self setViewBackground
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4685
	self initializeMiddleButtonMenu.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4686
	self initEvents.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4687
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
	 this is the first create,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4690
	 force sizechange messages to be sent to the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4691
	"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4692
	extentChanged := true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4693
	originChanged := true
151
claus
parents: 145
diff changeset
  4694
    ]
claus
parents: 145
diff changeset
  4695
!
claus
parents: 145
diff changeset
  4696
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4697
createWithAllSubViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4698
    "create, then create all subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4699
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4700
    drawableId isNil ifTrue:[self create].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4701
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4702
	subViews do:[:subView | subView createWithAllSubViews]
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
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4705
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4706
destroy
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4707
    "unmap & destroy - make me invisible, destroy subviews then
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4708
     make me unknown to the device"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4709
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4710
    |subs|
140
claus
parents: 138
diff changeset
  4711
claus
parents: 138
diff changeset
  4712
    realized ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4713
        self unmap.            
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4714
        "make it go away immediately
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4715
         - also, this hides the subview killing"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4716
"
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4717
        device synchronizeOutput. 
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4718
"
151
claus
parents: 145
diff changeset
  4719
    ].
claus
parents: 145
diff changeset
  4720
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4721
"/    controller notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4722
"/      controller release.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4723
"/      controller := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4724
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4725
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4726
    subs := subViews.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4727
    subs notNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4728
        "stupid: destroy removes itself from the subview list
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4729
         - therefore we have to loop over a copy here"
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4730
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4731
        subViews := nil.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4732
        subs do:[:aView |
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4733
            aView notNil ifTrue:[aView destroy]             
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4734
        ]
140
claus
parents: 138
diff changeset
  4735
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4736
    superView notNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4737
        superView removeSubView:self.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4738
        superView := nil
140
claus
parents: 138
diff changeset
  4739
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4740
    super destroy.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4741
312
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  4742
    superView isNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4743
        device flush
312
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  4744
    ].
a3500ca1f37b stefans changes
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  4745
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4746
    controller notNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4747
        controller release.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4748
        controller := nil.
140
claus
parents: 138
diff changeset
  4749
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4750
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4751
    windowGroup notNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4752
        windowGroup removeView:self.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4753
        windowGroup := nil
140
claus
parents: 138
diff changeset
  4754
    ].
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4755
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  4756
    "Modified: 3.5.1996 / 23:49:24 / stefan"
140
claus
parents: 138
diff changeset
  4757
!
claus
parents: 138
diff changeset
  4758
claus
parents: 138
diff changeset
  4759
fixSize
claus
parents: 138
diff changeset
  4760
    "This is called right before the view is made visible.
claus
parents: 138
diff changeset
  4761
     Adjust the size of the view according to either relative/abs or
claus
parents: 138
diff changeset
  4762
     block extent; also set origin. Also, subclasses may redefine this
claus
parents: 138
diff changeset
  4763
     method to adjust the size based on some extent (for example, PopUpMenus
claus
parents: 138
diff changeset
  4764
     do so to take care of changed number of menu entries)."
claus
parents: 138
diff changeset
  4765
151
claus
parents: 145
diff changeset
  4766
    |org ext r|
claus
parents: 145
diff changeset
  4767
claus
parents: 145
diff changeset
  4768
    "
claus
parents: 145
diff changeset
  4769
     slowly migrating to use layoutObjects ...
claus
parents: 145
diff changeset
  4770
    "
claus
parents: 145
diff changeset
  4771
    layout notNil ifTrue:[
claus
parents: 145
diff changeset
  4772
	(originChanged or:[extentChanged or:[cornerChanged]]) ifTrue:[
claus
parents: 145
diff changeset
  4773
	    r := (layout rectangleRelativeTo:(superView viewRectangle)
claus
parents: 145
diff changeset
  4774
				   preferred:(self preferredBounds)).
claus
parents: 145
diff changeset
  4775
	    org := r origin rounded.
claus
parents: 145
diff changeset
  4776
	    ext := r extent rounded.
claus
parents: 145
diff changeset
  4777
	    self pixelOrigin:org extent:ext.
claus
parents: 145
diff changeset
  4778
	].
claus
parents: 145
diff changeset
  4779
	^ self.
claus
parents: 145
diff changeset
  4780
    ].
claus
parents: 145
diff changeset
  4781
140
claus
parents: 138
diff changeset
  4782
    "if the extent is not the one we created the window with ..."
claus
parents: 138
diff changeset
  4783
    extentChanged ifTrue:[
claus
parents: 138
diff changeset
  4784
	self sizeChanged:nil.
claus
parents: 138
diff changeset
  4785
	extentChanged := false
claus
parents: 138
diff changeset
  4786
    ].
claus
parents: 138
diff changeset
  4787
claus
parents: 138
diff changeset
  4788
    originChanged ifTrue:[
claus
parents: 138
diff changeset
  4789
"/        org := self computeOrigin.
claus
parents: 138
diff changeset
  4790
"/        self pixelOrigin:org.    
claus
parents: 138
diff changeset
  4791
	originRule notNil ifTrue:[
claus
parents: 138
diff changeset
  4792
	    self pixelOrigin:self computeOrigin
claus
parents: 138
diff changeset
  4793
	] ifFalse:[
claus
parents: 138
diff changeset
  4794
	    relativeOrigin notNil ifTrue:[
claus
parents: 138
diff changeset
  4795
		self originFromRelativeOrigin:relativeOrigin
claus
parents: 138
diff changeset
  4796
	    ] ifFalse:[
151
claus
parents: 145
diff changeset
  4797
		shown ifTrue:[
claus
parents: 145
diff changeset
  4798
		    device moveWindow:drawableId x:left y:top.
claus
parents: 145
diff changeset
  4799
		] ifFalse:[
claus
parents: 145
diff changeset
  4800
		    self pixelOrigin:left@top
claus
parents: 145
diff changeset
  4801
		].
140
claus
parents: 138
diff changeset
  4802
	    ].
claus
parents: 138
diff changeset
  4803
	].
claus
parents: 138
diff changeset
  4804
	originChanged := false
claus
parents: 138
diff changeset
  4805
    ]
claus
parents: 138
diff changeset
  4806
!
claus
parents: 138
diff changeset
  4807
393
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4808
hide
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4809
    "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
  4810
     ignored here."
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4811
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4812
    ^ self
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4813
!
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4814
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4815
hideRequest
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4816
    "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
  4817
     ignored here."
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4818
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4819
    ^ self
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4820
!
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  4821
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4822
map
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4823
    "make the view visible on the screen"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4824
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4825
    realized ifFalse:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4826
        drawableId isNil ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4827
            self realize
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4828
        ] ifFalse:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4829
            "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4830
             now, make the view visible
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4831
            "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4832
            device mapWindow:drawableId.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4833
            realized := true.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4834
        ]
140
claus
parents: 138
diff changeset
  4835
    ]
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4836
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4837
    "Modified: 8.5.1996 / 09:36:21 / cg"
140
claus
parents: 138
diff changeset
  4838
!
claus
parents: 138
diff changeset
  4839
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4840
physicalCreate
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4841
    "common code for create & recreate: 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4842
     physically create (but do not map) the view on the device."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4843
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4844
    "associate colors to device"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4845
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4846
    drawableId := device 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4847
		      createWindowFor:self 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4848
			  origin:(left @ top)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4849
			  extent:(width @ height)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4850
			  minExtent:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4851
			  maxExtent:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4852
			  borderWidth:borderWidth
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4853
			  subViewOf:superView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4854
			  onTop:(self isPopUpView)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4855
			  inputOnly:(self inputOnly)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4856
			  label:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4857
			  cursor:cursor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4858
			  icon:nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4859
			  iconView:nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4860
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4861
    Lobby registerChange:self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4862
    extentChanged := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4863
    originChanged := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4864
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4865
    (borderColor notNil and:[borderColor ~~ Black]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4866
"/        borderColor := borderColor on:device.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4867
	self setBorderColor
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
    (viewGravity notNil "and:[viewGravity ~~ #NorthWest]") ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4870
	device setWindowGravity:viewGravity in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4871
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4872
    (bitGravity notNil "and:[bitGravity ~~ #NorthWest]") ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4873
	device setBitGravity:bitGravity in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4874
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4875
    borderShape notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4876
	device setWindowBorderShape:(borderShape id) in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4877
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4878
    viewShape notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4879
	device setWindowShape:(viewShape id) in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4880
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4881
    (backed notNil and:[backed ~~ false]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4882
	device setBackingStore:backed in:drawableId
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
    saveUnder ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4885
	device setSaveUnder:true in:drawableId
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4886
    ].
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4889
realize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4890
    "realize - make visible;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4891
     realizing is done very late (after layout is fixed) to avoid
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4892
     visible rearranging of windows on the screen"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4893
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4894
    self realizeKeepingGroup:false
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4895
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4896
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4897
realizeAllSubViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4898
    "realize all my subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4899
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4900
    subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4901
	subViews do:[:subView |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4902
	    subView realize
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
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4905
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4906
    "Modified: 5.9.1995 / 23:30:47 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4907
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4908
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4909
realizeInGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4910
    "special realize - leave windowgroup as is; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4911
     This allows a view to be realized in any windowgroup; 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4912
     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
  4913
     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
  4914
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4915
    windowGroup isForModalSubview:true.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4916
    self realize.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4917
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4918
"/    self realizeKeepingGroup:true
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4919
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4920
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4921
realizeKeepingGroup:keepGroupAsIs 
151
claus
parents: 145
diff changeset
  4922
    "common helper for realize and realizeInGroup.
claus
parents: 145
diff changeset
  4923
     Create the view, if the argument is not true, assign my windowGroup,
claus
parents: 145
diff changeset
  4924
     if hiddenOnRealize is not true, map it."
140
claus
parents: 138
diff changeset
  4925
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4926
    |superGroup groupChange keep|
140
claus
parents: 138
diff changeset
  4927
claus
parents: 138
diff changeset
  4928
    drawableId isNil ifTrue:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4929
        self create.
140
claus
parents: 138
diff changeset
  4930
    ].
claus
parents: 138
diff changeset
  4931
372
78e5b6e96649 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 371
diff changeset
  4932
    groupChange := false.
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4933
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4934
    (windowGroup notNil and:[windowGroup isForModalSubview]) ifTrue:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4935
        keep := true.
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4936
    ] ifFalse:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4937
        keep := keepGroupAsIs
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4938
    ].
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4939
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4940
    keep ifFalse:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4941
        "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4942
         put myself into superviews windowgroup if there is a superview
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4943
        "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4944
        superView notNil ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4945
            superGroup := superView windowGroup.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4946
            (windowGroup notNil and:[superGroup ~~ windowGroup]) ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4947
                "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4948
                 mhmh - seems that the windowgroup has changed ....
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4949
                "
145
claus
parents: 144
diff changeset
  4950
"/                'oops - wgroup change on realize' printNL.
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4951
                windowGroup removeView:self.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4952
                windowGroup := nil
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4953
            ].
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4954
            superGroup ~~ windowGroup ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4955
                groupChange := true.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4956
                windowGroup := superGroup.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4957
                windowGroup notNil ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4958
                    windowGroup addView:self.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4959
                ]
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4960
            ]
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4961
        ].
140
claus
parents: 138
diff changeset
  4962
    ].
claus
parents: 138
diff changeset
  4963
151
claus
parents: 145
diff changeset
  4964
    hiddenOnRealize ifFalse:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4965
        (originChanged or:[extentChanged]) ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4966
            self fixSize.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4967
            self sizeChanged:nil.   "/ new 29-aug-1995
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4968
        ].
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4969
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4970
        subViews notNil ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4971
            (realized not or:[groupChange]) ifTrue:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4972
                self realizeAllSubViews.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4973
            ].
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4974
        ].
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4975
        self setInnerClip.
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
        realized ifFalse:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4978
            "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4979
             now, make the view visible
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4980
            "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4981
            self map
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4982
        ]
140
claus
parents: 138
diff changeset
  4983
    ].
claus
parents: 138
diff changeset
  4984
claus
parents: 138
diff changeset
  4985
    controller notNil ifTrue:[
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4986
        controller startUp
140
claus
parents: 138
diff changeset
  4987
    ]
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4988
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4989
    "Modified: 8.5.1996 / 09:31:20 / cg"
140
claus
parents: 138
diff changeset
  4990
!
claus
parents: 138
diff changeset
  4991
claus
parents: 138
diff changeset
  4992
recreate
claus
parents: 138
diff changeset
  4993
    "recreate (i.e. tell X about me) after a snapin"
claus
parents: 138
diff changeset
  4994
claus
parents: 138
diff changeset
  4995
    drawableId isNil ifTrue:[
claus
parents: 138
diff changeset
  4996
	super recreate.
claus
parents: 138
diff changeset
  4997
	self physicalCreate.
claus
parents: 138
diff changeset
  4998
claus
parents: 138
diff changeset
  4999
	viewBackground notNil ifTrue:[
claus
parents: 138
diff changeset
  5000
	    self setViewBackground 
claus
parents: 138
diff changeset
  5001
	].
claus
parents: 138
diff changeset
  5002
claus
parents: 138
diff changeset
  5003
	"
claus
parents: 138
diff changeset
  5004
	 XXX has to be changed: eventmasks are device specific -
claus
parents: 138
diff changeset
  5005
	 XXX will not allow restart on another Workstation-type.
claus
parents: 138
diff changeset
  5006
	 XXX event masks must become symbolic
claus
parents: 138
diff changeset
  5007
	"
claus
parents: 138
diff changeset
  5008
	device setEventMask:eventMask in:drawableId
claus
parents: 138
diff changeset
  5009
    ]
claus
parents: 138
diff changeset
  5010
!
claus
parents: 138
diff changeset
  5011
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5012
remap
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5013
    "make the view visible on the screen at its previous position.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5014
     In contrast to map, this asks the windowManager to show the view
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5015
     immediately (instead of asking for a frame). However, some windowManagers
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5016
     are known to ignore this ..."
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5017
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5018
    realized ifFalse:[
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5019
        "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5020
         now, make the view visible
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5021
        "
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5022
        device mapView:self id:drawableId iconified:false
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5023
                   atX:left y:top width:width height:height.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5024
        realized := true.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5025
    ]
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5026
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5027
    "Created: 8.5.1996 / 09:33:06 / cg"
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5028
!
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  5029
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5030
rerealizeInGroup:aWindowGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5031
    "rerealize at old position in (a possibly different) windowGroup."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5032
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5033
    drawableId isNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5034
        self create
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5035
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5036
    drawableId notNil ifTrue:[
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5037
        aWindowGroup ~~ windowGroup ifTrue:[
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5038
            windowGroup notNil ifTrue:[
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5039
                windowGroup removeView:self
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5040
            ].
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5041
            windowGroup := aWindowGroup.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5042
            aWindowGroup addTopView:self.
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5043
        ].
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5044
        self map.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5045
    ]
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5046
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5047
    "Modified: 3.5.1996 / 23:59:30 / stefan"
140
claus
parents: 138
diff changeset
  5048
!
claus
parents: 138
diff changeset
  5049
claus
parents: 138
diff changeset
  5050
rerealizeWithAllSubViews
claus
parents: 138
diff changeset
  5051
    "rerealize myself with all subviews"
claus
parents: 138
diff changeset
  5052
claus
parents: 138
diff changeset
  5053
    drawableId notNil ifTrue:[
claus
parents: 138
diff changeset
  5054
	realized := true.
claus
parents: 138
diff changeset
  5055
	subViews notNil ifTrue:[
180
claus
parents: 176
diff changeset
  5056
	    self realizeAllSubViews.
140
claus
parents: 138
diff changeset
  5057
	].
claus
parents: 138
diff changeset
  5058
	device mapView:self id:drawableId iconified:false
claus
parents: 138
diff changeset
  5059
		   atX:left y:top width:width height:height
claus
parents: 138
diff changeset
  5060
    ]
180
claus
parents: 176
diff changeset
  5061
!
claus
parents: 176
diff changeset
  5062
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5063
resize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5064
    "resize myself to make everything fit into me.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5065
     Nothing special done here, but redefined in some subclasses"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5066
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5067
    self extent:(self preferredExtent)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5068
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5069
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5070
unmap
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5071
    "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
  5072
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5073
    realized ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5074
	drawableId notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5075
	    device unmapWindow:drawableId
151
claus
parents: 145
diff changeset
  5076
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5077
	realized := shown := false.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5078
    ].
190
claus
parents: 189
diff changeset
  5079
claus
parents: 189
diff changeset
  5080
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5081
     |top sub|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5082
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5083
     top := StandardSystemView new.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5084
     top extent:200@200.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5085
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5086
     sub := View
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5087
		origin:0.2@0.2
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5088
		corner:0.8@0.8
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5089
		in:top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5090
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5091
     sub viewBackground:Color red.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5092
     sub hiddenOnRealize:true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5093
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5094
     top open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5095
     (Delay forSeconds:5) wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5096
     sub map.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5097
     (Delay forSeconds:3) wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5098
     sub unmap.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5099
     sub viewBackground:(Color green).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5100
     (Delay forSeconds:3) wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5101
     sub map.
151
claus
parents: 145
diff changeset
  5102
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5103
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5104
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5105
unrealize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5106
    "alias for unmap, for historic reasons"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5107
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5108
    self obsoleteMethodWarning:'use unmap'.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5109
    self unmap.
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5110
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  5111
    "Modified: 4.5.1996 / 00:07:48 / stefan"
151
claus
parents: 145
diff changeset
  5112
! !
claus
parents: 145
diff changeset
  5113
claus
parents: 145
diff changeset
  5114
!SimpleView methodsFor:'redrawing'!
claus
parents: 145
diff changeset
  5115
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5116
invalidate
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5117
    "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
  5118
     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
  5119
     the views process itself, and there is a possibilty to merge
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5120
     multiple damage rectangles into single redraws."
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5121
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5122
    |sensor|
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5123
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5124
    (sensor := self sensor) notNil ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5125
        sensor addDamage:(0@0 extent:width@height) view:self
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5126
    ] ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5127
        self redrawX:0 y:0 width:width height:height
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5128
    ]
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5129
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5130
    "Created: 26.5.1996 / 17:17:38 / cg"
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5131
    "Modified: 26.5.1996 / 17:20:24 / cg"
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5132
!
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5133
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5134
invalidate:aRectangle
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5135
    "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
  5136
     This is preferable to calling redraw directly, 
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5137
     in that the drawing is done by the views process itself, 
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5138
     and there is a possibilty to merge multiple damage rectangles into 
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5139
     single redraws."
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5140
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5141
    |sensor|
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5142
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5143
    (sensor := self sensor) notNil ifTrue:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5144
        sensor addDamage:aRectangle view:self
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5145
    ] ifFalse:[
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5146
        self redrawX:(aRectangle left)
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5147
                   y:(aRectangle top)
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5148
               width:(aRectangle width)
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5149
              height:(aRectangle height)
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5150
    ]
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5151
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5152
    "Created: 26.5.1996 / 17:18:25 / cg"
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5153
    "Modified: 26.5.1996 / 17:20:09 / cg"
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
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5156
redraw
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5157
    "redraw myself completely
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5158
     cannot do much here - has to be redefined in subclasses"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5159
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  5160
    "Modified: 26.5.1996 / 17:48:48 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5161
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5162
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5163
redrawDeviceX:x y:y width:w height:h
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5164
    "have to redraw part of the view.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5165
     The coordinates are in device space - if there is a transformation,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5166
     must inverse-transform back to logical coordinates. (since the view thinks
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5167
     in its coordinate space)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5168
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5169
    |lx ly lw lh|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5170
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5171
    lx := x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5172
    ly := y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5173
    lw := w.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5174
    lh := h.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5175
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5176
    transformation notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5177
	lx := transformation applyInverseToX:lx.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5178
	ly := transformation applyInverseToY:ly.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5179
	lw := transformation applyInverseScaleX:lw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5180
	lh := transformation applyInverseScaleY:lh.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5181
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5182
    self redrawX:lx y:ly width:lw height:lh
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5183
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5184
151
claus
parents: 145
diff changeset
  5185
redrawX:x y:y width:w height:h
claus
parents: 145
diff changeset
  5186
    "have to redraw part of myself, given logical coordinates (if trans is nonNil)
claus
parents: 145
diff changeset
  5187
     default is to redraw everything - subclasses should add intelligence"
claus
parents: 145
diff changeset
  5188
claus
parents: 145
diff changeset
  5189
    |area|
claus
parents: 145
diff changeset
  5190
claus
parents: 145
diff changeset
  5191
    shown ifFalse:[^ self].
claus
parents: 145
diff changeset
  5192
claus
parents: 145
diff changeset
  5193
    area := Rectangle left:x top:y width:w height:h.      
claus
parents: 145
diff changeset
  5194
    self clippedTo:area do:[
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5195
        components notNil ifTrue:[
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5196
            self clearRectangleX:x y:y width:w height:h.
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5197
            components do:[:aComponent |
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5198
                |thisFrame is|
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5199
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5200
                thisFrame := aComponent bounds.
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5201
                (thisFrame intersects:area) ifTrue:[
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5202
                    aComponent displayOn:self
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5203
                ]
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5204
            ]
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5205
        ] ifFalse:[
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5206
            self redraw
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5207
        ]
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5208
    ]
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5209
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5210
    "Modified: 26.5.1996 / 13:00:46 / cg"
151
claus
parents: 145
diff changeset
  5211
!
claus
parents: 145
diff changeset
  5212
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5213
showActive
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5214
    "redraw myself as active (i.e. busy).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5215
     Nothing done here, but redefined in some classes."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5216
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5217
    ^ self
135
claus
parents:
diff changeset
  5218
!
claus
parents:
diff changeset
  5219
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
  5220
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
  5221
    "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
  5222
     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
  5223
     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
  5224
     Only change my border, if this is an explicit focusChange."
135
claus
parents:
diff changeset
  5225
claus
parents:
diff changeset
  5226
    |delta|
claus
parents:
diff changeset
  5227
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
  5228
    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
  5229
	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
  5230
	    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
  5231
	    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
  5232
		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
  5233
	    ].
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
  5234
	    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
  5235
	    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
  5236
	]
135
claus
parents:
diff changeset
  5237
    ]
claus
parents:
diff changeset
  5238
!
claus
parents:
diff changeset
  5239
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
  5240
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
  5241
    "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
  5242
     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
  5243
     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
  5244
     Only change my border, if this is an explicit focusChange."
135
claus
parents:
diff changeset
  5245
claus
parents:
diff changeset
  5246
    |delta|
claus
parents:
diff changeset
  5247
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
  5248
    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
  5249
	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
  5250
	    (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
  5251
	    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
  5252
		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
  5253
		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
  5254
		    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
  5255
		].
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
  5256
		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
  5257
		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
  5258
	    ]
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  5259
	]
135
claus
parents:
diff changeset
  5260
    ]
358
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
  5261
27e6259fcb41 only change border in noFocus, if I was the focusView
Claus Gittinger <cg@exept.de>
parents: 355
diff changeset
  5262
    "Modified: 9.1.1996 / 16:02:32 / cg"
135
claus
parents:
diff changeset
  5263
!
claus
parents:
diff changeset
  5264
claus
parents:
diff changeset
  5265
showPassive
claus
parents:
diff changeset
  5266
    "redraw myself as inactive (i.e. nonbusy).
151
claus
parents: 145
diff changeset
  5267
     Nothing done here, but redefined in some classes."
135
claus
parents:
diff changeset
  5268
claus
parents:
diff changeset
  5269
    ^ self
claus
parents:
diff changeset
  5270
! !
claus
parents:
diff changeset
  5271
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5272
!SimpleView methodsFor:'scrolling'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5273
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5274
horizontalScrollStep
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5275
    "return the amount to scroll when stepping left/right.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5276
     Subclasses may want to redefine this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5277
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5278
    ^ (device horizontalPixelPerMillimeter * 20) asInteger
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5279
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5280
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5281
scrollDown
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5282
    "scroll down by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5283
     scroll-step down button is pressed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5284
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5285
    self scrollDown:(self verticalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5286
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5287
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5288
scrollHorizontalTo:aPixelOffset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5289
    "change origin to make aPixelOffset be the left col"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5290
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5291
    |orgX|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5292
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5293
    orgX := self viewOrigin x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5294
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5295
    (aPixelOffset < orgX) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5296
	self scrollLeft:(orgX - aPixelOffset)
140
claus
parents: 138
diff changeset
  5297
    ] ifFalse:[
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5298
	(aPixelOffset > orgX) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5299
	    self scrollRight:(aPixelOffset - orgX)
140
claus
parents: 138
diff changeset
  5300
	]
claus
parents: 138
diff changeset
  5301
    ]
claus
parents: 138
diff changeset
  5302
!
claus
parents: 138
diff changeset
  5303
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5304
scrollHorizontalToPercent:percent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5305
    "scroll to a position given in percent of total"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5306
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5307
    |wCont|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5308
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5309
    wCont := self widthOfContents.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5310
    transformation notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5311
	wCont := transformation applyScaleX:wCont.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5312
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5313
    self scrollHorizontalTo:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5314
	    ((((wCont * percent) / 100.0) + 0.5) asInteger)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5315
!
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
scrollLeft
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5318
    "scroll left by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5319
     scroll-step left button is pressed."
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
    self scrollLeft:(self horizontalScrollStep)
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5324
scrollRight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5325
    "scroll right by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5326
     scroll-step right button is pressed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5327
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5328
    self scrollRight:(self horizontalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5329
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5330
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5331
scrollToTop
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5332
    "move viewOrigin to top"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5333
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5334
    self scrollVerticalTo:0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5335
!
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
scrollToTopLeft
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5338
    "move viewOrigin to top/left"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5339
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5340
    self scrollTo:(0 @ 0).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5341
!
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
scrollUp
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5344
    "scroll up by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5345
     scroll-step up button is pressed."
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
    self scrollUp:(self verticalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5348
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5349
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5350
scrollVerticalTo:aPixelOffset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5351
    "change origin to make aPixelOffset be the top line"
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
    |orgY|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5354
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5355
    orgY := self viewOrigin y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5356
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5357
    (aPixelOffset < orgY) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5358
	self scrollUp:(orgY - aPixelOffset)
140
claus
parents: 138
diff changeset
  5359
    ] ifFalse:[
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5360
	(aPixelOffset > orgY) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5361
	    self scrollDown:(aPixelOffset - orgY)
135
claus
parents:
diff changeset
  5362
	]
claus
parents:
diff changeset
  5363
    ]
claus
parents:
diff changeset
  5364
!
claus
parents:
diff changeset
  5365
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5366
scrollVerticalToPercent:percent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5367
    "scroll to a position given in percent of total"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5368
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5369
    |hCont|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5370
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5371
    hCont := self heightOfContents.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5372
    transformation notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5373
	hCont := transformation applyScaleY:hCont.
140
claus
parents: 138
diff changeset
  5374
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5375
    self scrollVerticalTo:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5376
	    ((((hCont * percent) / 100.0) + 0.5) asInteger)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5377
!
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
verticalScrollStep
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5380
    "return the amount to scroll when stepping up/down.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5381
     Subclasses may want to redefine this."
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
    ^ (device verticalPixelPerMillimeter * 20) asInteger
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5386
widthForScrollBetween:yStart and:yEnd 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5387
    "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
  5388
     - 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
  5389
     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
  5390
     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
  5391
     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
  5392
     not notice any difference."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5393
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5394
    ^ (width - margin - margin)
135
claus
parents:
diff changeset
  5395
! !
claus
parents:
diff changeset
  5396
claus
parents:
diff changeset
  5397
!SimpleView methodsFor:'scrolling-basic'!
claus
parents:
diff changeset
  5398
claus
parents:
diff changeset
  5399
scrollDown:nPixels
claus
parents:
diff changeset
  5400
    "change origin to scroll down some pixels"
claus
parents:
diff changeset
  5401
claus
parents:
diff changeset
  5402
    |count "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5403
     m2    "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5404
     w     "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5405
     h     "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5406
     hCont 
claus
parents:
diff changeset
  5407
     ih    "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5408
     orgX  
claus
parents:
diff changeset
  5409
     orgY  "{ Class:SmallInteger }"
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5410
     newOrigin|
135
claus
parents:
diff changeset
  5411
claus
parents:
diff changeset
  5412
    hCont := self heightOfContents.
claus
parents:
diff changeset
  5413
    transformation isNil ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5414
        orgY := orgX := 0
135
claus
parents:
diff changeset
  5415
    ] ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5416
        hCont := (transformation applyScaleY:hCont) rounded.
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5417
        orgY := transformation translationY negated.
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5418
        orgX := transformation translationX negated.
135
claus
parents:
diff changeset
  5419
    ].
claus
parents:
diff changeset
  5420
claus
parents:
diff changeset
  5421
    count := nPixels.
claus
parents:
diff changeset
  5422
    ih := self innerHeight.
claus
parents:
diff changeset
  5423
claus
parents:
diff changeset
  5424
    ((orgY + nPixels + ih) > hCont) ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5425
        count := hCont - orgY - ih
135
claus
parents:
diff changeset
  5426
    ].
claus
parents:
diff changeset
  5427
    (count <= 0) ifTrue:[^ self].
claus
parents:
diff changeset
  5428
claus
parents:
diff changeset
  5429
    self originWillChange.
claus
parents:
diff changeset
  5430
    newOrigin := orgX @ (orgY + count).
claus
parents:
diff changeset
  5431
    shown ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5432
        self setViewOrigin:newOrigin.
135
claus
parents:
diff changeset
  5433
    ] ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5434
        m2 := margin * 2.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5435
        (count >= ih) ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5436
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5437
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5438
                         width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5439
                        height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5440
        ] ifFalse:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5441
            h := height - m2 - count.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5442
            w := self width.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5443
            self catchExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5444
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5445
            self copyFrom:self x:margin y:(count + margin)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5446
                             toX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5447
                           width:w 
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5448
                          height:h.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5449
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5450
            self setInnerClip.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5451
            self redrawDeviceX:margin y:(h + margin) 
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5452
                         width:(width - m2) height:count.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5453
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5454
            self waitForExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5455
        ]
135
claus
parents:
diff changeset
  5456
    ].
claus
parents:
diff changeset
  5457
    self originChanged:(0 @ count).
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5458
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5459
    "Modified: 21.5.1996 / 21:18:24 / cg"
135
claus
parents:
diff changeset
  5460
!
claus
parents:
diff changeset
  5461
claus
parents:
diff changeset
  5462
scrollLeft:nPixels
claus
parents:
diff changeset
  5463
    "change origin to scroll left some pixels"
claus
parents:
diff changeset
  5464
claus
parents:
diff changeset
  5465
    |count "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5466
     m2    "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5467
     h     "{ Class:SmallInteger }"
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5468
     orgX orgY newOrigin|
135
claus
parents:
diff changeset
  5469
claus
parents:
diff changeset
  5470
    transformation isNil ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5471
        orgY := orgX := 0
135
claus
parents:
diff changeset
  5472
    ] ifFalse:[
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5473
        orgY := transformation translation y negated.
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5474
        orgX := transformation translation x negated.
135
claus
parents:
diff changeset
  5475
    ].
claus
parents:
diff changeset
  5476
claus
parents:
diff changeset
  5477
    count := nPixels.
claus
parents:
diff changeset
  5478
    (count > orgX) ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5479
        count := orgX
135
claus
parents:
diff changeset
  5480
    ].
claus
parents:
diff changeset
  5481
    (count <= 0) ifTrue:[^ self].
claus
parents:
diff changeset
  5482
claus
parents:
diff changeset
  5483
    self originWillChange.
claus
parents:
diff changeset
  5484
    newOrigin := (orgX - count) @ orgY.
claus
parents:
diff changeset
  5485
claus
parents:
diff changeset
  5486
    shown ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5487
        self setViewOrigin:newOrigin.
135
claus
parents:
diff changeset
  5488
    ] ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5489
        m2 := margin * 2.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5490
        (count >= self innerWidth) ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5491
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5492
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5493
                         width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5494
                        height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5495
        ] ifFalse:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5496
            h := (height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5497
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5498
            self catchExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5499
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5500
            self copyFrom:self x:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5501
                             toX:(count + margin) y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5502
                           width:(width - m2 - count) 
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5503
                          height:h.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5504
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5505
            self setInnerClip.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5506
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5507
                         width:count height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5508
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5509
            self waitForExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5510
        ]
135
claus
parents:
diff changeset
  5511
    ].
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5512
    self originChanged:(count @ 0).
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5513
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5514
    "Modified: 22.5.1996 / 11:18:27 / cg"
135
claus
parents:
diff changeset
  5515
!
claus
parents:
diff changeset
  5516
claus
parents:
diff changeset
  5517
scrollRight:nPixels
claus
parents:
diff changeset
  5518
    "change origin to scroll right some pixels"
claus
parents:
diff changeset
  5519
claus
parents:
diff changeset
  5520
    |count "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5521
     m2    "{ Class:SmallInteger }"
claus
parents:
diff changeset
  5522
     h     "{ Class:SmallInteger }" 
claus
parents:
diff changeset
  5523
     wCont 
claus
parents:
diff changeset
  5524
     iw    "{ Class:SmallInteger }"
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5525
     orgX orgY newOrigin|
135
claus
parents:
diff changeset
  5526
claus
parents:
diff changeset
  5527
    wCont := self widthOfContents.
claus
parents:
diff changeset
  5528
    transformation isNil ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5529
        orgY := orgX := 0
135
claus
parents:
diff changeset
  5530
    ] ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5531
        wCont := (transformation applyScaleX:wCont) rounded.
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5532
        orgY := transformation translation y negated.
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5533
        orgX := transformation translation x negated.
135
claus
parents:
diff changeset
  5534
    ].
claus
parents:
diff changeset
  5535
claus
parents:
diff changeset
  5536
    count := nPixels.
claus
parents:
diff changeset
  5537
    iw := self innerWidth.
claus
parents:
diff changeset
  5538
claus
parents:
diff changeset
  5539
    ((orgX + nPixels + iw) > wCont) ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5540
        count := wCont - orgX - iw
135
claus
parents:
diff changeset
  5541
    ].
claus
parents:
diff changeset
  5542
    (count <= 0) ifTrue:[^ self].
claus
parents:
diff changeset
  5543
claus
parents:
diff changeset
  5544
    self originWillChange.
claus
parents:
diff changeset
  5545
    newOrigin := (orgX + count) @ orgY.
claus
parents:
diff changeset
  5546
claus
parents:
diff changeset
  5547
    shown ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5548
        self setViewOrigin:newOrigin.
135
claus
parents:
diff changeset
  5549
    ] ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5550
        m2 := margin * 2.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5551
        (count >= iw) ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5552
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5553
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5554
                         width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5555
                        height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5556
        ] ifFalse:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5557
            m2 := margin * 2.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5558
            h := (height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5559
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5560
            self catchExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5561
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5562
            self copyFrom:self x:(count + margin) y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5563
                             toX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5564
                           width:(width - m2 - count) 
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5565
                          height:h.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5566
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5567
            self setInnerClip.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5568
            self redrawDeviceX:(width - margin - count) y:margin 
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5569
                         width:count height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5570
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5571
            self waitForExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5572
        ].
135
claus
parents:
diff changeset
  5573
    ].
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5574
    self originChanged:(count negated @ 0).
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5575
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5576
    "Modified: 22.5.1996 / 11:18:29 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5577
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5578
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5579
scrollTo:newOrigin 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5580
    "change origin to have newOrigin be visible at the top-left.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5581
     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
  5582
     point."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5583
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5584
    "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
  5585
     scrollLeft/Right (those where implemented first).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5586
     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
  5587
     the other scrolling methods."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5588
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5589
    |dX   "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5590
     dY   "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5591
     m2   "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5592
     orgX "{ Class:SmallInteger }"
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5593
     orgY "{ Class:SmallInteger }" |
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5594
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5595
    transformation isNil ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5596
        orgY := orgX := 0
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5597
    ] ifFalse:[
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5598
        orgY := transformation translation y negated.
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5599
        orgX := transformation translation x negated
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5600
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5601
    dX := newOrigin x - orgX.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5602
    dY := newOrigin y - orgY.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5603
    dX = 0 ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5604
        dY < 0 ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5605
            ^ self scrollUp:(dY negated).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5606
        ].
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5607
        dY > 0 ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5608
            ^ self scrollDown:dY.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5609
        ].
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5610
        ^ self
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5611
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5612
    dY = 0 ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5613
        dX < 0 ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5614
            ^ self scrollLeft:dX negated
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5615
        ].
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5616
        dX > 0 ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5617
            ^ self scrollRight:dX
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5618
        ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5619
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5620
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5621
    self originWillChange.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5622
    self setViewOrigin:newOrigin.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5623
    shown ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5624
        m2 := margin * 2. "top & bottom margins"
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5625
        self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5626
                     width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5627
                    height:(height - m2).
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5628
    ].
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5629
    self originChanged:(dX negated @ dY negated).
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5630
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5631
    "Modified: 22.5.1996 / 11:18:30 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5632
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5633
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5634
scrollUp:nPixels
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5635
    "change origin to scroll up (towards the origin) by some pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5636
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5637
    |count "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5638
     m2    "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5639
     w     "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5640
     h     "{ Class:SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5641
     orgX
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5642
     orgY  "{ Class:SmallInteger }"
705
e8acdd90a071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 704
diff changeset
  5643
     newOrigin|
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5644
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5645
    transformation isNil ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5646
        orgY := orgX := 0
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5647
    ] ifFalse:[
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5648
        orgY := transformation translation y negated.
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5649
        orgX := transformation translation x negated
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5652
    count := nPixels.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5653
    (count > orgY) ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5654
        count := orgY
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5655
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5656
    (count <= 0) ifTrue:[^ self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5657
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5658
    self originWillChange.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5659
    newOrigin := orgX @ (orgY - count).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5660
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5661
    shown ifFalse:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5662
        self setViewOrigin:newOrigin.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5663
    ] ifTrue:[
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5664
        m2 := margin * 2. "top & bottom margins"
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5665
        (count >= self innerHeight) ifTrue:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5666
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5667
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5668
                         width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5669
                        height:(height - m2).
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5670
        ] ifFalse:[
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5671
            h := height - m2 - count.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5672
            w := width.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5673
            self catchExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5674
            self setViewOrigin:newOrigin.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5675
            self copyFrom:self x:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5676
                             toX:margin y:(count + margin)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5677
                           width:w height:h.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5678
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5679
            self setInnerClip.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5680
            self redrawDeviceX:margin y:margin
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5681
                         width:(width - m2)
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5682
                        height:count.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5683
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5684
            self waitForExpose.
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5685
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5686
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5687
    self originChanged:(0 @ count negated).
704
fc3711e83946 avoid sending #translation twice
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
  5688
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
  5689
    "Modified: 22.5.1996 / 11:18:32 / cg"
135
claus
parents:
diff changeset
  5690
! !
claus
parents:
diff changeset
  5691
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5692
!SimpleView methodsFor:'startup'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5693
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5694
open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5695
    "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
  5696
     (i.e. the new view comes up as independent process).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5697
     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
  5698
     implemented in TopView), it is implemented here - therefore, every view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5699
     can be opened as a topView.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5700
     This is redefined in ModalBox, which comes up modal (i.e. 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5701
     control is under the current process, so that interaction with the
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5702
     current group is blocked while the modalBox is active)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5703
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5704
    ^ self openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5705
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5706
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5707
     View new open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5708
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5709
     (Button label:'hello') open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5710
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5711
     |top|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5712
     top := StandardSystemView new.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5713
     top extent:200@200.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5714
     Button label:'hello' in:top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5715
     top open
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
     YesNoBox new open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5718
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5719
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5720
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5721
openAndWait
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5722
    "open up the view - wait until it is visible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5723
     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
  5724
     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
  5725
     first expose event.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5726
     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
  5727
     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
  5728
     Use this open in those situations."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5729
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5730
    self open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5731
    self waitUntilVisible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5732
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5733
    "does not work:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5734
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5735
	|v|
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
	v := View new open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5738
	v displayLineFrom:0@0 to:50@50
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5739
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5740
     does work:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5741
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5742
	|v|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5743
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5744
	v := View new openAndWait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5745
	v displayLineFrom:0@0 to:50@50
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
!
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
openAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5750
    "open up the view modeless - positions the view"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5751
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5752
    ^self openModelessAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5753
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5754
    "Created: 18.9.1995 / 23:30:43 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5755
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5756
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5757
openAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5758
    "open up the view modeless - positions the view"
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 openModelessAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5761
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5762
    "Created: 18.9.1995 / 23:30:56 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5763
!
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
openAutonomous
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5766
    "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
  5767
     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
  5768
     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
  5769
     autonomous from the topview. (see the fileBrowsers kill-button
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5770
     when executing unix commands as an example)"
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
    |wg|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5773
566
530567d2984f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
  5774
    Processor isPureEventDriven ifFalse:[
422
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5775
        wg := WindowGroup new.
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5776
        self windowGroup:wg.
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5777
        wg addView:self.
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5778
        wg startup:false.
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5779
        wg isForModalSubview:true.
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5780
        self realizeInGroup.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5781
    ] ifTrue:[
422
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5782
        self realize
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5783
    ]
422
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  5784
566
530567d2984f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
  5785
    "Modified: 13.4.1996 / 20:34:41 / cg"
269
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
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5788
openInGroup:aGroup
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5789
    "special open within another windowGroup.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5790
     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
  5791
     for applications where multiple views act as a group
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5792
     (i.e. close and iconify together)."
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5793
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5794
    self windowGroup:aGroup.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5795
    aGroup addTopView:self.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5796
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5797
"/    self realizeKeepingGroup:true
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5798
    aGroup isForModalSubview:true.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5799
    self realize.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5800
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  5801
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5802
openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5803
    "create a new windowgroup, but start processing in the current process
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5804
     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
  5805
     Stay in the modalLoop while the view is visible.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5806
     (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
  5807
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5808
    self openModal:[true]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5809
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5810
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5811
     the same:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5812
	 YesNoBox new open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5813
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5814
	 YesNoBox new openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5815
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5816
     different:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5817
	 (Button label:'hello') open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5818
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5819
	 (Button label:'hello') openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5820
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5821
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5822
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5823
openModal:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5824
    "create a new windowgroup, but start processing in the current process -
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5825
     actually suspending event processing for the currently active group.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5826
     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
  5827
     visible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5828
     (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
  5829
     This makes any interaction with the current window impossible - 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5830
     however, other views (in other windowgroups) still work."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5831
299
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5832
    ^ self openModal:aBlock inGroup:WindowGroup activeGroup.
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5833
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5834
    "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
  5835
    "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
  5836
!
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5837
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5838
openModal:aBlock inGroup:mainGroup
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5839
    "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
  5840
     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
  5841
     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
  5842
     visible.
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5843
     (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
  5844
     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
  5845
     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
  5846
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5847
    |tops|
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5848
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5849
    Processor activeProcessIsSystemProcess ifTrue:[
424
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5850
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5851
         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
  5852
         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
  5853
         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
  5854
         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
  5855
         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
  5856
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5857
        windowGroup := mainGroup.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5858
        mainGroup notNil ifTrue:[mainGroup addTopView:self].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5859
        self realize
135
claus
parents:
diff changeset
  5860
    ] ifFalse:[
424
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5861
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5862
         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
  5863
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5864
        mainGroup notNil ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5865
            self isPopUpView ifFalse:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5866
                mainGroup showCursor:(Cursor stop).
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5867
            ]
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5868
        ].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5869
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5870
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5871
         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
  5872
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5873
        windowGroup := WindowGroup new.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5874
        windowGroup addTopView:self.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5875
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5876
        superView notNil ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5877
            "/
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5878
            "/ special: this is a modal subview,
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5879
            "/ 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
  5880
            "/ (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
  5881
            "/        
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5882
            windowGroup isForModalSubview:true.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5883
        ].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5884
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5885
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5886
         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
  5887
         (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
  5888
        "
426
7f0f723980e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  5889
        AbortSignal handle:[:ex |
424
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5890
            self hide.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5891
            ex return.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5892
        ] do:[
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
                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
  5895
            ] valueOnUnwindDo:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5896
                mainGroup notNil ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5897
                    self isPopUpView ifFalse:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5898
                        mainGroup restoreCursors.
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
                    mainGroup sensor flushUserEvents.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5901
                ].
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5902
                self hide.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5903
            ]
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5904
        ].
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
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5907
         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
  5908
        "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5909
        mainGroup notNil ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5910
            mainGroup restoreCursors.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5911
            mainGroup sensor flushUserEvents.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5912
        ].
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
        ReturnFocusWhenClosingModalBoxes ifTrue:[
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
             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
  5917
             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
  5918
             on the view for the focus.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5919
            "
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5920
            mainGroup notNil ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5921
                tops := mainGroup topViews.
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5922
                (tops notNil and:[tops notEmpty]) ifTrue:[
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5923
                    tops first getKeyboardFocus
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5924
                ]
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5925
            ]
d3d266695780 dont show a waitCursor when opening a popUpView
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
  5926
        ]
135
claus
parents:
diff changeset
  5927
    ]
299
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5928
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  5929
    "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
  5930
    "Modified: 11.2.1996 / 14:38:24 / cg"
135
claus
parents:
diff changeset
  5931
!
claus
parents:
diff changeset
  5932
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5933
openModalAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5934
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5935
     (i.e. circumvents window managers positioning)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5936
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5937
    self origin:aPoint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5938
    self create.
560
968d062c79cb oops - openAt did set transient; definitely wrong ...
Claus Gittinger <cg@exept.de>
parents: 527
diff changeset
  5939
"/    device setTransient:drawableId for:0.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5940
    ^ self openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5941
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5942
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5943
     View new openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5944
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5945
     View new openModalAt:100@100
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5946
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5947
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5948
    "Created: 18.9.1995 / 23:21:42 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5949
    "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
  5950
    "Modified: 12.4.1996 / 19:02:29 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5951
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5952
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5953
openModalAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5954
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5955
     (i.e. circumvents window managers positioning)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5956
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5957
    ^ self openModalAt:(device center - (self extent//2)).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5958
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5959
    "Created: 18.9.1995 / 23:31:47 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5960
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5961
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5962
openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5963
    "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
  5964
     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
  5965
     parallel (i.e. control is returned to the sender immediately)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5966
566
530567d2984f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
  5967
    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
  5968
        windowGroup isNil ifTrue:[
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5969
            windowGroup := WindowGroup new.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5970
            windowGroup addTopView:self.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5971
            windowGroup startup:false.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5972
        ] ifFalse:[
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5973
            windowGroup addTopView:self.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5974
            windowGroup startup:false.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5975
            self realizeInGroup.
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5976
        ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5977
    ] ifTrue:[
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5978
        self realize
135
claus
parents:
diff changeset
  5979
    ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5980
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
     the same:
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5983
         (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
  5984
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5985
         (Button label:'hello') openModeless
269
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
     different:
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5988
         YesNoBox new open
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5989
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5990
         YesNoBox new openModeless
269
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
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5993
     (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
  5994
         YesNoBox new open
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5995
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5996
         YesNoBox new openModal
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5997
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5998
     different:
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  5999
         (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
  6000
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6001
         (Button label:'hello') openModal
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6002
    "
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
  6003
566
530567d2984f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
  6004
    "Modified: 13.4.1996 / 20:34:45 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6005
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6006
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6007
openModelessAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6008
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6009
     (i.e. circumvents window managers positioning)"
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
    self origin:aPoint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6012
    self create.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6013
    ^ self openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6014
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6015
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6016
     View new openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6017
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6018
     View new openModelessAt:100@100
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6019
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6020
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6021
    "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
  6022
    "Modified: 12.4.1996 / 19:02:28 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6023
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6024
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6025
openModelessAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6026
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6027
     (i.e. circumvents window managers positioning)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6028
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6029
    ^ self openModelessAt:(device center - (self extent//2)).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6030
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6031
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6032
     View new openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6033
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6034
     View new openModelessAtCenter
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
    "Created: 18.9.1995 / 23:21:42 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6038
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6039
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6040
waitUntilVisible
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6041
    "wait until the receiver visible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6042
     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
  6043
     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
  6044
     first expose event.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6045
     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
  6046
     in doIt expressions), or subsequent views depend on some state of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6047
     another view (which is only available once visible), 
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6048
     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
  6049
     Caveat:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6050
	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
  6051
	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
  6052
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6053
    [self shown] whileFalse:[
371
cc32d8f8bc8d use new Delay-wait
Claus Gittinger <cg@exept.de>
parents: 370
diff changeset
  6054
	Delay waitForSeconds:0.05.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6055
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6056
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6057
    "does not work (the view is in its opening phase,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6058
     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
  6059
     its internals are not yet correctly setup):
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
	|v|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6062
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6063
	v := View new open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6064
	v displayLineFrom:0@0 to:50@50
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
     does work (since we wait until the view has completely finished
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6067
     its startup phase):
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
	|v|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6070
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6071
	v := View new open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6072
	v waitUntilVisible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6073
	v displayLineFrom:0@0 to:50@50
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6074
    "
135
claus
parents:
diff changeset
  6075
! !
claus
parents:
diff changeset
  6076
claus
parents:
diff changeset
  6077
!SimpleView methodsFor:'user notification'!
claus
parents:
diff changeset
  6078
claus
parents:
diff changeset
  6079
warn:aString
claus
parents:
diff changeset
  6080
    "like Objects warn, but translates the string via the
claus
parents:
diff changeset
  6081
     resourcePack, thus giving a translated string automatically"
claus
parents:
diff changeset
  6082
151
claus
parents: 145
diff changeset
  6083
    super warn:(resources string:aString) withCRs
135
claus
parents:
diff changeset
  6084
!
claus
parents:
diff changeset
  6085
claus
parents:
diff changeset
  6086
warn:aString with:argument
claus
parents:
diff changeset
  6087
    "like Objects warn, but translates the string via the
claus
parents:
diff changeset
  6088
     resourcePack, thus giving a translated string automatically"
claus
parents:
diff changeset
  6089
151
claus
parents: 145
diff changeset
  6090
    super warn:(resources string:aString with:argument) withCRs
claus
parents: 145
diff changeset
  6091
!
claus
parents: 145
diff changeset
  6092
claus
parents: 145
diff changeset
  6093
warn:aString with:arg1 with:arg2
claus
parents: 145
diff changeset
  6094
    "like Objects warn, but translates the string via the
claus
parents: 145
diff changeset
  6095
     resourcePack, thus giving a translated string automatically"
claus
parents: 145
diff changeset
  6096
claus
parents: 145
diff changeset
  6097
    super warn:(resources string:aString with:arg1 with:arg2) withCRs
135
claus
parents:
diff changeset
  6098
! !
claus
parents:
diff changeset
  6099
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6100
!SimpleView class methodsFor:'documentation'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6101
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6102
version
729
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
  6103
    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.99 1996-05-28 16:28:33 cg Exp $'
135
claus
parents:
diff changeset
  6104
! !
claus
parents:
diff changeset
  6105
SimpleView initialize!