SimpleView.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 11 Oct 2015 10:26:49 +0100
branchjv
changeset 7036 530b3e1c64c3
parent 7030 da2a16e8ec51
parent 7023 91423b65ebce
child 7083 db3f7c2127ef
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6851
4c1547ff5459 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6845
diff changeset
     1
"{ Encoding: utf8 }"
4c1547ff5459 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6845
diff changeset
     2
135
claus
parents:
diff changeset
     3
"
claus
parents:
diff changeset
     4
 COPYRIGHT (c) 1989 by Claus Gittinger
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
     5
	      All Rights Reserved
135
claus
parents:
diff changeset
     6
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
claus
parents:
diff changeset
    12
 hereby transferred.
claus
parents:
diff changeset
    13
"
3196
43d42e7c388a MUST invoke #postBuildWith: / #postBuildAsSubcanvasWith:,
tm
parents: 3191
diff changeset
    14
"{ Package: 'stx:libview' }"
43d42e7c388a MUST invoke #postBuildWith: / #postBuildAsSubcanvasWith:,
tm
parents: 3191
diff changeset
    15
6716
e9b2ebb0e8cf class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6709
diff changeset
    16
"{ NameSpace: Smalltalk }"
e9b2ebb0e8cf class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6709
diff changeset
    17
727
bf23a306b6f2 renamed PseudoView to DisplaySurface
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
    18
DisplaySurface subclass:#SimpleView
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
    19
	instanceVariableNames:'superView subViews components styleSheet resources border unused
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
    20
		viewShape top left flagBits relativeOrigin relativeExtent
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
    21
		relativeCorner originRule extentRule cornerRule insets layout
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
    22
		shown hiddenOnRealize name level margin innerClipRect shadowColor
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
    23
		lightColor bitGravity viewGravity controller windowGroup
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
    24
		preferredExtent explicitExtent dependents layoutManager
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
    25
		visibilityChannel helpKey dropTarget'
3055
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    26
	classVariableNames:'Grey CentPoint ViewSpacing DefaultStyle StyleSheet
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    27
		DefaultViewBackgroundColor DefaultBorderColor DefaultLightColor
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    28
		DefaultShadowColor DefaultBorderWidth DefaultFocusColor
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
    29
		DefaultFocusBorderWidth ReturnFocusWhenClosingModalBoxes
3394
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
    30
		FlagOriginChanged FlagExtentChanged FlagCornerChanged
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
    31
		FlagExtentChangedBeforeCreated FlagCanTab
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
    32
		FlagRequestFocusOnPointerEnter
4407
d0f371afaa58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
    33
		FlagDoNotRequestFocusOnPointerEnter FlagNativeWidget
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
    34
		FlagIsUnmappedModalBox FlagIsMDIChild FlagHiddenOnRealize
5663
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
    35
		FlagHasExplicitExtent FlagTakeFocusWhenMapped'
3055
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    36
	poolDictionaries:''
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    37
	category:'Views-Basic'
135
claus
parents:
diff changeset
    38
!
claus
parents:
diff changeset
    39
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    40
SimpleView class instanceVariableNames:'ClassResources DefaultFont'
734
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    41
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    42
"
3164
f3dce6ea8e3f VW compatibility: closeAndUnschedule
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
    43
 No other class instance variables are inherited by this class.
734
1a778cedbbf5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    44
"
140
claus
parents: 138
diff changeset
    45
!
135
claus
parents:
diff changeset
    46
6119
e7de49fefa9a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6117
diff changeset
    47
ProceedingNotification subclass:#AboutToOpenBoxNotificationSignal
5293
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
    48
	instanceVariableNames:''
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
    49
	classVariableNames:''
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
    50
	poolDictionaries:''
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
    51
	privateIn:SimpleView
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
    52
!
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
    53
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
    54
Object subclass:#ViewShape
3055
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    55
	instanceVariableNames:''
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    56
	classVariableNames:''
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    57
	poolDictionaries:''
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    58
	privateIn:SimpleView
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    59
!
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    60
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
    61
SimpleView::ViewShape subclass:#RoundViewShape
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
    62
	instanceVariableNames:''
3055
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    63
	classVariableNames:''
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    64
	poolDictionaries:''
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    65
	privateIn:SimpleView
2750
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
    66
!
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
    67
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
    68
SimpleView::ViewShape subclass:#ArbitraryViewShape
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
    69
	instanceVariableNames:'viewShapeForm borderShapeForm'
3055
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    70
	classVariableNames:''
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    71
	poolDictionaries:''
3a001a72cb9b try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
    72
	privateIn:SimpleView
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
    73
!
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
    74
1101
ffeb697dd9e0 hasButtonMotionEventsFor -> hasButtonMotionEventFor
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
    75
!SimpleView class methodsFor:'documentation'!
135
claus
parents:
diff changeset
    76
claus
parents:
diff changeset
    77
copyright
claus
parents:
diff changeset
    78
"
claus
parents:
diff changeset
    79
 COPYRIGHT (c) 1989 by Claus Gittinger
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
    80
	      All Rights Reserved
135
claus
parents:
diff changeset
    81
claus
parents:
diff changeset
    82
 This software is furnished under a license and may be used
claus
parents:
diff changeset
    83
 only in accordance with the terms of that license and with the
claus
parents:
diff changeset
    84
 inclusion of the above copyright notice.   This software may not
claus
parents:
diff changeset
    85
 be provided or otherwise made available to, or used by, any
claus
parents:
diff changeset
    86
 other person.  No title to or ownership of the software is
claus
parents:
diff changeset
    87
 hereby transferred.
claus
parents:
diff changeset
    88
"
claus
parents:
diff changeset
    89
!
claus
parents:
diff changeset
    90
claus
parents:
diff changeset
    91
documentation
claus
parents:
diff changeset
    92
"
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
    93
    this class implements functions common to all Views which do not work on / show a model.
135
claus
parents:
diff changeset
    94
    Previously, all of this functionality used to be in the old View class, but has been
4907
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
    95
    separated into this new SimpleView (which does not know about models) and the new View,
4898
fddb9d0c1aee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4897
diff changeset
    96
    which does so.
484
7c8dd17a160e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 483
diff changeset
    97
    I'd prefer to call this class View and the current View class a ModelView,
4898
fddb9d0c1aee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4897
diff changeset
    98
    but for backward compatibility it is better to leave things the way they are
fddb9d0c1aee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4897
diff changeset
    99
    (there are simply too many subclasses of View around...).
fddb9d0c1aee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4897
diff changeset
   100
4907
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
   101
    Instances of SimpleView are seldom used directly, most views in the system inherit
4898
fddb9d0c1aee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4897
diff changeset
   102
    from this class. However, sometimes a view is needed to create a dummy view for framing
135
claus
parents:
diff changeset
   103
    or layout purposes.
claus
parents:
diff changeset
   104
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   105
    [Instance variables:]
135
claus
parents:
diff changeset
   106
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   107
	superView               <View>                  my superview i.e. the view I am in
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   108
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   109
	subViews                <Collection>            the collection of subviews
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   110
							These are the views proper.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   111
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   112
	components              <Collection>            collection of gadgets (will be merged with subViews, soon)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   113
							These are lightweight gadgets (not seen by windows/x11).
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   114
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   115
	styleSheet              <ResourcePack>          contains widget attributes (see libview/styles/*.style)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   116
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   117
	resources               <ResourcePack>          contains national language translations (see lib*/resources/*.rs)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   118
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   119
	border                  <Border>                color and width of border
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   120
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   121
	unused                  <nil>                   to keep the instVar size constant
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   122
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   123
	viewShape               <Form>                  shape of view & border (if device supports it)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   124
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   125
	top                     <Number>                actual top coordinate (pixels) in superview
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   126
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   127
	left                    <Number>                actual left coordinate (pixels) in superview
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   128
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   129
	flagBits                <Integer>               flag bits (used to be individual booleans)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   130
	    extendChanged                                   true if extend changed during setup
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   131
	    originChanged                                   true if origin changed during setup
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   132
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   133
	relativeOrigin          <Number>                relative origin in percent within superview
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   134
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   135
	relativeExtent          <Number>                relative extent in percent within superview
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   136
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   137
	relativeCorner          <Number>                relative corner in percent within superview
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   138
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   139
	originRule              <Block>                 rule to compute origin if superview changes size
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   140
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   141
	extentRule              <Block>                 rule to compute extent if superview changes size
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   142
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   143
	cornerRule              <Block>                 rule to compute corner if superview changes size
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   144
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   145
	insets                  <Array>                 array with top, left, bottom & right insets (or nil)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   146
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   147
	layout                  <LayoutObject>          not yet implemented - will replace the above layout
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   148
							variables.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   149
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   150
	shown                   <Boolean>               true if visible (false if iconified, unmapped or covered)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   151
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   152
	hiddenOnRealize         <Boolean>               dont show automatically when superview is realized
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   153
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   154
	name                    <String>                my name (future use for resources)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   155
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   156
	level (**)              <Number>                3D level relative to superview
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   157
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   158
	margin                  <Number>                convenient margin; that is the number of pixels
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   159
							which are taken up by border plus 3D level
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   160
							(i.e. borderWidth + level abs)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   161
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   162
	innerClipRect           <Rectangle>             convenient inner clip (minus margin)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   163
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   164
	shadowColor (**)        <Color>                 color used to draw 3D shadowed edges
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   165
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   166
	lightColor (**)         <Color>                 color used to draw 3D lighted edges
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   167
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   168
	bitGravity              <nil | Symbol>          gravity of contents (if device supports it)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   169
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   170
	viewGravity             <nil | Symbol>          gravity of view (if device supports it)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   171
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   172
	controller              <nil | Controller>      the controller (if any)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   173
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   174
	windowGroup             <WindowGroup>           the windowGroup
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   175
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   176
	preferredExtent(*)      <nil | Point>           preferredExtent overWrite
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   177
							if nonNil, the widget will not compute
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   178
							its pref-extent, but use that value.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   179
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   180
	explicitExtent(*)       <nil | Point>           preferredExtent overWrite
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   181
							if nonNil, the widget will not compute
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   182
							its pref-extent, but use that value.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   183
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   184
	dependents              <nil | Collection>      who depends on me
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   185
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   186
	layoutManager
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   187
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   188
	visibilityChannel
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   189
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   190
	helpKey
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   191
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   192
	dropTarget
135
claus
parents:
diff changeset
   193
5022
72bea2a21ae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5021
diff changeset
   194
    (*) about to be changed to use preferredExtent as a cache and explicitExtent as
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   195
	an overwrite value.
5456
0df0f5ce9d91 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 5436
diff changeset
   196
0df0f5ce9d91 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 5436
diff changeset
   197
    (**) We have recently started to change the system to use borders instead of separate
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   198
	 borderWidth, borderColor, level, shadow- and lightColors.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   199
	 Expect more changes here in the near future..
135
claus
parents:
diff changeset
   200
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   201
    [Class variables:]
135
claus
parents:
diff changeset
   202
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   203
	Grey                    <Color>                 the color grey - its used so often
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   204
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   205
	ViewSpacing             <Number>                preferred spacing between views; 1mm
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   206
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   207
	CentPoint               <Point>                 100 @ 100 - its used so often
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   208
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   209
	StyleSheet              <ResourcePack>          contains all view-style specifics
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   210
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   211
	ReturnFocusWhenClosingModalBoxes                if true, a closing modalBox returns
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   212
				<Boolean>               the keyboard focus to the view which was
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   213
							active when the box was opened.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   214
							If false (the default), it is left to
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   215
							window manager to assign a new focus.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   216
							If running on olwm/olvwm (which requires an
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   217
							explicit click to reassign a focus), it is
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   218
							better to turn this on in a private.rc file.
135
claus
parents:
diff changeset
   219
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   220
    [styleSheet parameters:]
135
claus
parents:
diff changeset
   221
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   222
	popupShadow             <Boolean>               if true, popupViews show a shadow below
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   223
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   224
	popupLevel              <nil | Integer>         3D level
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   225
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   226
	borderWidth             <nil | Integer>         borderWidth (ignored in 3D styles)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   227
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   228
	borderColor             <nil | Color>           borderColor (ignored in 3D styles)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   229
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   230
	viewBackground          <nil | Color>           views background
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   231
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   232
	shadowColor             <nil | Color>           color for shadow edges (ignored in 2D styles)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   233
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   234
	lightColor              <nil | Color>           color for light edges (ignored in 2D styles)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   235
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   236
	font                    <nil | Font>            font to use
135
claus
parents:
diff changeset
   237
claus
parents:
diff changeset
   238
claus
parents:
diff changeset
   239
    TODO:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   240
	get rid of relativeOrigin, relativeCorner, originRule, extentRule,
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   241
	and insets; replace by a single object which defines the size
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   242
	(mhmh - ST-80 seems to call this LayoutFrame ?)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   243
	-> be prepared for a change here in the near future and ONLY use
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   244
	   access methods to get those instance variables' values
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   245
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   246
	get rid of 3D level & margin, move it to extra wrappers
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   247
	(although this will make view setup more complicated, it will remove
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   248
	 complexity from the internals of view. Also, it will allow for more
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   249
	 varieties of borders.)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   250
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   251
	add components (could also call them gadgets or lightweight views)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   252
	- views are expensive in terms of X resources. This would make all
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   253
	framing/edge and panel helper views become cheap ST objects, instead
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   254
	of views.
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   255
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   256
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   257
    [see also:]
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   258
	StandardSystemView DialogBox
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   259
	WindowGroup WindowEvent
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   260
	Layout
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   261
	( introduction to view programming :html: programming/viewintro.html )
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   262
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   263
    [author:]
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   264
	Claus Gittinger
135
claus
parents:
diff changeset
   265
"
151
claus
parents: 145
diff changeset
   266
!
claus
parents: 145
diff changeset
   267
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   268
examples
151
claus
parents: 145
diff changeset
   269
"
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   270
    (all examples below use different viewBackgrounds,
151
claus
parents: 145
diff changeset
   271
     to make the individual subviews visible)
claus
parents: 145
diff changeset
   272
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   273
    a subView in a topView:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   274
									[exBegin]
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   275
	|top v|
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   276
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   277
	top := StandardSystemView new.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   278
	v := View new.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   279
	v origin:0.25 @ 0.25 corner:0.75 @ 0.75.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   280
	top addSubView:v.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   281
	top open
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   282
									[exEnd]
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   283
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   284
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   285
    the same, a bit more compact:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   286
									[exBegin]
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   287
	|top v|
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   288
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   289
	top := StandardSystemView new.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   290
	v := View origin:0.25 @ 0.25 corner:0.75 @ 0.75 in:top.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   291
	top open
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   292
									[exEnd]
616
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   293
56cf67c82664 documentation
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   294
151
claus
parents: 145
diff changeset
   295
    fixed position/size:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   296
									[exBegin]
151
claus
parents: 145
diff changeset
   297
       |top v1 v2|
claus
parents: 145
diff changeset
   298
claus
parents: 145
diff changeset
   299
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   300
       top extent:300@300.
claus
parents: 145
diff changeset
   301
claus
parents: 145
diff changeset
   302
       v1 := View origin:10@10
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   303
		  corner:50@50
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   304
		      in:top.
151
claus
parents: 145
diff changeset
   305
       v2 := View origin:60@10
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   306
		  corner:150@100
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   307
		      in:top.
151
claus
parents: 145
diff changeset
   308
claus
parents: 145
diff changeset
   309
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   310
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   311
claus
parents: 145
diff changeset
   312
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   313
									[exEnd]
151
claus
parents: 145
diff changeset
   314
claus
parents: 145
diff changeset
   315
    same, using ST-80 way of bulding up view hierarchies
claus
parents: 145
diff changeset
   316
    (recommended, if you plan to port applications later)
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   317
									[exBegin]
151
claus
parents: 145
diff changeset
   318
       |top v1 v2|
claus
parents: 145
diff changeset
   319
claus
parents: 145
diff changeset
   320
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   321
       top extent:300@300.
claus
parents: 145
diff changeset
   322
claus
parents: 145
diff changeset
   323
       v1 := View new.
claus
parents: 145
diff changeset
   324
       v1 origin:10@10 corner:50@50.
claus
parents: 145
diff changeset
   325
claus
parents: 145
diff changeset
   326
       v2 := View new.
claus
parents: 145
diff changeset
   327
       v2 origin:60@10 corner:150@100.
claus
parents: 145
diff changeset
   328
claus
parents: 145
diff changeset
   329
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   330
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   331
claus
parents: 145
diff changeset
   332
       top add:v1.
claus
parents: 145
diff changeset
   333
       top add:v2.
claus
parents: 145
diff changeset
   334
claus
parents: 145
diff changeset
   335
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   336
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   337
claus
parents: 145
diff changeset
   338
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   339
									[exEnd]
151
claus
parents: 145
diff changeset
   340
claus
parents: 145
diff changeset
   341
    fixed origin, variable size:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   342
									[exBegin]
151
claus
parents: 145
diff changeset
   343
       |top v1 v2|
claus
parents: 145
diff changeset
   344
claus
parents: 145
diff changeset
   345
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   346
       top extent:300@300.
claus
parents: 145
diff changeset
   347
claus
parents: 145
diff changeset
   348
       v1 := View new.
claus
parents: 145
diff changeset
   349
       v1 origin:10@10 corner:50@0.5.
claus
parents: 145
diff changeset
   350
claus
parents: 145
diff changeset
   351
       v2 := View new.
claus
parents: 145
diff changeset
   352
       v2 origin:60@10 corner:150@0.5.
claus
parents: 145
diff changeset
   353
claus
parents: 145
diff changeset
   354
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   355
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   356
claus
parents: 145
diff changeset
   357
       top add:v1.
claus
parents: 145
diff changeset
   358
       top add:v2.
claus
parents: 145
diff changeset
   359
claus
parents: 145
diff changeset
   360
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   361
									[exEnd]
151
claus
parents: 145
diff changeset
   362
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   363
    fixed origin, variable size,
151
claus
parents: 145
diff changeset
   364
    bottomInset for constant distance from bottom:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   365
									[exBegin]
151
claus
parents: 145
diff changeset
   366
       |top v1 v2|
claus
parents: 145
diff changeset
   367
claus
parents: 145
diff changeset
   368
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   369
       top extent:300@300.
claus
parents: 145
diff changeset
   370
claus
parents: 145
diff changeset
   371
       v1 := View new.
claus
parents: 145
diff changeset
   372
       v1 origin:10@10 corner:50@1.0.
claus
parents: 145
diff changeset
   373
       v1 bottomInset:10.
claus
parents: 145
diff changeset
   374
claus
parents: 145
diff changeset
   375
       v2 := View new.
claus
parents: 145
diff changeset
   376
       v2 origin:60@10 corner:150@1.0.
claus
parents: 145
diff changeset
   377
       v2 bottomInset:10.
claus
parents: 145
diff changeset
   378
claus
parents: 145
diff changeset
   379
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   380
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   381
claus
parents: 145
diff changeset
   382
       top add:v1.
claus
parents: 145
diff changeset
   383
       top add:v2.
claus
parents: 145
diff changeset
   384
claus
parents: 145
diff changeset
   385
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   386
									[exEnd]
151
claus
parents: 145
diff changeset
   387
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   388
    variable origin, variable size,
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   389
									[exBegin]
151
claus
parents: 145
diff changeset
   390
       |top v1 v2|
claus
parents: 145
diff changeset
   391
claus
parents: 145
diff changeset
   392
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   393
       top extent:300@300.
claus
parents: 145
diff changeset
   394
claus
parents: 145
diff changeset
   395
       v1 := View new.
claus
parents: 145
diff changeset
   396
       v1 origin:0.0@0.0 corner:0.5@0.5.
claus
parents: 145
diff changeset
   397
claus
parents: 145
diff changeset
   398
       v2 := View new.
claus
parents: 145
diff changeset
   399
       v2 origin:0.5@0.0 corner:1.0@0.5.
claus
parents: 145
diff changeset
   400
claus
parents: 145
diff changeset
   401
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   402
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   403
claus
parents: 145
diff changeset
   404
       top add:v1.
claus
parents: 145
diff changeset
   405
       top add:v2.
claus
parents: 145
diff changeset
   406
claus
parents: 145
diff changeset
   407
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   408
									[exEnd]
151
claus
parents: 145
diff changeset
   409
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   410
    variable origin, variable size,
151
claus
parents: 145
diff changeset
   411
    insets for some constant distance
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   412
									[exBegin]
151
claus
parents: 145
diff changeset
   413
       |top v1 v2|
claus
parents: 145
diff changeset
   414
claus
parents: 145
diff changeset
   415
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   416
       top extent:300@300.
claus
parents: 145
diff changeset
   417
claus
parents: 145
diff changeset
   418
       v1 := View new.
claus
parents: 145
diff changeset
   419
       v1 origin:0.0@0.0 corner:0.5@0.5.
claus
parents: 145
diff changeset
   420
       v1 rightInset:5.
claus
parents: 145
diff changeset
   421
claus
parents: 145
diff changeset
   422
       v2 := View new.
claus
parents: 145
diff changeset
   423
       v2 origin:0.5@0.0 corner:1.0@0.5.
claus
parents: 145
diff changeset
   424
       v2 leftInset:5.
claus
parents: 145
diff changeset
   425
claus
parents: 145
diff changeset
   426
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   427
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   428
claus
parents: 145
diff changeset
   429
       top add:v1.
claus
parents: 145
diff changeset
   430
       top add:v2.
claus
parents: 145
diff changeset
   431
claus
parents: 145
diff changeset
   432
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   433
									[exEnd]
151
claus
parents: 145
diff changeset
   434
claus
parents: 145
diff changeset
   435
    using layout objects (ST-80 style):
claus
parents: 145
diff changeset
   436
    fully specifying the frame
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   437
									[exBegin]
151
claus
parents: 145
diff changeset
   438
       |top v1 v2|
claus
parents: 145
diff changeset
   439
claus
parents: 145
diff changeset
   440
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   441
       top extent:300@300.
claus
parents: 145
diff changeset
   442
claus
parents: 145
diff changeset
   443
       v1 := View new.
claus
parents: 145
diff changeset
   444
       v2 := View new.
claus
parents: 145
diff changeset
   445
claus
parents: 145
diff changeset
   446
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   447
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   448
claus
parents: 145
diff changeset
   449
       top add:v1 in:(LayoutFrame new
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   450
			leftFraction:0.25;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   451
			rightFraction:0.75;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   452
			topFraction:0.0;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   453
			bottomFraction:0.5).
151
claus
parents: 145
diff changeset
   454
       top add:v2 in:(LayoutFrame new
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   455
			leftFraction:0.5;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   456
			rightFraction:1.0;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   457
			topFraction:0.5;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   458
			bottomFraction:0.75).
151
claus
parents: 145
diff changeset
   459
claus
parents: 145
diff changeset
   460
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   461
									[exEnd]
151
claus
parents: 145
diff changeset
   462
claus
parents: 145
diff changeset
   463
    another one, with offsets:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   464
									[exBegin]
151
claus
parents: 145
diff changeset
   465
       |top v1 v2|
claus
parents: 145
diff changeset
   466
claus
parents: 145
diff changeset
   467
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   468
       top extent:300@300.
claus
parents: 145
diff changeset
   469
claus
parents: 145
diff changeset
   470
       v1 := View new.
claus
parents: 145
diff changeset
   471
       v2 := View new.
claus
parents: 145
diff changeset
   472
claus
parents: 145
diff changeset
   473
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   474
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   475
claus
parents: 145
diff changeset
   476
       top add:v1 in:(LayoutFrame new
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   477
			leftFraction:0.0 offset:10;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   478
			rightFraction:1.0 offset:-10;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   479
			topFraction:0.0 offset:10;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   480
			bottomFraction:0.5).
151
claus
parents: 145
diff changeset
   481
       top add:v2 in:(LayoutFrame new
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   482
			leftFraction:0.0 offset:30;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   483
			rightFraction:1.0 offset:-30;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   484
			topFraction:0.5 offset:10;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   485
			bottomFraction:0.75).
151
claus
parents: 145
diff changeset
   486
claus
parents: 145
diff changeset
   487
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   488
									[exEnd]
151
claus
parents: 145
diff changeset
   489
claus
parents: 145
diff changeset
   490
    specifying origin only. Extent is views preferred
claus
parents: 145
diff changeset
   491
    (notice, that plain views have some defaultExtent of 100@100)
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   492
									[exBegin]
151
claus
parents: 145
diff changeset
   493
       |top v1 v2|
claus
parents: 145
diff changeset
   494
claus
parents: 145
diff changeset
   495
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   496
       top extent:300@300.
claus
parents: 145
diff changeset
   497
claus
parents: 145
diff changeset
   498
       v1 := View new.
claus
parents: 145
diff changeset
   499
       v2 := View new.
claus
parents: 145
diff changeset
   500
claus
parents: 145
diff changeset
   501
       v1 viewBackground:(Color red).
claus
parents: 145
diff changeset
   502
       v2 viewBackground:(Color yellow).
claus
parents: 145
diff changeset
   503
claus
parents: 145
diff changeset
   504
       top add:v1 in:(LayoutOrigin new
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   505
			leftFraction:0.25;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   506
			topFraction:0.0).
151
claus
parents: 145
diff changeset
   507
       top add:v2 in:(LayoutOrigin new
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   508
			leftFraction:0.5;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   509
			topFraction:0.5).
151
claus
parents: 145
diff changeset
   510
claus
parents: 145
diff changeset
   511
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   512
									[exEnd]
151
claus
parents: 145
diff changeset
   513
claus
parents: 145
diff changeset
   514
    same example, using buttons which compute their preferredBounds:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   515
									[exBegin]
151
claus
parents: 145
diff changeset
   516
       |top v1 v2|
claus
parents: 145
diff changeset
   517
claus
parents: 145
diff changeset
   518
       top := StandardSystemView new.
claus
parents: 145
diff changeset
   519
       top extent:300@300.
claus
parents: 145
diff changeset
   520
claus
parents: 145
diff changeset
   521
       v1 := Button label:'foo'.
claus
parents: 145
diff changeset
   522
       v2 := Button label:'a very long buttonLabel'.
claus
parents: 145
diff changeset
   523
claus
parents: 145
diff changeset
   524
       v1 backgroundColor:(Color red).
claus
parents: 145
diff changeset
   525
       v2 backgroundColor:(Color yellow).
claus
parents: 145
diff changeset
   526
claus
parents: 145
diff changeset
   527
       top add:v1 in:(LayoutOrigin new
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   528
			leftFraction:0.25;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   529
			topFraction:0.0).
151
claus
parents: 145
diff changeset
   530
       top add:v2 in:(LayoutOrigin new
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   531
			leftFraction:0.5;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   532
			topFraction:0.5).
151
claus
parents: 145
diff changeset
   533
claus
parents: 145
diff changeset
   534
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   535
									[exEnd]
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   536
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   537
    border:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   538
									[exBegin]
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   539
       |top v1 v2|
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   540
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   541
       top := StandardSystemView new.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   542
       top extent:300@300.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   543
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   544
       v1 := View new.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   545
       top add:v1 in:(10@10 corner: 30@30).
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   546
       v2 := View new.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   547
       top add:v2 in:(30@30 corner: 50@50).
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   548
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   549
       v1 border:(SimpleBorder width:1 color:Color red).
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   550
       v2 border:(SimpleBorder width:1 color:Color blue).
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
   551
       top open
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
   552
									[exEnd]
151
claus
parents: 145
diff changeset
   553
"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   554
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   555
4497
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
   556
examples_MDI
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
   557
"
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
   558
    Currently, these are experimental and work under Windows only
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
   559
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
   560
    an MDI child:
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   561
									[exBegin]
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   562
	|top v1 v2|
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   563
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   564
	top := StandardSystemView new.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   565
	top extent:450 @ 300.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   566
	top name:'MDI Client'.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   567
	top beMDIClientView.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   568
	top open.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   569
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   570
	v1 := View new.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   571
	v1 viewBackground:Color red.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   572
	v1 origin:50 @ 50 corner:150 @ 100.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   573
	v1 beMDIChildView.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   574
	top addSubView:v1.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   575
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   576
	v2 := View new.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   577
	v2 viewBackground:Color green.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   578
	v2 origin:50 @ 50 corner:150 @ 100.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   579
	v2 beMDIChildView.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   580
	top addSubView:v2.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
   581
									[exEnd]
4497
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
   582
"
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
   583
!
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
   584
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   585
layoutComputation
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   586
"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   587
    Due to historic reasons, there are 2 mechanisms to resize a view:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   588
	- (old, to be eliminated mechanism)
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   589
	    based upon info found in
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   590
		relativeOrigin / relativeCorner / relativeExtent
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   591
		originRule / cornerRule / extentRule
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   592
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   593
	- (new, will migrate to that one)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   594
	    letting a layoutObject compute things
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   595
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   596
    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
   597
    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
   598
    geometry is desired.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   599
    However, having 6 instance variables in every view creates some overhead,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   600
    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
   601
    relative-sized).
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   602
    Therefore (and also to make porting of ST-80 apps easier), ST/X will migrate
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   603
    to use layoutObjects.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   604
    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
   605
    existing interfaces will (silently) create layoutObjects as appropriate.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   606
    However, you should remove all direct accesses to the above mentioned
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   607
    instance variables, to be prepared for that change.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   608
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   609
    Notice, that a view recomputes its size whenever its superview
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   610
    changes size. This is done via:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   611
	sizeChanged
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   612
	    -> allSubviews: superViewChangedSize
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   613
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   614
    If the geometry computation as performed in superViewChangedSize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   615
    is not powerful enough for your application, you can either:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   616
	- redefine superViewChangedSize
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   617
	- create a special layoutObject which computes a new layout.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   618
"
522
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
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   621
popupMenus
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   622
"
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   623
    Due to historic reasons, there are multiple mechanisms for popupMenu
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   624
    definition:
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   625
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   626
	- static menus
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   627
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   628
	- dynamic menus from the view
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   629
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   630
	- dynamic menus from the model / menuHolder
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   631
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   632
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   633
    static menus
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
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   636
    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
   637
    has a constant menu which never changes.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   638
    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
   639
    The menu is defined with:
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   640
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   641
	someView middleButtonMenu:<aPopUpMenu>
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   642
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   643
    Compatibility note:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   644
	static menus should no longer be used - their operation
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   645
	is incompatible with ST-80 and ST/X's dynamic menus.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   646
	Do not use them if you care for compatibility.
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   647
    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
   648
    (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
   649
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   650
    example:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   651
	|top v1 v2|
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   652
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   653
	top := StandardSystemView new.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   654
	top extent:300@300.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   655
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   656
	v1 := View origin:0.0@0.0 corner:0.5@1.0 in:top.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   657
	v1 viewBackground:Color red.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   658
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   659
	v2 := View origin:0.5@0.0 corner:1.0@1.0 in:top.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   660
	v2 viewBackground:Color yellow.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   661
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   662
	v1 middleButtonMenu:(
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   663
				PopUpMenu
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   664
				   labels:#('foo' 'bar')
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   665
				   selectors:#(foo bar)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   666
				   receiver:v1
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   667
			    ).
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   668
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   669
	top open.
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   670
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   671
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   672
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   673
    dynamic menus
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   674
    -------------
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   675
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   676
    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
   677
    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
   678
    (i.e. it may be different from the model).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   679
    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
   680
    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
   681
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   682
    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
   683
    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
   684
    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
   685
    by textViews.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   686
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   687
    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
   688
    Notice, that all menu messages are sent to the view (because no model was set)
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   689
    - so the textView still performs the copy-function correctly
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   690
    (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
   691
    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
   692
    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
   693
    (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
   694
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   695
	|top v1 v2 holder|
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   696
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   697
	holder := Plug new.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   698
	holder respondTo:#menu1
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   699
		    with:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   700
			    v1 menuMessage:#otherMenu1.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   701
			    PopUpMenu
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   702
				labels:#('foo' 'bar')
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   703
				selectors:#(foo bar).
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   704
			 ].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   705
	holder respondTo:#otherMenu1
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   706
		    with:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   707
			    v1 menuMessage:#menu1.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   708
			    PopUpMenu
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   709
				labels:#('other foo' 'other bar')
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   710
				selectors:#(foo bar).
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   711
			 ].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   712
	holder respondTo:#menu2
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   713
		    with:[  PopUpMenu
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   714
				labels:#('copy' 'bar2')
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   715
				selectors:#(copySelection bar2)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   716
			 ].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   717
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   718
	top := StandardSystemView new.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   719
	top extent:300@300.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   720
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   721
	v1 := View origin:0.0@0.0 corner:0.5@1.0 in:top.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   722
	v1 viewBackground:Color red.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   723
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   724
	v2 := TextView origin:0.5@0.0 corner:1.0@1.0 in:top.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   725
	v2 contents:'pop me up'.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   726
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   727
	v1 model:holder; menuMessage:#menu1.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   728
	v2 menuHolder:holder; menuMessage:#menu2.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   729
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   730
	top open.
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   731
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   732
    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
   733
    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
   734
    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
   735
    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
   736
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   737
    example:
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   738
    (Notice: the executor understands the #copySelection message - therefore, the
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   739
     views built-in copy is NOT performed
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   740
     - it could be forwarded to the view, though.
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   741
     This could be useful to intercept/filter things).
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   742
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   743
	|top v menuProvider menuExecutor |
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   744
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   745
	menuProvider := Plug new.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   746
	menuProvider respondTo:#menu
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   747
		    with:[  PopUpMenu
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   748
				labels:#('copy' 'foo')
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   749
				selectors:#(copySelection foo)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   750
			 ].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   751
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   752
	menuExecutor := Plug new.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   753
	menuExecutor respondTo:#copySelection
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   754
			   with:[Transcript showCR:'copy function'].
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   755
	menuExecutor respondTo:#foo
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   756
			   with:[Transcript showCR:'foo function'].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   757
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   758
	top := StandardSystemView new.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   759
	top extent:300@300.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   760
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   761
	v := TextView origin:0.0@0.0 corner:1.0@1.0 in:top.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   762
	v contents:'pop me up'.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   763
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   764
	v menuHolder:menuProvider; menuMessage:#menu.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   765
	v menuPerformer:menuExecutor.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   766
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   767
	top open.
522
1b041037c1ee added docu on popUpMenu execution
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
   768
"
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
   769
135
claus
parents:
diff changeset
   770
! !
claus
parents:
diff changeset
   771
1101
ffeb697dd9e0 hasButtonMotionEventsFor -> hasButtonMotionEventFor
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
   772
!SimpleView class methodsFor:'initialization'!
135
claus
parents:
diff changeset
   773
claus
parents:
diff changeset
   774
initialize
claus
parents:
diff changeset
   775
    DefaultStyle isNil ifTrue:[
5707
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
   776
	Font initialize.
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
   777
	Form initialize.
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
   778
	Color initialize.
3378
0792856b9ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3377
diff changeset
   779
    ].
0792856b9ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3377
diff changeset
   780
    self == SimpleView ifTrue:[
5707
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
   781
	Smalltalk addDependent:self   "/ to get language changes
3378
0792856b9ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3377
diff changeset
   782
    ].
0792856b9ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3377
diff changeset
   783
365
347a478d8cf5 default returnFocus to false
Claus Gittinger <cg@exept.de>
parents: 364
diff changeset
   784
    ReturnFocusWhenClosingModalBoxes := false.
696
3719a063d0f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   785
5663
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   786
    FlagOriginChanged                   := 2r0000000000001.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   787
    FlagExtentChanged                   := 2r0000000000010.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   788
    FlagCornerChanged                   := 2r0000000000100.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   789
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   790
    FlagCanTab                          := 2r0000000001000.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   791
    FlagExtentChangedBeforeCreated      := 2r0000000010000.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   792
    FlagRequestFocusOnPointerEnter      := 2r0000000100000.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   793
    FlagDoNotRequestFocusOnPointerEnter := 2r0000001000000.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   794
    FlagNativeWidget                    := 2r0000010000000.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   795
    FlagIsUnmappedModalBox              := 2r0000100000000.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   796
    FlagIsMDIChild                      := 2r0001000000000.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   797
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   798
    FlagHiddenOnRealize                 := 2r0010000000000.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   799
    FlagHasExplicitExtent               := 2r0100000000000.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   800
    FlagTakeFocusWhenMapped             := 2r1000000000000.
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   801
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
   802
    "Modified: / 09-12-2010 / 10:32:01 / cg"
135
claus
parents:
diff changeset
   803
!
claus
parents:
diff changeset
   804
claus
parents:
diff changeset
   805
postAutoload
2994
c6be08b45a76 eliminated refs to Display (must use Screen current)
Stefan Vogel <sv@exept.de>
parents: 2985
diff changeset
   806
    (Screen notNil and:[Screen current notNil]) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   807
	self updateStyleCache.
2985
62552b74e805 do not read styleSheet if Display is nil
Stefan Vogel <sv@exept.de>
parents: 2979
diff changeset
   808
    ]
135
claus
parents:
diff changeset
   809
! !
claus
parents:
diff changeset
   810
1101
ffeb697dd9e0 hasButtonMotionEventsFor -> hasButtonMotionEventFor
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
   811
!SimpleView class methodsFor:'instance creation'!
135
claus
parents:
diff changeset
   812
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   813
extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   814
    "create a new view with given extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   815
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   816
    ^ self origin:nil extent:extent borderWidth:nil font:nil label:nil in:nil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   817
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   818
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   819
extent:extent in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   820
    "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
   821
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   822
    ^ self origin:nil extent:extent borderWidth:nil font:nil label:nil in:aView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   823
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   824
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   825
extent:extent label:label
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   826
    "create a new view with given extent and label"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   827
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   828
    ^ self origin:nil extent:extent borderWidth:nil font:nil label:label in:nil
135
claus
parents:
diff changeset
   829
!
claus
parents:
diff changeset
   830
claus
parents:
diff changeset
   831
in:aView
claus
parents:
diff changeset
   832
    "return a new view as a subview of aView.
claus
parents:
diff changeset
   833
     If aView is nil, it is left unspecified, in which superview
claus
parents:
diff changeset
   834
     the new view will be placed. The view can later be assigned
claus
parents:
diff changeset
   835
     by adding it to the superview via #addSubView:.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   836
     If its later realized and no superview has ever been set,
1918
a4042019bc8b no need to set the container twice in SimpleView class>>in:
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
   837
     it will come up as a topview."
135
claus
parents:
diff changeset
   838
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   839
    |newView device|
135
claus
parents:
diff changeset
   840
claus
parents:
diff changeset
   841
    newView := self basicNew.
claus
parents:
diff changeset
   842
    aView notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
   843
	newView initializeForDevice:(aView graphicsDevice).
2302
9525834a6be7 manual bg-pixmap drawing on devices which do not support them (win32)
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   844
"/      newView container:aView.
135
claus
parents:
diff changeset
   845
    ] ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
   846
	newView initializeForDevice:Screen current
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
   847
    ].
6754
e5fad431c0b8 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6472
diff changeset
   848
    (newView device supportsNativeWidgetType:newView nativeWindowType) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
   849
	newView beNativeWidget.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
   850
	device := Screen current
6754
e5fad431c0b8 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6472
diff changeset
   851
    ].
135
claus
parents:
diff changeset
   852
    aView notNil ifTrue:[aView addSubView:newView].
claus
parents:
diff changeset
   853
    ^ newView
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
   854
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   855
    "Modified: 28.5.1996 / 20:24:58 / cg"
135
claus
parents:
diff changeset
   856
!
claus
parents:
diff changeset
   857
140
claus
parents: 138
diff changeset
   858
label:label
claus
parents: 138
diff changeset
   859
    "create a new view with given label"
135
claus
parents:
diff changeset
   860
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   861
    ^ self origin:nil extent:nil borderWidth:nil font:nil label:label in:nil
140
claus
parents: 138
diff changeset
   862
!
claus
parents: 138
diff changeset
   863
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   864
label:label in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   865
    "create a new view as subview of aView with given label"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   866
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   867
    ^ self origin:nil extent:nil borderWidth:nil font:nil label:label in:aView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   868
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   869
1393
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   870
model:aModel
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   871
    "st-80 style view creation: create a new view and set its model.
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   872
     Notice, that simpleViews do not understand #model:; however,
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   873
     subclasses may."
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   874
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   875
    ^ self new model:aModel
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   876
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   877
    "Created: 28.2.1997 / 19:27:40 / cg"
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   878
    "Modified: 28.2.1997 / 19:28:12 / cg"
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   879
!
0af63b69b416 moved class>>model from View to here.
Claus Gittinger <cg@exept.de>
parents: 1389
diff changeset
   880
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   881
on:aModel
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   882
    "create a new drawable on aModel"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   883
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   884
    "although this one does not know about models,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   885
     it can still send the model-assign message. This was done
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   886
     to catch obsolete calls to on:aDevice.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   887
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   888
    ^ self new model:aModel.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   889
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   890
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   891
onSameDeviceAs:anotherView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   892
    "create a view on the same device as anotherView.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   893
     Used with popUpMenus, which should be created on the device of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   894
     its masterView."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   895
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   896
    |device|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   897
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   898
    anotherView notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   899
	device := anotherView graphicsDevice.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   900
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   901
	device := Screen current.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   902
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   903
    ^ self onDevice:device
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   904
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   905
    "Modified: 28.5.1996 / 20:25:05 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   906
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   907
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
   908
origin:origin corner:corner
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   909
    "create a new view with given origin and extent"
135
claus
parents:
diff changeset
   910
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   911
    ^ self origin:origin corner:corner borderWidth:nil font:nil label:nil in:nil
135
claus
parents:
diff changeset
   912
!
claus
parents:
diff changeset
   913
claus
parents:
diff changeset
   914
origin:anOrigin corner:aCorner borderWidth:bw font:aFont label:aLabel in:aView
claus
parents:
diff changeset
   915
    |newView|
claus
parents:
diff changeset
   916
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   917
    newView := self in:aView.
135
claus
parents:
diff changeset
   918
    bw notNil ifTrue:[newView borderWidth:bw].
claus
parents:
diff changeset
   919
    anOrigin notNil ifTrue:[newView origin:anOrigin].
claus
parents:
diff changeset
   920
    aCorner notNil ifTrue:[newView corner:aCorner].
claus
parents:
diff changeset
   921
    aFont notNil ifTrue:[newView font:aFont].
claus
parents:
diff changeset
   922
    aLabel notNil ifTrue:[newView label:aLabel].
claus
parents:
diff changeset
   923
    ^ newView
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   924
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   925
    "Modified: 28.5.1996 / 20:25:15 / cg"
135
claus
parents:
diff changeset
   926
!
claus
parents:
diff changeset
   927
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   928
origin:origin corner:corner borderWidth:bw in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   929
    "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
   930
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   931
    ^ self origin:origin corner:corner borderWidth:bw font:nil label:nil in:aView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   932
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   933
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   934
origin:origin corner:corner in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   935
    "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
   936
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   937
    ^ self origin:origin corner:corner borderWidth:nil font:nil label:nil in:aView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   938
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   939
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   940
origin:origin extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   941
    "create a new view with given origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   942
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   943
    ^ self origin:origin extent:extent borderWidth:nil font:nil label:nil in:nil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   944
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   945
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   946
origin:origin extent:extent borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   947
    "create a new view with given origin, extent and borderWidth"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   948
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   949
    ^ self origin:origin extent:extent borderWidth:bw font:nil label:nil in:nil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   950
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   951
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   952
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
   953
    |newView|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   954
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   955
    newView := self in:aView.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   956
    bw notNil ifTrue:[newView borderWidth:bw].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   957
    anExtent notNil ifTrue:[newView extent:anExtent].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   958
    anOrigin notNil ifTrue:[newView origin:anOrigin].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   959
    aFont notNil ifTrue:[newView font:aFont].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   960
    aLabel notNil ifTrue:[newView label:aLabel].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   961
    ^ newView
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   962
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
   963
    "Modified: 28.5.1996 / 20:25:19 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   964
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   965
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   966
origin:origin extent:extent borderWidth:bw in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   967
    "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
   968
     and borderWidth"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   969
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   970
    ^ self origin:origin extent:extent borderWidth:bw font:nil label:nil in:aView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   971
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   972
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   973
origin:origin extent:extent font:aFont label:label
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   974
    ^ self origin:origin extent:extent borderWidth:nil font:nil label:label in:nil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   975
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   976
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   977
origin:origin extent:extent font:aFont label:label in:aView
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   978
    ^ self origin:origin extent:extent borderWidth:nil font:aFont label:label in:aView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   979
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   980
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   981
origin:origin extent:extent in:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   982
    "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
   983
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   984
    ^ self origin:origin extent:extent borderWidth:nil font:nil label:nil in:aView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   985
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   986
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   987
origin:origin extent:extent label:label
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   988
    "create a new view with given origin, extent and label"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
   989
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
   990
    ^ self origin:origin extent:extent borderWidth:nil font:nil label:label in:nil
135
claus
parents:
diff changeset
   991
!
claus
parents:
diff changeset
   992
claus
parents:
diff changeset
   993
origin:anOrigin extent:anExtent
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   994
		label:aLabel icon:aForm
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
   995
		minExtent:minExtent maxExtent:maxExtent
135
claus
parents:
diff changeset
   996
    |newView|
claus
parents:
diff changeset
   997
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
   998
    newView := self new. "/ onDevice:Screen current.
135
claus
parents:
diff changeset
   999
    anOrigin notNil ifTrue:[newView origin:anOrigin].
claus
parents:
diff changeset
  1000
    anExtent notNil ifTrue:[newView extent:anExtent].
claus
parents:
diff changeset
  1001
    aLabel notNil ifTrue:[newView label:aLabel].
claus
parents:
diff changeset
  1002
    aForm notNil ifTrue:[newView icon:aForm].
claus
parents:
diff changeset
  1003
    minExtent notNil ifTrue:[newView minExtent:minExtent].
claus
parents:
diff changeset
  1004
    maxExtent notNil ifTrue:[newView maxExtent:maxExtent].
claus
parents:
diff changeset
  1005
    ^ newView
claus
parents:
diff changeset
  1006
!
claus
parents:
diff changeset
  1007
140
claus
parents: 138
diff changeset
  1008
origin:origin in:aView
claus
parents: 138
diff changeset
  1009
    "create a new view as a subview of aView with given origin"
claus
parents: 138
diff changeset
  1010
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  1011
    ^ self origin:origin extent:nil borderWidth:nil font:nil label:nil in:aView
135
claus
parents:
diff changeset
  1012
! !
claus
parents:
diff changeset
  1013
5293
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
  1014
!SimpleView class methodsFor:'Signal constants'!
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
  1015
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
  1016
aboutToOpenBoxNotificationSignal
5690
29d8a448659e comment: #aboutToOpenBoxNotificationSignal
Claus Gittinger <cg@exept.de>
parents: 5680
diff changeset
  1017
    "/ the following allows for knowledgable programmers to suppress dialog boxes,
29d8a448659e comment: #aboutToOpenBoxNotificationSignal
Claus Gittinger <cg@exept.de>
parents: 5680
diff changeset
  1018
    "/ (by proceeding with #abort) or to patch common controls right before opening...
29d8a448659e comment: #aboutToOpenBoxNotificationSignal
Claus Gittinger <cg@exept.de>
parents: 5680
diff changeset
  1019
5293
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
  1020
    ^ AboutToOpenBoxNotificationSignal
5690
29d8a448659e comment: #aboutToOpenBoxNotificationSignal
Claus Gittinger <cg@exept.de>
parents: 5680
diff changeset
  1021
29d8a448659e comment: #aboutToOpenBoxNotificationSignal
Claus Gittinger <cg@exept.de>
parents: 5680
diff changeset
  1022
    "Modified: / 27-01-2011 / 17:35:00 / cg"
5293
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
  1023
! !
3cfe2ac1b101 AboutToOpenBoxNotificationSignal moved to SimpleView and raised
Claus Gittinger <cg@exept.de>
parents: 5292
diff changeset
  1024
1101
ffeb697dd9e0 hasButtonMotionEventsFor -> hasButtonMotionEventFor
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  1025
!SimpleView class methodsFor:'change & update'!
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1026
867
7073ec7824f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
  1027
update:something with:aParameter from:changedObject
3378
0792856b9ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3377
diff changeset
  1028
    changedObject == Smalltalk ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1029
	(something == #Language or:[something == #LanguageTerritory]) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1030
	    "flush resources on language changes"
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1031
	    self flushAllClassResources.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1032
	    self allSubInstancesDo:[:eachView | eachView languageChanged].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1033
	].
135
claus
parents:
diff changeset
  1034
    ]
867
7073ec7824f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
  1035
7073ec7824f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
  1036
    "Created: 15.6.1996 / 15:23:04 / cg"
135
claus
parents:
diff changeset
  1037
! !
claus
parents:
diff changeset
  1038
1101
ffeb697dd9e0 hasButtonMotionEventsFor -> hasButtonMotionEventFor
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  1039
!SimpleView class methodsFor:'defaults'!
135
claus
parents:
diff changeset
  1040
5366
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1041
defaultBackgroundColor
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1042
    "return the default background color for drawing - usually,
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1043
     that is the same as the viewBackgroundColor."
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1044
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1045
    ^ self defaultViewBackgroundColor
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1046
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1047
    "
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1048
     View defaultBackgroundColor
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1049
    "
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1050
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1051
    "Modified: 13.8.1997 / 19:37:55 / cg"
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1052
!
ce5017348c83 added: #defaultBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
  1053
140
claus
parents: 138
diff changeset
  1054
defaultExtent
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  1055
    "return the default extent of my instances.
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  1056
     The value returned here is usually ignored, and
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  1057
     the value from preferredExtent taken instead."
140
claus
parents: 138
diff changeset
  1058
claus
parents: 138
diff changeset
  1059
    CentPoint isNil ifTrue:[CentPoint := 100 @ 100].
claus
parents: 138
diff changeset
  1060
    ^ CentPoint
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  1061
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  1062
    "Modified: 22.4.1996 / 23:38:39 / cg"
140
claus
parents: 138
diff changeset
  1063
!
claus
parents: 138
diff changeset
  1064
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1065
defaultFont
990
0585aee05fa2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1066
    |f|
0585aee05fa2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1067
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  1068
    DefaultFont notNil ifTrue:[^ DefaultFont].
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  1069
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  1070
    self == SimpleView ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1071
	f := super defaultFont
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  1072
    ] ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1073
	f := self superclass defaultFont.
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  1074
    ].
997
39d5d3a74853 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
  1075
990
0585aee05fa2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1076
    f notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1077
	DefaultFont := f.
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1078
	f := f onDevice:Screen current.
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1079
	f notNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1080
	    DefaultFont := f.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1081
	]
990
0585aee05fa2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1082
    ].
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  1083
    ^ DefaultFont
467
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1084
badc7ab65a2d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1085
    "Modified: 27.2.1996 / 02:20:54 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1086
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1087
450
9eb6198de8f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 433
diff changeset
  1088
defaultFont:aFont
452
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  1089
    "set the default font used for drawing"
f38d70ba97a2 made DefaultFont a classINSTvariable
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  1090
997
39d5d3a74853 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
  1091
    |f|
39d5d3a74853 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
  1092
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1093
    DefaultFont := aFont.
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1094
    aFont notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1095
	f := aFont onDevice:(Screen current).
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1096
	f notNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1097
	    DefaultFont := f.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1098
	]
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1099
    ]
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1100
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1101
    "Modified: 18.3.1996 / 12:56:20 / cg"
450
9eb6198de8f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 433
diff changeset
  1102
!
9eb6198de8f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 433
diff changeset
  1103
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1104
defaultStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1105
    "return the default view style"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1106
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1107
    ^ DefaultStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1108
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1109
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1110
     View defaultStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1111
    "
135
claus
parents:
diff changeset
  1112
!
claus
parents:
diff changeset
  1113
claus
parents:
diff changeset
  1114
defaultStyle:aStyle
claus
parents:
diff changeset
  1115
    "set the view style for new views"
claus
parents:
diff changeset
  1116
2985
62552b74e805 do not read styleSheet if Display is nil
Stefan Vogel <sv@exept.de>
parents: 2979
diff changeset
  1117
    DefaultStyle := aStyle.
6798
62c531da09f3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6792
diff changeset
  1118
62c531da09f3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6792
diff changeset
  1119
    MIMETypeIconLibrary notNil ifTrue:[
62c531da09f3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6792
diff changeset
  1120
        MIMETypeIconLibrary flushIcons
62c531da09f3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6792
diff changeset
  1121
    ].
62c531da09f3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6792
diff changeset
  1122
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1123
    "/ no need to read the stylesheet always here
5711
290bfea2c941 changed: #defaultStyle:
Claus Gittinger <cg@exept.de>
parents: 5707
diff changeset
  1124
    "/ done later if the system is not already up and running
290bfea2c941 changed: #defaultStyle:
Claus Gittinger <cg@exept.de>
parents: 5707
diff changeset
  1125
    "/ (which is the case, if there is already a styleSheet)
290bfea2c941 changed: #defaultStyle:
Claus Gittinger <cg@exept.de>
parents: 5707
diff changeset
  1126
    "/ this will make startup of expecco and similar applications
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1127
    "/ faster, because often, they find that another instance is already
5711
290bfea2c941 changed: #defaultStyle:
Claus Gittinger <cg@exept.de>
parents: 5707
diff changeset
  1128
    "/ running and they simply forward the request to that one.
290bfea2c941 changed: #defaultStyle:
Claus Gittinger <cg@exept.de>
parents: 5707
diff changeset
  1129
    "/ no need to read the stylesheet, then.
290bfea2c941 changed: #defaultStyle:
Claus Gittinger <cg@exept.de>
parents: 5707
diff changeset
  1130
    "/ used to be unconditional, before.
290bfea2c941 changed: #defaultStyle:
Claus Gittinger <cg@exept.de>
parents: 5707
diff changeset
  1131
    StyleSheet notNil ifTrue:[
6798
62c531da09f3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6792
diff changeset
  1132
        (Screen notNil and:[Screen current notNil]) ifTrue:[
62c531da09f3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6792
diff changeset
  1133
            self readStyleSheetAndUpdateAllStyleCaches.
62c531da09f3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6792
diff changeset
  1134
        ].
5711
290bfea2c941 changed: #defaultStyle:
Claus Gittinger <cg@exept.de>
parents: 5707
diff changeset
  1135
    ].
135
claus
parents:
diff changeset
  1136
claus
parents:
diff changeset
  1137
    "
claus
parents:
diff changeset
  1138
     View defaultStyle:#next. SystemBrowser start
claus
parents:
diff changeset
  1139
     View defaultStyle:#motif. SystemBrowser start
claus
parents:
diff changeset
  1140
     View defaultStyle:#iris. SystemBrowser start
claus
parents:
diff changeset
  1141
     View defaultStyle:#st80. SystemBrowser start
claus
parents:
diff changeset
  1142
     View defaultStyle:#normal. SystemBrowser start
claus
parents:
diff changeset
  1143
    "
2351
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1144
5711
290bfea2c941 changed: #defaultStyle:
Claus Gittinger <cg@exept.de>
parents: 5707
diff changeset
  1145
    "Modified: / 05-02-2011 / 15:26:34 / cg"
135
claus
parents:
diff changeset
  1146
!
claus
parents:
diff changeset
  1147
1860
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1148
defaultViewBackgroundColor
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1149
    "return the default view background"
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1150
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1151
    ^ DefaultViewBackgroundColor
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1152
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1153
    "
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1154
     View defaultViewBackgroundColor
1860
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1155
    "
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1156
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1157
    "Modified: 13.8.1997 / 19:37:55 / cg"
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1158
!
95ce8aa47451 added access to DefaultViewBackgroundColor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1159
2351
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1160
readStyleSheet
3181
35d4e8a2bebd comment
ps
parents: 3180
diff changeset
  1161
    "(re)load the styleSheet."
2351
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1162
4313
48fe65cf3fd2 iconLibrary-class from styleSheet
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1163
    |iconLibraryClass |
48fe65cf3fd2 iconLibrary-class from styleSheet
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1164
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  1165
    DefaultStyle isNil ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1166
	self setDefaultStyle
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  1167
    ].
3002
3b0951872ab4 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 2994
diff changeset
  1168
2351
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1169
    StyleSheet := ViewStyle fromFile:(DefaultStyle , '.style').
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1170
    StyleSheet fileReadFailed ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1171
	('SimpleView [warning]: ***** no styleSheet for ' , DefaultStyle , '-style.') errorPrintCR.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1172
	DefaultStyle ~~ #normal ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1173
	    DefaultStyle := #normal.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1174
	    StyleSheet := ViewStyle fromFile:(DefaultStyle , '.style').
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1175
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1176
	    StyleSheet fileReadFailed ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1177
		'SimpleView [warning]: not even a styleSheet for normal-style (using ugly defaults).' errorPrintCR.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1178
	    ]
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1179
	]
4313
48fe65cf3fd2 iconLibrary-class from styleSheet
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1180
    ].
48fe65cf3fd2 iconLibrary-class from styleSheet
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1181
48fe65cf3fd2 iconLibrary-class from styleSheet
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1182
    iconLibraryClass := StyleSheet at:#ToolbarIconLibrary.
48fe65cf3fd2 iconLibrary-class from styleSheet
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1183
    ToolbarIconLibrary := iconLibraryClass ? GenericToolbarIconLibrary.
2351
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1184
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1185
    "Created: / 15.9.1998 / 22:03:06 / cg"
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1186
!
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1187
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1188
readStyleSheetAndUpdateAllStyleCaches
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1189
    "reload all style caches in all view classes.
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1190
     Needed after a style change or when a style file has been changed"
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1191
5591
992839870412 changed: #readStyleSheetAndUpdateAllStyleCaches
Stefan Vogel <sv@exept.de>
parents: 5590
diff changeset
  1192
    DefaultStyle notNil ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1193
	self readStyleSheet.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1194
	self updateAllStyleCaches.
5591
992839870412 changed: #readStyleSheetAndUpdateAllStyleCaches
Stefan Vogel <sv@exept.de>
parents: 5590
diff changeset
  1195
    ].
2351
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1196
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1197
    "Created: / 15.9.1998 / 22:03:59 / cg"
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1198
!
bb7cb7d8d723 separated style-handling into read-/update,
Claus Gittinger <cg@exept.de>
parents: 2302
diff changeset
  1199
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1200
returnFocusWhenClosingModalBoxes
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1201
    "return the current focus-return behavior.
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1202
     See #returnFocusWhenClosingModalBoxes: for a description."
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1203
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1204
    ^ ReturnFocusWhenClosingModalBoxes
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1205
!
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1206
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1207
returnFocusWhenClosingModalBoxes:aBoolean
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1208
    "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
  1209
     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
  1210
     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
  1211
     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
  1212
     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
  1213
     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
  1214
     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
  1215
     it may be better to turn the focus-return off.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1216
     You should add a corresponding expression into your private.rc or
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1217
     display.rc file."
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1218
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1219
    ReturnFocusWhenClosingModalBoxes := aBoolean
364
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1220
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1221
    "
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1222
     Dialog returnFocusWhenClosingModalBoxes:false
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1223
     Dialog returnFocusWhenClosingModalBoxes:true
b44b425e3ee1 oops - forgot to initialize the value of ReturnFocusWhenClosing
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
  1224
    "
362
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1225
!
0fa4bc6ad8d1 allow setting of dialog-focus behavior
ca
parents: 358
diff changeset
  1226
2294
f198e6e23448 defaultStyle
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
  1227
setDefaultStyle
6289
b4dfb1127b8e class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
  1228
    |defStyle sysInfo|
2294
f198e6e23448 defaultStyle
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
  1229
3185
98fd08dcf366 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3183
diff changeset
  1230
    DefaultStyle isNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1231
	defStyle := OperatingSystem getEnvironment:'STX_VIEWSTYLE'.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1232
	defStyle notNil ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1233
	    DefaultStyle := defStyle asSymbol.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1234
	] ifFalse:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1235
	    "/ use XP for both linux and older windows systems;
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  1236
	    DefaultStyle := ViewStyle msWindowsXP.
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1237
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1238
	    OperatingSystem isMSWINDOWSlike ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  1239
		"/ use Vista for vista systems;
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  1240
		OperatingSystem isVistaLike ifTrue:[
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  1241
		    DefaultStyle := ViewStyle msWindowsVista
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1242
		].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1243
	    ].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  1244
	].
5706
5423e6c0a69a changed: #setDefaultStyle
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
  1245
    ].
5423e6c0a69a changed: #setDefaultStyle
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
  1246
5423e6c0a69a changed: #setDefaultStyle
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
  1247
    "Modified: / 03-02-2011 / 21:41:35 / cg"
2294
f198e6e23448 defaultStyle
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
  1248
!
f198e6e23448 defaultStyle
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
  1249
1161
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1250
styleSheet
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1251
    "return the view style sheet information (a dictionary)"
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1252
3923
5e0345a32742 stylesheet access
Claus Gittinger <cg@exept.de>
parents: 3922
diff changeset
  1253
    StyleSheet isNil ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1254
	self updateAllStyleCaches.
3923
5e0345a32742 stylesheet access
Claus Gittinger <cg@exept.de>
parents: 3922
diff changeset
  1255
    ].
1161
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1256
    ^ StyleSheet
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1257
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1258
    "
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1259
     View styleSheet
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1260
    "
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1261
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1262
    "Modified: 9.1.1997 / 13:47:42 / cg"
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1263
!
07570a2d9008 added access to the styleSheet (for App-models)
Claus Gittinger <cg@exept.de>
parents: 1141
diff changeset
  1264
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1265
styleSheet:aViewStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1266
    "set the view style from a style-sheet"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1267
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1268
    StyleSheet := aViewStyle.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1269
    DefaultStyle := (StyleSheet at:'name' ifAbsent:'unknown') asSymbol.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1270
    self updateAllStyleCaches.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1271
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1272
5978
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1273
updateAllStyleCaches
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1274
    "reload all style caches in all view classes.
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1275
     Needed after a style change or when a style file has been changed"
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1276
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1277
    (Screen isNil or:[Screen current isNil]) ifTrue:[^ self].
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1278
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1279
    "
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1280
     tell all view classes to flush any
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1281
     cached style-data
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1282
    "
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1283
    self changed:#style.
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1284
    SimpleView updateStyleCache.
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1285
    SimpleView allSubclassesDo:[:aClass |
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1286
	"JV@2010-12-02: Removed to avoid lost of preferred fonts on image restart"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1287
	"/ cg: no, this is required!!!!!!
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1288
	"/ otherwise, we get ugly courier fonts on windows
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1289
	"/ updateStyleCache MUST clear any previously
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1290
	"/ cached font values, otherwise you cannot load a style's font.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1291
	"/ if you want to keep your fonts, do it elsewhere (keep some userFontPrefs and restore from there)
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1292
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1293
	"/ JV: Font preferences ARE already saved in user's setting.rc/setting.stx, but they
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1294
	"/     are not reloaded on snapshot restart (which is correct, I think).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1295
	"/     This just discard such fonts. I would say calling this upon snapshot restart
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1296
	"/     is a bad idea. Workaround it only for me is not a solution as all other
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1297
	"/     Linux users are ... off. Let's workaround it:
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1298
	(Smalltalk isInitialized not and:
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1299
	    [OperatingSystem getOSType == #linux and:
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1300
		[UserPreferences current linuxFontWorkaround]])
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1301
		    ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1302
			aClass defaultFont:nil.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1303
		    ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1304
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1305
	(aClass class includesSelector:#updateStyleCache) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1306
	    aClass updateStyleCache
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1307
	].
6611
d374e1b85bfd class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6606
diff changeset
  1308
    ].
d374e1b85bfd class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6606
diff changeset
  1309
d374e1b85bfd class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6606
diff changeset
  1310
    "/ use #at: to avoid introducing a depency to libview2
d374e1b85bfd class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6606
diff changeset
  1311
    (Smalltalk at:#MIMETypeIconLibrary) notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1312
	(Smalltalk at:#MIMETypeIconLibrary) flushIcons
6611
d374e1b85bfd class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6606
diff changeset
  1313
    ].
d374e1b85bfd class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6606
diff changeset
  1314
5978
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1315
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1316
    "
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1317
     View updateAllStyleCaches
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1318
    "
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1319
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1320
    "Modified: / 15-09-1998 / 22:04:15 / cg"
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1321
    "Modified (format): / 05-10-2011 / 16:08:47 / az"
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1322
    "Modified (format): / 30-03-2012 / 17:31:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1323
!
d82030712cd6 class: SimpleView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5976
diff changeset
  1324
135
claus
parents:
diff changeset
  1325
updateStyleCache
claus
parents:
diff changeset
  1326
    "this method gets some heavily used style stuff and keeps
claus
parents:
diff changeset
  1327
     it in class-variables for faster access.
claus
parents:
diff changeset
  1328
     Subclasses should redefine this to load any cached style-values
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1329
     into faster class variables as well. These should NOT do a
135
claus
parents:
diff changeset
  1330
     super updateStyleCache, since this method is called for all view-classes
claus
parents:
diff changeset
  1331
     anyway."
claus
parents:
diff changeset
  1332
2492
0ac67f027ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2489
diff changeset
  1333
    <resource: #style (#viewSpacing #font #borderWidth #borderColor
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1334
		       #viewBackground #shadowColor #lightColor
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1335
		       #focusColor #focusBorderWidth)>
2292
8efc5272cf0b defaultStyle either from environmane (STX_VIEWSTYLE)
Claus Gittinger <cg@exept.de>
parents: 2274
diff changeset
  1336
6633
aa34de5874e0 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  1337
    |styleSheet bgGrey currentScreen|
aa34de5874e0 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  1338
aa34de5874e0 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  1339
    styleSheet := StyleSheet.
135
claus
parents:
diff changeset
  1340
claus
parents:
diff changeset
  1341
    "
claus
parents:
diff changeset
  1342
     when coming here the first time, we read the styleSheet
claus
parents:
diff changeset
  1343
     and keep the values in fast class variables
claus
parents:
diff changeset
  1344
    "
6633
aa34de5874e0 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  1345
    styleSheet isNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1346
	self setDefaultStyle.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1347
	self readStyleSheet.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1348
	styleSheet := StyleSheet.
5669
bc47f2771650 changed: #updateStyleCache
Claus Gittinger <cg@exept.de>
parents: 5667
diff changeset
  1349
    ].
bc47f2771650 changed: #updateStyleCache
Claus Gittinger <cg@exept.de>
parents: 5667
diff changeset
  1350
bc47f2771650 changed: #updateStyleCache
Claus Gittinger <cg@exept.de>
parents: 5667
diff changeset
  1351
    currentScreen := Screen current ? Screen default.
2994
c6be08b45a76 eliminated refs to Display (must use Screen current)
Stefan Vogel <sv@exept.de>
parents: 2985
diff changeset
  1352
6633
aa34de5874e0 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  1353
    Grey := styleSheet viewGrey.
135
claus
parents:
diff changeset
  1354
    Grey isNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1355
	Grey := Color gray
2829
c50504338b61 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2822
diff changeset
  1356
    ].
2994
c6be08b45a76 eliminated refs to Display (must use Screen current)
Stefan Vogel <sv@exept.de>
parents: 2985
diff changeset
  1357
    Grey := Grey onDevice:currentScreen.
135
claus
parents:
diff changeset
  1358
6633
aa34de5874e0 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  1359
    styleSheet fileReadFailed ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1360
	bgGrey := Color white
135
claus
parents:
diff changeset
  1361
    ] ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1362
	currentScreen hasGrayscales ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1363
	    bgGrey := Grey
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1364
	] ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1365
	    bgGrey := Color white.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1366
	]
2829
c50504338b61 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2822
diff changeset
  1367
    ].
2994
c6be08b45a76 eliminated refs to Display (must use Screen current)
Stefan Vogel <sv@exept.de>
parents: 2985
diff changeset
  1368
    bgGrey := bgGrey onDevice:currentScreen.
135
claus
parents:
diff changeset
  1369
6633
aa34de5874e0 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  1370
    ViewSpacing := styleSheet at:#viewSpacing.
135
claus
parents:
diff changeset
  1371
    ViewSpacing isNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1372
	ViewSpacing := currentScreen defaultStyleValueFor:#viewSpacing.
2492
0ac67f027ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2489
diff changeset
  1373
    ].
0ac67f027ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2489
diff changeset
  1374
6633
aa34de5874e0 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  1375
    DefaultBorderColor := styleSheet colorAt:#borderColor.
1678
5c93a4791a8b prepare to fetch style defaults from device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
  1376
    DefaultBorderColor isNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1377
	DefaultBorderColor := currentScreen defaultStyleValueFor:#borderColor
1678
5c93a4791a8b prepare to fetch style defaults from device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
  1378
    ].
151
claus
parents: 145
diff changeset
  1379
6633
aa34de5874e0 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  1380
    styleSheet fileReadFailed ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1381
	DefaultBorderWidth := 1.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1382
	DefaultFocusColor := DefaultShadowColor := Color black.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1383
	DefaultViewBackgroundColor := DefaultLightColor :=  Color white.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1384
	DefaultFocusBorderWidth := 1.
151
claus
parents: 145
diff changeset
  1385
    ] ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1386
	DefaultBorderWidth := styleSheet at:#borderWidth default:0.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1387
	DefaultViewBackgroundColor := styleSheet colorAt:#viewBackground default:bgGrey.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1388
	DefaultShadowColor := styleSheet colorAt:#shadowColor.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1389
	DefaultLightColor := styleSheet colorAt:#lightColor.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1390
	DefaultFocusColor := styleSheet colorAt:#focusColor default:Color red.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1391
	DefaultFocusBorderWidth := styleSheet at:'focusBorderWidth' default:2.
151
claus
parents: 145
diff changeset
  1392
    ].
135
claus
parents:
diff changeset
  1393
526
3ba5c3844c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  1394
    self == SimpleView ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1395
	DefaultFont := styleSheet at:#font.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1396
	DefaultFont isNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1397
	    DefaultFont := Font family:'courier' face:'medium' style:'roman' size:12.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1398
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1399
	DefaultFont := DefaultFont onDevice:currentScreen.
527
743c5f8b932e defaultFont style caching was wrong
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  1400
    ] ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1401
	DefaultFont := nil
135
claus
parents:
diff changeset
  1402
    ].
claus
parents:
diff changeset
  1403
claus
parents:
diff changeset
  1404
    DefaultViewBackgroundColor isNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1405
	'SimpleView [warning]: bad viewBackground in style - using white' errorPrintCR.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1406
	DefaultViewBackgroundColor := Color white
5669
bc47f2771650 changed: #updateStyleCache
Claus Gittinger <cg@exept.de>
parents: 5667
diff changeset
  1407
    ].
bc47f2771650 changed: #updateStyleCache
Claus Gittinger <cg@exept.de>
parents: 5667
diff changeset
  1408
bc47f2771650 changed: #updateStyleCache
Claus Gittinger <cg@exept.de>
parents: 5667
diff changeset
  1409
    "Modified: / 29-04-1997 / 11:16:52 / dq"
bc47f2771650 changed: #updateStyleCache
Claus Gittinger <cg@exept.de>
parents: 5667
diff changeset
  1410
    "Modified: / 20-12-2010 / 14:40:22 / cg"
135
claus
parents:
diff changeset
  1411
!
claus
parents:
diff changeset
  1412
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1413
viewSpacing
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1414
    "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
  1415
     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
  1416
     get a common look"
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
    ^ ViewSpacing
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
5354
4a62930c1786 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  1421
1101
ffeb697dd9e0 hasButtonMotionEventsFor -> hasButtonMotionEventFor
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  1422
!SimpleView class methodsFor:'resources'!
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1423
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1424
classResources
4091
3995bf25130a classResources now understood by all classes
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  1425
    "if not already loaded, get the classes resourcePack and return it"
269
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
    ClassResources isNil ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1428
	ClassResources := super classResources.
140
claus
parents: 138
diff changeset
  1429
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1430
    ^ ClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1431
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1432
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1433
classResources:aResourcePack
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1434
    "allow setting of the classResources"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1435
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1436
    ClassResources := aResourcePack
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1437
!
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
flushAllClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1440
    "flush all classes resource translations.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1441
     Needed after a resource file has changed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1442
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1443
    ResourcePack flushCachedResourcePacks.
3378
0792856b9ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3377
diff changeset
  1444
    SimpleView withAllSubclassesDo:[:aClass |
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  1445
	aClass flushClassResources.
140
claus
parents: 138
diff changeset
  1446
    ]
claus
parents: 138
diff changeset
  1447
claus
parents: 138
diff changeset
  1448
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1449
     View flushAllClassResources
140
claus
parents: 138
diff changeset
  1450
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1451
    "to change the language:
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  1452
	Language := #en.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  1453
	Smalltalk changed:#Language.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  1454
	View flushAllClassResources
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1455
     or:
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  1456
	Language := #de.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  1457
	Smalltalk changed:#Language.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  1458
	View flushAllClassResources
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1459
    "
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1462
flushClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1463
    "flush classes resource string translations.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1464
     Needed whenever a resource file or language has changed"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1465
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1466
    ClassResources := nil.
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
2130
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1469
resources
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1470
    "return the views resources -
5221
3c4682d4b409 comment only
Claus Gittinger <cg@exept.de>
parents: 5214
diff changeset
  1471
     that's a ResourcePack containing national language strings"
3c4682d4b409 comment only
Claus Gittinger <cg@exept.de>
parents: 5214
diff changeset
  1472
2130
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1473
    ^ self classResources
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1474
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1475
    "Created: / 25.5.1998 / 13:00:30 / cg"
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1476
!
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1477
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1478
updateClassResources
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1479
    "flush classes resource string translations and reload them.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1480
     Needed whenever a resource file or language has changed"
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
    ClassResources := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1483
    self classResources
135
claus
parents:
diff changeset
  1484
! !
claus
parents:
diff changeset
  1485
3781
9404bb21b63f open pushed up from StdSysView
martin
parents: 3775
diff changeset
  1486
!SimpleView class methodsFor:'startup'!
9404bb21b63f open pushed up from StdSysView
martin
parents: 3775
diff changeset
  1487
9404bb21b63f open pushed up from StdSysView
martin
parents: 3775
diff changeset
  1488
open
9404bb21b63f open pushed up from StdSysView
martin
parents: 3775
diff changeset
  1489
    "create, realize the view - this topview and all its subviews will
9404bb21b63f open pushed up from StdSysView
martin
parents: 3775
diff changeset
  1490
     run as a separate process with its own windowGroup"
9404bb21b63f open pushed up from StdSysView
martin
parents: 3775
diff changeset
  1491
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1492
    ^ self new open
4054
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1493
!
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1494
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1495
openOnXScreenNamed:aScreenName
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1496
    "create an instance of the view and open it
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1497
     on some X display screen. The argument aScreenName must be
4054
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1498
     a valid x-display name (i.e. of the form '<host>:<screenNr>' as in 'foo:0').
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1499
     For more info, read the document on multiple display
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1500
     support and the documentation of the DeviceWorkstation class."
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1501
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1502
    |newDevice|
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1503
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1504
    [
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1505
	newDevice := XWorkstation newDispatchingFor:aScreenName.
4054
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1506
    ] on:Screen deviceOpenErrorSignal do:[:ex|
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1507
	self warn:'Could not open display: ' , aScreenName.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1508
	^ self
4054
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1509
    ].
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1510
    ^ (self onDevice:newDevice) open.
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1511
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1512
    "
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1513
     FileBrowser openOnXScreenNamed:'bitsy:0'
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1514
     FileBrowser openOnXScreenNamed:':0'
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1515
     View openOnXScreenNamed:'bitsy:0'
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1516
    "
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1517
327834fa21cd +openOnDevice:
Claus Gittinger <cg@exept.de>
parents: 4049
diff changeset
  1518
    "Modified: 13.1.1997 / 20:55:27 / cg"
3781
9404bb21b63f open pushed up from StdSysView
martin
parents: 3775
diff changeset
  1519
! !
9404bb21b63f open pushed up from StdSysView
martin
parents: 3775
diff changeset
  1520
3880
c4c8268a2d9f method category rename
Claus Gittinger <cg@exept.de>
parents: 3856
diff changeset
  1521
!SimpleView methodsFor:'Compatibility-ST80'!
269
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
checkForEvents
1182
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  1524
    "ST-80 compatibility:
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  1525
     check for any pending events and process them"
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  1526
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1527
    (shown and:[windowGroup notNil]) ifTrue:[windowGroup processEvents].
1182
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  1528
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  1529
    "Modified: 10.1.1997 / 19:46:06 / cg"
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  1530
!
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  1531
3164
f3dce6ea8e3f VW compatibility: closeAndUnschedule
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  1532
closeAndUnschedule
f3dce6ea8e3f VW compatibility: closeAndUnschedule
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  1533
    "actually sent to a controller in VW...
f3dce6ea8e3f VW compatibility: closeAndUnschedule
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  1534
     however, #open returns the view in ST/X, so we respond here"
f3dce6ea8e3f VW compatibility: closeAndUnschedule
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  1535
3316
b9cb3eac524e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
  1536
    self topView destroy
3164
f3dce6ea8e3f VW compatibility: closeAndUnschedule
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  1537
!
f3dce6ea8e3f VW compatibility: closeAndUnschedule
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  1538
3775
fc3a650b3e3c displayOn confusion
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1539
displayOn:aGCOrStream
1182
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  1540
    "ST-80 compatibility: (re-)display myself"
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  1541
3775
fc3a650b3e3c displayOn confusion
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1542
    "/ what a kludge - Dolphin and Squeak mean: printOn:;
fc3a650b3e3c displayOn confusion
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1543
    "/ ST/X (and some old ST80's) mean: draw-yourself on.
6546
1341805eb06c displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 6536
diff changeset
  1544
    (aGCOrStream isStream) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1545
	^ super displayOn:aGCOrStream
3774
a85ec40ac028 displayOn: confusion kludge
tm
parents: 3765
diff changeset
  1546
    ].
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  1547
    self redraw
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  1548
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  1549
    "Created: 4.6.1996 / 21:25:59 / cg"
1182
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  1550
    "Modified: 10.1.1997 / 19:46:58 / cg"
1363
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  1551
!
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  1552
1432
23fa07be585a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
  1553
displayPendingInvalidation
23fa07be585a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
  1554
    "dummy - for ST-80 compatibility"
23fa07be585a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
  1555
23fa07be585a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
  1556
    "Created: 6.3.1997 / 15:17:14 / cg"
23fa07be585a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
  1557
    "Modified: 6.3.1997 / 15:17:31 / cg"
23fa07be585a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
  1558
!
23fa07be585a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
  1559
4515
ecbf26955b5b client:spec:builder: bogus masterApp handling
Claus Gittinger <cg@exept.de>
parents: 4502
diff changeset
  1560
invalidateRectangle:aRectangle repairNow:doRepairNow
ecbf26955b5b client:spec:builder: bogus masterApp handling
Claus Gittinger <cg@exept.de>
parents: 4502
diff changeset
  1561
    self invalidate:aRectangle repairNow:doRepairNow
ecbf26955b5b client:spec:builder: bogus masterApp handling
Claus Gittinger <cg@exept.de>
parents: 4502
diff changeset
  1562
!
ecbf26955b5b client:spec:builder: bogus masterApp handling
Claus Gittinger <cg@exept.de>
parents: 4502
diff changeset
  1563
1363
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  1564
isEnabled
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  1565
    "return true, if this view is enabled (i.e. accepts user interaction).
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  1566
     Most views are enabled - only a few (buttons, SelectionInList etc.) can
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  1567
     be disabled.
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  1568
     #isEnabled is ST-80's equivalent of #enabled"
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  1569
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  1570
    ^ self enabled
1413
e1182f8efc7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  1571
!
e1182f8efc7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  1572
2061
25c1fcc1d7e8 added #isOpen for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2037
diff changeset
  1573
isOpen
25c1fcc1d7e8 added #isOpen for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2037
diff changeset
  1574
    "ST80 compatibility"
25c1fcc1d7e8 added #isOpen for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2037
diff changeset
  1575
25c1fcc1d7e8 added #isOpen for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2037
diff changeset
  1576
    ^ realized
25c1fcc1d7e8 added #isOpen for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2037
diff changeset
  1577
25c1fcc1d7e8 added #isOpen for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2037
diff changeset
  1578
25c1fcc1d7e8 added #isOpen for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2037
diff changeset
  1579
!
25c1fcc1d7e8 added #isOpen for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2037
diff changeset
  1580
2159
da3337e54241 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2158
diff changeset
  1581
lookPreferences:prefs
da3337e54241 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2158
diff changeset
  1582
    "ignored - but required for some apps"
da3337e54241 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2158
diff changeset
  1583
da3337e54241 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2158
diff changeset
  1584
    "Created: / 19.6.1998 / 00:05:10 / cg"
da3337e54241 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2158
diff changeset
  1585
!
da3337e54241 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2158
diff changeset
  1586
1413
e1182f8efc7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  1587
newLayout:aLayoutObject
e1182f8efc7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  1588
    "set the layout object which controls my geometry.
e1182f8efc7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  1589
     ST80-compatibility."
e1182f8efc7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  1590
e1182f8efc7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  1591
    here layout:aLayoutObject.
e1182f8efc7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  1592
e1182f8efc7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  1593
    "Created: 3.3.1997 / 18:54:53 / cg"
1427
35214ddde67c checkin from browser
ca
parents: 1425
diff changeset
  1594
!
35214ddde67c checkin from browser
ca
parents: 1425
diff changeset
  1595
35214ddde67c checkin from browser
ca
parents: 1425
diff changeset
  1596
refresh
35214ddde67c checkin from browser
ca
parents: 1425
diff changeset
  1597
    self invalidate
3909
e22a5151d23c compatibility
Claus Gittinger <cg@exept.de>
parents: 3901
diff changeset
  1598
!
e22a5151d23c compatibility
Claus Gittinger <cg@exept.de>
parents: 3901
diff changeset
  1599
e22a5151d23c compatibility
Claus Gittinger <cg@exept.de>
parents: 3901
diff changeset
  1600
takeKeyboardFocus
e22a5151d23c compatibility
Claus Gittinger <cg@exept.de>
parents: 3901
diff changeset
  1601
    self requestFocus
151
claus
parents: 145
diff changeset
  1602
! !
claus
parents: 145
diff changeset
  1603
3880
c4c8268a2d9f method category rename
Claus Gittinger <cg@exept.de>
parents: 3856
diff changeset
  1604
!SimpleView methodsFor:'Compatibility-Squeak'!
2956
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  1605
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  1606
insetDisplayBox
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  1607
    "Squeak mimicri: return my bounds"
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  1608
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  1609
    ^ 0@0 corner:(self corner)
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  1610
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  1611
! !
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  1612
2450
06d76ede2dda checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2430
diff changeset
  1613
!SimpleView methodsFor:'accessing'!
06d76ede2dda checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2430
diff changeset
  1614
4483
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1615
client:anApplicationModel
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1616
    "release existing components and generate new components from
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1617
     the applications windowSpec.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1618
     ATTENTION: this is a low level interface; postBuild is NOT invoked"
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1619
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1620
    ^ self client:anApplicationModel spec:#windowSpec
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1621
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1622
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1623
!
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1624
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1625
client:anApplication spec:aWindowSpecOrSelector
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1626
    "release existing components and generate new components from
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1627
     the applications windowSpec.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1628
     ATTENTION: this is a low level interface; postBuild is NOT invoked"
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1629
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1630
    ^ self client:anApplication spec:aWindowSpecOrSelector builder:nil
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1631
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1632
!
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1633
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1634
client:anApplication spec:aWindowSpecOrSpecSymbol builder:aBuilder
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1635
    "release existing components and generate new components from
4484
97096c51797d can now control if specs menu is wanted or not
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  1636
     the given windowSpec, using the given builder."
97096c51797d can now control if specs menu is wanted or not
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  1637
97096c51797d can now control if specs menu is wanted or not
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  1638
    self client:anApplication spec:aWindowSpecOrSpecSymbol builder:aBuilder withMenu:false
97096c51797d can now control if specs menu is wanted or not
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  1639
!
97096c51797d can now control if specs menu is wanted or not
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  1640
97096c51797d can now control if specs menu is wanted or not
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  1641
client:anApplication spec:aWindowSpecOrSpecSymbol builder:aBuilder withMenu:withMenuBoolean
97096c51797d can now control if specs menu is wanted or not
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  1642
    "release existing components and generate new components from
4483
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1643
     the given windowSpec, using the given builder.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1644
     ATTENTION: this is a low level interface.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1645
     TODO: this code is so ugly and badly designed - it must be redesigned
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1646
     or at least well documented."
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1647
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1648
    |builder subSpec isApplicationModel thisApp savedView masterApp thisIsANewBuild|
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1649
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1650
    aWindowSpecOrSpecSymbol isNil ifTrue:[^ self].
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1651
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1652
    isApplicationModel := true.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1653
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1654
    (builder := aBuilder) isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1655
	"/ problem: anApplication could have no builder
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1656
	"/          or anApplication could be a non-appModel (theoretically - only providing a spec)
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1657
	builder := anApplication perform:#builder ifNotUnderstood:[isApplicationModel := false. nil].
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1658
	builder isNil ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1659
	    isApplicationModel ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1660
		anApplication createBuilder.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1661
		builder := anApplication builder
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1662
	    ] ifFalse:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1663
		builder := UIBuilder new.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1664
	    ]
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1665
	]
4483
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1666
    ].
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1667
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1668
    (subSpec := aWindowSpecOrSpecSymbol) isSymbol ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1669
	anApplication isNil ifTrue:[^ self].
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1670
	subSpec := anApplication interfaceSpecFor:aWindowSpecOrSpecSymbol.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1671
	subSpec isNil ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1672
	    ^ self
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1673
	].
4483
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1674
    ].
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1675
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1676
    "/ if the appl is not the master, but the masters builder is used,
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1677
    "/ we have to temporarily change the builders window
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1678
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1679
    masterApp := anApplication perform:#masterApplication ifNotUnderstood:[isApplicationModel := false. nil].
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  1680
    masterApp isNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1681
	isApplicationModel := false.
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  1682
    ].
4483
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1683
    thisApp := builder application.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1684
    (isApplicationModel and:[anApplication ~~ thisApp]) ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1685
	masterApp ~~ thisApp ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1686
	    self error:'should not happen' mayProceed:true.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1687
	    masterApp isNil ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1688
		anApplication masterApplication:thisApp.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1689
	    ].
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1690
	].
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1691
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1692
	builder application:anApplication.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1693
	savedView := builder window.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1694
	builder window:self.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1695
	[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1696
	    anApplication buildSubCanvas:subSpec withMenu:withMenuBoolean withBuilder:builder.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1697
	] ensure:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1698
	    builder window:savedView.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1699
	    builder application:thisApp.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1700
	].
4483
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1701
    ] ifFalse:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1702
	thisIsANewBuild := builder window isNil.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1703
	thisIsANewBuild ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1704
	    builder window:self.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1705
	    anApplication buildSubCanvas:subSpec withMenu:withMenuBoolean withBuilder:builder.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1706
	] ifFalse:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1707
	    "/ WARNING: in case of rebuilding, we do NOT invoke pre- and postBuilds
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1708
	    builder buildFromSpec:subSpec in:self.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1709
	]
4483
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1710
    ].
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1711
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1712
"/    postBuildWith: will be called twice if code below is enabled
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1713
"/    notAnAppModel isNil ifTrue:[
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1714
"/        notAnAppModel := (anApplication isKindOf:ApplicationModel) not
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1715
"/    ].
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1716
"/    notAnAppModel ifTrue:[
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1717
"/        builder buildFromSpec:subSpec in:self.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1718
"/    ] ifFalse:[
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1719
"/        savedView := builder window.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1720
"/        builder window:self.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1721
"/        [
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1722
"/            anApplication buildSubCanvas:subSpec withBuilder:builder.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1723
"/        ] ensure:[
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1724
"/            savedView notNil ifTrue:[
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1725
"/                builder window:savedView.
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1726
"/            ]
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1727
"/        ].
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1728
"/    ].
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1729
!
e4b462900404 category change
Claus Gittinger <cg@exept.de>
parents: 4482
diff changeset
  1730
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1731
helpKey
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1732
    ^ helpKey
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1733
!
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1734
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1735
helpKey:something
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1736
    helpKey := something.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1737
!
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1738
2450
06d76ede2dda checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2430
diff changeset
  1739
keyboardProcessor
06d76ede2dda checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2430
diff changeset
  1740
    "return my keyboard processor"
06d76ede2dda checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2430
diff changeset
  1741
06d76ede2dda checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2430
diff changeset
  1742
    ^ nil
06d76ede2dda checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2430
diff changeset
  1743
06d76ede2dda checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2430
diff changeset
  1744
    "Created: / 13.2.1999 / 10:31:39 / cg"
06d76ede2dda checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2430
diff changeset
  1745
! !
06d76ede2dda checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2430
diff changeset
  1746
2549
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1747
!SimpleView methodsFor:'accessing-behavior'!
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1748
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1749
disable
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1750
   "alternative method; redirected to basic mechanism"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1751
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1752
   self enabled:false
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1753
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1754
    "Modified: / 30.3.1999 / 14:47:30 / stefan"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1755
    "Created: / 30.3.1999 / 15:54:11 / stefan"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1756
!
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1757
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1758
enable
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1759
   "alternative method; redirected to basic mechanism"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1760
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1761
   self enabled:true
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1762
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1763
    "Modified: / 30.3.1999 / 14:47:22 / stefan"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1764
    "Created: / 30.3.1999 / 15:54:16 / stefan"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1765
!
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1766
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1767
enabled
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1768
   "views are enabled by default"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1769
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1770
   ^ true
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1771
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1772
    "Modified: / 30.3.1999 / 16:27:57 / stefan"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1773
!
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1774
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1775
enabled:bool
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1776
   "this is the basic machanism to enable/disable a view.
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1777
    empty in this class; may be redefined by subclasses"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1778
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1779
    "Modified: / 30.3.1999 / 14:46:24 / stefan"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1780
    "Created: / 30.3.1999 / 15:54:21 / stefan"
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1781
!
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1782
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1783
isEnabled:aState
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1784
    "ST-80 compatibility; set enabled state
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1785
    "
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1786
    self enabled:aState
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1787
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1788
    "Created: / 30.3.1999 / 15:54:29 / stefan"
6132
732fec785d8d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6127
diff changeset
  1789
!
732fec785d8d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6127
diff changeset
  1790
6845
fdb621c14223 class: SimpleView
Michael Beyl <mb@exept.de>
parents: 6798
diff changeset
  1791
preferFirstInputFieldWhenAssigningInitialFocus
fdb621c14223 class: SimpleView
Michael Beyl <mb@exept.de>
parents: 6798
diff changeset
  1792
    "define the focus behavior for dialogs.
fdb621c14223 class: SimpleView
Michael Beyl <mb@exept.de>
parents: 6798
diff changeset
  1793
     If true is returned, input fields take precedence over other keyboard consumers.
fdb621c14223 class: SimpleView
Michael Beyl <mb@exept.de>
parents: 6798
diff changeset
  1794
     This used to return true, but the behavior is somewhat ugly."
fdb621c14223 class: SimpleView
Michael Beyl <mb@exept.de>
parents: 6798
diff changeset
  1795
fdb621c14223 class: SimpleView
Michael Beyl <mb@exept.de>
parents: 6798
diff changeset
  1796
    ^ false
fdb621c14223 class: SimpleView
Michael Beyl <mb@exept.de>
parents: 6798
diff changeset
  1797
fdb621c14223 class: SimpleView
Michael Beyl <mb@exept.de>
parents: 6798
diff changeset
  1798
    "Created: / 29-08-2006 / 14:28:54 / cg"
fdb621c14223 class: SimpleView
Michael Beyl <mb@exept.de>
parents: 6798
diff changeset
  1799
!
fdb621c14223 class: SimpleView
Michael Beyl <mb@exept.de>
parents: 6798
diff changeset
  1800
6132
732fec785d8d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6127
diff changeset
  1801
readOnly:aBoolean
732fec785d8d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6127
diff changeset
  1802
    "ignored here; present for compatibility with some textView subclasses,
732fec785d8d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6127
diff changeset
  1803
     so that UIPainter can handle it in its TextView spec (which contains a
732fec785d8d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6127
diff changeset
  1804
     readOnly field)"
2549
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1805
! !
9c57f5897a90 Common enable/disable/enabled:/isEnabled: Protocol
Stefan Vogel <sv@exept.de>
parents: 2540
diff changeset
  1806
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1807
!SimpleView methodsFor:'accessing-bg & border'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1808
3356
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1809
allSubViewsBackground:something
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1810
    "set the viewBackground to something, a color, image or form,
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1811
     recursively in all of my subviews"
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1812
4958
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1813
    self allSubViewsBackground:something if:[:v |true]
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1814
!
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1815
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1816
allSubViewsBackground:something if:condition
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1817
    "set the viewBackground to something, a color, image or form,
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1818
     recursively in all of my subviews"
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1819
3356
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1820
    subViews notNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1821
	subViews do:[:v|
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1822
	    v allViewBackground:something if:condition
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  1823
	]
3356
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1824
    ]
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1825
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1826
    "Modified: / 18.7.1996 / 13:34:26 / cg"
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1827
    "Created: / 31.10.2000 / 13:06:02 / bg"
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1828
!
d3f6fd88e766 extracted allSubViewsBackground: from allViewBackground:
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
  1829
4897
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1830
allSubViewsForeground:something
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1831
    "set the foreground to something, a color, image or form,
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1832
     recursively in all of my subviews"
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1833
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1834
    subViews notNil ifTrue:[
4907
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  1835
	subViews do:[:v|
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  1836
	    v allViewForeground:something
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  1837
	]
4897
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1838
    ]
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1839
!
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1840
955
34b6c1529fdc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
  1841
allViewBackground:something
34b6c1529fdc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
  1842
    "set the viewBackground to something, a color, image or form,
34b6c1529fdc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
  1843
     in myself and recursively in all of my subviews"
34b6c1529fdc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
  1844
4958
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1845
    self allViewBackground:something if:[:v |true]
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1846
!
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1847
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1848
allViewBackground:something if:condition
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1849
    "set the viewBackground to something, a color, image or form,
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1850
     in myself and recursively in all of my subviews"
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1851
6606
e961c7adbbf7 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6604
diff changeset
  1852
    self viewBackground:something if:condition.
4958
bfa2bf30f449 allViewBackground: with optional condition
sr
parents: 4942
diff changeset
  1853
    self allSubViewsBackground:something if:condition
955
34b6c1529fdc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
  1854
!
34b6c1529fdc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
  1855
4897
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1856
allViewForeground:something
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1857
    "set the foreground to something, a color, image or form,
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1858
     in myself and recursively in all of my subviews"
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1859
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1860
    self foregroundColor:something.
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1861
    self allSubViewsForeground:something
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1862
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1863
    "Modified: / 31.10.2000 / 13:06:17 / bg"
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1864
!
12e882ab6ecf +allViewForeground:
Claus Gittinger <cg@exept.de>
parents: 4891
diff changeset
  1865
2158
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  1866
backgroundColor
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  1867
    "return the background color of the contents -
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  1868
     here, (since there is no contents), the viewBackground is returned."
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  1869
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  1870
    ^ self viewBackground
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  1871
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  1872
    "Modified: / 3.5.1997 / 10:28:04 / cg"
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  1873
    "Created: / 18.6.1998 / 15:59:36 / cg"
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  1874
!
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  1875
1726
51b0f8ed7572 added #backgroundColor: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1716
diff changeset
  1876
backgroundColor:aColor
51b0f8ed7572 added #backgroundColor: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1716
diff changeset
  1877
    "set the background color of the contents -
51b0f8ed7572 added #backgroundColor: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1716
diff changeset
  1878
     here, (since there is no contents), the viewBackground is changed."
51b0f8ed7572 added #backgroundColor: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1716
diff changeset
  1879
4192
6c14a21d5600 invalidate on backgroundChange
ca
parents: 4191
diff changeset
  1880
    self viewBackground:aColor.
6c14a21d5600 invalidate on backgroundChange
ca
parents: 4191
diff changeset
  1881
    shown ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1882
	self clear; invalidate.
4192
6c14a21d5600 invalidate on backgroundChange
ca
parents: 4191
diff changeset
  1883
    ].
1726
51b0f8ed7572 added #backgroundColor: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1716
diff changeset
  1884
51b0f8ed7572 added #backgroundColor: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1716
diff changeset
  1885
    "Created: 3.5.1997 / 10:26:49 / cg"
51b0f8ed7572 added #backgroundColor: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1716
diff changeset
  1886
    "Modified: 3.5.1997 / 10:28:04 / cg"
51b0f8ed7572 added #backgroundColor: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1716
diff changeset
  1887
!
51b0f8ed7572 added #backgroundColor: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1716
diff changeset
  1888
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1889
border
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1890
    "return my border"
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1891
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1892
    (superView notNil and:[superView isBorderedWrapper]) ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1893
	^ superView border
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1894
    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1895
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1896
    ^ border
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1897
!
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1898
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1899
border:aBorder
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1900
    "set my border"
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1901
6716
e9b2ebb0e8cf class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6709
diff changeset
  1902
    |prevMargin m|
e9b2ebb0e8cf class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6709
diff changeset
  1903
e9b2ebb0e8cf class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6709
diff changeset
  1904
    prevMargin := margin.
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1905
    border := aBorder.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1906
    self computeMargin.
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1907
    realized ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1908
	m := prevMargin max:margin.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1909
	self invalidate:(0@0 corner:width@m).               "/ top margin
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1910
	self invalidate:((width-m)@m corner:width@height).  "/ right margin
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1911
	self invalidate:(0@(height-m) corner:width@height). "/ bottom margin
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  1912
	self invalidate:(0@m corner:m@(height-m)).          "/ left margin
6720
a5858f01bcd8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6719
diff changeset
  1913
    ].
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1914
!
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1915
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1916
borderColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1917
    "return my borderColor"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1918
5414
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1919
    |clr|
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1920
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  1921
    (superView notNil and:[superView isBorderedWrapper]) ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1922
	^ superView borderColor
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1923
    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1924
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1925
    "/ ^ borderColor
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1926
    border notNil ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1927
	clr := border color
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1928
    ].
5414
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1929
    clr isNil ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1930
	^ Color black
5414
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1931
    ].
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1932
    ^ clr.
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  1933
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  1934
    "Modified: 5.6.1996 / 14:11:44 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1935
!
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
borderColor:aColor
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1938
    "set my borderColor"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1939
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  1940
    "/ backward compatibility
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  1941
    "/ superView will be renamed to container soon.
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  1942
    (superView notNil and:[superView isBorderedWrapper]) ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1943
	superView borderColor:aColor.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1944
	^ self
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  1945
    ].
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  1946
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1947
    aColor isNil ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1948
	border isNil ifTrue:[^ self].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1949
	self border:nil.
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1950
    ] ifFalse:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1951
	aColor = (self borderColor) ifTrue:[^ self].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1952
	self border:(SimpleBorder new width:(self borderWidth) color:aColor)
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1953
    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1954
    self invalidate.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1955
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1956
"/    (aColor ~~ borderColor) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1957
"/        borderColor := aColor.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1958
"/        drawableId notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1959
"/            self setBorderColor
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1960
"/        ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1961
"/    ]
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  1962
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  1963
    "Modified: 5.6.1996 / 14:11:50 / cg"
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  1964
    "Modified: 23.10.2009 / 14:11:50 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1965
!
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
borderShape:aForm
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1968
    "set the borderShape to aForm"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1969
2757
e26b401eeb0c allow for a shape to be taken away (i.e. no longer a shaped view)
Claus Gittinger <cg@exept.de>
parents: 2750
diff changeset
  1970
    aForm isNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1971
	viewShape := nil.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  1972
	self drawableId notNil ifTrue:[
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  1973
	    self graphicsDevice setWindowBorderShape:nil in:self drawableId
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1974
	]
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  1975
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1976
	viewShape isNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1977
	    viewShape := ArbitraryViewShape new
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1978
	].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1979
	viewShape borderShapeForm:aForm.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  1980
	self drawableId notNil ifTrue:[
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  1981
	    self graphicsDevice setWindowBorderShape:(aForm id) in:self drawableId
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  1982
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  1983
    ]
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  1984
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  1985
    "Modified: 18.9.1997 / 11:09:40 / cg"
269
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
5414
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1988
borderWidth
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1989
    "return my borderWidth"
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1990
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1991
    (superView notNil and:[superView isBorderedWrapper]) ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  1992
	^ superView borderWidth
5414
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1993
    ].
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1994
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1995
    border isNil ifTrue:[^ 0].
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1996
    ^ border width ? 0
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1997
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1998
    "Modified: 5.6.1996 / 14:11:57 / cg"
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  1999
    "Modified: 23.10.2009 / 14:11:50 / cg"
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  2000
!
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  2001
6515
5d55e5781b73 class: SimpleView
ca
parents: 6490
diff changeset
  2002
borderWidth:aNumberOrNil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2003
    "set my borderWidth"
6515
5d55e5781b73 class: SimpleView
ca
parents: 6490
diff changeset
  2004
    |aNumber|
5d55e5781b73 class: SimpleView
ca
parents: 6490
diff changeset
  2005
5d55e5781b73 class: SimpleView
ca
parents: 6490
diff changeset
  2006
    aNumber := aNumberOrNil.
5d55e5781b73 class: SimpleView
ca
parents: 6490
diff changeset
  2007
    aNumber notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2008
	self assert:(aNumber >= 0).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2009
	aNumber := aNumber max: 0
6515
5d55e5781b73 class: SimpleView
ca
parents: 6490
diff changeset
  2010
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2011
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2012
    "/ backward compatibility
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2013
    "/ superView will be renamed to container soon.
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2014
    (superView notNil and:[superView isBorderedWrapper]) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2015
	^ superView borderWidth:aNumber
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2016
    ].
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2017
5422
b43b5950922d changed:
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  2018
    (aNumber == 0 or:[aNumber isNil]) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2019
	border isNil ifTrue:[^ self].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2020
	self border:nil.
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2021
    ] ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2022
	border notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2023
	    self border:(border copy width:aNumber)
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2024
	] ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2025
	    self border:(SimpleBorder new width:aNumber color:(self borderColor)).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2026
	]
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2027
    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2028
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2029
"/    (aNumber ~~ borderWidth) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2030
"/        borderWidth := aNumber.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2031
"/        drawableId notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2032
"/            self setBorderWidth.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2033
"/        ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2034
"/    ]
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2035
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2036
    "Modified: 5.6.1996 / 14:12:05 / cg"
269
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
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2039
computeMargin
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2040
    border isNil ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2041
	margin := level abs.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2042
	^ self.
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2043
    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2044
    margin := border width.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2045
!
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2046
4150
werner
parents: 4139
diff changeset
  2047
fillFormWithBorderShape:aForm
werner
parents: 4139
diff changeset
  2048
    "fill aForm with my borderShape"
werner
parents: 4139
diff changeset
  2049
werner
parents: 4139
diff changeset
  2050
    aForm fillRectangle:(Rectangle origin:self origin corner:self corner).
werner
parents: 4139
diff changeset
  2051
!
werner
parents: 4139
diff changeset
  2052
2158
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  2053
foregroundColor
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  2054
    "return the foreground color of the contents -
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  2055
     here, (since there is no contents), some default is returned."
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  2056
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  2057
    ^ Color black
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  2058
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  2059
    "Modified: / 3.5.1997 / 10:28:04 / cg"
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  2060
    "Created: / 18.6.1998 / 16:57:33 / cg"
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  2061
!
948fe768cd36 added #foregroundColor & backgroundColor
Claus Gittinger <cg@exept.de>
parents: 2143
diff changeset
  2062
3392
70bf6d99f0c5 dummy #foregroundColor:
Claus Gittinger <cg@exept.de>
parents: 3384
diff changeset
  2063
foregroundColor:aColor
70bf6d99f0c5 dummy #foregroundColor:
Claus Gittinger <cg@exept.de>
parents: 3384
diff changeset
  2064
    "set the foreground color of the contents -
70bf6d99f0c5 dummy #foregroundColor:
Claus Gittinger <cg@exept.de>
parents: 3384
diff changeset
  2065
     ignored here, since there is no contents."
70bf6d99f0c5 dummy #foregroundColor:
Claus Gittinger <cg@exept.de>
parents: 3384
diff changeset
  2066
!
70bf6d99f0c5 dummy #foregroundColor:
Claus Gittinger <cg@exept.de>
parents: 3384
diff changeset
  2067
4966
3a8ffabd2fa3 changed #foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  2068
foregroundColor:fgColor backgroundColor:bgColor
3a8ffabd2fa3 changed #foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  2069
    "set both the foreground and background colors of the contents"
3a8ffabd2fa3 changed #foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  2070
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2071
    self
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2072
	foregroundColor:fgColor;
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2073
	backgroundColor:bgColor
4966
3a8ffabd2fa3 changed #foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  2074
!
3a8ffabd2fa3 changed #foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  2075
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2076
level
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2077
    "return my level relative to superView (3D)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2078
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2079
    (superView notNil and:[superView isBorderedWrapper]) ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2080
	^ superView level
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2081
    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2082
    border notNil ifTrue:[^ border level].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2083
    ^ level
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2084
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2085
    "Modified: 5.6.1996 / 14:12:10 / cg"
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2088
level:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2089
    "set my level relative to superView (3D)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2090
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2091
    |oldMargin how|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2092
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2093
    "/ backward compatibility
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2094
    "/ superView will be renamed to container soon.
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2095
    (superView notNil and:[superView isBorderedWrapper]) ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2096
	^ superView level:aNumber
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2097
    ].
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2098
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2099
    (aNumber ~~ level and:[aNumber notNil]) ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2100
	self is3D ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2101
	    level := aNumber.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2102
	    oldMargin := margin.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2103
	    margin := level abs.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2104
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2105
	    realized ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2106
		margin ~~ oldMargin ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2107
		    (margin > oldMargin) ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2108
			how := #smaller
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2109
		    ] ifFalse:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2110
			how := #larger
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2111
		    ].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2112
		    self sizeChanged:how.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2113
		    self setInnerClip.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2114
		].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2115
		shown ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2116
		    margin ~~ oldMargin ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2117
			self clearView.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2118
			self redrawX:margin y:margin
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2119
			       width:width-(margin*2)
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2120
			      height:height-(margin*2)
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2121
		    ].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2122
		    self redrawEdges.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2123
	       ]
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2124
	    ]
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2125
	]
135
claus
parents:
diff changeset
  2126
    ]
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2127
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  2128
    "Modified: 5.6.1996 / 14:12:17 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2129
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2130
3698
73fedcfc2d1d accessor added
Claus Gittinger <cg@exept.de>
parents: 3679
diff changeset
  2131
lightColor
6987
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2132
    "return the color to be used for lighted edges (3D only)"
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2133
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2134
    lightColor isNil ifTrue:[
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2135
        |avgColor|
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2136
        
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2137
        avgColor := viewBackground averageColorIn:(0@0 corner:7@7).
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2138
        lightColor := avgColor lightened.
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2139
    ].
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2140
    ^ lightColor
3698
73fedcfc2d1d accessor added
Claus Gittinger <cg@exept.de>
parents: 3679
diff changeset
  2141
!
73fedcfc2d1d accessor added
Claus Gittinger <cg@exept.de>
parents: 3679
diff changeset
  2142
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2143
lightColor:aColorOrImage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2144
    "set the color to be used for lighted edges (3D only)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2145
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2146
    lightColor := aColorOrImage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2147
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2148
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2149
margin
791
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  2150
    "return my inner margin - this is usually the level,
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2151
     but can be more for some views
791
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  2152
     (textViews which add more margin between the border and the text)"
269
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
    ^ margin
791
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  2155
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  2156
    "Modified: 5.6.1996 / 14:37:54 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2157
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2158
5405
369200caeaaf border stuff
Claus Gittinger <cg@exept.de>
parents: 5390
diff changeset
  2159
setBorderWidth
369200caeaaf border stuff
Claus Gittinger <cg@exept.de>
parents: 5390
diff changeset
  2160
    "set my borderWidth in the devices physical view"
369200caeaaf border stuff
Claus Gittinger <cg@exept.de>
parents: 5390
diff changeset
  2161
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2162
"/    |bw|
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2163
"/
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2164
"/    bw := borderWidth.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2165
"/    (device supportsWindowBorder:bw) ifFalse:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2166
"/        bw > 1 ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2167
"/            (device supportsWindowBorder:(bw := 1)) ifFalse:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2168
"/                ^ self
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2169
"/            ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2170
"/        ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2171
"/    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2172
"/
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2173
"/    drawableId notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2174
"/        device setWindowBorderWidth:bw in:drawableId
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2175
"/    ]
5405
369200caeaaf border stuff
Claus Gittinger <cg@exept.de>
parents: 5390
diff changeset
  2176
!
369200caeaaf border stuff
Claus Gittinger <cg@exept.de>
parents: 5390
diff changeset
  2177
5390
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  2178
setBorderWidth:aNumber
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  2179
    "set my borderWidth without affecting the real view (private only)"
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  2180
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  2181
    "/ borderWidth := aNumber
5414
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  2182
    self borderWidth:aNumber
5390
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  2183
!
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  2184
3698
73fedcfc2d1d accessor added
Claus Gittinger <cg@exept.de>
parents: 3679
diff changeset
  2185
shadowColor
6987
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2186
    "return the color to be used for shadowed edges (3D only)"
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2187
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2188
    shadowColor isNil ifTrue:[
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2189
        |avgColor|
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2190
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2191
        avgColor := viewBackground averageColorIn:(0@0 corner:7@7).
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2192
        shadowColor := avgColor darkened.
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  2193
    ].
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2194
    ^ shadowColor
3698
73fedcfc2d1d accessor added
Claus Gittinger <cg@exept.de>
parents: 3679
diff changeset
  2195
!
73fedcfc2d1d accessor added
Claus Gittinger <cg@exept.de>
parents: 3679
diff changeset
  2196
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2197
shadowColor:aColorOrImage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2198
    "set the color to be used for shadowed edges (3D only)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2199
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2200
    shadowColor := aColorOrImage
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2203
viewBackground:something
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2204
    "set the viewBackground to something, a color, image or form.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2205
     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
  2206
     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
  2207
     edges."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2208
2584
55a405cec086 when lighting/darkening colors, take the average in the topLeft
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
  2209
    |avgColor|
55a405cec086 when lighting/darkening colors, take the average in the topLeft
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
  2210
1808
b3485bfc7acf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1761
diff changeset
  2211
    "/ debug check only:
4891
af5300103883 nil view-background
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
  2212
    self assert:(something notNil) message:'invalid viewBackground argument'.
1808
b3485bfc7acf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1761
diff changeset
  2213
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2214
    something isColor ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  2215
	self graphicsDevice hasGrayscales ifTrue:[
4907
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  2216
	    avgColor := something averageColorIn:(0@0 corner:7@7).
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  2217
	    shadowColor := avgColor darkened "on:device".
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  2218
	    lightColor := avgColor lightened "on:device".
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  2219
	]
135
claus
parents:
diff changeset
  2220
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2221
    super viewBackground:something
749
c83c6d93760d grey vs. gray
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  2222
1808
b3485bfc7acf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1761
diff changeset
  2223
    "Modified: 4.7.1997 / 20:09:22 / cg"
269
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
6606
e961c7adbbf7 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6604
diff changeset
  2226
viewBackground:something if:condition
e961c7adbbf7 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6604
diff changeset
  2227
    "set the viewBackground to something, a color, image or form,
e961c7adbbf7 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6604
diff changeset
  2228
     in myself and recursively in all of my subviews"
e961c7adbbf7 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6604
diff changeset
  2229
e961c7adbbf7 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6604
diff changeset
  2230
    (condition value:self) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2231
	viewBackground ~~ something ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2232
	    self viewBackground:something.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2233
	    self invalidate
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2234
	].
6606
e961c7adbbf7 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6604
diff changeset
  2235
    ].
e961c7adbbf7 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6604
diff changeset
  2236
!
e961c7adbbf7 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6604
diff changeset
  2237
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2238
viewShape:aForm
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2239
    "set the viewShape to aForm"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2240
2757
e26b401eeb0c allow for a shape to be taken away (i.e. no longer a shaped view)
Claus Gittinger <cg@exept.de>
parents: 2750
diff changeset
  2241
    aForm isNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2242
	viewShape := nil.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  2243
	self drawableId notNil ifTrue:[
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  2244
	    self graphicsDevice setWindowShape:nil in:self drawableId
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2245
	]
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2246
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2247
	viewShape isNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2248
	    viewShape := ArbitraryViewShape new
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2249
	].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2250
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2251
	viewShape viewShapeForm:aForm.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  2252
	self drawableId notNil ifTrue:[
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  2253
	    self graphicsDevice setWindowShape:(aForm id) in:self drawableId
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2254
	]
135
claus
parents:
diff changeset
  2255
    ]
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  2256
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  2257
    "Modified: 18.9.1997 / 11:11:04 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2258
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2259
3139
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2260
!SimpleView methodsFor:'accessing-channels'!
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2261
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2262
setupChannel:newChannel for:changeSelector withOld:oldChannel
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2263
    "common code to change a channel.
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2264
     If changeSelector is non-nil, arrange for it to be sent when
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2265
     the channel changes its value; otherwise, arrange for a simple update.
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2266
     This is so common, that ist worth a helper method:
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2267
     release any old channel (if non-nil),
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2268
     arrange for changeSelector (or #update) to be sent for the new channel."
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2269
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2270
    |oldValue|
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2271
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2272
    oldChannel == newChannel ifTrue:[^ self].
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2273
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2274
    oldChannel notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2275
	changeSelector isNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2276
	    oldChannel removeDependent:self
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2277
	] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2278
	    oldChannel retractInterestsFor:self.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2279
	].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2280
	oldValue := oldChannel value.
3139
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2281
    ].
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2282
    newChannel notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2283
	changeSelector isNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2284
	    newChannel addDependent:self.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2285
	    newChannel value ~~ oldValue ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2286
		self update:#value with:nil from:newChannel.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2287
	    ]
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2288
	] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2289
	    newChannel onChangeSend:changeSelector to:self.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2290
	    newChannel value ~~ oldValue ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2291
		self perform:changeSelector.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2292
	    ]
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2293
	]
3139
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2294
    ].
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2295
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2296
    ^ newChannel
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2297
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2298
    "Modified: / 31.10.1997 / 14:47:21 / cg"
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2299
! !
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  2300
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2301
!SimpleView methodsFor:'accessing-contents'!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2302
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2303
heightOfContents
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2304
    "return the height of the contents in logical units
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2305
     - defaults to views visible area here.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2306
    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
  2307
    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
  2308
    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
  2309
    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
  2310
    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
  2311
    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
  2312
    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
  2313
    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
  2314
    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
  2315
    of this will scale as appropriate."
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2316
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2317
    ^ (self innerHeight max:(self maxSubViewBottom)) max:self maxComponentBottom
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2318
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2319
    "Modified: 26.5.1996 / 12:44:21 / cg"
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2320
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2321
7023
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2322
heightOfContentsDependsOnWidth
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2323
    "a very special which is only used by the scrollableView,
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2324
     to check if it should NOT automatically hide scrollbars, when the
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2325
     pointer leaves the view.
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2326
     Currently, there are only a small number of views which return true here,
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2327
     one being the HTML view, which rearranges its text depending on the width,
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2328
     and therefore, it is a bad idea to hide/show scrollbars dynamically"
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2329
     
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2330
    ^ false  
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2331
!
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2332
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2333
widthOfContents
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2334
    "return the width of the contents in logical units
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2335
     - defaults to views visible area here.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2336
    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
  2337
    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
  2338
    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
  2339
    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
  2340
    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
  2341
    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
  2342
    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
  2343
    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
  2344
    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
  2345
    of this will scale as appropriate."
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2346
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2347
    ^ (self innerWidth max:(self maxSubViewRight)) max:self maxComponentRight
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2348
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  2349
    "Modified: 26.5.1996 / 13:02:50 / cg"
7023
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2350
!
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2351
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2352
widthOfContentsDependsOnHeight
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2353
    "a very special query which is only used by the scrollableView,
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2354
     to check if it should NOT automatically hide scrollbars, when the
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2355
     pointer leaves the view.
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2356
     Currently, there is no view, which returns true
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2357
     (maybe if we ever support chinese writing top to bottom..."
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2358
     
91423b65ebce #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 7014
diff changeset
  2359
    ^ false  
422
bb19798ffda1 fixed openAutonomous for new model opening setup
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
  2360
! !
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  2361
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2362
!SimpleView methodsFor:'accessing-dimensions'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2363
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2364
allInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2365
    "set all insets; positive makes the view smaller,
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2366
     negative makes it larger..
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2367
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2368
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2369
    insets isNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2370
	insets := Array new:4.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2371
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2372
    insets atAllPut:aNumber.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2373
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2374
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2375
"/    drawableId isNil ifTrue:[
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  2376
"/        self originChangedFlag:true
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2377
"/    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2378
	self containerChangedSize.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2379
"/    ]
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  2380
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  2381
    "Modified: 19.7.1996 / 17:30:18 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2382
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2383
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2384
bottom
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2385
    "return the y position of the actual bottom edge (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2386
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2387
    ^ top + height - 1
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2388
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2389
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2390
bottom:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2391
    "set the corners y position"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2392
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2393
    self corner:(self corner x @ aNumber)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2394
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2395
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2396
bottomInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2397
    "return the inset of the bottom edge; positive is to the top,
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2398
     negative to the bottom.
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2399
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2400
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2401
    insets isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2402
    ^ insets at:4
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2403
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2404
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2405
bottomInset:aNumber
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2406
    "set the inset of the bottom edge;
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2407
     positive is to the top (view becomes smaller),
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2408
     negative to the bottom (becomes larger).
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2409
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2410
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2411
    |newInset|
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2412
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2413
    insets isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2414
	insets := Array with:0 with:0 with:0 with:0
4426
83f66a9c0be1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  2415
    ].
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2416
    newInset := aNumber.
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2417
    newInset isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2418
	newInset := 0.
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2419
    ].
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2420
    (insets at:4) ~= newInset ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2421
	insets at:4 put:newInset.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2422
	self containerChangedSize
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2423
    ]
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  2424
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  2425
    "Modified: 19.7.1996 / 17:30:22 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2426
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2427
5547
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2428
bounds
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2429
    "ST-80 compatibility: return my bounds"
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2430
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2431
    ^ (self origin) corner:(self corner)
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2432
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2433
    "Created: 4.6.1996 / 21:23:27 / cg"
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2434
    "Modified: 10.1.1997 / 19:46:21 / cg"
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2435
!
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2436
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2437
bounds:aRectangle
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2438
    "ST-80 compatibility: change my bounds"
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2439
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2440
    self explicitExtent:true.
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2441
    self pixelOrigin:aRectangle origin
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2442
	      corner:aRectangle corner
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2443
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2444
    "Created: 4.6.1996 / 21:44:27 / cg"
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2445
    "Modified: 10.1.1997 / 19:46:36 / cg"
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2446
!
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  2447
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2448
center
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2449
    "return the point at the center of the receiver (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2450
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2451
    ^ (left + (width // 2)) @ (top + (height // 2))
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2452
!
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
center:newCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2455
    "move the receiver so that newCenter, aPoint becomes the center point"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2456
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2457
    self origin:(newCenter - ((width // 2) @ (height // 2)))
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2458
!
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
computeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2461
    "compute my corner; if I have a layoutObject,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2462
     relative origins or blocks to evaluate, compute it now ..
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2463
     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
  2464
     Returns the corner point in device coordinates (pixels)."
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
    |org newCorner newExt x y|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2467
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2468
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2469
     slowly migrating to use layoutObjects ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2470
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2471
    layout notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2472
	superView isNil ifTrue:[^ self preferredBounds corner].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2473
	^ (layout rectangleRelativeTo:(superView viewRectangle)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2474
			    preferred:[self preferredBounds]) corner rounded
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2475
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2476
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2477
    (cornerRule notNil) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2478
	newCorner := cornerRule value.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2479
	"
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2480
	 allow return of relative values ...
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2481
	"
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2482
	x := newCorner x.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2483
	y := newCorner y.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2484
	x isNil ifTrue:[x := self corner x].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2485
	y isNil ifTrue:[y := self corner y].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2486
	((x isInteger not) or:[y isInteger not]) ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2487
	    newCorner := self cornerFromRelativeCorner:x@y
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2488
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2489
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2490
	(relativeCorner notNil) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2491
	    newCorner := self cornerFromRelativeCorner:relativeCorner
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2492
	] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2493
	    org := self computeOrigin.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2494
	    (extentRule notNil) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2495
		newExt := extentRule value
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2496
	    ] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2497
		(relativeExtent notNil) ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2498
		    newExt := self extentFromRelativeExtent:relativeExtent
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2499
		] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2500
		    newExt := self extent.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2501
		]
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2502
	    ].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2503
	    newCorner := org + newExt
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2504
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2505
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2506
    ^ newCorner
1389
8ee35214f5eb computeCorner fixed.
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  2507
8ee35214f5eb computeCorner fixed.
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  2508
    "Modified: 28.2.1997 / 10:33:39 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2509
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2510
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2511
computeExtent
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2512
    "compute my extent; if I have a layoutObject, a relative extent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2513
     or blocks to evaluate, compute it now ..
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2514
     There is one catch here, if the dimension was defined
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2515
     by origin/corner, compute them here and take that value.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2516
     I.e. origin/corner definition has precedence over extent definition.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2517
     Returns the extent in device coordinates (pixels)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2518
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2519
    |newOrg newExt newCorner x y|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2520
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2521
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2522
     slowly migrating to use layoutObjects ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2523
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2524
    layout notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2525
	^ (layout rectangleRelativeTo:(superView viewRectangle)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2526
			    preferred:[self preferredBounds]) extent rounded
135
claus
parents:
diff changeset
  2527
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2528
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2529
    (cornerRule notNil) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2530
	newCorner := cornerRule value.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2531
	"
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2532
	 allow return of relative values ...
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2533
	"
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2534
	x := newCorner x.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2535
	y := newCorner y.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2536
	x isNil ifTrue:[x := self corner x].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2537
	y isNil ifTrue:[y := self corner y].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2538
	((x isInteger not) or:[y isInteger not]) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2539
	    newCorner := self cornerFromRelativeCorner:x@y
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2540
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2541
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2542
	(relativeCorner notNil) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2543
	    newCorner := self cornerFromRelativeCorner:relativeCorner
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2544
	] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2545
	    (extentRule notNil) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2546
		newExt := extentRule value.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2547
		"
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2548
		 allow return of relative values ...
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2549
		"
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2550
		x := newExt x.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2551
		y := newExt y.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2552
		x isNil ifTrue:[x := width].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2553
		y isNil ifTrue:[y := height].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2554
		((x isInteger not) or:[y isInteger not]) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2555
		    newExt := self extentFromRelativeExtent:x@y
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2556
		]
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2557
	    ] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2558
		(relativeExtent notNil) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2559
		    newExt := self extentFromRelativeExtent:relativeExtent
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2560
		] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2561
		    newExt := (width @ height).
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2562
		].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2563
	    ].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2564
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2565
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2566
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2567
    newCorner notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2568
	newOrg := self computeOrigin.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2569
	^ newCorner - newOrg.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2570
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2571
    ^ newExt.
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2574
computeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2575
    "compute my origin; if I have a layoutObject, a relative origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2576
     or blocks to evaluate, compute it now ..
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2577
     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
  2578
     Returns the origin point in device coordinates (pixels)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2579
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2580
    |newOrg x y|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2581
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2582
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2583
     slowly migrating to use layoutObjects ...
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
    layout notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2586
	superView isNil ifTrue:[^ 0@0].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2587
	^ (layout rectangleRelativeTo:(superView viewRectangle)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2588
			    preferred:[self preferredBounds]) origin rounded
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2589
    ].
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
    (originRule notNil) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2592
	newOrg := originRule value.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2593
	"
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2594
	 allow return of relative values ...
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2595
	"
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2596
	x := newOrg x.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2597
	y := newOrg y.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2598
	x isNil ifTrue:[x := self origin x].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2599
	y isNil ifTrue:[y := self origin y].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2600
	((x isInteger not) or:[y isInteger not]) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2601
	    newOrg := self originFromRelativeOrigin:x@y.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2602
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2603
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2604
	(relativeOrigin notNil) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2605
	    newOrg := self originFromRelativeOrigin:relativeOrigin.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2606
	] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2607
	    ^ (left @ top).
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  2608
	].
269
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
    ^ newOrg
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
corner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2614
    "return the lower right corner-point (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2615
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2616
"/    ^ (left + width "- 1") @ (top + height "- 1")
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2617
    ^ (left + width - 1) @ (top + height - 1)
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
    "Modified: 31.8.1995 / 16:51:40 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2620
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2621
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2622
corner:corner
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2623
    "set the views corner;
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2624
     the corner argument may be:
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2625
	 a point
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2626
	    where integer fields mean 'pixel-values'
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2627
	    and float values mean 'relative-to-superview'
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2628
	    and nil means 'take current value';
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2629
     or a block returning a point which is interpreted as above.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2630
     Please migrate to use layoutObjects, if possible."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2631
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2632
    |x y pixelCorner c|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2633
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  2634
    self explicitExtent:true.
947
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  2635
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2636
    corner isBlock ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2637
	cornerRule := corner.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  2638
	self drawableId notNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2639
	    pixelCorner := corner value
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2640
	] ifFalse:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2641
	    self extentChangedFlag:true
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2642
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2643
    ] ifFalse:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2644
	x := corner x.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2645
	y := corner y.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2646
	x isNil ifTrue:[x := self corner x].
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2647
	y isNil ifTrue:[y := self corner y].
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2648
	c := x @ y.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2649
	((x isInteger not) or:[y isInteger not]) ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2650
	    relativeCorner := c.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2651
	    pixelCorner := self cornerFromRelativeCorner.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2652
	    pixelCorner isNil ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2653
		self extentChangedFlag:true
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2654
	    ]
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2655
	] ifFalse:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2656
	    pixelCorner := c
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2657
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2658
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2659
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2660
    pixelCorner notNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2661
	self pixelCorner:pixelCorner
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2662
    ]
947
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  2663
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  2664
    "Modified: 15.7.1996 / 09:51:06 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2665
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2666
1327
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2667
cornerRule
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2668
    "return the corner block - non public; this will vanish without notice"
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2669
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2670
    ^ cornerRule
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2671
!
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2672
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2673
extent:extent
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2674
    "set the views extent;
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2675
     extent may be:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2676
	a point
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2677
	    where integer fields mean 'pixel-values'
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2678
	    and float values mean 'relative-to-superview'
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2679
	    and nil means 'leave current value';
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2680
     or a block returning a point which is interpreted as above.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2681
     Be careful when using relative extents: rounding errors may
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2682
     accumulate. Better use origin/corner.
1048
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2683
     Best: migrate to use layour objects.
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2684
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2685
     Notice: this sets the views explicitExtent flag, which prevents it normally
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2686
	     from resizing itself to its preferredExtent.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2687
	     See initialExtent: for a variation."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2688
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2689
    |w h pixelExtent e|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2690
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  2691
    self explicitExtent:true.
947
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  2692
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2693
    extent isBlock ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2694
	extentRule := extent.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  2695
	self drawableId notNil ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2696
	    pixelExtent := extent value
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2697
	] ifFalse:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2698
	    self extentChangedFlag:true
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2699
	]
135
claus
parents:
diff changeset
  2700
    ] ifFalse:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2701
	w := extent x.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2702
	h := extent y.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2703
	w isNil ifTrue:[w := width].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2704
	h isNil ifTrue:[h := height].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2705
	e := w@h.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2706
	((w isInteger not) or:[h isInteger not]) ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2707
	    "/ w > 1 ifTrue:[self halt].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2708
	    relativeExtent := e.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2709
	    pixelExtent := self extentFromRelativeExtent.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2710
	    pixelExtent isNil ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2711
		self extentChangedFlag:true
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2712
	    ]
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2713
	] ifFalse:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2714
	    relativeExtent := nil.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2715
	    pixelExtent := e
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2716
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2717
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2718
    pixelExtent notNil ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2719
	self pixelExtent:pixelExtent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2720
    ]
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  2721
5571
3f610d50c464 comment
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
  2722
    "Modified: / 07-07-2010 / 16:44:57 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2723
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2724
1327
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2725
extentRule
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2726
    "return the extent block - non public; this will vanish without notice"
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2727
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2728
    ^ extentRule
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2729
!
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  2730
3784
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  2731
frame
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  2732
    "compatibility with displayObjects: returns my bounds"
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  2733
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  2734
    ^ self bounds
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  2735
!
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  2736
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2737
geometryLayout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2738
    "this method will vanish, as soon as all implementations of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2739
     #layout: are removed ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2740
     (conflict for example in label>>layout:).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2741
     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
  2742
     notice."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2743
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2744
    ^ here layout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2745
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2746
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2747
geometryLayout:aLayoutObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2748
    "this method will vanish, as soon as all implementations of
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2749
     #layout: are removed ...
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2750
     (conflict for example in label>>layout:).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2751
     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
  2752
     notice."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2753
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2754
    here layout:aLayoutObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2755
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2756
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  2757
hasExplicitExtent
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  2758
    "/ ^ explicitExtent.
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  2759
    ^ flagBits bitTest:FlagHasExplicitExtent.
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  2760
!
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  2761
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2762
height:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2763
    "set the views height in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2764
5703
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  2765
    "/ check: the following leads to an error in the notebook...
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  2766
"/    aNumber isInteger ifTrue:[
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  2767
"/        height := aNumber.
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  2768
"/    ] ifFalse:[
5707
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  2769
	self extent:(width @ aNumber)
5703
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  2770
"/    ].
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  2771
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  2772
    "Modified: / 02-02-2011 / 12:16:44 / cg"
269
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
heightIncludingBorder
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2776
    "return my height including border
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2777
     (this is my height as seen from the outside view;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2778
      while #height returns the height as seen by myself)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2779
5390
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  2780
    ^ height + (2*self borderWidth)
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2783
horizontalInset:aNumber
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2784
    "set the insets of the left/right edge;
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2785
     positive makes it smaller, negative makes it larger.
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2786
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2787
4530
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  2788
    |newInset|
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  2789
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2790
    insets isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2791
	insets := Array with:0 with:0 with:0 with:0
4426
83f66a9c0be1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  2792
    ].
4530
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  2793
    newInset := aNumber.
4426
83f66a9c0be1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  2794
    aNumber isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2795
	newInset := 0.
4530
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  2796
    ].
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  2797
    insets at:1 put:newInset.
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  2798
    insets at:3 put:newInset.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2799
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2800
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2801
"/    drawableId isNil ifTrue:[
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  2802
"/        self originChangedFlag:true
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2803
"/    ] ifFalse:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2804
	self containerChangedSize.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2805
"/    ]
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  2806
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2807
    "Modified: / 30-09-2006 / 15:19:28 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2808
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2809
1048
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2810
initialExtent:extent
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2811
    "set the views extent, but dont change its explicitExtent setting.
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2812
     a variant of #extent."
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2813
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2814
    |expl|
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2815
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  2816
    expl := self hasExplicitExtent.
1048
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2817
    self extent:extent.
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  2818
    self explicitExtent:expl
1048
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2819
!
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2820
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2821
initialHeight:aNumber
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2822
    "set the views height in pixels, but dont change its explicitExtent setting"
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2823
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2824
    self initialExtent:(width @ aNumber)
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2825
!
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2826
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2827
initialWidth:aNumber
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2828
    "set the views width in pixels, but dont change its explicitExtent setting"
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2829
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2830
    self initialExtent:(aNumber @ height)
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2831
!
f6d383b7f113 kludge interface added: #initialExtent / initialWidth & initialHeight
dq
parents: 1039
diff changeset
  2832
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2833
innerHeight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2834
    "return the height of the view minus any 3D-shadow-borders"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2835
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2836
    (margin == 0) ifTrue:[^ height].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2837
    ^ height - (2 * margin)
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
369
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2840
innerHeight:pixels
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2841
    "set the height of the view plus any 3D-shadow-borders.
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2842
     This does not work with a relative size."
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2843
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2844
    ^ self height:( pixels + (margin + self innerVerticalMargin * 2) ).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2845
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2846
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2847
innerHorizontalMargin
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2848
    "return any additional inner margin (i.e. contents margin).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2849
     This should be redefined by views which do add margins
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2850
     (for example: textViews do this)"
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2851
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2852
    ^ 0
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2853
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2854
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2855
innerVerticalMargin
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2856
    "return any additional inner margin (i.e. contents margin).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2857
     This should be redefined by views which do add margins
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2858
     (for example: textViews do this)"
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2859
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2860
    ^ 0
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2861
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2862
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2863
innerWidth
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2864
    "return the width of the view minus any 3D-shadow-borders"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2865
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2866
    (level == 0) ifTrue:[^ width].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2867
    ^ width - (2 * margin)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2868
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2869
369
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2870
innerWidth:pixels
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2871
    "set the width of the view plus any 3D-shadow-borders.
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2872
     This does not work with a relative size."
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2873
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2874
    ^ self width:( pixels + (margin + self innerHorizontalMargin * 2) ).
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2875
!
4a909fb26d3f innerWidth: / innerHeight:
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2876
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2877
inset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2878
    "set all insets; positive makes the view smaller,
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2879
     negative makes it larger..
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2880
     Obsolete: please use a layout object."
269
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
    self allInset:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2883
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2884
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2885
layout
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2886
    "return the layout object which controls my geometry.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2887
     Currently, this is nil in most cases, and my geometry is
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2888
     defined by relativeOrigin/relativeCorner/relativeExtent,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2889
     originRule/extentRule/cornerRule and inset.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2890
     Applications should be changed to use layoutObjects,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2891
     since the above listed instance variables will vanish."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2892
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2893
    ^ layout
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2896
layout:aLayoutObject
6487
07daeb3f1bec class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  2897
    "set the layout object which controls my geometry."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2898
6470
cdcc01e0ce13 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6468
diff changeset
  2899
    layout = aLayoutObject ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2900
	layout := aLayoutObject.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  2901
	self layoutChanged.
6470
cdcc01e0ce13 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6468
diff changeset
  2902
    ].
6249
28e5a459b5d1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6246
diff changeset
  2903
28e5a459b5d1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6246
diff changeset
  2904
    "Modified: 19.9.1995 / 16:17:25 / claus"
28e5a459b5d1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6246
diff changeset
  2905
    "Modified: 19.7.1996 / 17:30:27 / cg"
28e5a459b5d1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6246
diff changeset
  2906
!
28e5a459b5d1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6246
diff changeset
  2907
28e5a459b5d1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6246
diff changeset
  2908
layoutChanged
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2909
    superView isNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  2910
	self originChangedFlag:true extentChangedFlag:true cornerChangedFlag:true.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2911
    ] ifFalse:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  2912
	self containerChangedSize.
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2915
    "Modified: 19.9.1995 / 16:17:25 / claus"
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  2916
    "Modified: 19.7.1996 / 17:30:27 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2917
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2918
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2919
left
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2920
    "return the x position of the left border (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2921
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2922
    ^ left
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2923
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2924
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2925
left:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2926
    "set the x position"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2927
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2928
    self origin:(aNumber @ top)
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2931
left:newLeft top:newTop width:newWidth height:newHeight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2932
    "another way of specifying origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2933
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2934
    self origin:(newLeft @ newTop) extent:(newWidth @ newHeight)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2935
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2936
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2937
leftInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2938
    "return the inset of the left edge; positive is to the right,
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2939
     negative to the left.
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2940
     Obsolete: please use a layout object."
269
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
    insets isNil ifTrue:[^ 0].
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2943
    ^ insets at:1
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2944
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2945
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2946
leftInset:aNumber
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2947
    "set the inset of the left edge;
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2948
     positive is to the right (view becomes smaller),
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2949
     negative to the left (becomes larger).
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  2950
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2951
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2952
    |newInset|
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2953
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2954
    insets isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2955
	insets := Array with:0 with:0 with:0 with:0
4426
83f66a9c0be1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  2956
    ].
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2957
    newInset := aNumber.
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2958
    newInset isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2959
	newInset := 0.
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2960
    ].
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2961
    (insets at:1) ~= newInset ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2962
	insets at:1 put:newInset.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  2963
	self containerChangedSize.
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  2964
    ]
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  2965
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  2966
    "Modified: 19.7.1996 / 17:30:30 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2967
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2968
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2969
makeFullyVisible
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2970
    "make sure, that the view is fully visible by shifting it
5729
a2d13b74741a changed: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
  2971
     into the visible screen area if nescessary."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2972
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2973
    |myDevice originVisible cornerVisible newTop newLeft deviceBounds
5944
1d17a1a7af44 changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5924
diff changeset
  2974
     deviceLeft deviceRight deviceTop deviceBottom origin corner
1d17a1a7af44 changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5924
diff changeset
  2975
     referencePoint|
5617
135132a35699 changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5612
diff changeset
  2976
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2977
    myDevice := self graphicsDevice.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2978
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  2979
    newTop := top.
5617
135132a35699 changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5612
diff changeset
  2980
    newLeft := left.
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  2981
5623
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  2982
    origin := left@top.
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  2983
    corner := (left + width)@(top + height).
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  2984
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2985
    originVisible := myDevice pointIsVisible:origin.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2986
    cornerVisible := myDevice pointIsVisible:corner.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2987
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2988
    (myDevice pointsAreOnSameMonitor:origin and:corner) ifTrue:[
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2989
        referencePoint := origin.
5623
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  2990
    ] ifFalse:[
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2991
        originVisible ifTrue:[
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2992
            "origin is visible"
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2993
            referencePoint := origin.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2994
        ] ifFalse:[
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2995
            cornerVisible notNil ifTrue:[
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2996
                "corner is visible"
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2997
                referencePoint := corner.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2998
            ] ifFalse:[
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  2999
                referencePoint := 1@1.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3000
            ].
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3001
        ].
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3002
    ].
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3003
    deviceBounds := myDevice monitorBoundsAt:referencePoint.
5623
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  3004
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  3005
    deviceLeft := deviceBounds left.
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  3006
    deviceRight := deviceBounds right.
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  3007
    deviceTop := deviceBounds top.
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  3008
    deviceBottom := deviceBounds bottom.
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  3009
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3010
    originVisible ifTrue:[ deviceBottom := deviceBottom min:(myDevice usableHeightAt:origin) ].
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3011
    cornerVisible ifTrue:[ deviceBottom := deviceBottom min:(myDevice usableHeightAt:corner) ].
5627
c8c301e002bd changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5623
diff changeset
  3012
c8c301e002bd changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5623
diff changeset
  3013
    corner y > deviceBottom ifTrue:[
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3014
        cornerVisible := false.
5627
c8c301e002bd changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5623
diff changeset
  3015
    ].
c8c301e002bd changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5623
diff changeset
  3016
c8c301e002bd changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5623
diff changeset
  3017
    UserPreferences current forceWindowsIntoMonitorBounds ifFalse:[
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3018
        (originVisible and:[cornerVisible]) ifTrue:[^ self].
5627
c8c301e002bd changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5623
diff changeset
  3019
    ].
5617
135132a35699 changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5612
diff changeset
  3020
135132a35699 changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5612
diff changeset
  3021
    "/ deviceRight := deviceRight min:device usableWidth.
5623
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  3022
    originVisible ifFalse:[
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3023
        cornerVisible ifFalse:[
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3024
            newTop := deviceBottom - height.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3025
            newLeft := deviceRight - width.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3026
            newLeft := newLeft max:deviceLeft.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3027
            newTop := newTop max:deviceTop.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3028
        ] ifTrue:[
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3029
            "/ origin is not; corner is in
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3030
            newLeft := (deviceLeft max:newLeft).
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3031
            newTop := (deviceTop max:newTop).
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3032
        ].
5623
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  3033
    ] ifTrue:[
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3034
        "/ notice, the position-dependent query: if there is a higher secondary screen,
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3035
        "/ this makes a difference in where a popUpMenu is allowed...
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3036
        (corner y > deviceBottom) ifTrue:[
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3037
            newTop := deviceBottom - height
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3038
        ].
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3039
        (corner x > deviceRight) ifTrue:[
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3040
            newLeft := deviceRight - width
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3041
        ].
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3042
        newLeft := newLeft max:deviceLeft.
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3043
        newTop := newTop max:deviceTop.
5623
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  3044
    ].
5617
135132a35699 changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5612
diff changeset
  3045
135132a35699 changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5612
diff changeset
  3046
    ((newTop ~~ top) or:[newLeft ~~ left]) ifTrue:[
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  3047
        self origin:newLeft @ newTop
5729
a2d13b74741a changed: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
  3048
    ].
a2d13b74741a changed: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
  3049
5944
1d17a1a7af44 changed: #makeFullyVisible
Claus Gittinger <cg@exept.de>
parents: 5924
diff changeset
  3050
    "Modified: / 27-10-2012 / 13:15:58 / cg"
269
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
2750
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  3053
makeRoundViewShapeWithBorder:bw
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  3054
    "setup my window for a round shaped view;
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  3055
     this is not supported by all devices"
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  3056
3167
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3057
    self makeRoundViewShapeWithBorder:bw opaque:true.
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3058
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3059
!
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3060
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3061
makeRoundViewShapeWithBorder:bw opaque:opaque
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3062
    "setup my window for a round shaped view;
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3063
     this is not supported by all devices"
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3064
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3065
    |extent shapeForm borderForm w h f lw|
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3066
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3067
    self graphicsDevice supportsRoundShapedViews ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3068
	"/ TODO: add code for round shaped view (mswin)
2750
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  3069
    ].
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  3070
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3071
    self graphicsDevice supportsArbitraryShapedViews ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3072
	extent := self extent.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3073
	w := extent x.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3074
	h := extent y.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3075
	borderForm := Form extent:extent.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3076
	shapeForm  := Form extent:extent.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3077
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3078
	borderForm fillArcX:0 y:0
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3079
		  width:w
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3080
		 height:h
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3081
		   from:0
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3082
		  angle:360.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3083
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3084
	opaque ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3085
	    f := borderForm.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3086
	    borderForm foreground:(Color colorId:0).
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3087
	] ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3088
	    f := shapeForm.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3089
	    shapeForm foreground:(Color colorId:1).
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3090
	].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3091
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3092
	f fillArcX:(lw := gc lineWidth) y:lw
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3093
		width:w - (bw * 2)
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3094
	       height:h - (bw * 2)
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3095
		 from:0
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3096
		angle:360.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3097
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3098
	self borderShape:borderForm.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3099
	self viewShape:shapeForm.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3100
	^ self.
3474
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3101
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3102
"/
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3103
"/        extent := self extent.
3167
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3104
"/
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3105
"/        w := extent x.
3474
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3106
"/        h := extent y.
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3107
"/        borderForm := Form width:w height:h.
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3108
"/        "/        borderForm fill:(Color colorId:0).
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3109
"/
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3110
"/        shapeForm := Form width:w height:h.
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3111
"/        "/        shapeForm fill:(Color colorId:0).
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3112
"/
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3113
"/        borderForm foreground:(Color colorId:1).
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3114
"/        borderForm
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3115
"/            fillArcX:0 y:0
3474
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3116
"/            width:w
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3117
"/            height:h
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3118
"/            from:0
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3119
"/            angle:360.
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3120
"/
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3121
"/        opaque ifFalse:[
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3122
"/            f := borderForm.
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3123
"/            borderForm foreground:(Color colorId:0).
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3124
"/        ] ifTrue:[
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3125
"/            f := shapeForm.
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3126
"/            shapeForm foreground:(Color colorId:1).
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3127
"/        ].
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3128
"/        f
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3129
"/            fillArcX:bw y:bw
3474
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3130
"/            width:(w - (bw * 2))
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3131
"/            height:(h - (bw * 2))
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3132
"/            from:0
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3133
"/            angle:360.
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3134
"/
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3135
"/        self borderShape:borderForm.
2043444bdc24 statements after return
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  3136
"/        self viewShape:shapeForm
3167
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3137
    ]
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3138
!
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3139
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3140
makeTransparentRectangularViewShapeWithBorder:bw
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3141
    "setup my window for a rectangluar transparent shaped view;
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3142
     this is not supported by all devices"
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3143
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3144
    |extent shapeForm borderForm w h f|
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3145
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3146
"/    self graphicsDevice supportsPolygonShapedViews ifTrue:[
3167
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3147
"/        "/ TODO: add code for mswin
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3148
"/    ].
9dc9abd86ba2 fixed round shaped transparent views (Region)
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3149
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3150
    self graphicsDevice supportsArbitraryShapedViews ifTrue:[
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3151
	extent := self extent.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3152
	w := extent x.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3153
	h := extent y.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3154
	borderForm := Form extent:extent.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3155
	shapeForm  := Form extent:extent.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3156
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3157
	borderForm
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3158
	    fillRectangleX:0 y:0
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3159
	    width:w
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3160
	    height:h.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3161
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3162
	f := borderForm.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3163
	borderForm foreground:(Color colorId:0).
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3164
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3165
	borderForm
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3166
	    fillRectangleX:bw y:bw
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3167
	    width:w - (bw * 2)
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3168
	    height:h - (bw * 2).
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3169
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3170
	self borderShape:borderForm.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3171
	self viewShape:shapeForm.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  3172
	^ self.
2750
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  3173
    ]
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  3174
!
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  3175
2127
c6d63c47bf07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
  3176
minExtent
2103
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  3177
    "for compatibility with StdSysView"
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  3178
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  3179
    ^ nil
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  3180
!
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  3181
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3182
origin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3183
    "return the origin (in pixels)"
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
    ^ left@top
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3186
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3187
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3188
origin:origin
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3189
    "set the views origin;
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3190
     origin may be:
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3191
	a point
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3192
	    where integer fields mean 'pixel-values'
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3193
	    and float values mean 'relative-to-superview'
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3194
	    and nil means 'take current value';
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3195
     or a block returning a point which is interpreted as above.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3196
     Please migrate to use layout objects."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3197
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3198
    |newLeft newTop pixelOrigin o|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3199
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3200
    origin isBlock ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3201
	originRule := origin.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3202
	self drawableId notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3203
	    pixelOrigin := origin value
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3204
	] ifFalse:[
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  3205
	    self originChangedFlag:true
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3206
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3207
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3208
	o := origin.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3209
	newLeft := origin x.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3210
	newTop := origin y.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3211
	newLeft isNil ifTrue:[newLeft := left].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3212
	newTop isNil ifTrue:[newTop := top].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3213
	o := newLeft @ newTop.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3214
	((newLeft isInteger not) or:[newTop isInteger not]) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3215
	    relativeOrigin := o.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3216
	    pixelOrigin := self originFromRelativeOrigin.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3217
	    pixelOrigin isNil ifTrue:[
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  3218
		self originChangedFlag:true
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3219
	    ]
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3220
	] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3221
	    relativeOrigin := nil.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3222
	    pixelOrigin := o
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3223
	]
269
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
    pixelOrigin notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3226
	self pixelOrigin:pixelOrigin
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3227
    ].
573
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  3228
578ae7a2f7fa clear any relative origin/extent, if set to an absolute
Claus Gittinger <cg@exept.de>
parents: 566
diff changeset
  3229
    "Modified: 19.4.1996 / 15:12:36 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3230
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3231
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3232
origin:origin corner:corner
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3233
    "set both origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3234
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3235
    |newLeft newTop newRight newBot|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3236
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  3237
    self explicitExtent:true.
947
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  3238
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3239
    "do it as one operation if possible"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3240
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3241
    origin isBlock ifFalse:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3242
	corner isBlock ifFalse:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3243
	    newLeft := origin x.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3244
	    newLeft isInteger ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3245
		newTop := origin y.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3246
		newTop isInteger ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3247
		    newRight := corner x.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3248
		    newRight isInteger ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3249
			newBot := corner y.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3250
			newBot isInteger ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3251
			    self pixelOrigin:origin corner:corner
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3252
			]
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3253
		    ]
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3254
		]
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3255
	    ]
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3256
	]
135
claus
parents:
diff changeset
  3257
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3258
    self origin:origin.
947
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  3259
    self corner:corner
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  3260
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  3261
    "Modified: 15.7.1996 / 09:52:43 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3262
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3263
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3264
origin:origin extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3265
    "set both origin and extent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3266
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3267
    |newLeft newTop newWidth newHeight|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3268
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  3269
    self explicitExtent:true.
947
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  3270
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3271
    "do it as one operation if possible"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3272
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3273
    origin isBlock ifFalse:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3274
	extent isBlock ifFalse:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3275
	    newLeft := origin x.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3276
	    newLeft isInteger ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3277
		newTop := origin y.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3278
		newTop isInteger ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3279
		    newWidth := extent x.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3280
		    newWidth isInteger ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3281
			newHeight := extent y.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3282
			newHeight isInteger ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3283
			    self pixelOrigin:origin extent:extent
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3284
			]
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3285
		    ]
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3286
		]
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3287
	    ]
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3288
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3289
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3290
    self extent:extent.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3291
    self origin:origin
947
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  3292
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  3293
    "Modified: 15.7.1996 / 09:52:39 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3294
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3295
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3296
originRelativeTo:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3297
    "return the origin (in pixels) relative to a superView,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3298
     or relative to the rootView (if the aView argument is nil).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3299
     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
  3300
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3301
    |currentView
2414
1d8968995199 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
  3302
     bw   "{ Class: SmallInteger }"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3303
     sumX "{ Class: SmallInteger }"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3304
     sumY "{ Class: SmallInteger }" |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3305
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3306
    currentView := self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3307
    sumX := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3308
    sumY := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3309
    [currentView notNil] whileTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3310
	(currentView == aView) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3311
	    ^ (sumX @ sumY)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3312
	].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3313
	bw := currentView borderWidth.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3314
	sumX := sumX + (currentView left) + bw.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3315
	sumY := sumY + (currentView top) + bw.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3316
	currentView := currentView superView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3317
    ].
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3318
    (aView isNil or:[aView == self graphicsDevice rootView]) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3319
	"return relative to screen ..."
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  3320
	^ (sumX @ sumY)
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3321
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3322
    ^ nil
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3323
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3324
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3325
     |top sub1 sub2|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3326
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3327
     top := StandardSystemView new.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3328
     top extent:200@200.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3329
     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
  3330
     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
  3331
     top openAndWait.
697
cba925eed3da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 696
diff changeset
  3332
     Transcript show:'button in top:'; showCR:(sub2 originRelativeTo:top).
cba925eed3da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 696
diff changeset
  3333
     Transcript show:'button on screen:'; showCR:(sub2 originRelativeTo:nil).
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3334
    "
2171
df6af7cc7a62 fixed #originRelativeTo: when borderWidth ~~ 0
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
  3335
2414
1d8968995199 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
  3336
    "Modified: / 5.12.1998 / 14:30:57 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3337
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3338
1327
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  3339
originRule
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  3340
    "return the origin block - non public; this will vanish without notice"
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  3341
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  3342
    ^ originRule
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  3343
!
51626baefab0 checkin from browser
ca
parents: 1323
diff changeset
  3344
763
dad0ad10c4d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
  3345
preferredExtent:anExtentPoint
dad0ad10c4d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
  3346
    "override the views own preferredExtent computation,
dad0ad10c4d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
  3347
     and let it prefer the size given by the argument."
dad0ad10c4d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
  3348
dad0ad10c4d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
  3349
    preferredExtent := anExtentPoint.
5021
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  3350
    explicitExtent := anExtentPoint.
1038
fb193cba16b6 #preferredExtent: no longer changes the extent
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  3351
fb193cba16b6 #preferredExtent: no longer changes the extent
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
  3352
    "Modified: 22.8.1996 / 13:41:47 / cg"
763
dad0ad10c4d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
  3353
!
dad0ad10c4d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
  3354
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3355
relativeCorner
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3356
    "return the relative corner or nil"
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3357
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3358
    "MB:added  {" "needed if layout is used e.g. POUEditor"
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3359
    layout notNil ifTrue:[
7011
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  3360
        layout isRectangle ifTrue:[
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  3361
            ^ 0@0
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  3362
        ].    
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3363
	^(layout rightFraction) @ (layout bottomFraction)
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3364
    ].
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3365
    "MB:added  }"
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3366
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3367
    ^relativeCorner
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3368
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3369
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3370
relativeCorner:aPoint
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3371
    "set the relative corner"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3372
3627
eefbbc5c3d04 when setting a relativeExtent, clear any relativeCorner
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3373
    aPoint notNil ifTrue:[relativeExtent := nil].
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3374
    relativeCorner := aPoint.
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3375
    "MB:added  {" "needed if layout is used e.g. POUEditor"
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3376
    layout notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3377
	layout rightFraction: aPoint x.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3378
	layout bottomFraction: aPoint y.
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3379
    ].
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3380
    "MB:added  }"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3381
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3382
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3383
relativeExtent
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3384
    "return the relative extent or nil.
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3385
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3386
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3387
    ^ relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3388
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3389
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3390
relativeExtent:aPoint
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3391
    "set the relative extent.
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3392
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3393
3627
eefbbc5c3d04 when setting a relativeExtent, clear any relativeCorner
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3394
    aPoint notNil ifTrue:[relativeCorner := nil].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3395
    relativeExtent := aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3396
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3397
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3398
relativeOrigin
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3399
    "return the relative corner or nil"
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3400
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3401
    "MB:added  {"  "needed if layout is used e.g. POUEditor"
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3402
    layout notNil ifTrue:[
7011
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  3403
        layout isRectangle ifTrue:[
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  3404
            ^ 0@0
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  3405
        ].    
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3406
	^(layout leftFraction) @ (layout topFraction)
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3407
    ].
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3408
    "MB:added  }"
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3409
    ^relativeOrigin
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3410
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3411
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3412
relativeOrigin:aPoint
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3413
    "set the relative origin"
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3414
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3415
    relativeOrigin := aPoint.
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3416
    "MB:added  {" "needed if layout is used e.g. POUEditor"
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3417
    layout notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3418
	layout leftFraction: aPoint x.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3419
	layout topFraction: aPoint y.
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3420
    ].
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  3421
    "MB:added  }"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3422
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3423
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3424
right
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3425
    "return the x position of the right edge  (in pixels)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3426
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3427
    ^ left + width - 1
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3428
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3429
    "Modified: 31.8.1995 / 19:31:10 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3430
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3431
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3432
right:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3433
    "set the corners x position"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3434
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3435
    self corner:(aNumber @ self corner y)
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
rightInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3439
    "return the inset of the right edge; positive is to the left,
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3440
     negative to the right.
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3441
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3442
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3443
    insets isNil ifTrue:[^ 0].
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3444
    ^ insets at:3
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3445
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3446
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3447
rightInset:aNumber
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3448
    "set the inset of the right edge;
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3449
     positive is to the left (view becomes smaller),
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3450
     negative to the right (becomes larger).
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3451
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3452
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3453
    |newInset|
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3454
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3455
    insets isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3456
	insets := Array with:0 with:0 with:0 with:0
4426
83f66a9c0be1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  3457
    ].
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3458
    newInset := aNumber.
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3459
    newInset isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3460
	newInset := 0.
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3461
    ].
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3462
    (insets at:3) ~= newInset ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3463
	insets at:3 put:newInset.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3464
	self containerChangedSize.
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3465
    ]
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  3466
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  3467
    "Modified: 19.7.1996 / 17:30:32 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3468
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3469
5547
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  3470
screenBounds
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  3471
    "return my bounds on the screen"
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  3472
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  3473
    ^ (self originRelativeTo:nil) extent:(self extent)
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  3474
!
07869f48d479 added: #screenBounds
Claus Gittinger <cg@exept.de>
parents: 5543
diff changeset
  3475
5695
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3476
setHeight:aNumber
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3477
    "set the views height in pixels"
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3478
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3479
    height := aNumber.
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3480
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3481
    "Created: / 01-02-2011 / 23:34:51 / cg"
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3482
!
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3483
3007
1dbdf6ad67ce checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3002
diff changeset
  3484
setOrigin:aPoint
1dbdf6ad67ce checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3002
diff changeset
  3485
    "set the origin only"
1dbdf6ad67ce checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3002
diff changeset
  3486
1dbdf6ad67ce checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3002
diff changeset
  3487
    left := aPoint x.
1dbdf6ad67ce checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3002
diff changeset
  3488
    top := aPoint y.
1dbdf6ad67ce checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3002
diff changeset
  3489
!
1dbdf6ad67ce checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3002
diff changeset
  3490
5695
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3491
setWidth:aNumber
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3492
    "set the views width in pixels"
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3493
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3494
    width := aNumber.
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3495
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3496
    "Created: / 01-02-2011 / 23:36:44 / cg"
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3497
!
Claus Gittinger <cg@exept.de>
parents: 5694
diff changeset
  3498
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3499
sizeFixed:aBoolean
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3500
    "set/clear the fix-size attribute, if supported by concrete subclasses.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3501
     Views which want to resize themselfes as appropriate to their contents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3502
     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
  3503
     true. Currently, only supported by Labels.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3504
     This does NOT prevent the window manager from resizing the view,
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3505
     instead it tell the view to NOT resize ITSELF.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3506
     Added here to provide a common protocol for all views."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3507
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3508
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3509
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3510
5228
b925a9bc8c6b new: #superViewRectangle
Stefan Vogel <sv@exept.de>
parents: 5221
diff changeset
  3511
superViewRectangle
b925a9bc8c6b new: #superViewRectangle
Stefan Vogel <sv@exept.de>
parents: 5221
diff changeset
  3512
    "return the inside area of the superView."
b925a9bc8c6b new: #superViewRectangle
Stefan Vogel <sv@exept.de>
parents: 5221
diff changeset
  3513
b925a9bc8c6b new: #superViewRectangle
Stefan Vogel <sv@exept.de>
parents: 5221
diff changeset
  3514
    superView isNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3515
	^ Rectangle left:0 top:0 right:0 bottom:0.
5228
b925a9bc8c6b new: #superViewRectangle
Stefan Vogel <sv@exept.de>
parents: 5221
diff changeset
  3516
    ].
b925a9bc8c6b new: #superViewRectangle
Stefan Vogel <sv@exept.de>
parents: 5221
diff changeset
  3517
b925a9bc8c6b new: #superViewRectangle
Stefan Vogel <sv@exept.de>
parents: 5221
diff changeset
  3518
    ^ superView viewRectangle.
b925a9bc8c6b new: #superViewRectangle
Stefan Vogel <sv@exept.de>
parents: 5221
diff changeset
  3519
!
b925a9bc8c6b new: #superViewRectangle
Stefan Vogel <sv@exept.de>
parents: 5221
diff changeset
  3520
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3521
top
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3522
    "return the y position of the top border"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3523
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3524
    ^ top
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3525
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3526
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3527
top:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3528
    "set the y position"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3529
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3530
    self origin:(left @ aNumber)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3531
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3532
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3533
topInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3534
    "return the inset of the top edge; positive is to the bottom,
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3535
     negative to the top.
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3536
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3537
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3538
    insets isNil ifTrue:[^ 0].
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3539
    ^ insets at:2
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3540
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3541
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3542
topInset:aNumber
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3543
    "set the inset of the top edge;
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3544
     positive is to the bottom (view becomes smaller),
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3545
     negative to the top (becomes larger).
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3546
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3547
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3548
    |newInset|
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3549
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3550
    insets isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3551
	insets := Array with:0 with:0 with:0 with:0
4426
83f66a9c0be1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  3552
    ].
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3553
    newInset := aNumber.
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3554
    newInset isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3555
	newInset := 0.
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3556
    ].
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3557
    (insets at:2) ~= newInset ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3558
	insets at:2 put:newInset.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3559
	self containerChangedSize.
4427
d704798bb679 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  3560
    ]
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  3561
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  3562
    "Modified: 19.7.1996 / 17:30:45 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3563
!
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
verticalInset:aNumber
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3566
    "set the insets of the top/bottom edge;
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3567
     positive makes it smaller, negative makes it larger.
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3568
     Obsolete: please use a layout object."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3569
4530
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  3570
    |newInset|
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  3571
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3572
    insets isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3573
	insets := Array with:0 with:0 with:0 with:0
4426
83f66a9c0be1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  3574
    ].
4530
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  3575
    newInset := aNumber.
4426
83f66a9c0be1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  3576
    aNumber isNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3577
	newInset := 0.
4530
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  3578
    ].
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  3579
    insets at:2 put:newInset.
5afcace584e4 compact: #dropMessage:data:view:position:handle:
Stefan Vogel <sv@exept.de>
parents: 4524
diff changeset
  3580
    insets at:4 put:newInset.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3581
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3582
    "force recomputation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3583
"/    drawableId isNil ifTrue:[
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  3584
"/        self originChangedFlag:true
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3585
"/    ] ifFalse:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  3586
	self containerChangedSize.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3587
"/    ]
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  3588
4630
644153ecf775 comments
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  3589
    "Modified: / 30-09-2006 / 15:19:45 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3590
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3591
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3592
viewRectangle
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3593
    "return the inside area.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3594
     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
  3595
     to base relative coordinates on.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3596
     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
  3597
     margins required for 3D levels) is ok.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3598
     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
  3599
     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
  3600
     (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
  3601
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3602
    |m2|
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3603
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3604
    m2 := margin + margin.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3605
    ^ (margin @ margin) extent:((width - m2) @ (height - m2))
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3606
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3607
    "Modified: 8.2.1996 / 20:05:00 / cg"
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3608
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  3609
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3610
width:aNumber
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3611
    "set the views width in pixels"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3612
5703
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  3613
    "/ check: the following leads to an error in the notebook...
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  3614
"/    aNumber isInteger ifTrue:[
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  3615
"/        width := aNumber.
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  3616
"/    ] ifFalse:[
5707
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  3617
	self extent:(aNumber @ height)
5703
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  3618
"/    ]
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  3619
b2982d12a3ad changed:
Claus Gittinger <cg@exept.de>
parents: 5695
diff changeset
  3620
    "Modified: / 02-02-2011 / 12:16:26 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3621
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3622
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3623
widthIncludingBorder
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3624
    "return my width including border
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3625
     (this is my width as seen from the outside view;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3626
      while #width returns the width as seen by myself)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3627
5390
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  3628
    ^ width + (2*self borderWidth)
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3629
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3630
3918
f708df11e804 Set windowClasses based on application class name.
Stefan Vogel <sv@exept.de>
parents: 3909
diff changeset
  3631
!SimpleView methodsFor:'accessing-display attributes'!
f708df11e804 Set windowClasses based on application class name.
Stefan Vogel <sv@exept.de>
parents: 3909
diff changeset
  3632
4497
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  3633
beMDIChildView
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  3634
    flagBits := (flagBits ? 0) bitOr:FlagIsMDIChild
4497
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  3635
!
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  3636
4230
6e80dbe10f18 nativeWidget stuff
Claus Gittinger <cg@exept.de>
parents: 4215
diff changeset
  3637
beNativeWidget
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  3638
    flagBits := (flagBits ? 0) bitOr:FlagNativeWidget
4230
6e80dbe10f18 nativeWidget stuff
Claus Gittinger <cg@exept.de>
parents: 4215
diff changeset
  3639
!
6e80dbe10f18 nativeWidget stuff
Claus Gittinger <cg@exept.de>
parents: 4215
diff changeset
  3640
4262
129e10b82f57 *** empty log message ***
ca
parents: 4230
diff changeset
  3641
beNonNativeWidget
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  3642
    flagBits := (flagBits ? 0) bitClear:FlagNativeWidget
4262
129e10b82f57 *** empty log message ***
ca
parents: 4230
diff changeset
  3643
!
129e10b82f57 *** empty log message ***
ca
parents: 4230
diff changeset
  3644
4497
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  3645
isMDIChildView
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  3646
    ^ flagBits bitTest:FlagIsMDIChild
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  3647
!
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  3648
4407
d0f371afaa58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
  3649
isMarkedAsUnmappedModalBox
d0f371afaa58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
  3650
    ^ flagBits bitTest:FlagIsUnmappedModalBox
d0f371afaa58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
  3651
!
d0f371afaa58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
  3652
4230
6e80dbe10f18 nativeWidget stuff
Claus Gittinger <cg@exept.de>
parents: 4215
diff changeset
  3653
isNativeWidget
6e80dbe10f18 nativeWidget stuff
Claus Gittinger <cg@exept.de>
parents: 4215
diff changeset
  3654
    ^ flagBits bitTest:FlagNativeWidget
6e80dbe10f18 nativeWidget stuff
Claus Gittinger <cg@exept.de>
parents: 4215
diff changeset
  3655
!
6e80dbe10f18 nativeWidget stuff
Claus Gittinger <cg@exept.de>
parents: 4215
diff changeset
  3656
4407
d0f371afaa58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
  3657
markAsUnmappedModalBox
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  3658
    flagBits := (flagBits ? 0) bitOr:FlagIsUnmappedModalBox
4407
d0f371afaa58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
  3659
!
d0f371afaa58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
  3660
d0f371afaa58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
  3661
unmarkAsUnmappedModalBox
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  3662
    flagBits := (flagBits ? 0) bitClear:FlagIsUnmappedModalBox
3918
f708df11e804 Set windowClasses based on application class name.
Stefan Vogel <sv@exept.de>
parents: 3909
diff changeset
  3663
! !
f708df11e804 Set windowClasses based on application class name.
Stefan Vogel <sv@exept.de>
parents: 3909
diff changeset
  3664
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3665
!SimpleView methodsFor:'accessing-hierarchy'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3666
756
5358dbd9d4be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
  3667
components
5358dbd9d4be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
  3668
    "return the collection of non-view components"
5358dbd9d4be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
  3669
4516
d17fa135d9a3 no nil components
Claus Gittinger <cg@exept.de>
parents: 4515
diff changeset
  3670
    ^ components ? #()
756
5358dbd9d4be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
  3671
5358dbd9d4be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
  3672
    "Created: 28.5.1996 / 23:59:37 / cg"
5358dbd9d4be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
  3673
!
5358dbd9d4be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
  3674
1182
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  3675
container
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  3676
    "return my container"
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  3677
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  3678
    ^ superView
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  3679
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  3680
    "Created: 5.6.1996 / 01:08:36 / cg"
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  3681
    "Modified: 10.1.1997 / 19:47:59 / cg"
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  3682
!
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  3683
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3684
container:aContainer
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3685
    "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
  3686
3558
5b0c805753aa fixed container: (no error if same container is given)
martin
parents: 3556
diff changeset
  3687
    superView == aContainer ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3688
	"/ no change
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3689
	^ self.
3558
5b0c805753aa fixed container: (no error if same container is given)
martin
parents: 3556
diff changeset
  3690
    ].
5b0c805753aa fixed container: (no error if same container is given)
martin
parents: 3556
diff changeset
  3691
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3692
    (self drawableId notNil) ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3693
	"/ actually, this is worth an exception
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3694
	"/ ('View [error]: ' , self printString , ' already realized - cannot change container') errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3695
	self error:'already realized - cannot change container' mayProceed:true.
3485
ee2792750943 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  3696
    ].
1296
dc646cdf78f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
  3697
    (superView notNil and:[superView ~~ aContainer]) ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3698
	"/ actually, this is worth an exception
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3699
	('View [warning]: ' , self printString , ' already has a container') errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3700
	superView removeComponent:self.
1296
dc646cdf78f0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
  3701
    ].
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3702
    superView := aContainer
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3703
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3704
    "Created: 9.5.1996 / 00:40:56 / cg"
1297
6fe5dfeba2c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  3705
    "Modified: 29.1.1997 / 17:37:38 / cg"
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3706
!
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3707
5211
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3708
hierarchicalIndex
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3709
    ^ superView hierarchicalIndexOfChild:self
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3710
!
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3711
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3712
hierarchicalIndexInList:aViewCollection
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3713
    |viewsWithSameName myName|
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3714
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3715
    myName := self uuidStringOrName.
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3716
    viewsWithSameName := aViewCollection select:[:v | v uuidStringOrName = myName].
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3717
    viewsWithSameName size = 1 ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3718
	^ nil "/ no conflict
5211
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3719
    ].
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3720
    ^ viewsWithSameName indexOf:self
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3721
!
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3722
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3723
hierarchicalIndexOfChild:aView
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3724
    ^ nil
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3725
!
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3726
5050
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3727
hierarchicalUUID
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3728
5211
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3729
    |uuidOrName superV hierarchicalViews hierarchicalUUID separator indexOrNil indexString|
5050
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3730
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3731
    hierarchicalUUID := ''.
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3732
    hierarchicalViews := OrderedCollection with: self.
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3733
    superV := self superView.
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3734
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3735
    [superV isNil] whileFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3736
	hierarchicalViews addFirst: superV.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3737
	superV := superV superView.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3738
    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3739
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3740
    hierarchicalViews doWithIndex:[:aView :index |
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3741
	uuidOrName := aView uuidStringOrName.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3742
	indexString := nil.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3743
	index > 1 ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3744
	    indexOrNil := aView hierarchicalIndex.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3745
	    (indexOrNil notNil and:[indexOrNil ~= 1]) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3746
		indexString := '[',indexOrNil printString,']'
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3747
	    ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3748
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3749
	separator := index == 1 ifTrue:[''] ifFalse:['.'].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3750
	hierarchicalUUID := hierarchicalUUID,separator,uuidOrName,(indexString?'').
5050
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3751
    ].
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3752
    ^ hierarchicalUUID
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3753
!
f83e429938f3 hierarchicalUUID
fm
parents: 5031
diff changeset
  3754
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3755
lower
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3756
    "bring to back"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3757
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3758
    self drawableId isNil ifTrue:[self create].
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3759
    self graphicsDevice lowerWindow:self drawableId
269
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
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3762
     Transcript topView lower
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3763
    "
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
raise
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3767
    "bring to front"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3768
5262
d7651814a2db fixed raise, when a modal view opens another modal dialog,
Claus Gittinger <cg@exept.de>
parents: 5258
diff changeset
  3769
    "MS-windows:
d7651814a2db fixed raise, when a modal view opens another modal dialog,
Claus Gittinger <cg@exept.de>
parents: 5258
diff changeset
  3770
     Raise does not raise a window above windows marked as 'TOPMOST'.
d7651814a2db fixed raise, when a modal view opens another modal dialog,
Claus Gittinger <cg@exept.de>
parents: 5258
diff changeset
  3771
     (e.g. cmd.exe appears to mark itself as topmost when it gets the focus).
d7651814a2db fixed raise, when a modal view opens another modal dialog,
Claus Gittinger <cg@exept.de>
parents: 5258
diff changeset
  3772
     Use #setForegroundWindow to raise above the currently active window,
d7651814a2db fixed raise, when a modal view opens another modal dialog,
Claus Gittinger <cg@exept.de>
parents: 5258
diff changeset
  3773
     or mark as #beScreenDialog before opening"
d7651814a2db fixed raise, when a modal view opens another modal dialog,
Claus Gittinger <cg@exept.de>
parents: 5258
diff changeset
  3774
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3775
    self drawableId isNil ifTrue:[self create].
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3776
    self graphicsDevice raiseWindowToTop:self drawableId
269
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
     Transcript topView raise
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3780
    "
6121
17d2c885beac class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6119
diff changeset
  3781
17d2c885beac class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6119
diff changeset
  3782
    "Modified: / 29-08-2013 / 16:19:02 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3783
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3784
5680
66a7359fc640 added: #scrolledView
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  3785
scrolledView
66a7359fc640 added: #scrolledView
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  3786
    "for compatibility with scrolledView, return myself.
66a7359fc640 added: #scrolledView
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  3787
     So you can ignore the scrollability of a component when accessing it,
6880
f2af2640ad4d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6864
diff changeset
  3788
     without a need to ask for being a scrollwrapper first.
f2af2640ad4d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6864
diff changeset
  3789
     Eg, you can send someView scrolledView to get the underlying view,
f2af2640ad4d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6864
diff changeset
  3790
     without a danger of a DNU, if the component is not scrolled."
5680
66a7359fc640 added: #scrolledView
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  3791
66a7359fc640 added: #scrolledView
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  3792
    ^ self
66a7359fc640 added: #scrolledView
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  3793
66a7359fc640 added: #scrolledView
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  3794
    "Created: / 22-01-2011 / 12:00:41 / cg"
66a7359fc640 added: #scrolledView
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  3795
!
66a7359fc640 added: #scrolledView
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  3796
3625
e8664f0060b5 + setContainer:
Claus Gittinger <cg@exept.de>
parents: 3617
diff changeset
  3797
setContainer:aContainer
e8664f0060b5 + setContainer:
Claus Gittinger <cg@exept.de>
parents: 3617
diff changeset
  3798
    "set my container (i.e. superView) to be aContainer"
e8664f0060b5 + setContainer:
Claus Gittinger <cg@exept.de>
parents: 3617
diff changeset
  3799
e8664f0060b5 + setContainer:
Claus Gittinger <cg@exept.de>
parents: 3617
diff changeset
  3800
    superView := aContainer
e8664f0060b5 + setContainer:
Claus Gittinger <cg@exept.de>
parents: 3617
diff changeset
  3801
!
e8664f0060b5 + setContainer:
Claus Gittinger <cg@exept.de>
parents: 3617
diff changeset
  3802
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3803
subViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3804
    "return the collection of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3805
3626
fa436ffc8ae7 subViews always returns a collection
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3806
    ^ subViews ? #()
269
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
subViews:aListOfViews
5214
b87c11b492f5 Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 5211
diff changeset
  3810
    <resource: #obsolete>
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3811
    "set the collection of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3812
3616
0ddaf2ce9b06 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3614
diff changeset
  3813
    self obsoleteMethodWarning.
0ddaf2ce9b06 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3614
diff changeset
  3814
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3815
    subViews := aListOfViews.
135
claus
parents:
diff changeset
  3816
    subViews notNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3817
	subViews do:[:view |
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3818
	    view container:self
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  3819
	]
135
claus
parents:
diff changeset
  3820
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3821
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3822
    "Modified: 9.5.1996 / 00:42:28 / cg"
135
claus
parents:
diff changeset
  3823
!
claus
parents:
diff changeset
  3824
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3825
superView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3826
    "return my superView"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3827
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3828
    ^ superView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3829
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3830
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3831
superView:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3832
    "set my superView to be aView"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3833
3434
f76f82ce8f28 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3425
diff changeset
  3834
    <resource:#obsolete>
f76f82ce8f28 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3425
diff changeset
  3835
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3836
    self obsoleteMethodWarning:'use #container:'.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3837
    self container:aView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3838
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  3839
    "Modified: 9.5.1996 / 00:46:24 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3840
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3841
662
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3842
topComponent
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3843
    "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
  3844
     For ST-80 compatibility."
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3845
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3846
    ^ self topView
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3847
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3848
    "Modified: 9.5.1996 / 01:40:24 / cg"
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3849
!
8263420fe544 added #topComponent for VisualPart protocol compatibility
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3850
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3851
topView
6643
cb79c35159b4 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  3852
    "return the topView - that's the one with no superview"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3853
3425
9b2a3191f47b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3423
diff changeset
  3854
    |v next n|
9b2a3191f47b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3423
diff changeset
  3855
9b2a3191f47b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3423
diff changeset
  3856
    n := 1.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3857
    v := self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3858
    [v notNil] whileTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3859
	(next := v container) isNil ifTrue:[^ v].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3860
	v := next.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3861
	n := n + 1.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3862
	n > 1000 ifTrue:[self error:'circular superView chain'].
135
claus
parents:
diff changeset
  3863
    ].
claus
parents:
diff changeset
  3864
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3865
    ^ nil
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3866
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3867
    "Modified: 5.6.1996 / 01:09:12 / cg"
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3868
!
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3869
5211
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3870
uuidStringOrName
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3871
    |uuid|
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3872
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3873
    (uuid := self uuid) isNil ifTrue: [^ self name].
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3874
    ^ uuid printString
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3875
!
569dcac3ee7d hierarchicalUUID fix for duplicate viewNames
fm
parents: 5202
diff changeset
  3876
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3877
view
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3878
    "return my view - for real views, thats the receiver.
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3879
     For wrappers, its the real view that contains it"
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3880
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3881
    ^ self
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3882
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  3883
    "Created: 4.6.1996 / 21:32:11 / cg"
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3886
!SimpleView methodsFor:'accessing-menus'!
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
menuHolder
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3889
    "who has the menu ?
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3890
     By default, I have it."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3891
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3892
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3893
!
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
menuMessage
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3896
    "Return the symbol sent to myself to aquire the menu"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3897
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3898
    ^ #middleButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3899
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3900
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3901
menuPerformer
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  3902
    "who should perform the menu actions ?
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3903
     By default, I do it."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3904
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3905
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3906
!
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
yellowButtonMenu
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3909
    "actually, this should be called 'middleButtonMenu'.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3910
     But for ST-80 compatibility ....
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3911
     This method will vanish, once all views have controllers
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3912
     associated with them; for now, duplicate some code also found in
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3913
     controller."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3914
3821
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3915
    |sym menuHolder|
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3916
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  3917
    menuHolder := self menuHolder.
3821
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3918
    menuHolder isNil ifTrue:[^ nil].
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3919
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3920
    (menuHolder isKindOf:Menu) ifTrue:[^ menuHolder].
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3921
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3922
    sym := self menuMessage.
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3923
    sym isNil ifTrue:[^ nil].
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3924
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3925
    "
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3926
     mhmh - for backward compatibility, try to ask
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3927
     the model first, then use the views menu.
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3928
    "
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3929
    (menuHolder respondsTo:sym) ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3930
	(self respondsTo:sym) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3931
	    menuHolder := self
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3932
	]
5292
7a7caa9d3e7a changed #yellowButtonMenu
Claus Gittinger <cg@exept.de>
parents: 5290
diff changeset
  3933
    ].
7a7caa9d3e7a changed #yellowButtonMenu
Claus Gittinger <cg@exept.de>
parents: 5290
diff changeset
  3934
7a7caa9d3e7a changed #yellowButtonMenu
Claus Gittinger <cg@exept.de>
parents: 5290
diff changeset
  3935
    sym numArgs > 0 ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  3936
	"/ squeak compatibility (with args): create the empty menu here, let model add items
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3937
	^ menuHolder perform:sym withOptionalArgument:(Menu new) and:(self graphicsDevice shiftDown).
3894
9ce47094d67e menu: squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  3938
    ].
9ce47094d67e menu: squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  3939
3821
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3940
    "
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3941
     ask the menuHolder for the menu
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3942
    "
42ec29c44e21 special case: menuHolder is already a menu.
tm
parents: 3820
diff changeset
  3943
    ^ menuHolder perform:sym.
135
claus
parents:
diff changeset
  3944
! !
claus
parents:
diff changeset
  3945
claus
parents:
diff changeset
  3946
!SimpleView methodsFor:'accessing-misc'!
claus
parents:
diff changeset
  3947
claus
parents:
diff changeset
  3948
bitGravity
7014
c6314e2eacb8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7011
diff changeset
  3949
    "return the bitGravity - that's the direction where the contents will move
135
claus
parents:
diff changeset
  3950
     when the the view is resized."
claus
parents:
diff changeset
  3951
claus
parents:
diff changeset
  3952
    ^ bitGravity
claus
parents:
diff changeset
  3953
!
claus
parents:
diff changeset
  3954
claus
parents:
diff changeset
  3955
bitGravity:gravity
7014
c6314e2eacb8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7011
diff changeset
  3956
    "set the bitGravity - that's the direction where the contents will move
135
claus
parents:
diff changeset
  3957
     when the view is resized."
claus
parents:
diff changeset
  3958
claus
parents:
diff changeset
  3959
    bitGravity ~~ gravity ifTrue:[
7014
c6314e2eacb8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7011
diff changeset
  3960
        bitGravity := gravity.
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  3961
	gc bitGravity:gravity.
135
claus
parents:
diff changeset
  3962
    ]
claus
parents:
diff changeset
  3963
!
claus
parents:
diff changeset
  3964
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  3965
clippingBounds:aRectangleOrNil
153
claus
parents: 151
diff changeset
  3966
    "set the clipping rectangle for drawing (in logical coordinates);
754
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  3967
     a nil argument turns off clipping (i.e. whole view is drawable).
153
claus
parents: 151
diff changeset
  3968
     Redefined to care for any margin."
claus
parents: 151
diff changeset
  3969
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  3970
    |x y w h currentClippingBounds newBounds|
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3971
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  3972
    currentClippingBounds := gc clippingBoundsOrNil.
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  3973
    (currentClippingBounds = aRectangleOrNil) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3974
	^ self
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  3975
    ].
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  3976
    newBounds := aRectangleOrNil.
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  3977
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  3978
    aRectangleOrNil notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3979
	|currentTransformation pO pC|
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3980
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3981
	x := aRectangleOrNil left.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3982
	y := aRectangleOrNil top.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3983
	w := aRectangleOrNil width.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3984
	h := aRectangleOrNil height.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3985
	currentTransformation := gc transformation.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3986
	currentTransformation notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3987
		pO := currentTransformation transformPoint:x@y.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3988
		pC := currentTransformation transformPoint:(x+w-1)@(y+h-1).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3989
		x := pO x.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3990
		y := pO y.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3991
		w := pC x - x + 1.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3992
		h := pC y - y + 1.
6694
223cc6f806af class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6649
diff changeset
  3993
"/                x := currentTransformation applyToX:x.
223cc6f806af class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6649
diff changeset
  3994
"/                y := currentTransformation applyToY:y.
223cc6f806af class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6649
diff changeset
  3995
"/                w := currentTransformation applyScaleX:w.
223cc6f806af class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6649
diff changeset
  3996
"/                h := currentTransformation applyScaleY:h.
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3997
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3998
	(x isMemberOf:SmallInteger) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  3999
	    w := w + (x - x truncated).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4000
	    x := x truncated
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4001
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4002
	(y isMemberOf:SmallInteger) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4003
	    h := h + (y - y truncated).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4004
	    y := y truncated
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4005
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4006
	(w isMemberOf:SmallInteger) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4007
	    w := w truncated + 1
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4008
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4009
	(h isMemberOf:SmallInteger) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4010
	    h := h truncated + 1
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4011
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4012
	x < margin ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4013
	    x := margin.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4014
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4015
	y < margin ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4016
	    y := margin.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4017
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4018
	x + w - 1 >= (width-margin) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4019
	    w := width - margin - x
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4020
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4021
	y + h - 1 >= (height-margin) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4022
	    h := height - margin - y
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4023
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4024
	w := w max:0.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4025
	h := h max:0.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4026
	newBounds := Rectangle left:x top:y width:w height:h.
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  4027
    ].
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  4028
    gc deviceClippingBounds:newBounds
737
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  4029
f194e4851d83 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
  4030
    "Created: 28.5.1996 / 19:50:03 / cg"
754
a50c0b52aa82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 753
diff changeset
  4031
    "Modified: 28.5.1996 / 22:32:15 / cg"
153
claus
parents: 151
diff changeset
  4032
!
claus
parents: 151
diff changeset
  4033
claus
parents: 151
diff changeset
  4034
fullName
claus
parents: 151
diff changeset
  4035
    "return my full name to be used for resource-access"
claus
parents: 151
diff changeset
  4036
claus
parents: 151
diff changeset
  4037
    superView notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4038
	^ superView fullName , '.' , self name
5290
5c7a67abec31 name setup lazy
Claus Gittinger <cg@exept.de>
parents: 5289
diff changeset
  4039
    ].
5c7a67abec31 name setup lazy
Claus Gittinger <cg@exept.de>
parents: 5289
diff changeset
  4040
    ^ self name
153
claus
parents: 151
diff changeset
  4041
!
claus
parents: 151
diff changeset
  4042
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4043
name
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4044
    "return my name component to be used for resource-access"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4045
5290
5c7a67abec31 name setup lazy
Claus Gittinger <cg@exept.de>
parents: 5289
diff changeset
  4046
    name isNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4047
	name := self class name "asString" asLowercaseFirst
5290
5c7a67abec31 name setup lazy
Claus Gittinger <cg@exept.de>
parents: 5289
diff changeset
  4048
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4049
    ^ name
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4050
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4051
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4052
name:aString
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4053
    "set my name component to be used for resource-access"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4054
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4055
    name := aString
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4056
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4057
153
claus
parents: 151
diff changeset
  4058
processName
claus
parents: 151
diff changeset
  4059
    "return a string to be shown in the process monitor"
claus
parents: 151
diff changeset
  4060
claus
parents: 151
diff changeset
  4061
    ^ self name
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4062
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4063
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4064
styleSheet
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4065
    "return the styleSheet. This is set at early view-creation time,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4066
     from the defaultStyleSheet which is valid at that time.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4067
     It is not affected by later defaultStyle changes"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4068
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4069
    ^ styleSheet
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4070
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4071
    "Created: 10.9.1995 / 11:02:20 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4072
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4073
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4074
styleSheet:aStyleSheet
3384
4af722e8336c allow change of the styleSheet
tm
parents: 3383
diff changeset
  4075
    "change the styleSheet. Knowledgable users only, please."
4af722e8336c allow change of the styleSheet
tm
parents: 3383
diff changeset
  4076
4af722e8336c allow change of the styleSheet
tm
parents: 3383
diff changeset
  4077
    styleSheet := aStyleSheet.
4af722e8336c allow change of the styleSheet
tm
parents: 3383
diff changeset
  4078
!
4af722e8336c allow change of the styleSheet
tm
parents: 3383
diff changeset
  4079
4990
0aec48bba22a temporary kludge to support both names and uuid's
fm
parents: 4978
diff changeset
  4080
uuid
5017
ea0e1c5afc63 uuid support
Claus Gittinger <cg@exept.de>
parents: 5008
diff changeset
  4081
    "return my uuid (for the pollonium st/x capture/replay tool)"
ea0e1c5afc63 uuid support
Claus Gittinger <cg@exept.de>
parents: 5008
diff changeset
  4082
ea0e1c5afc63 uuid support
Claus Gittinger <cg@exept.de>
parents: 5008
diff changeset
  4083
    ^ uuid
4990
0aec48bba22a temporary kludge to support both names and uuid's
fm
parents: 4978
diff changeset
  4084
!
0aec48bba22a temporary kludge to support both names and uuid's
fm
parents: 4978
diff changeset
  4085
0aec48bba22a temporary kludge to support both names and uuid's
fm
parents: 4978
diff changeset
  4086
uuid:aUUID
5017
ea0e1c5afc63 uuid support
Claus Gittinger <cg@exept.de>
parents: 5008
diff changeset
  4087
    "set my uuid (for the pollonium st/x capture/replay tool)"
ea0e1c5afc63 uuid support
Claus Gittinger <cg@exept.de>
parents: 5008
diff changeset
  4088
ea0e1c5afc63 uuid support
Claus Gittinger <cg@exept.de>
parents: 5008
diff changeset
  4089
    uuid := aUUID
4990
0aec48bba22a temporary kludge to support both names and uuid's
fm
parents: 4978
diff changeset
  4090
!
0aec48bba22a temporary kludge to support both names and uuid's
fm
parents: 4978
diff changeset
  4091
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4092
viewGravity
7014
c6314e2eacb8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7011
diff changeset
  4093
    "return the viewGravity - that's the direction where the view will move
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4094
     when the superView is resized."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4095
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4096
    ^ viewGravity
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4097
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4098
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4099
viewGravity:gravity
7014
c6314e2eacb8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7011
diff changeset
  4100
    "set the viewGravity - that's the direction where the view will move
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4101
     when the superView is resized."
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
    viewGravity ~~ gravity ifTrue:[
7014
c6314e2eacb8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7011
diff changeset
  4104
        viewGravity := gravity.
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  4105
	gc viewGravity:gravity.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4106
    ]
140
claus
parents: 138
diff changeset
  4107
! !
claus
parents: 138
diff changeset
  4108
claus
parents: 138
diff changeset
  4109
!SimpleView methodsFor:'accessing-mvc'!
claus
parents: 138
diff changeset
  4110
1187
c41d3a2591fd added #application - in case a non-topView is opened as topView,
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  4111
application
c41d3a2591fd added #application - in case a non-topView is opened as topView,
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  4112
    "return the application, under which this view was opened,
c41d3a2591fd added #application - in case a non-topView is opened as topView,
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  4113
     or nil, if there is no application"
c41d3a2591fd added #application - in case a non-topView is opened as topView,
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  4114
1751
15381229b2d8 accessing application through superView (not topView)
ca
parents: 1750
diff changeset
  4115
    superView notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4116
	^ superView application
1187
c41d3a2591fd added #application - in case a non-topView is opened as topView,
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  4117
    ].
c41d3a2591fd added #application - in case a non-topView is opened as topView,
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  4118
    ^ nil
c41d3a2591fd added #application - in case a non-topView is opened as topView,
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  4119
1190
2ae6212c581d avoid recursion trouble
Claus Gittinger <cg@exept.de>
parents: 1187
diff changeset
  4120
    "Modified: 13.1.1997 / 20:30:31 / cg"
1187
c41d3a2591fd added #application - in case a non-topView is opened as topView,
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  4121
!
c41d3a2591fd added #application - in case a non-topView is opened as topView,
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  4122
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4123
aspect:aspectSymbol
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4124
    "ST-80 style updating: If a views aspectSymbol is nonNil,
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4125
     it will respond to changes of this aspect from the model.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4126
     Alias for aspectMessage: for ST-80 compatibility."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4127
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4128
    self aspectMessage:aspectSymbol
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
140
claus
parents: 138
diff changeset
  4131
controller
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4132
    "return the controller. For views which implement the controller
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4133
     functionality themself, return the receiver itself"
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4134
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4135
    ^ controller ? self
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4136
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4137
    "Modified: / 31.10.1997 / 19:58:10 / cg"
140
claus
parents: 138
diff changeset
  4138
!
claus
parents: 138
diff changeset
  4139
claus
parents: 138
diff changeset
  4140
controller:aController
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4141
    "set the controller - thats the one handling user events"
140
claus
parents: 138
diff changeset
  4142
claus
parents: 138
diff changeset
  4143
    controller := aController.
claus
parents: 138
diff changeset
  4144
    controller notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4145
	controller view:self.
135
claus
parents:
diff changeset
  4146
    ]
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4147
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4148
    "Modified: / 31.10.1997 / 19:58:33 / cg"
135
claus
parents:
diff changeset
  4149
!
claus
parents:
diff changeset
  4150
140
claus
parents: 138
diff changeset
  4151
model
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  4152
    "return nil - simpleViews have no model (only providing geometric)"
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  4153
135
claus
parents:
diff changeset
  4154
    ^ nil
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  4155
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  4156
    "Modified: 5.6.1996 / 14:17:29 / cg"
135
claus
parents:
diff changeset
  4157
!
claus
parents:
diff changeset
  4158
1182
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  4159
sensor
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  4160
    "return the views sensor"
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  4161
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  4162
    windowGroup notNil ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4163
	^ windowGroup sensor.
3856
45fccc92d834 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3838
diff changeset
  4164
    ].
45fccc92d834 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3838
diff changeset
  4165
4209
af2ef9ba90c5 typo in comment
Stefan Vogel <sv@exept.de>
parents: 4196
diff changeset
  4166
    "there is no window group. Deliver events synchronously"
3856
45fccc92d834 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3838
diff changeset
  4167
45fccc92d834 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3838
diff changeset
  4168
    ^ SynchronousWindowSensor new.
1182
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  4169
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  4170
    "Modified: 10.1.1997 / 19:47:13 / cg"
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  4171
!
e28b15d4ef95 comments
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  4172
954
3c3c99d3b40a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  4173
setController:aController
3c3c99d3b40a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  4174
    "set the controller but do not affect the model/view releationship"
3c3c99d3b40a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  4175
3c3c99d3b40a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  4176
    controller := aController.
3c3c99d3b40a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  4177
3c3c99d3b40a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  4178
    "Created: 18.7.1996 / 11:43:40 / cg"
3c3c99d3b40a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  4179
!
3c3c99d3b40a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  4180
1874
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4181
setWindowGroup:aGroup
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4182
    "set the window group."
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4183
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4184
    windowGroup := aGroup
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4185
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4186
    "Created: 19.8.1997 / 17:58:35 / cg"
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4187
!
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4188
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4189
windowGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4190
    "return the window group. For old style views, return nil"
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
    ^ windowGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4193
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4194
1874
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4195
windowGroup:newGroup
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4196
    "set the window group of myself and recursively of any children.
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4197
     If I am currently in a group, remove me from it it."
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4198
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4199
    windowGroup notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4200
	windowGroup removeView:self.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4201
	windowGroup := nil
1874
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4202
    ].
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4203
    windowGroup := newGroup.
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4204
    newGroup notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4205
	newGroup addView:self.
1877
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  4206
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  4207
    ].
1874
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4208
    subViews notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4209
	subViews do:[:aSubview |
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4210
	    aSubview windowGroup:newGroup
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4211
	]
1874
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4212
    ].
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  4213
1877
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  4214
    "Modified: 20.8.1997 / 13:26:37 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4215
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4216
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4217
!SimpleView methodsFor:'accessing-transformation'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4218
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4219
maxComponentBottom
5623
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  4220
    "return the maximum of all components bottoms"
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4221
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4222
    components isNil ifTrue:[^ 0].
5623
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  4223
    ^ components inject:0 into:[:maxSoFar :sub | (sub bottom) max:maxSoFar].
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  4224
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  4225
    "Created: / 26-05-1996 / 12:44:05 / cg"
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  4226
    "Modified: / 22-10-2010 / 10:49:08 / cg"
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4227
!
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4228
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4229
maxComponentRight
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4230
    "return the maximum of all components rights"
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4231
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4232
    components isNil ifTrue:[^ 0].
5623
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  4233
    ^ components inject:0 into:[:maxSoFar :sub | (sub right) max:maxSoFar].
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  4234
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  4235
    "Created: / 26-05-1996 / 13:02:19 / cg"
41308e6e401a comment/format in: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5617
diff changeset
  4236
    "Modified: / 22-10-2010 / 10:48:53 / cg"
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4237
!
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  4238
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4239
maxSubViewBottom
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4240
"/    subViews isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4241
"/    ^ 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
  4242
      ^ 0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4243
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4244
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4245
maxSubViewRight
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4246
"/    subViews isNil ifTrue:[^ 0].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4247
"/    ^ 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
  4248
    ^ 0
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4251
scale:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4252
    "set the scale factor of the transformation"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4253
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  4254
    super scale:aPoint.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4255
    self computeInnerClip
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4256
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4257
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4258
setViewOrigin:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4259
    "set the viewOrigin - i.e. virtually scroll without redrawing"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4260
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  4261
    |currentTransformation|
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  4262
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4263
    currentTransformation := gc transformation.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4264
    currentTransformation isNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4265
	(aPoint x ~~ 0 or:[aPoint y ~~ 0]) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4266
	    gc transformation:(WindowingTransformation scale:1 translation:aPoint negated).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4267
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4268
    ] ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4269
	currentTransformation translation:aPoint negated.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4270
    ].
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4271
    self clippingBoundsOrNil notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4272
	self setInnerClip.
269
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
viewOrigin
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4277
    "return the viewOrigin; thats the coordinate of the contents
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4278
     which is shown topLeft in the view
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4279
     (i.e. the origin of the visible part of the contents)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4280
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4281
    |currentTransformation|
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4282
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4283
    currentTransformation := gc transformation.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4284
    currentTransformation isNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4285
	^ 0@0
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4286
    ].
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4287
    ^ currentTransformation translation negated
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4288
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4289
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
  4290
visibleArea
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
  4291
    "return the rectangle that contains the visible part
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
  4292
     of the view in user coordinates."
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
  4293
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
  4294
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4295
    |currentTransformation|
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4296
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4297
    currentTransformation := gc transformation.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4298
    currentTransformation isNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4299
	^ Rectangle left:0 top:0 width:width height:height.
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
  4300
    ].
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4301
    ^ Rectangle origin:(currentTransformation translation negated)
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4302
		extent:((width @ height) scaledBy:(currentTransformation scale)).
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
  4303
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
  4304
    "Created: 12.7.1996 / 11:57:04 / stefan"
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
  4305
!
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
  4306
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4307
xOriginOfContents
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4308
    "return the x coordinate of the viewOrigin in pixels;
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4309
     used by scrollBars to compute thumb position within the document."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4310
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4311
    ^ self viewOrigin x
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4312
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4313
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4314
yOriginOfContents
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4315
    "return the y coordinate of the viewOrigin in pixels;
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4316
     used by scrollBars to compute thumb position within the document."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4317
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4318
    ^ self viewOrigin y
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4319
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4320
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4321
!SimpleView methodsFor:'accessing-visibility'!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4322
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4323
beInvisible
1524
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4324
    "make the view invisible; if my container is visible,
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4325
     change visibility immediately;
1524
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4326
     otherwise, arrange for the receiver to be not realized,
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4327
     when the container is made visible."
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4328
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4329
    self hiddenOnRealize:true.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4330
    realized ifTrue:[
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4331
	(superView isNil              "/ I am a topView
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4332
	or:[superView realized        "/ superview already shown
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4333
	or:[superView id notNil]])     "/ superview already created
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4334
	    ifTrue:[
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4335
		self unmap
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4336
	    ]
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4337
    ]
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4338
1524
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4339
    "Modified: 3.4.1997 / 21:20:40 / cg"
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4340
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4341
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4342
beVisible
1524
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4343
    "make the view visible; if my container is already visible,
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4344
     change visibility immediately; otherwise, arrange for the receiver
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4345
     to be made visible when the container is made visible.
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4346
     Notice, that the command may not be sent immediately to the display,
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4347
     and that ST/X considers the view to be still invisible until a
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4348
     visibility event arrives from the display.
1754
a718886d78d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1751
diff changeset
  4349
     Thus, the view may remain logically invisible
1524
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4350
     for a while. (see #beVisibleNow for more on this)"
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4351
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4352
    self hiddenOnRealize:false.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4353
    realized ifFalse:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4354
	superView isNil ifTrue:[                "/ I am a topView
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4355
	    self drawableId isNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4356
		"this once was:
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4357
		   self realize.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4358
		 but we don't want Topviews to realize implicitly.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4359
		 BTW. the code doesn't work anyway"
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4360
	    ] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4361
		self remap.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4362
	    ].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4363
	] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4364
	    (superView realized          "/ superview already shown
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4365
	    or:[superView id notNil])    "/ superview already created
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4366
	    ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4367
		self realize
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4368
	    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4369
	].
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4370
    ]
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4371
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4372
    "
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4373
     |top topFrame check list|
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4374
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4375
     top := StandardSystemView new.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4376
     top extent:150@400.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4377
     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
  4378
     topFrame horizontalLayout:#leftSpace.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4379
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4380
     topFrame add:(check := CheckBox label:'hidden').
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4381
     check pressAction:[list beInvisible].
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4382
     check releaseAction:[list beVisible].
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4383
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4384
     list := ScrollableView for:SelectionInListView.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4385
     list origin:0.0@0.4 corner:1.0@1.0.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4386
     list list:#('foo' 'bar' 'baz').
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4387
     top add:list.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4388
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4389
     check turnOn.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4390
     list beInvisible.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4391
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4392
     top open
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4393
    "
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4394
1981
0c3b8ef42df8 Take care of views with nil visibleID in #beVisible
Stefan Vogel <sv@exept.de>
parents: 1960
diff changeset
  4395
    "Created: / 22.9.1995 / 15:50:33 / claus"
0c3b8ef42df8 Take care of views with nil visibleID in #beVisible
Stefan Vogel <sv@exept.de>
parents: 1960
diff changeset
  4396
    "Modified: / 17.6.1997 / 11:23:00 / cg"
0c3b8ef42df8 Take care of views with nil visibleID in #beVisible
Stefan Vogel <sv@exept.de>
parents: 1960
diff changeset
  4397
    "Modified: / 14.1.1998 / 17:33:15 / stefan"
1524
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4398
!
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4399
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4400
beVisibleNow
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4401
    "make the view visible immediately.
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4402
     In contrast to #beVisible, this waits until the view is really
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4403
     visible."
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4404
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4405
    self beVisible.
6476
a2d1e362af6e class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6470
diff changeset
  4406
    self graphicsDevice sync.    "that's a round-trip; when returning, the view is definitely visible"
3648
95c073f74e25 comments
Claus Gittinger <cg@exept.de>
parents: 3642
diff changeset
  4407
2721
2575a1e771cc mapped event handling
Claus Gittinger <cg@exept.de>
parents: 2719
diff changeset
  4408
"/    realized := true.
2575a1e771cc mapped event handling
Claus Gittinger <cg@exept.de>
parents: 2719
diff changeset
  4409
"/    shown := true.
1524
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4410
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4411
    "Created: 3.4.1997 / 21:23:28 / cg"
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4412
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4413
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4414
hidden
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4415
    "return true, if the view does not want to be realized
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4416
     automatically when superview is realized"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4417
3434
f76f82ce8f28 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3425
diff changeset
  4418
    <resource:#obsolete>
f76f82ce8f28 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3425
diff changeset
  4419
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4420
    self obsoleteMethodWarning:'use #isHiddenOnRealize'.
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  4421
    ^ self isHiddenOnRealize
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4422
1754
a718886d78d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1751
diff changeset
  4423
    "Modified: 17.6.1997 / 11:19:55 / cg"
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4424
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4425
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4426
hidden:aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4427
    "if the argument is true, the receiver view will not
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4428
     be realized automatically when superview is realized"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4429
3434
f76f82ce8f28 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3425
diff changeset
  4430
    <resource:#obsolete>
f76f82ce8f28 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3425
diff changeset
  4431
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  4432
    self obsoleteMethodWarning:'use #hiddenOnRealize:'.
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  4433
    self hiddenOnRealize:aBoolean
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4434
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4435
    "Modified: 17.1.1996 / 11:45:06 / cg"
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4436
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4437
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4438
hiddenOnRealize:aBoolean
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4439
    "if the argument is true, the receiver view will not
1754
a718886d78d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1751
diff changeset
  4440
     be mapped (i.e. shown) automatically when the superview is realized.
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4441
     The hiddenOnRealize flag is useful to create views which are
1524
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4442
     to be made visible conditionally or later.
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4443
     For ST-80 compatibility, please use #beVisible / #beInvisible."
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4444
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  4445
    "/ hiddenOnRealize := aBoolean
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  4446
    aBoolean ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  4447
	flagBits := flagBits bitOr:FlagHiddenOnRealize
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  4448
    ] ifFalse:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  4449
	flagBits := flagBits bitClear:FlagHiddenOnRealize
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  4450
    ].
1524
7932774a0429 added #beVisibleNow
Claus Gittinger <cg@exept.de>
parents: 1494
diff changeset
  4451
1754
a718886d78d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1751
diff changeset
  4452
    "Modified: 17.6.1997 / 11:23:26 / cg"
a718886d78d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1751
diff changeset
  4453
!
a718886d78d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1751
diff changeset
  4454
a718886d78d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1751
diff changeset
  4455
isHiddenOnRealize
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  4456
    "return true, if the receiver will NOT be mapped when realized.
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  4457
     False otherwise.
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4458
     The hiddenOnRealize flag is useful to create views which are
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4459
     to be made visible conditionally or later."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4460
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  4461
    "/ ^ hiddenOnRealize
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  4462
    ^ flagBits bitTest:FlagHiddenOnRealize.
1754
a718886d78d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1751
diff changeset
  4463
a718886d78d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1751
diff changeset
  4464
    "Created: 17.6.1997 / 11:21:42 / cg"
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4465
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4466
5679
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4467
isReallyShown
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4468
    "return true, if the view is visible AND all of its containers are"
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4469
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4470
    |v|
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4471
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4472
    v := self.
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4473
    [v notNil] whileTrue:[
5707
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  4474
	v shown ifFalse:[^ false].
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  4475
	v := v container.
5679
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4476
    ].
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4477
    ^ true
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4478
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4479
    "Created: / 21-01-2011 / 15:54:18 / cg"
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4480
!
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  4481
3516
6b4bc198c7f1 added #isVisible
Claus Gittinger <cg@exept.de>
parents: 3510
diff changeset
  4482
isVisible
6b4bc198c7f1 added #isVisible
Claus Gittinger <cg@exept.de>
parents: 3510
diff changeset
  4483
    "return true, if the view is visible"
6b4bc198c7f1 added #isVisible
Claus Gittinger <cg@exept.de>
parents: 3510
diff changeset
  4484
6b4bc198c7f1 added #isVisible
Claus Gittinger <cg@exept.de>
parents: 3510
diff changeset
  4485
    ^ self realized
6b4bc198c7f1 added #isVisible
Claus Gittinger <cg@exept.de>
parents: 3510
diff changeset
  4486
!
6b4bc198c7f1 added #isVisible
Claus Gittinger <cg@exept.de>
parents: 3510
diff changeset
  4487
1938
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4488
isVisible:aBoolean
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4489
    "make the view visible or invisible"
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4490
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4491
    aBoolean ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4492
	self beVisible
1938
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4493
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4494
	self beInvisible
1938
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4495
    ]
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4496
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4497
    "Created: / 27.10.1997 / 04:23:04 / cg"
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4498
!
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4499
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4500
setVisibilityChannel:aValueHolder
3139
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  4501
    "set the valueHolder, which holds the visible boolean value"
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  4502
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4503
    visibilityChannel := aValueHolder
6087
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4504
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4505
    "
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4506
      |v h|
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4507
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4508
      v := View new.
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4509
      v visibilityChannel:(h := ValueHolder with:true).
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4510
      v open.
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4511
      Delay waitForSeconds:2.
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4512
      h value:false.
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4513
      Delay waitForSeconds:2.
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4514
      h value:true.
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4515
      Delay waitForSeconds:2.
fa548561a48a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6082
diff changeset
  4516
    "
3139
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  4517
!
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  4518
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4519
shown
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4520
    "return true if the view is shown; false if not.
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4521
     Shown means: the view is mapped and is not completely covered."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4522
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4523
    ^ shown
3366
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
  4524
!
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
  4525
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4526
visibilityChannel
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4527
    "return a valueHolder for visible/invisible"
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4528
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4529
    ^ visibilityChannel
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4530
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4531
    "Modified: / 30.3.1999 / 13:49:56 / stefan"
3366
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
  4532
!
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
  4533
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4534
visibilityChannel:aValueHolder
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4535
    "set the valueHolder, which holds the visible boolean value"
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4536
3366
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
  4537
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
  4538
    |prev|
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
  4539
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4540
    prev := visibilityChannel.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4541
    visibilityChannel := aValueHolder.
3366
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
  4542
    self setupChannel:aValueHolder for:#visibilityStateChanged withOld:prev
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
  4543
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4544
    "
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4545
      |v h|
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4546
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4547
      v := View new.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4548
      v visibilityChannel:(h := ValueHolder with:true).
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4549
      v open.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4550
      Delay waitForSeconds:2.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4551
      h value:false.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4552
      Delay waitForSeconds:2.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4553
      h value:true.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4554
      Delay waitForSeconds:2.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4555
    "
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4556
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4557
    "Created: / 14.1.1998 / 17:11:15 / stefan"
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  4558
    "Modified: / 14.1.1998 / 17:33:40 / stefan"
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4559
! !
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  4560
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4561
!SimpleView methodsFor:'adding & removing components'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4562
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4563
add:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4564
    "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
  4565
     subComponents."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4566
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4567
    self addComponent:aComponent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4568
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4569
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4570
add:aComponent at:anOrigin
1335
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4571
    "for ST-80 compatibility.
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4572
     add a component at some origin"
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4573
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4574
    |l comp|
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4575
1614
480b34925127 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  4576
    comp := aComponent.
480b34925127 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  4577
480b34925127 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  4578
"/    (comp isWrapper not
480b34925127 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  4579
"/    or:[comp isLayoutWrapper not]) ifTrue:[
480b34925127 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  4580
"/        comp := LayoutWrapper on:comp
480b34925127 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  4581
"/    ].
1335
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4582
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4583
    l := anOrigin asLayout.
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4584
    comp layout:l.
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4585
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4586
    self addComponent:comp
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4587
1614
480b34925127 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  4588
    "Modified: 18.4.1997 / 20:00:20 / cg"
1335
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4589
!
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  4590
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4591
add:aComponentOrCollection in:aRectangleOrLayoutFrame
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4592
    "for ST-80 compatibility.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4593
     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
  4594
     with relative coordinates, or an instance of LayoutFrame, specifying
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4595
     both relative coordinates and the insets."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4596
1617
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4597
    |l wrapper|
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4598
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4599
    aComponentOrCollection isCollection ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4600
	wrapper := View new.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4601
	aComponentOrCollection do:[:aComponent |
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4602
	    wrapper add:aComponent
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4603
	]
1617
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4604
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4605
	wrapper := aComponentOrCollection
1617
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4606
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4607
765
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
  4608
    l := aRectangleOrLayoutFrame asLayout.
269
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
"/  will soon be replaced by:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4611
"/    aComponent layout:l.
1617
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4612
    wrapper geometryLayout:l.
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4613
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4614
    self addComponent:wrapper.
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4615
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4616
    ^ wrapper
7a9eba5beeed add:in: changed to handle collections
Claus Gittinger <cg@exept.de>
parents: 1615
diff changeset
  4617
1756
d5b82895461e removed debugHalt
Claus Gittinger <cg@exept.de>
parents: 1754
diff changeset
  4618
    "Modified: 17.6.1997 / 18:03:34 / cg"
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4621
addComponent:aComponent
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4622
    "components (i.e. gadgets or lightweight views) are being prepared.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4623
     Dont use this right now for non-views"
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
    aComponent isView ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4626
	self addSubView:aComponent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4627
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4628
	components isNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4629
	    components := OrderedCollection new
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4630
	].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4631
	components add:aComponent.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4632
	aComponent container:self.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4633
	shown ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4634
	    aComponent displayOn:self
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4635
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4636
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4637
683
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  4638
    "Modified: 13.5.1996 / 21:19:51 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4639
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4640
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4641
addSubView:newView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4642
    "add a view to the collection of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4643
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4644
    subViews isNil ifTrue:[
3653
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4645
	subViews := OrderedCollection with:newView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4646
    ] ifFalse:[
3653
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4647
	(subViews includesIdentical:newView) ifTrue:[
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4648
	    self error:'trying to add a view twice' mayProceed:true.
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4649
	    ^ self.
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4650
	].
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4651
	subViews add:newView.
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4652
    ].
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4653
    self setContainerIn:newView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4654
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4655
    "Modified: 9.5.1996 / 00:47:16 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4656
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4657
5896
f7566dab943c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
  4658
addSubView:newView after:aViewOrNil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4659
    "add a view to the collection of subviews after another view.
5896
f7566dab943c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
  4660
     If the argument aViewOrNil is nil, the newView is added at the end.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4661
     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
  4662
     element at some defined place."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4663
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4664
    subViews isNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4665
	subViews := OrderedCollection with:newView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4666
    ] ifFalse:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4667
	(subViews includesIdentical:newView) ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4668
	    self error:'trying to add a view twice' mayProceed:true.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4669
	    ^ self.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4670
	].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4671
	aViewOrNil isNil ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4672
	    subViews add:newView
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4673
	] ifFalse:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4674
	    subViews add:newView after:aViewOrNil.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4675
	]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4676
    ].
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4677
    self setContainerIn:newView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4678
5896
f7566dab943c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
  4679
    "Modified: / 09-05-1996 / 00:47:20 / cg"
f7566dab943c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
  4680
    "Modified (comment): / 22-03-2012 / 10:39:04 / cg"
f7566dab943c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
  4681
!
f7566dab943c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
  4682
f7566dab943c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
  4683
addSubView:newView before:aViewOrNil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4684
    "add a view to the collection of subviews before another view.
5896
f7566dab943c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
  4685
     If the argument aViewOrNil is nil, the newView is added at the end.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4686
     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
  4687
     element at some defined place."
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
    subViews isNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4690
	subViews := OrderedCollection with:newView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4691
    ] ifFalse:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4692
	(subViews includesIdentical:newView) ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4693
	    self error:'trying to add a view twice' mayProceed:true.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4694
	    ^ self.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4695
	].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4696
	aViewOrNil isNil ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4697
	    subViews addFirst:newView
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4698
	] ifFalse:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4699
	    subViews add:newView before:aViewOrNil.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  4700
	]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4701
    ].
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4702
    self setContainerIn:newView.
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4703
5896
f7566dab943c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
  4704
    "Modified: / 09-05-1996 / 00:47:23 / cg"
f7566dab943c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
  4705
    "Modified (comment): / 22-03-2012 / 10:39:18 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4706
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4707
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4708
addSubView:aView in:bounds borderWidth:bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4709
    "for ST-80 V2.x compatibility"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4710
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4711
    aView borderWidth:bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4712
    self add:aView in:bounds.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4713
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4714
1439
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4715
addSubViewFirst:newView
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4716
    "add a view to the front of the collection of subviews"
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4717
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4718
    subViews isNil ifTrue:[
3653
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4719
	subViews := OrderedCollection with:newView
1439
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4720
    ] ifFalse:[
3653
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4721
	(subViews includesIdentical:newView) ifTrue:[
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4722
	    self error:'trying to add a view twice' mayProceed:true.
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4723
	    ^ self.
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4724
	].
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  4725
	subViews addFirst:newView.
1439
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4726
    ].
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4727
    self setContainerIn:newView.
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4728
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4729
    "Modified: 9.5.1996 / 00:47:16 / cg"
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4730
    "Created: 6.3.1997 / 18:43:38 / cg"
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4731
!
55d0f63f8a0b added #addSubViewFirst:
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  4732
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4733
component:aComponent
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4734
    "components (i.e. gadgets or lightweight views) are being prepared.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4735
     Dont use this right now for non-views"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4736
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4737
    aComponent origin:0.0@0.0 corner:1.0@1.0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4738
    aComponent isView ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4739
	self addSubView:aComponent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4740
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4741
	components := OrderedCollection with:aComponent.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4742
	aComponent container:self.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4743
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4744
	shown ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4745
	    aComponent displayOn:self
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4746
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4747
    ]
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4748
683
ecc5d13f22b2 redraw new components if already visible
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  4749
    "Modified: 13.5.1996 / 21:20:29 / cg"
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4752
destroySubViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4753
    "remove all subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4754
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4755
    subViews notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4756
	subViews copy do:[:aSubView |
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4757
	    aSubView destroy.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4758
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4759
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4760
	"/ paranoia ;-)
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4761
	subViews size ~~ 0 ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4762
	    (self class name , ' >>View [warning]: some subView(s) did not destroy: ' , subViews printString) infoPrintCR.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4763
	    subViews := nil
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4764
	].
5245
af593d6e31a9 handle non-view components in destroySubViews
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  4765
    ].
af593d6e31a9 handle non-view components in destroySubViews
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  4766
af593d6e31a9 handle non-view components in destroySubViews
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  4767
    components notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4768
	components copy do:[:aComponent |
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4769
	    aComponent destroy.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4770
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  4771
	components := nil.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4772
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4773
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4774
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4775
removeComponent:aComponent
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4776
    "components (i.e. gadgets or lightweight views) are being prepared.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4777
     Dont use this right now for non-views"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4778
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4779
    aComponent isView ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  4780
	self removeSubView:aComponent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4781
    ] ifFalse:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  4782
	components isNil ifTrue:[^self].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  4783
	components remove:aComponent ifAbsent:[].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  4784
	aComponent container:nil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4785
    ]
4579
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  4786
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  4787
    "Modified: / 11-09-2006 / 17:14:30 / User"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4788
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4789
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4790
removeSubView:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4791
    "remove a view from the collection of subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4792
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4793
    subViews notNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4794
	subViews remove:aView ifAbsent:[nil].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4795
	aView setContainer:nil.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4796
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4797
	(subViews size == 0) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4798
	    subViews := nil
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4799
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4800
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4801
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4802
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4803
setContainerIn:aView
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4804
    "common code for addSubView* methods"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4805
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4806
    aView container:self.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4807
    (aView graphicsDevice ~~ self graphicsDevice) ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4808
	'SimpleView [warning]: subview (' errorPrint. aView class name errorPrint.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4809
	') has different device than me (' errorPrint.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4810
	self class name errorPrint. ').' errorPrintCR.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  4811
	aView device:self graphicsDevice
3616
0ddaf2ce9b06 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3614
diff changeset
  4812
    ].
660
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4813
2ae938f29875 renamed #superView: to #container (migration towards ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  4814
    "Created: 9.5.1996 / 00:46:59 / cg"
1172
a69398754511 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1161
diff changeset
  4815
    "Modified: 10.1.1997 / 18:06:49 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4816
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4817
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4818
!SimpleView methodsFor:'change & update'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4819
1437
9fb2c38adb79 added #changedPreferredBounds for compatibility
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  4820
changedPreferredBounds:someArgument
9fb2c38adb79 added #changedPreferredBounds for compatibility
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  4821
    "tell any dependents, that I have changed my preferred bounds;
9fb2c38adb79 added #changedPreferredBounds for compatibility
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  4822
     Interface is provided mostly provided for ST80 compatibility;
9fb2c38adb79 added #changedPreferredBounds for compatibility
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  4823
     here, translate into ST/X's mechanism for telling others about this."
9fb2c38adb79 added #changedPreferredBounds for compatibility
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  4824
9fb2c38adb79 added #changedPreferredBounds for compatibility
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  4825
    ^ self changed:#preferredExtent
9fb2c38adb79 added #changedPreferredBounds for compatibility
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  4826
9fb2c38adb79 added #changedPreferredBounds for compatibility
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  4827
    "Modified: 6.3.1997 / 16:12:02 / cg"
9fb2c38adb79 added #changedPreferredBounds for compatibility
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  4828
!
9fb2c38adb79 added #changedPreferredBounds for compatibility
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  4829
4038
538491244f6f preps for handling language changes
Claus Gittinger <cg@exept.de>
parents: 3968
diff changeset
  4830
languageChanged
538491244f6f preps for handling language changes
Claus Gittinger <cg@exept.de>
parents: 3968
diff changeset
  4831
!
538491244f6f preps for handling language changes
Claus Gittinger <cg@exept.de>
parents: 3968
diff changeset
  4832
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4833
update:aspect with:aParameter from:changedObject
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4834
    "an update request"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4835
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4836
    aspect == #sizeOfView ifTrue:[
6778
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  4837
        "one of the views we depend on changed its size"
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  4838
        "/ cg: #containerChangedSize has already been sent by the caller
366410d32851 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6748
diff changeset
  4839
        ^ self "containerChangedSize".
3730
00bc72f859c5 code beautified
Claus Gittinger <cg@exept.de>
parents: 3715
diff changeset
  4840
    ].
00bc72f859c5 code beautified
Claus Gittinger <cg@exept.de>
parents: 3715
diff changeset
  4841
    super update:aspect with:aParameter from:changedObject
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  4842
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  4843
    "Modified: 19.7.1996 / 17:30:48 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4844
! !
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
!SimpleView methodsFor:'cursor animation'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4847
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4848
showBusyWhile:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4849
    "evaluate some time consuming block, while doing this,
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4850
     show a spinning wheel cursor. If those bitmaps are not found,
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4851
     fallback to the standard busy cursor.
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4852
     Experimental."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4853
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4854
    |ok bitmaps cursors maskForm process oldCursor|
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4855
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4856
    oldCursor := cursor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4857
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4858
    ok := true.
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  4859
    bitmaps := #('wheel1' 'wheel2' 'wheel3' 'wheel4')
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4860
	       collect:[:name |
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4861
		   |f|
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4862
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4863
		   f := Smalltalk imageFromFileNamed:(name , '.xbm') forClass:self class.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4864
		   f isNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4865
			('SimpleView [warning]: no bitmap file: ' , name , '.xbm') errorPrintCR.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4866
			ok := false
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4867
		   ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4868
		   f
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4869
	       ].
1141
787b2fb75816 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 1115
diff changeset
  4870
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4871
    ok ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4872
	maskForm := Smalltalk imageFromFileNamed:'wheelm.xbm' forClass:self class.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4873
	maskForm isNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4874
	    ('SimpleView [warning]: no bitmap file: wheelm.xbm') errorPrintCR.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4875
	    ok := false
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4876
	].
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4879
    ok ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4880
	self cursor:Cursor wait.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4881
	aBlock ensure:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4882
	    self cursor:oldCursor
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4883
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4884
    ] ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4885
	cursors := bitmaps collect:[:form | (Cursor sourceForm:form
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4886
						      maskForm:maskForm
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4887
							  hotX:8
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4888
							  hotY:8) onDevice:self graphicsDevice].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4889
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4890
	process := [
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4891
		    Delay waitForSeconds:0.25.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4892
		    [
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4893
			cursors do:[:curs |
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4894
			    self cursor:curs.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4895
			    Delay waitForSeconds:0.05.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4896
			]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4897
		    ] loop.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4898
	   ] forkAt:(Processor activeProcess priority + 1).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4899
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4900
	aBlock ensure:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4901
	    process terminate.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4902
	    self cursor:oldCursor
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  4903
	]
269
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
    "
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4907
     View new realize showBusyWhile:[ Delay waitForSeconds:5 ]
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  4908
     Transcript showBusyWhile:[ Delay waitForSeconds:5 ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4909
    "
1141
787b2fb75816 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 1115
diff changeset
  4910
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  4911
    "Modified: / 31.10.1997 / 19:59:49 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4912
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  4913
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4914
!SimpleView methodsFor:'dependents access'!
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4915
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4916
addDependent:anObject
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4917
    "make the argument, anObject be a dependent of the receiver"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4918
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4919
    |wasBlocked|
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4920
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4921
    wasBlocked := OperatingSystem blockInterrupts.
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4922
    [
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4923
	|deps|
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4924
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4925
	deps := dependents.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4926
	"/
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4927
	"/ store the very first dependent directly in
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4928
	"/ the dependents instVar
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4929
	"/
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4930
	(deps isNil and:[anObject isCollection not]) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4931
	    dependents := anObject
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4932
	] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4933
	    "/
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4934
	    "/ store more dependents in the dependents collection
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4935
	    "/
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4936
	    deps isCollection ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4937
		deps add:anObject
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4938
	    ] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4939
		deps == anObject ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4940
		    deps isNil ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4941
			dependents := (IdentitySet with:anObject)
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4942
		    ] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4943
			dependents := (IdentitySet with:deps with:anObject)
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4944
		    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4945
		]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4946
	    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4947
	]
3604
e32b5044a59e #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 3601
diff changeset
  4948
    ] ensure:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4949
	wasBlocked ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4950
	    OperatingSystem unblockInterrupts
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  4951
	]
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4952
    ]
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4953
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4954
    "Modified: 8.1.1997 / 23:40:30 / cg"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4955
    "Created: 11.6.1997 / 13:10:40 / cg"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4956
!
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4957
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4958
dependents
2015
f53883507ed9 comment
Claus Gittinger <cg@exept.de>
parents: 2009
diff changeset
  4959
    "return a Collection of dependents"
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4960
1938
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4961
    dependents isNil ifTrue:[^ #()].
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4962
    dependents isCollection ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4963
	^ dependents
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4964
    ].
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4965
    ^ IdentitySet with:dependents
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4966
1938
8c7584b4d61f empty dependents are returned as an empty collection.
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  4967
    "Created: / 11.6.1997 / 13:10:44 / cg"
2015
f53883507ed9 comment
Claus Gittinger <cg@exept.de>
parents: 2009
diff changeset
  4968
    "Modified: / 26.1.1998 / 11:18:36 / cg"
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4969
!
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4970
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4971
dependents:aCollection
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4972
    "set the collection of dependents"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4973
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4974
    |dep|
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4975
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4976
    aCollection size == 1 ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4977
	dep := aCollection first.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4978
	dep isCollection ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4979
	    dependents := aCollection first.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4980
	    ^ self
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4981
	]
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4982
    ].
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4983
    dependents := aCollection
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4984
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4985
    "Modified: 19.4.1996 / 12:23:05 / cg"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4986
    "Created: 11.6.1997 / 13:10:47 / cg"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4987
!
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4988
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4989
dependentsDo:aBlock
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4990
    "evaluate aBlock for all of my dependents"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4991
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4992
    |deps|
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4993
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4994
    deps := dependents.
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  4995
    deps notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4996
	deps isCollection ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4997
	    deps do:aBlock
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4998
	] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  4999
	    aBlock value:deps
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5000
	]
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5001
    ]
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5002
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5003
    "Created: 11.6.1997 / 13:10:51 / cg"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5004
!
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5005
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5006
removeDependent:anObject
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5007
    "make the argument, anObject be independent of the receiver"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5008
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5009
    |wasBlocked|
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5010
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5011
    "/ must do this save from interrupts, since the dependents collection
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5012
    "/ is possibly accessed from multiple threads.
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5013
    "/ Used to use #valueUninterruptably here; inlined that code for slightly
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5014
    "/ faster execution.
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5015
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5016
    wasBlocked := OperatingSystem blockInterrupts.
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5017
    [
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5018
	|deps sz dep|
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5019
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5020
	deps := dependents.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5021
	deps notNil ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5022
	    deps isCollection ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5023
		deps remove:anObject ifAbsent:[].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5024
		(sz := deps size) == 0 ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5025
		    dependents := nil
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5026
		] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5027
		    sz == 1 ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5028
			(dep := deps first) isCollection ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5029
			    dependents := dep
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5030
			]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5031
		    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5032
		]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5033
	    ] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5034
		deps == anObject ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5035
		    dependents := nil
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5036
		]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5037
	    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5038
	]
3604
e32b5044a59e #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 3601
diff changeset
  5039
    ] ensure:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5040
	wasBlocked ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5041
	    OperatingSystem unblockInterrupts
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5042
	]
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5043
    ]
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5044
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5045
    "Modified: 8.1.1997 / 23:41:39 / cg"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5046
    "Created: 11.6.1997 / 13:11:58 / cg"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5047
! !
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5048
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5049
!SimpleView methodsFor:'dependents access (non weak)'!
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5050
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5051
addNonWeakDependent:anObject
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5052
    "make the argument, anObject be a dependent of the receiver.
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5053
     Since all dependencies are nonWeak in Model, this is simply
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5054
     forwarded to addDependent:"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5055
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5056
    ^ self addDependent:anObject
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5057
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5058
    "Created: 11.6.1997 / 13:15:40 / cg"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5059
!
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5060
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5061
interests
2037
25c7b949b117 #interests & #weakDependents always return a collection
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
  5062
    "return a Collection of interests - empty if there is none.
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5063
     Here, we use the normal dependents collection for interests."
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5064
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5065
    ^ self dependents
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5066
2037
25c7b949b117 #interests & #weakDependents always return a collection
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
  5067
    "Modified: / 14.10.1996 / 22:19:58 / stefan"
25c7b949b117 #interests & #weakDependents always return a collection
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
  5068
    "Created: / 11.6.1997 / 13:15:44 / cg"
25c7b949b117 #interests & #weakDependents always return a collection
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
  5069
    "Modified: / 30.1.1998 / 14:07:48 / cg"
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5070
!
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5071
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5072
nonWeakDependents
2037
25c7b949b117 #interests & #weakDependents always return a collection
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
  5073
    "return a Collection of dependents - empty if there is none.
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5074
     Since all dependencies are nonWeak in Model, this is a dummy."
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5075
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5076
    ^ self dependents
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5077
2037
25c7b949b117 #interests & #weakDependents always return a collection
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
  5078
    "Created: / 11.6.1997 / 13:15:48 / cg"
25c7b949b117 #interests & #weakDependents always return a collection
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
  5079
    "Modified: / 30.1.1998 / 14:06:55 / cg"
1747
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5080
!
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5081
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5082
removeNonWeakDependent:anObject
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5083
    "make the argument, anObject be independent of the receiver.
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5084
     Since all dependencies are nonWeak in Model, this is simply
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5085
     forwarded to removeDependent:"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5086
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5087
    ^ self removeDependent:anObject
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5088
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5089
    "Created: 11.6.1997 / 13:15:52 / cg"
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5090
! !
355fdbae0104 keep dependents locally - for faster access.
Claus Gittinger <cg@exept.de>
parents: 1743
diff changeset
  5091
1308
3cb41842b48d drag & drop support
ca
parents: 1304
diff changeset
  5092
!SimpleView methodsFor:'drag & drop'!
3cb41842b48d drag & drop support
ca
parents: 1304
diff changeset
  5093
4649
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5094
canDrop:aDropContext
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5095
    "return true, if we can drop using a dropContexts information (the new drop interface).
4647
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5096
     This method should be redefined in views which can take objects"
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5097
1308
3cb41842b48d drag & drop support
ca
parents: 1304
diff changeset
  5098
    ^ false
1581
45908e82a49d drop argument is always a collection
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  5099
4649
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5100
    "Modified: / 13-10-2006 / 16:05:23 / cg"
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5101
!
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5102
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5103
canDrop:aDropContext at:positionInView
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5104
    "return true, if we can drop using a dropContexts information (the new drop interface).
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5105
     This method should be redefined in views which can take objects"
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5106
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5107
    ^ self canDrop:aDropContext
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5108
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5109
    "Modified: / 13-10-2006 / 16:05:42 / cg"
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5110
!
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5111
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5112
canDropObjects:aCollectionOfDropObjects
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5113
    "return true, if we can drop aCollectionOfDropObjects (the OLD drop interface).
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5114
     This method should be redefined in views which can take objects"
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5115
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5116
    ^ false
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5117
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5118
    "Modified: / 13-10-2006 / 16:06:03 / cg"
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5119
!
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5120
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5121
canDropObjects:aCollectionOfDropObjects at:positionInView
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5122
    "return true, if we can drop aCollectionOfDropObjects (the OLD drop interface).
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5123
     This method should be redefined in views which can take objects"
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5124
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5125
    ^ self canDropObjects:aCollectionOfDropObjects
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5126
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5127
    "Modified: / 13-10-2006 / 16:06:15 / cg"
1581
45908e82a49d drop argument is always a collection
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  5128
!
45908e82a49d drop argument is always a collection
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  5129
3947
64b185ae7d41 support autoScroll during drag operation
ca
parents: 3945
diff changeset
  5130
dragAutoScroll:aContext
64b185ae7d41 support autoScroll during drag operation
ca
parents: 3945
diff changeset
  5131
    "called by the DragAndDropManager to scroll during a drag/drop operation
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  5132
     if necassery (decided by the widget itself);
4460
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  5133
     If a scroll is done, return true otherwise false (used to restore the background).
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  5134
     By default false is returned."
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  5135
3947
64b185ae7d41 support autoScroll during drag operation
ca
parents: 3945
diff changeset
  5136
    ^ false
64b185ae7d41 support autoScroll during drag operation
ca
parents: 3945
diff changeset
  5137
!
64b185ae7d41 support autoScroll during drag operation
ca
parents: 3945
diff changeset
  5138
4649
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5139
drop:aDropContext
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5140
    "drop manager wants to drop using info in aDropContext (the new drop interface).
4647
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5141
     An error here, because this is only sent, if #canDrop: returned true;
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5142
     if you redefined #canDrop: in a subclass, #drop: must also be redefined."
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5143
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5144
    self subclassResponsibility
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5145
4649
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5146
    "Modified: / 13-10-2006 / 16:07:58 / cg"
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5147
!
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5148
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5149
drop:aDropContext at:aPoint
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5150
    "drop manager wants to drop using info in aDropContext (the new drop interface).
1308
3cb41842b48d drag & drop support
ca
parents: 1304
diff changeset
  5151
     If I have an application, forward the request.
3cb41842b48d drag & drop support
ca
parents: 1304
diff changeset
  5152
     Otherwise, ignore it. This is only sent, if #canDrop: returned true;
3cb41842b48d drag & drop support
ca
parents: 1304
diff changeset
  5153
     if you redefined #canDrop: in a subclass, #drop:at: must also be redefined."
3cb41842b48d drag & drop support
ca
parents: 1304
diff changeset
  5154
4649
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5155
    self drop:aDropContext
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5156
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5157
    "Modified: / 13-10-2006 / 16:07:41 / cg"
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5158
!
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5159
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5160
dropObjects:aCollectionOfDropObjects
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5161
    "someone wants to drop aCollectionOfDropObjects (the OLD drop interface).
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5162
     An error here, because this is only sent, if #canDrop: returned true;
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5163
     if you redefined #canDropObjects: in a subclass, #dropObjects: must also be redefined."
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5164
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5165
    self subclassResponsibility
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5166
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5167
    "Created: / 13-10-2006 / 16:06:48 / cg"
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5168
!
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5169
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5170
dropObjects:aCollectionOfDropObjects at:aPoint
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5171
    "someone wants to drop aCollectionOfDropObjects (the OLD drop interface).
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5172
     An error here, because this is only sent, if #canDrop: returned true;
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5173
     if you redefined #canDropObjects: in a subclass, #dropObjects: must also be redefined."
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5174
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5175
    self dropObjects:aCollectionOfDropObjects
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5176
939a1d4beed7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  5177
    "Created: / 13-10-2006 / 16:07:03 / cg"
3591
3f7190c5750c + dropTarget
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
  5178
!
3f7190c5750c + dropTarget
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
  5179
3f7190c5750c + dropTarget
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
  5180
dropTarget
4460
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  5181
    "returns the dropTarget or nil"
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  5182
4471
c14257db22fa dropTarget
Claus Gittinger <cg@exept.de>
parents: 4470
diff changeset
  5183
    ^ dropTarget
c14257db22fa dropTarget
Claus Gittinger <cg@exept.de>
parents: 4470
diff changeset
  5184
!
c14257db22fa dropTarget
Claus Gittinger <cg@exept.de>
parents: 4470
diff changeset
  5185
c14257db22fa dropTarget
Claus Gittinger <cg@exept.de>
parents: 4470
diff changeset
  5186
dropTarget:aDropTragetOrNil
c14257db22fa dropTarget
Claus Gittinger <cg@exept.de>
parents: 4470
diff changeset
  5187
    "set the dropTarget"
c14257db22fa dropTarget
Claus Gittinger <cg@exept.de>
parents: 4470
diff changeset
  5188
c14257db22fa dropTarget
Claus Gittinger <cg@exept.de>
parents: 4470
diff changeset
  5189
    dropTarget := aDropTragetOrNil.
1308
3cb41842b48d drag & drop support
ca
parents: 1304
diff changeset
  5190
! !
3cb41842b48d drag & drop support
ca
parents: 1304
diff changeset
  5191
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5192
!SimpleView methodsFor:'edge drawing'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5193
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5194
drawBottomEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5195
    "draw bottom 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5196
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5197
    self drawBottomEdgeLevel:level
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5198
		      shadow:shadowColor
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5199
		      light:lightColor
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5200
		      halfShadow:nil
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5201
		      halfLight:nil
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5202
		      style:nil.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5203
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5204
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5205
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
  5206
    |botFg
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5207
     count "{ Class: SmallInteger }"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5208
     b r|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5209
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5210
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5211
    count == 0 ifTrue:[^ self].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5212
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5213
    (count < 0) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5214
	botFg := lightColor.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5215
	count := count negated
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5216
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5217
	((edgeStyle == #soft) and:[level > 1]) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5218
	    botFg := halfShadowColor
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5219
	] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5220
	    botFg := shadowColor
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5221
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5222
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5223
    super paint:botFg.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5224
    super lineWidth:0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5225
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5226
    r := width - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5227
    0 to:(count - 1) do:[:i |
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5228
	b := height - 1 - i.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5229
	super displayDeviceLineFromX:i y:b toX:(r - i) y:b
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5230
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5231
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5232
    ((edgeStyle == #soft) and:[level > 1]) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5233
	b := height - 1.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5234
	super paint:shadowColor.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5235
	super displayDeviceLineFromX:1 y:b toX:r y:b.
1444
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5236
    ].
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5237
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5238
    self edgeDrawn:#bottom.
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5239
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5240
    "Modified: 7.3.1997 / 17:59:39 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5241
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5242
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5243
drawEdges
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5244
    "draw all of my 3D edges"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5245
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5246
    self drawEdgesForX:0 y:0 width:width height:height level:level
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5247
		shadow:shadowColor
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5248
		light:lightColor
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5249
		halfShadow:nil
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5250
		halfLight:nil
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5251
		style:nil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5252
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5253
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5254
drawEdgesForX:x y:y width:w height:h level:l
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5255
    "draw 3D edges into a rectangle"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5256
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5257
    self
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5258
	drawEdgesForX:x y:y width:w height:h level:l
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5259
	shadow:shadowColor light:lightColor
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5260
	halfShadow:nil halfLight:nil
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5261
	style:nil
714
2679dd9318ef clear area under components in redraw
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5262
!
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5263
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5264
drawLeftEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5265
    "draw left 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5266
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5267
    self drawLeftEdgeLevel:level
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5268
		    shadow:shadowColor
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5269
		     light:lightColor
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5270
		     halfShadow:nil
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5271
		     halfLight:nil
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5272
		     style:nil.
269
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
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5275
drawLeftEdgeLevel:level shadow:shadowColor light:lightColor halfShadow:halfShadowColor halfLight:halfLightColor style:edgeStyle
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5276
    |leftFg leftHalfFg paint b
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5277
     count "{ Class: SmallInteger }" |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5278
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5279
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5280
    count == 0 ifTrue:[^ self].
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5281
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5282
    (count < 0) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5283
	leftFg := shadowColor.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5284
	leftHalfFg := halfShadowColor.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5285
	count := count negated.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5286
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5287
	leftFg := lightColor.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5288
	leftHalfFg := halfLightColor.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5289
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5290
    leftHalfFg isNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5291
	leftHalfFg := leftFg
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5294
    ((edgeStyle == #soft) and:[level > 0]) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5295
	paint := leftHalfFg
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5296
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5297
	paint := leftFg
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5298
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5299
    super paint:paint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5300
    super lineWidth:0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5301
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5302
    b := height - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5303
    0 to:(count - 1) do:[:i |
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5304
	super displayDeviceLineFromX:i y:i toX:i y:(b - i)
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5305
    ].
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
    ((edgeStyle == #soft) and:[level > 2]) ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  5308
	super paint:(self graphicsDevice blackColor).
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5309
	super displayDeviceLineFromX:0 y:0 toX:0 y:b.
1444
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5310
    ].
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5311
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5312
    self edgeDrawn:#left.
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5313
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5314
    "Modified: 7.3.1997 / 17:59:53 / cg"
269
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
drawRightEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5318
    "draw right 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5319
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5320
    self drawRightEdgeLevel:level
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5321
		     shadow:shadowColor
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5322
		      light:lightColor
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5323
		      halfShadow:nil
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5324
		      halfLight:nil
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5325
		      style:nil.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5326
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5327
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5328
drawRightEdgeLevel:level shadow:shadowColor light:lightColor halfShadow:halfShadowColor halfLight:halfLightColor style:edgeStyle
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5329
    |rightFg
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5330
     count "{ Class: SmallInteger }"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5331
     r b|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5332
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5333
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5334
    count == 0 ifTrue:[^ self].
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
    (count < 0) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5337
	rightFg := lightColor.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5338
	count := count negated
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5339
    ] ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5340
	((edgeStyle == #soft) and:[level > 1]) ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5341
	    rightFg := halfShadowColor
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5342
	] ifFalse:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5343
	    rightFg := shadowColor
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5344
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5345
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5346
    super paint:rightFg.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5347
    super lineWidth:0.
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
    b := height - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5350
    0 to:(count - 1) do:[:i |
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5351
	r := width - 1 - i.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5352
	super displayDeviceLineFromX:r y:i toX:r y:(b - i)
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5353
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5354
    ((edgeStyle == #soft) and:[level > 1]) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5355
	r := width - 1.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5356
	super paint:shadowColor.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5357
	super displayDeviceLineFromX:r y:1 toX:r y:b.
1444
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5358
    ].
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5359
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5360
    self edgeDrawn:#right.
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5361
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5362
    "Modified: 7.3.1997 / 18:00:02 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5363
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5364
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5365
drawTopEdge
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5366
    "draw top 3D edge into window frame"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5367
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5368
    self drawTopEdgeLevel:level
6988
7e7291111e5e #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6987
diff changeset
  5369
		   shadow:shadowColor
7e7291111e5e #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6987
diff changeset
  5370
		    light:lightColor
7e7291111e5e #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6987
diff changeset
  5371
		    halfShadow:nil
7e7291111e5e #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6987
diff changeset
  5372
		    halfLight:nil
7e7291111e5e #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6987
diff changeset
  5373
		    style:nil.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5374
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5375
7011
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5376
drawTopEdgeLevel:level atY:y shadow:shadowColor light:lightColor halfShadow:halfShadowColor halfLight:halfLightColor style:edgeStyle
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5377
    |topFg topHalfFg paint r
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5378
     count "{ Class: SmallInteger }" |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5379
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5380
    count := level.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5381
    count == 0 ifTrue:[^ self].
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
    (count < 0) ifTrue:[
7011
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5384
        topFg := shadowColor.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5385
        topHalfFg := halfShadowColor.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5386
        count := count negated
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5387
    ] ifFalse:[
7011
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5388
        topFg := lightColor.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5389
        topHalfFg := halfLightColor.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5390
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5391
    topHalfFg isNil ifTrue:[
7011
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5392
        topHalfFg := topFg
269
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
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5395
    ((edgeStyle == #soft) and:[level > 0]) ifTrue:[
7011
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5396
        paint := topHalfFg
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5397
    ] ifFalse:[
7011
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5398
        paint := topFg
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5399
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5400
    super paint:paint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5401
    super lineWidth:0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5402
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5403
    r := width - 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5404
    0 to:(count - 1) do:[:i |
7011
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5405
        super displayDeviceLineFromX:i y:y+i toX:(r - i) y:y+i
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5406
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5407
    ((edgeStyle == #soft) and:[level > 2]) ifTrue:[
7011
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5408
        super paint:(self graphicsDevice blackColor).
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5409
        super displayDeviceLineFromX:0 y:y+0 toX:r y:y+0.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5410
    ].
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5411
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5412
    self edgeDrawn:#top.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5413
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5414
    "Modified: 7.3.1997 / 18:00:11 / cg"
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5415
!
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5416
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5417
drawTopEdgeLevel:level shadow:shadowColor light:lightColor halfShadow:halfShadowColor halfLight:halfLightColor style:edgeStyle
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5418
    self drawTopEdgeLevel:level atY:0 shadow:shadowColor light:lightColor halfShadow:halfShadowColor halfLight:halfLightColor style:edgeStyle
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5419
!
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5420
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5421
drawTopEdgeLevel:level y:y shadow:shadowColor light:lightColor halfShadow:halfShadowColor halfLight:halfLightColor style:edgeStyle
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5422
    |topFg topHalfFg paint r
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5423
     count "{ Class: SmallInteger }" |
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5424
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5425
    count := level.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5426
    count == 0 ifTrue:[^ self].
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5427
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5428
    (count < 0) ifTrue:[
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5429
        topFg := shadowColor.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5430
        topHalfFg := halfShadowColor.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5431
        count := count negated
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5432
    ] ifFalse:[
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5433
        topFg := lightColor.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5434
        topHalfFg := halfLightColor.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5435
    ].
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5436
    topHalfFg isNil ifTrue:[
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5437
        topHalfFg := topFg
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5438
    ].
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5439
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5440
    ((edgeStyle == #soft) and:[level > 0]) ifTrue:[
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5441
        paint := topHalfFg
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5442
    ] ifFalse:[
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5443
        paint := topFg
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5444
    ].
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5445
    super paint:paint.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5446
    super lineWidth:0.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5447
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5448
    r := width - 1.
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5449
    0 to:(count - 1) do:[:i |
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5450
        super displayDeviceLineFromX:i y:i toX:(r - i) y:i
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5451
    ].
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5452
    ((edgeStyle == #soft) and:[level > 2]) ifTrue:[
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5453
        super paint:(self graphicsDevice blackColor).
64461ec3691e #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
  5454
        super displayDeviceLineFromX:0 y:0 toX:r y:0.
1444
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5455
    ].
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5456
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5457
    self edgeDrawn:#top.
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5458
9295a5183a4c notify edge drawing
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  5459
    "Modified: 7.3.1997 / 18:00:11 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5460
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5461
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5462
redrawEdges
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5463
    "redraw my edges (if any)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5464
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5465
    (level ~~ 0) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5466
	shown ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5467
	    gc clippingBounds:nil.
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5468
	    self drawEdges.
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5469
	    gc deviceClippingBounds:innerClipRect
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5470
	]
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  5471
    ]
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  5472
2726
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  5473
    "Modified: / 25.5.1999 / 14:50:25 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5474
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5475
6468
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5476
!SimpleView methodsFor:'enumerating view hierarchy'!
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5477
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5478
allSubViewsDetect:aBlock ifNone:exceptionValue
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5479
    "find a subview for which aBlock returns true (recursively).
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5480
     If there is none, return the value from exceptionValue"
4720
eaa1e97f9028 added #allSubViewsDetect:
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
  5481
eaa1e97f9028 added #allSubViewsDetect:
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
  5482
    subViews notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5483
	subViews do:[:aSubview |
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5484
	    |v|
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5485
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5486
	    (aBlock value:aSubview) ifTrue:[ ^ aSubview ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5487
	    v := aSubview allSubViewsDetect:aBlock ifNone:nil.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5488
	    v notNil ifTrue:[^ v].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5489
	]
6468
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5490
    ].
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5491
    ^ exceptionValue value.
4720
eaa1e97f9028 added #allSubViewsDetect:
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
  5492
eaa1e97f9028 added #allSubViewsDetect:
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
  5493
    "Modified: 12.2.1997 / 12:23:38 / cg"
eaa1e97f9028 added #allSubViewsDetect:
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
  5494
!
eaa1e97f9028 added #allSubViewsDetect:
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
  5495
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5496
allSubViewsDo:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5497
    "evaluate aBlock for all subviews (recursively)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5498
1335
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  5499
    subViews notNil ifTrue:[
3653
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  5500
	subViews do:[:aSubview |
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  5501
	    aSubview withAllSubViewsDo:aBlock
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  5502
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5503
    ]
1335
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  5504
0f8aabe19349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  5505
    "Modified: 12.2.1997 / 12:23:38 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5506
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5507
6468
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5508
allSuperViewsDetect:aBlock ifNone:exceptionValue
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5509
    "find a container for which aBlock returns true (recursively).
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5510
     If there is none, return the value from exceptionValue"
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5511
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5512
    |v|
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5513
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5514
    v := self container.
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5515
    [v notNil] whileTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5516
	(aBlock value:v) ifTrue:[^ v].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5517
	v := v container.
6468
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5518
    ].
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5519
    ^ exceptionValue value
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5520
!
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5521
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5522
allSuperViewsDo:aBlock
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5523
    "evaluate aBlock for all superviews (recursively)"
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5524
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5525
    |v|
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5526
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5527
    v := self container.
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5528
    [v notNil] whileTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5529
	aBlock value:v.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  5530
	v := v container.
6468
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5531
    ].
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5532
!
2fd167f08b5d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6386
diff changeset
  5533
5548
4bc2de4d03f9 added: #allVisibleSubViewsDetect:ifNone:
Claus Gittinger <cg@exept.de>
parents: 5547
diff changeset
  5534
allVisibleSubViewsDetect:aBlock ifNone:exceptionBlock
4bc2de4d03f9 added: #allVisibleSubViewsDetect:ifNone:
Claus Gittinger <cg@exept.de>
parents: 5547
diff changeset
  5535
    "find a visible subview for which aBlock returns true (recursively)"
4bc2de4d03f9 added: #allVisibleSubViewsDetect:ifNone:
Claus Gittinger <cg@exept.de>
parents: 5547
diff changeset
  5536
4bc2de4d03f9 added: #allVisibleSubViewsDetect:ifNone:
Claus Gittinger <cg@exept.de>
parents: 5547
diff changeset
  5537
    subViews notNil ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5538
	subViews do:[:aSubview |
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5539
	    |v|
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5540
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5541
	    aSubview shown ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5542
		(aBlock value:aSubview) ifTrue:[ ^ aSubview ].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5543
		v := aSubview allVisibleSubViewsDetect:aBlock ifNone:nil.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5544
		v notNil ifTrue:[^ v].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5545
	    ].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5546
	]
5548
4bc2de4d03f9 added: #allVisibleSubViewsDetect:ifNone:
Claus Gittinger <cg@exept.de>
parents: 5547
diff changeset
  5547
    ].
4bc2de4d03f9 added: #allVisibleSubViewsDetect:ifNone:
Claus Gittinger <cg@exept.de>
parents: 5547
diff changeset
  5548
    ^ exceptionBlock value.
4bc2de4d03f9 added: #allVisibleSubViewsDetect:ifNone:
Claus Gittinger <cg@exept.de>
parents: 5547
diff changeset
  5549
!
4bc2de4d03f9 added: #allVisibleSubViewsDetect:ifNone:
Claus Gittinger <cg@exept.de>
parents: 5547
diff changeset
  5550
5254
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5551
changeSequenceOrderFor:aSubViewOrComponent to:anIndex
1984
e34624152bf3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1981
diff changeset
  5552
    "change a subview's position in the subviews collection.
5254
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5553
     Usually, this only affects the order of components in a panelView,
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5554
     unless they overlap. In that case, the later view is placed above the earlier."
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5555
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5556
    aSubViewOrComponent isView ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5557
	^ self changeSequenceOrderForComponent:aSubViewOrComponent to:anIndex
5254
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5558
    ].
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5559
    ^ self changeSequenceOrderForView:aSubViewOrComponent to:anIndex
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5560
!
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5561
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5562
changeSequenceOrderForComponent:aComponent to:anIndex
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5563
    "change a components's position in the components collection.
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5564
     The later components is drawn above the earlier."
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5565
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5566
    |removedComponent|
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5567
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5568
    (components notNil and:[components size >= anIndex]) ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5569
	removedComponent := components remove:aComponent ifAbsent:nil.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5570
	removedComponent notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5571
	    components add:removedComponent beforeIndex:anIndex.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5572
	    ^ true
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5573
	]
5254
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5574
    ].
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5575
    ^ false
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5576
!
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5577
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5578
changeSequenceOrderForView:aSubView to:anIndex
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5579
    "change a subview's position in the subviews collection.
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5580
     Usually, this only affects the order of components in a panelView,
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5581
     unless they overlap. In that case, the later view is placed above the earlier."
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5582
ba9d96c13e7a changeSequence: care for disjoint components/subView containers
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
  5583
    |removedView|
1363
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  5584
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  5585
    (subViews notNil and:[subViews size >= anIndex]) ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5586
	removedView := subViews remove:aSubView ifAbsent:nil.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5587
	removedView notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5588
	    subViews add:removedView beforeIndex:anIndex.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5589
	    ^ true
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5590
	]
1363
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  5591
    ].
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  5592
    ^ false
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  5593
!
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  5594
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5595
withAllSubViewsDo:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5596
    "evaluate aBlock for the receiver and all subviews (recursively)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5597
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5598
    aBlock value:self.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5599
    self allSubViewsDo:aBlock
135
claus
parents:
diff changeset
  5600
! !
claus
parents:
diff changeset
  5601
claus
parents:
diff changeset
  5602
!SimpleView methodsFor:'event handling'!
claus
parents:
diff changeset
  5603
4455
934b54c11ed4 drop from windows
Claus Gittinger <cg@exept.de>
parents: 4452
diff changeset
  5604
alienDrop:aCollectionOfDropObjects position:positionOrNil
1581
45908e82a49d drop argument is always a collection
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  5605
    "a drop from some other non-ST/X application."
1555
6280ab9b914d alien drop - converts to ST/X drop
Claus Gittinger <cg@exept.de>
parents: 1544
diff changeset
  5606
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  5607
    |view positionInView tDelayed
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  5608
     anyNonExisting whichNonExisting checkForAnyNonExisting
4654
baa4bc036ec4 drag & drop
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  5609
     app target dropContext|
4652
7e85c43bb11e aliendrop
Claus Gittinger <cg@exept.de>
parents: 4651
diff changeset
  5610
7e85c43bb11e aliendrop
Claus Gittinger <cg@exept.de>
parents: 4651
diff changeset
  5611
    "/ mhmh - sometimes, the dropped file is not present.
7e85c43bb11e aliendrop
Claus Gittinger <cg@exept.de>
parents: 4651
diff changeset
  5612
    "/ how comes ? And what should be done to avoid this ?
4463
d61225317fe6 oops - must wait for a while after a drop - sigh (win32)
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
  5613
d61225317fe6 oops - must wait for a while after a drop - sigh (win32)
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
  5614
    checkForAnyNonExisting :=
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5615
	[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5616
	    anyNonExisting := false.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5617
	    aCollectionOfDropObjects do:[:eachDropObject |
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5618
		eachDropObject isFileObject ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5619
		    eachDropObject isDirectory ifFalse:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5620
			eachDropObject theObject asFilename exists ifFalse:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5621
			    anyNonExisting := true.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5622
			    whichNonExisting := eachDropObject theObject asFilename.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5623
			]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5624
		    ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5625
		].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5626
	    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5627
	    anyNonExisting
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5628
	].
4463
d61225317fe6 oops - must wait for a while after a drop - sigh (win32)
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
  5629
4652
7e85c43bb11e aliendrop
Claus Gittinger <cg@exept.de>
parents: 4651
diff changeset
  5630
    self withWaitCursorDo:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5631
	tDelayed := 0.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5632
	checkForAnyNonExisting doWhile:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5633
	    anyNonExisting ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5634
		Delay waitForSeconds:0.3.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5635
		tDelayed := tDelayed + 0.3.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5636
	    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5637
	    anyNonExisting and:[ tDelayed <= 3].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5638
	].
4463
d61225317fe6 oops - must wait for a while after a drop - sigh (win32)
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
  5639
    ].
d61225317fe6 oops - must wait for a while after a drop - sigh (win32)
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
  5640
d61225317fe6 oops - must wait for a while after a drop - sigh (win32)
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
  5641
    (anyNonExisting and:[checkForAnyNonExisting value]) ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5642
	Dialog warn:('Dropfile not present: %1' bindWith:whichNonExisting pathName).
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5643
	^ self
4463
d61225317fe6 oops - must wait for a while after a drop - sigh (win32)
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
  5644
    ].
4455
934b54c11ed4 drop from windows
Claus Gittinger <cg@exept.de>
parents: 4452
diff changeset
  5645
934b54c11ed4 drop from windows
Claus Gittinger <cg@exept.de>
parents: 4452
diff changeset
  5646
    view := self.
934b54c11ed4 drop from windows
Claus Gittinger <cg@exept.de>
parents: 4452
diff changeset
  5647
    positionInView := positionOrNil.
4647
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5648
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5649
    app := view application.
5031
733b5e829b2b care for nil application in alienDrop:position:
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  5650
    app notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5651
	(app canDropObjects:aCollectionOfDropObjects in:view at:positionInView) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5652
	    app dropObjects:aCollectionOfDropObjects in:view at:positionInView.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5653
	    ^ self.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5654
	].
4647
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5655
    ].
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  5656
4455
934b54c11ed4 drop from windows
Claus Gittinger <cg@exept.de>
parents: 4452
diff changeset
  5657
    [view notNil] whileTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5658
	"new mechanism to get a dropTarget"
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5659
	target := view dropTarget.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5660
	target notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5661
	    dropContext := DropContext new.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5662
	    dropContext dropObjects:aCollectionOfDropObjects.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5663
	    dropContext dropTarget:target.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5664
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5665
	    (target canDrop:dropContext) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5666
		target drop:dropContext.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5667
		^ self.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5668
	    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5669
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5670
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5671
	(view canDropObjects:aCollectionOfDropObjects at:positionInView) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5672
	    view dropObjects:aCollectionOfDropObjects at:positionInView.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5673
	    ^ self.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5674
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5675
	view := view superView.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5676
	positionInView := nil.
1555
6280ab9b914d alien drop - converts to ST/X drop
Claus Gittinger <cg@exept.de>
parents: 1544
diff changeset
  5677
    ]
6280ab9b914d alien drop - converts to ST/X drop
Claus Gittinger <cg@exept.de>
parents: 1544
diff changeset
  5678
4654
baa4bc036ec4 drag & drop
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  5679
    "Modified: / 17-10-2006 / 18:00:46 / cg"
1555
6280ab9b914d alien drop - converts to ST/X drop
Claus Gittinger <cg@exept.de>
parents: 1544
diff changeset
  5680
!
6280ab9b914d alien drop - converts to ST/X drop
Claus Gittinger <cg@exept.de>
parents: 1544
diff changeset
  5681
5722
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5682
buttonMotion:state x:x y:y
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5683
    "button was moved"
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5684
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5685
    self topView == TopView currentWindowBeingMoved ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5686
	self topView doWindowMove.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5687
	^ self.
5722
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5688
    ].
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5689
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5690
    "Created: / 03-03-2011 / 19:11:11 / cg"
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5691
!
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5692
4579
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5693
buttonMultiPress:button x:x y:y
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5694
    "button was pressed quickly again - check my components for a hit."
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5695
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5696
    components notNil ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  5697
	self componentsContainingX:x y:y do:[:comp :cx :cy |
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  5698
	    comp buttonMultiPress:button x:cx y:cy.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  5699
	    ^ self
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  5700
	]
4579
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5701
    ].
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5702
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5703
    super buttonMultiPress:button x:x y:y
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5704
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5705
    "Modified: / 08-05-1996 / 23:43:41 / cg"
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5706
    "Created: / 13-09-2006 / 16:34:23 / User"
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5707
!
0aef1a98a4c9 + button multipress for lightweight components
fm
parents: 4530
diff changeset
  5708
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5709
buttonPress:button x:x y:y
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5710
    "button was pressed - check my components for a hit."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5711
6082
4d2c90e6561d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6077
diff changeset
  5712
    |topView|
4d2c90e6561d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6077
diff changeset
  5713
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5714
    components notNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5715
	self componentsContainingX:x y:y do:[:comp :cx :cy |
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5716
	    comp buttonPress:button x:cx y:cy.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5717
	    ^ self
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5718
	]
5722
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5719
    ].
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5720
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5721
    "/ an undecorated (but modeless) topView -> do a window move
6082
4d2c90e6561d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6077
diff changeset
  5722
    (topView := self topView) startWindowMoveOnButtonPress ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5723
	topView startWindowMove.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5724
	^ self.
140
claus
parents: 138
diff changeset
  5725
    ].
claus
parents: 138
diff changeset
  5726
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  5727
    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
  5728
5727
d0b9ef9c0cc0 added: #startWindowMoveOnButtonPress
Claus Gittinger <cg@exept.de>
parents: 5722
diff changeset
  5729
    "Modified: / 04-03-2011 / 08:57:01 / cg"
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5730
!
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5731
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5732
buttonRelease:button x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5733
    "button was released - check my components for a hit."
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5734
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5735
    components notNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5736
	self componentsContainingX:x y:y do:[:comp :cx :cy |
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5737
	    comp buttonRelease:button x:cx y:cy.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5738
	    ^ self
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5739
	]
5722
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5740
    ].
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5741
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5742
    self topView == TopView currentWindowBeingMoved ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5743
	self topView endWindowMove.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  5744
	^ self.
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5745
    ].
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5746
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5747
    super buttonRelease:button x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  5748
5722
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5749
    "Created: / 08-05-1996 / 23:43:25 / cg"
7349997cf281 class definition
Claus Gittinger <cg@exept.de>
parents: 5713
diff changeset
  5750
    "Modified: / 03-03-2011 / 19:23:48 / cg"
193
Claus Gittinger <cg@exept.de>
parents: 192
diff changeset
  5751
!
Claus Gittinger <cg@exept.de>
parents: 192
diff changeset
  5752
5133
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5753
changeScaleForMouseWheelZoom:amount
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5754
    "CTRL-wheel action.
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5755
     ignored here - redefined in views which can zoom"
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5756
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5757
    |oldScale newScale factor|
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5758
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5759
    amount > 0 ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5760
	factor := 1.2.
5133
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5761
    ] ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5762
	factor := 0.8.
5133
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5763
    ].
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5764
    oldScale := self scale.
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5765
    newScale := (oldScale * factor) max:0.1.
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5766
    self scale:newScale.
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5767
    self invalidate.
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5768
!
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  5769
1544
4b78320b98fe dummy client- and dropMessage handling
Claus Gittinger <cg@exept.de>
parents: 1524
diff changeset
  5770
clientMessage:msgType format:msgFormat eventData:msgData
4999
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5771
    "a client message - very X-specific and only useful for special applications.
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5772
     Forwarded to my application (if I have one)"
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5773
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5774
    |app|
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5775
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5776
    (app := self application) notNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5777
	app clientMessage:msgType format:msgFormat eventData:msgData
4999
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5778
    ].
1544
4b78320b98fe dummy client- and dropMessage handling
Claus Gittinger <cg@exept.de>
parents: 1524
diff changeset
  5779
!
4b78320b98fe dummy client- and dropMessage handling
Claus Gittinger <cg@exept.de>
parents: 1524
diff changeset
  5780
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5781
closeRequest
2216
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  5782
    "programmatic close request"
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  5783
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  5784
    self destroy
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  5785
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  5786
    "Modified: / 3.8.1998 / 19:50:50 / cg"
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  5787
!
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  5788
140
claus
parents: 138
diff changeset
  5789
configureX:x y:y width:newWidth height:newHeight
claus
parents: 138
diff changeset
  5790
    "my size has changed by window manager action"
claus
parents: 138
diff changeset
  5791
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5792
    |how anyEdge mustRedrawBottomEdge mustRedrawRightEdge
5428
62da57f5206d border drawing on resize
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
  5793
     mustRedrawPreviousRightBorderArea mustRedrawPreviousBottomBorderArea p originChanged|
3784
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  5794
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  5795
    originChanged := (left ~= x) or:[top ~= y].
180
claus
parents: 176
diff changeset
  5796
2966
b84e83209de4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  5797
    left := x.
b84e83209de4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  5798
    top := y.
b84e83209de4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  5799
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5800
    (superView isNil
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  5801
    and:[self drawableId notNil]) ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5802
	"/ have to be careful - some window managers (motif) wrap another
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5803
	"/ view around and the reported origin is relative to that.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5804
	"/ not relative to the screen.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  5805
	p := self graphicsDevice translatePoint:0@0 fromView:self toView:nil.
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5806
	p := p + self borderWidth.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5807
	left := p x.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5808
	top := p y.
2414
1d8968995199 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
  5809
    ].
1d8968995199 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
  5810
140
claus
parents: 138
diff changeset
  5811
    ((width ~~ newWidth) or:[height ~~ newHeight]) ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5812
	realized ifFalse:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5813
	    width := newWidth.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5814
	    height := newHeight.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5815
	    self extentChangedFlag:true.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5816
	    ^ self
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5817
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5818
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5819
	((newWidth <= width) and:[newHeight <= height]) ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5820
	    how := #smaller
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5821
	] ifFalse:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5822
	    ((newWidth >= width) and:[newHeight >= height]) ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5823
		how := #larger
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5824
	    ]
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5825
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5826
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5827
	margin ~~ 0 ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5828
	    mustRedrawBottomEdge := newHeight < height.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5829
	    mustRedrawRightEdge := newWidth < width.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5830
	    anyEdge := mustRedrawBottomEdge or:[mustRedrawRightEdge].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5831
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5832
	    mustRedrawPreviousRightBorderArea := newWidth > width.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5833
	    mustRedrawPreviousBottomBorderArea := newHeight > height.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5834
	] ifFalse:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5835
	    anyEdge := false
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5836
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5837
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5838
	mustRedrawPreviousRightBorderArea ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5839
	    self invalidateDeviceRectangle:((width-margin)@0 extent:margin@height) repairNow:false.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5840
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5841
	mustRedrawPreviousBottomBorderArea ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5842
	    self invalidateDeviceRectangle:((0 @ (height-margin)) extent:width@margin) repairNow:false.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5843
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5844
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5845
	width := newWidth.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5846
	height := newHeight.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5847
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5848
	"recompute inner-clip if needed"
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5849
	self setInnerClip.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5850
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5851
	"
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5852
	 must first process pending exposes;
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5853
	 otherwise, those may be drawn at a wrong position
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5854
	"
971
3137be953256 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 967
diff changeset
  5855
"/ claus: no; expose events are in the same queue as configure events;
3137be953256 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 967
diff changeset
  5856
"/        which is exactly for that reason ...
3137be953256 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 967
diff changeset
  5857
3137be953256 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 967
diff changeset
  5858
"/        windowGroup notNil ifTrue:[
3137be953256 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 967
diff changeset
  5859
"/            windowGroup processExposeEvents
3137be953256 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 967
diff changeset
  5860
"/        ].
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5861
	self sizeChanged:how.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5862
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5863
	(anyEdge and:[shown]) ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5864
	    mustRedrawBottomEdge ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5865
		self invalidateDeviceRectangle:((0 @ (height-margin)) extent:width@margin) repairNow:false.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5866
	    ].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5867
	    mustRedrawRightEdge ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5868
		self invalidateDeviceRectangle:((width-margin)@0 extent:margin@height) repairNow:false.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5869
	    ].
2821
8eda25202d32 async border redraw when size changes
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5870
"/ OLD code:
8eda25202d32 async border redraw when size changes
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5871
"/            self clippingRectangle:nil.
8eda25202d32 async border redraw when size changes
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5872
"/            mustRedrawBottomEdge ifTrue:[
8eda25202d32 async border redraw when size changes
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5873
"/                self drawBottomEdge
8eda25202d32 async border redraw when size changes
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5874
"/            ].
8eda25202d32 async border redraw when size changes
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5875
"/            mustRedrawRightEdge ifTrue:[
8eda25202d32 async border redraw when size changes
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5876
"/                self drawRightEdge
8eda25202d32 async border redraw when size changes
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5877
"/            ].
8eda25202d32 async border redraw when size changes
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5878
"/            self deviceClippingRectangle:innerClipRect
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5879
	]
3784
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  5880
    ].
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  5881
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  5882
    originChanged ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  5883
	self changed:#origin.
3784
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  5884
    ].
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  5885
3518
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  5886
    "Modified: / 10.10.2001 / 14:14:19 / cg"
138
claus
parents: 137
diff changeset
  5887
!
claus
parents: 137
diff changeset
  5888
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5889
containerChangedSize
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5890
    "my container has changed size; if I have relative
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5891
     origin/extent or blocks to evaluate, do it now .."
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5892
1063
ba1bf8091bc1 unused variable cleanup
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5893
    |oldWidth oldHeight oldTop oldLeft newExt newOrg r|
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5894
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5895
    oldWidth := width.
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5896
    oldHeight := height.
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5897
    oldTop := top.
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5898
    oldLeft := left.
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5899
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5900
    "
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5901
     slowly migrating to use layoutObjects ...
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5902
    "
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5903
    layout isNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5904
	newOrg := self computeOrigin.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5905
	newExt := self computeExtent.
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5906
    ] ifFalse:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5907
	r := (layout rectangleRelativeTo:(superView viewRectangle)
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5908
			       preferred:[self preferredBounds]).
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5909
	newOrg := r origin rounded.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  5910
	newExt := r extent rounded.
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5911
"/ newOrg printNL.
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5912
"/ newExt printNL.
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5913
    ].
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5914
3394
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5915
"/    newOrg notNil ifTrue:[
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5916
"/        ((newOrg x == oldLeft) and:[newOrg y == oldTop]) ifTrue:[
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5917
"/            newOrg := nil
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5918
"/        ]
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5919
"/    ].
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5920
"/    newExt notNil ifTrue:[
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5921
"/        ((newExt x == width) and:[newExt y == height]) ifTrue:[
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5922
"/            newExt := nil
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5923
"/        ]
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5924
"/    ].
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5925
"/
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5926
"/    newExt isNil ifTrue:[
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5927
"/        newOrg notNil ifTrue:[
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5928
"/            self pixelOrigin:newOrg
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5929
"/        ]
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5930
"/    ] ifFalse:[
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5931
"/        newOrg isNil ifTrue:[
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5932
"/            self pixelExtent:newExt
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5933
"/        ] ifFalse:[
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5934
"/            self pixelOrigin:newOrg extent:newExt
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5935
"/        ]
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5936
"/    ]
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  5937
    self pixelOrigin:newOrg extent:newExt
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5938
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5939
    "Modified: 19.7.1996 / 17:32:50 / cg"
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5940
!
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5941
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5942
containerMapped
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5943
    "my container was mapped (became visible).
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5944
     If I was previously realized, this implies that I myself
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5945
     am now mapped as well."
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5946
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5947
    "/ if I was not previously shown, tell it to all of
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5948
    "/ my subviews (they remember this in the shown instVar)
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5949
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5950
    realized ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5951
	shown ifFalse:[
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5952
"/ old:
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5953
"/            shown := true.
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5954
"/            subViews notNil ifTrue:[
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5955
"/                subViews do:[:v |
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5956
"/                    v containerMapped
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5957
"/                ]
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5958
"/            ]
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5959
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5960
"/ which is equivalent to:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5961
	    self mapped.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5962
	]
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5963
    ].
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5965
    "Modified: 30.5.1996 / 11:41:02 / cg"
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5966
    "Created: 19.7.1996 / 17:41:10 / cg"
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5967
!
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5968
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5969
containerUnmapped
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5970
    "my container was unmapped
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5971
     - this implies that the recevier is now also unmapped."
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5972
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5973
    "/ if I was previously shown, tell it to all of
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5974
    "/ my subviews (they remember this in the shown instVar)
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5975
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5976
    realized ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5977
	shown ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5978
	    self unmapped
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  5979
	]
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5980
    ]
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5981
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5982
    "Modified: 30.5.1996 / 11:41:25 / cg"
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5983
    "Created: 19.7.1996 / 17:43:50 / cg"
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5984
!
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  5985
5021
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  5986
copyDataEvent:parameter eventData:msgData
4999
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5987
    "a copyData message - very Win32-specific and only useful for special applications.
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5988
     Forwarded to my application (If I have one)"
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5989
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5990
    |app|
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5991
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5992
    (app := self application) notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  5993
	app copyDataEvent:parameter eventData:msgData
4999
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5994
    ].
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5995
!
b56e53c1b4d4 hooks for client and copyData events
Claus Gittinger <cg@exept.de>
parents: 4993
diff changeset
  5996
5749
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  5997
createWindowX:x y:y width:w height:h
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  5998
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  5999
    "A window has been created in myself, nothing to do here.
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6000
     Note, that SubstructureNotify events must be enabled to get
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6001
     this event. To enable, do:
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6002
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6003
    self enableEvent: #substructureNotify
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6004
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6005
    "
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6006
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6007
    "Created: / 01-06-2011 / 12:59:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6008
!
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6009
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6010
destroyed
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6011
    "view has been destroyed by someone else (usually window system)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6012
5087
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6013
    shown ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6014
	shown := false.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6015
	self changed:#visibility.
5087
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6016
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6017
    super destroyed
3183
e55c249cd6e5 kludge: remove objectAttributes when destroyed.
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
  6018
e55c249cd6e5 kludge: remove objectAttributes when destroyed.
Claus Gittinger <cg@exept.de>
parents: 3182
diff changeset
  6019
    "Modified: / 18.2.2000 / 11:20:34 / cg"
269
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
4460
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  6022
dropMessage:dropTypeSymbol data:dropValue position:dropPosition handle:dropHandle
4455
934b54c11ed4 drop from windows
Claus Gittinger <cg@exept.de>
parents: 4452
diff changeset
  6023
    "a drop from some other window (X: DND or Win32 drag&drop).
1544
4b78320b98fe dummy client- and dropMessage handling
Claus Gittinger <cg@exept.de>
parents: 1524
diff changeset
  6024
     Convert to the ST/X drag and drop protocol here."
4b78320b98fe dummy client- and dropMessage handling
Claus Gittinger <cg@exept.de>
parents: 1524
diff changeset
  6025
1559
b23f130589d2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1555
diff changeset
  6026
    |dropObjects|
b23f130589d2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1555
diff changeset
  6027
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6028
    (dropTypeSymbol == WindowEvent dropType_file
4647
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  6029
    or:[dropTypeSymbol == WindowEvent dropType_directory]) ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6030
	dropObjects := Array with:(DropObject newFile:dropValue)
1559
b23f130589d2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1555
diff changeset
  6031
    ] ifFalse:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6032
	dropTypeSymbol == WindowEvent dropType_files ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6033
	   dropObjects := (dropValue collect:[:fn | DropObject newFile:fn])
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6034
	] ifFalse:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6035
	    dropTypeSymbol == WindowEvent dropType_text ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6036
	       dropObjects := Array with:(DropObject newText:dropValue)
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6037
	    ] ifFalse:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6038
	       dropObjects := Array with:(DropObject new:dropValue)
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6039
	    ]
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6040
	]
4455
934b54c11ed4 drop from windows
Claus Gittinger <cg@exept.de>
parents: 4452
diff changeset
  6041
    ].
934b54c11ed4 drop from windows
Claus Gittinger <cg@exept.de>
parents: 4452
diff changeset
  6042
4460
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  6043
"/    Transcript showCR:'Drop:'.
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  6044
"/    Transcript show:'  View:'; showCR:self.
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  6045
"/    Transcript show:'  Position:'; showCR:dropPosition.
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  6046
"/    Transcript show:'  Data:'; showCR:dropObjects.
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  6047
c8537e5fe249 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 4455
diff changeset
  6048
    self alienDrop:dropObjects position:dropPosition.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  6049
    self graphicsDevice dragFinish:dropHandle.
1559
b23f130589d2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1555
diff changeset
  6050
4647
a13c63aed017 drop: canDrop:at:/drop:at: now invoke canDrop:/drop:;
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  6051
    "Modified: / 13-10-2006 / 10:10:23 / cg"
1544
4b78320b98fe dummy client- and dropMessage handling
Claus Gittinger <cg@exept.de>
parents: 1524
diff changeset
  6052
!
4b78320b98fe dummy client- and dropMessage handling
Claus Gittinger <cg@exept.de>
parents: 1524
diff changeset
  6053
135
claus
parents:
diff changeset
  6054
exposeX:x y:y width:w height:h
claus
parents:
diff changeset
  6055
    "a low level redraw event from device
claus
parents:
diff changeset
  6056
      - let subclass handle the redraw and take care of edges here"
claus
parents:
diff changeset
  6057
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6058
    |leftEdge topEdge rightEdge botEdge anyEdge nx ny nw nh dx  dy dh dw old oldPaint|
2726
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  6059
3856
45fccc92d834 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3838
diff changeset
  6060
    shown ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6061
	^ self
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  6062
    ].
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  6063
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  6064
    nw := w.
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  6065
    nh := h.
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  6066
    nx := x.
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  6067
    ny := y.
135
claus
parents:
diff changeset
  6068
claus
parents:
diff changeset
  6069
    anyEdge := false.
claus
parents:
diff changeset
  6070
claus
parents:
diff changeset
  6071
    "
claus
parents:
diff changeset
  6072
     check if there is a need to draw an edge (i.e. if margin is hit)
claus
parents:
diff changeset
  6073
    "
claus
parents:
diff changeset
  6074
    (margin ~~ 0) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6075
	|currentTransformation|
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6076
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6077
	leftEdge := false.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6078
	topEdge := false.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6079
	rightEdge := false.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6080
	botEdge := false.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6081
	currentTransformation := gc transformation.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6082
	currentTransformation notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6083
	    |pO pC|
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6084
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6085
	    "
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6086
	     need device coordinates for this test
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6087
	    "
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6088
	    pO := currentTransformation transformPoint:x@y.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6089
	    pC := currentTransformation transformPoint:(x+w-1)@(y+h-1).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6090
	    nx := pO x.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6091
	    ny := pO y.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6092
	    nw := pC x - nx + 1.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6093
	    nh := pC y - ny + 1.
6694
223cc6f806af class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6649
diff changeset
  6094
"/            nx := currentTransformation applyToX:nx.
223cc6f806af class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6649
diff changeset
  6095
"/            ny := currentTransformation applyToY:ny.
223cc6f806af class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6649
diff changeset
  6096
"/            nw := currentTransformation applyScaleX:nw.
223cc6f806af class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6649
diff changeset
  6097
"/            nh := currentTransformation applyScaleY:nh.
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6098
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6099
	"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6100
	 adjust expose rectangle, to exclude the margin.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6101
	 Care for rounding errors ...
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6102
	"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6103
	(nx isMemberOf:SmallInteger) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6104
	    old := nx.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6105
	    nx := nx truncated.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6106
	    nw := nw + (nx - old).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6107
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6108
	(ny isMemberOf:SmallInteger) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6109
	    old := ny.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6110
	    ny := ny truncated.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6111
	    nh := nh + (ny - old).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6112
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6113
	(nw isMemberOf:SmallInteger) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6114
	    nw := nw truncated + 1
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6115
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6116
	(nh isMemberOf:SmallInteger) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6117
	    nh := nh truncated + 1
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6118
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6119
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6120
	dx := nx.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6121
	dy := ny.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6122
	dw := nw.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6123
	dh := nh.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6124
	(nx < margin) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6125
	    old := nx.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6126
	    nx := margin.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6127
	    nw := nw - (nx - old).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6128
	    leftEdge := anyEdge := true.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6129
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6130
	((nx + nw - 1) >= (width - margin)) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6131
	    nw := (width - margin - nx).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6132
	    rightEdge := anyEdge := true.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6133
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6134
	(ny < margin) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6135
	    old := ny.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6136
	    ny := margin.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6137
	    nh := nh - (ny - old).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6138
	    topEdge := anyEdge := true.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6139
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6140
	((ny + nh - 1) >= (height - margin)) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6141
	    nh := (height - margin - ny).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6142
	    botEdge := anyEdge := true.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6143
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6144
	currentTransformation notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6145
	    "
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6146
	     need logical coordinates for redraw
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6147
	    "
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6148
	    nx := currentTransformation applyInverseToX:nx.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6149
	    ny := currentTransformation applyInverseToY:ny.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6150
	    nw := currentTransformation applyInverseScaleX:nw.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6151
	    nh := currentTransformation applyInverseScaleY:nh.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6152
	].
135
claus
parents:
diff changeset
  6153
    ].
claus
parents:
diff changeset
  6154
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  6155
    (nw > 0 and:[nh > 0]) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6156
	"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6157
	 redraw inside area
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6158
	"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6159
	self
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6160
	    clippingBounds:(Rectangle left:nx top:ny width:nw height:nh);
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6161
	    redrawX:nx y:ny width:nw height:nh.
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
  6162
    ].
135
claus
parents:
diff changeset
  6163
claus
parents:
diff changeset
  6164
    "
claus
parents:
diff changeset
  6165
     redraw edge(s)
claus
parents:
diff changeset
  6166
    "
claus
parents:
diff changeset
  6167
    anyEdge ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6168
	self clippingBounds:nil.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6169
	oldPaint := self paint.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6170
	border notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6171
	    border displayOn:self forDisplayBox:(Rectangle left:0 top:0 width:width height:height).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6172
	] ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6173
	    (topEdge and:[leftEdge and:[botEdge and:[rightEdge]]]) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6174
		self drawEdges
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6175
	    ] ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6176
		topEdge ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6177
		    self drawTopEdge
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6178
		].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6179
		leftEdge ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6180
		    self drawLeftEdge
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6181
		].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6182
		botEdge ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6183
		    self drawBottomEdge
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6184
		].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6185
		rightEdge ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6186
		    self drawRightEdge
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6187
		]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6188
	    ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6189
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6190
	self paint:oldPaint.
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  6191
    ].
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  6192
    gc deviceClippingBounds:innerClipRect.
2726
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  6193
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  6194
    "Modified: / 25.5.1999 / 14:57:38 / cg"
135
claus
parents:
diff changeset
  6195
!
claus
parents:
diff changeset
  6196
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6197
focusIn
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  6198
    "got keyboard focus (via the window manager).
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  6199
     Nothing done here"
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  6200
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  6201
    ^ self
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6202
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6203
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6204
focusOut
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  6205
    "lost keyboard focus (via the window manager).
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  6206
     Nothing done here"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6207
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6208
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6209
hasKeyboardFocus:aBoolean
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  6210
    "notification from the windowGroup that I got the keyboardFocus."
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  6211
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  6212
    delegate notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6213
	delegate perform:#hasKeyboardFocus: with:aBoolean ifNotUnderstood:nil
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  6214
    ].
140
claus
parents: 138
diff changeset
  6215
    ^ self
claus
parents: 138
diff changeset
  6216
!
claus
parents: 138
diff changeset
  6217
claus
parents: 138
diff changeset
  6218
keyPress:key x:x y:y
claus
parents: 138
diff changeset
  6219
    "a key has been pressed. If there are components,
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6220
     pass it to the corresponding one.
140
claus
parents: 138
diff changeset
  6221
     Otherwise, forward it to the superview, if there is any."
claus
parents: 138
diff changeset
  6222
510
c0c7a04317a9 resources
Claus Gittinger <cg@exept.de>
parents: 503
diff changeset
  6223
    <resource: #keyboard ( #Menu ) >
c0c7a04317a9 resources
Claus Gittinger <cg@exept.de>
parents: 503
diff changeset
  6224
3247
d6e631975bd1 forward Menu-key (CMD-Z) to focusView if there is one.
Claus Gittinger <cg@exept.de>
parents: 3242
diff changeset
  6225
    |focusView|
d6e631975bd1 forward Menu-key (CMD-Z) to focusView if there is one.
Claus Gittinger <cg@exept.de>
parents: 3242
diff changeset
  6226
140
claus
parents: 138
diff changeset
  6227
    components notNil ifTrue:[
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6228
	components notNil ifTrue:[
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6229
	    self componentsContainingX:x y:y do:[:comp :cx :cy |
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6230
		comp keyPress:key x:cx y:cy.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6231
		^ self
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6232
	    ]
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6233
	].
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  6234
    ].
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  6235
494
cc7765901744 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 490
diff changeset
  6236
    key == #Menu ifTrue:[
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6237
	((focusView := self windowGroup focusView) notNil
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6238
	and:[focusView ~~ self])
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6239
	ifTrue:[
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6240
	   "/ forward to the focusView
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6241
	   focusView keyPress:key x:-1 y:-1.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6242
	    ^ self
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6243
	].
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6244
	^ self activateMenu.
135
claus
parents:
diff changeset
  6245
    ].
claus
parents:
diff changeset
  6246
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  6247
    x isNil ifTrue:[
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6248
	"/ already redelegated, but nowhere handled
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6249
	superView notNil ifTrue:[
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6250
	    superView keyPress:key x:nil y:nil.
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6251
	].
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6252
	^ self
490
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  6253
    ].
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  6254
1d2ed059a063 delegated keyboardMessages get nil as x/y
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  6255
    superView notNil ifTrue:[
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6256
	superView
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6257
	    dispatchEvent:#keyPress:x:y:
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6258
	    arguments:(Array with:key with:0 with:0)
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6259
2127
c6d63c47bf07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
  6260
"/        WindowEvent
c6d63c47bf07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
  6261
"/            sendEvent:#keyPress:x:y:
c6d63c47bf07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
  6262
"/            arguments:(Array with:key with:0 with:0)
c6d63c47bf07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
  6263
"/            view:superView
411
2d5deb02d8f8 if not already forwarded, let keyEvents be handled by superView
Claus Gittinger <cg@exept.de>
parents: 393
diff changeset
  6264
    ] ifFalse:[
3367
a564faee320f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6265
	super keyPress:key x:x y:y
135
claus
parents:
diff changeset
  6266
    ]
411
2d5deb02d8f8 if not already forwarded, let keyEvents be handled by superView
Claus Gittinger <cg@exept.de>
parents: 393
diff changeset
  6267
2127
c6d63c47bf07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
  6268
    "Modified: / 20.5.1998 / 22:55:08 / cg"
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6269
!
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6270
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6271
keyRelease:key x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6272
    "a key has been released. If there are components,
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6273
     pass it to the corresponding one.
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6274
     Otherwise, do whatever my superclass would do."
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6275
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6276
    components notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  6277
	components notNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  6278
	    self componentsContainingX:x y:y do:[:comp :cx :cy |
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  6279
		comp keyRelease:key x:cx y:cy.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  6280
		^ self
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  6281
	    ]
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  6282
	].
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6283
    ].
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6284
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6285
    super keyRelease:key x:x y:y
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6286
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6287
    "Modified: 8.5.1996 / 23:44:36 / cg"
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  6288
    "Created: 8.5.1996 / 23:45:28 / cg"
135
claus
parents:
diff changeset
  6289
!
claus
parents:
diff changeset
  6290
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6291
mapped
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6292
    "the view has been mapped (by some outside
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6293
     action - i.e. window manager de-iconified me)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6294
5082
3b3aaba11664 only send visibility-change if there really is one when mapped
Claus Gittinger <cg@exept.de>
parents: 5060
diff changeset
  6295
    |shownBefore|
3b3aaba11664 only send visibility-change if there really is one when mapped
Claus Gittinger <cg@exept.de>
parents: 5060
diff changeset
  6296
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6297
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6298
     the old code was:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6299
6789
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6300
        realized := true.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6301
        shown := true.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6302
        ...
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6303
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6304
     this created a race condition, if the view was
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6305
     realized and shortly after unrealized - before the mapped event
1379
bd55ede48c37 comments
Claus Gittinger <cg@exept.de>
parents: 1363
diff changeset
  6306
     arrived. This lead to realized being set to true even thought the
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6307
     view was not.
1379
bd55ede48c37 comments
Claus Gittinger <cg@exept.de>
parents: 1363
diff changeset
  6308
     Boy - that was a bad one (hard to reproduce and hard to find).
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6309
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6310
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6311
    realized ifTrue:[
6789
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6312
        shownBefore := shown.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6313
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6314
        "/ currently, the 'shown ifFalse:' optimization is
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6315
        "/ not ok, since 'shown' is also modified by visibilityChanges.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6316
        "/ Also, when remapped, X11 only sends a mapped event for the topView.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6317
        "/ Therefore, synthetically generate those #superViewMapped messages
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6318
        "/ in any case.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6319
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6320
        shown := true.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6321
        "
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6322
         backed views will not get expose events - have
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6323
         to force a redraw here to get things drawn into
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6324
         backing store.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6325
        "
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6326
        backed ifTrue:[
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6327
            self redrawX:0 y:0 width:width height:height
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6328
        ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6329
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6330
        "/ tell my subViews ...
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6331
        subViews notNil ifTrue:[
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6332
            subViews do:[:v | v  mapped
2721
2575a1e771cc mapped event handling
Claus Gittinger <cg@exept.de>
parents: 2719
diff changeset
  6333
"/                v shown ifFalse:[
2575a1e771cc mapped event handling
Claus Gittinger <cg@exept.de>
parents: 2719
diff changeset
  6334
"/                    v  mapped
2575a1e771cc mapped event handling
Claus Gittinger <cg@exept.de>
parents: 2719
diff changeset
  6335
"/                ]
6789
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6336
            ]
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6337
        ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6338
        shownBefore ~~ true ifTrue:[
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6339
            self changed:#visibility.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6340
        ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6341
        self takeFocusWhenMapped ifTrue:[
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6342
            "/ this is a one-shot!!
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6343
            self takeFocusWhenMapped:false.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6344
            self assignKeyboardFocusToFirstKeyboardConsumer.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6345
            "/ self requestFocus
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  6346
        ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6347
    ]
765
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
  6348
5667
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  6349
    "Modified: / 09-12-2010 / 18:12:24 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6350
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6351
2733
5af2417bc450 pass x/y with mouseWheel event
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  6352
mouseWheelMotion:buttonState x:x y:y amount:amount deltaTime:dTime
2701
ac077dbc60be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  6353
    "the mouseWheel was turned - handle as a scroll operation.
ac077dbc60be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  6354
     Specialized application windows may redefine this for any other
2709
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6355
     operation.
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6356
     Here, we scroll some amount which depends upon the views contents height
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6357
     (but never too much);
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6358
     if shift is pressed, always scroll a single scroll-step;
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6359
     if ctrl is pressed, always scroll one page."
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6360
6952
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6361
    |horizontal pageScroll amountToScroll zoomInOrOut sensor|
2709
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6362
3856
45fccc92d834 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3838
diff changeset
  6363
    sensor := self sensor.
5130
0bc49bea4bab allowMouseWheelZoom
Claus Gittinger <cg@exept.de>
parents: 5087
diff changeset
  6364
0bc49bea4bab allowMouseWheelZoom
Claus Gittinger <cg@exept.de>
parents: 5087
diff changeset
  6365
    UserPreferences current allowMouseWheelZoom ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6366
	zoomInOrOut := sensor ctrlDown or:[sensor metaDown].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6367
	zoomInOrOut ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6368
	    self mouseWheelZoom:amount.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6369
	    ^ self.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6370
	].
5130
0bc49bea4bab allowMouseWheelZoom
Claus Gittinger <cg@exept.de>
parents: 5087
diff changeset
  6371
    ].
0bc49bea4bab allowMouseWheelZoom
Claus Gittinger <cg@exept.de>
parents: 5087
diff changeset
  6372
6952
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6373
    horizontal := pageScroll := false.
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6374
    (UserPreferences current shiftMouseWheelScrollsHorizontally) ifTrue:[
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6375
        horizontal := sensor shiftDown
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6376
    ] ifFalse:[                              
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6377
        pageScroll := sensor shiftDown.
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6378
    ].
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6379
    
2709
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6380
    pageScroll ifFalse:[
6952
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6381
        amountToScroll := horizontal 
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6382
                            ifTrue:[ self horizontalScrollStep]
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6383
                            ifFalse:[ self verticalScrollStep ].
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6384
        amountToScroll := self scaleMouseWheelScrollAmount:amountToScroll.
2709
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6385
    ].
2701
ac077dbc60be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  6386
2699
01594e76fc92 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6387
    amount > 0 ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6388
	pageScroll ifTrue:[
6952
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6389
            horizontal ifTrue:[self pageLeft] ifFalse:[self pageUp]
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6390
	] ifFalse:[
6952
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6391
            horizontal ifTrue:[self scrollLeft:amountToScroll] ifFalse:[self scrollUp:amountToScroll]
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6392
	]
2699
01594e76fc92 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6393
    ] ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6394
	pageScroll ifTrue:[
6952
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6395
            horizontal ifTrue:[self pageRight] ifFalse:[self pageDown]
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6396
	] ifFalse:[
6952
832f15fc0e4c #FEATURE
Claus Gittinger <cg@exept.de>
parents: 6911
diff changeset
  6397
            horizontal ifTrue:[self scrollRight:amountToScroll] ifFalse:[self scrollDown:amountToScroll]
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6398
	]
2709
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6399
    ].
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6400
188745025c87 adjust mouseWheel speed;
Claus Gittinger <cg@exept.de>
parents: 2703
diff changeset
  6401
    "Modified: / 21.5.1999 / 19:58:42 / cg"
2699
01594e76fc92 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6402
!
01594e76fc92 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6403
5130
0bc49bea4bab allowMouseWheelZoom
Claus Gittinger <cg@exept.de>
parents: 5087
diff changeset
  6404
mouseWheelZoom:amount
5132
b1161f2c78ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
  6405
    "CTRL-wheel action.
b1161f2c78ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
  6406
     ignored here - redefined in views which can zoom"
b1161f2c78ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
  6407
5133
6d3761ef1e2a mouseWheel zoom
Claus Gittinger <cg@exept.de>
parents: 5132
diff changeset
  6408
"/    self changeScaleForMouseWheelZoom:amount
5130
0bc49bea4bab allowMouseWheelZoom
Claus Gittinger <cg@exept.de>
parents: 5087
diff changeset
  6409
!
0bc49bea4bab allowMouseWheelZoom
Claus Gittinger <cg@exept.de>
parents: 5087
diff changeset
  6410
1381
31b981e0dcad delegate focusIn/out
Claus Gittinger <cg@exept.de>
parents: 1379
diff changeset
  6411
pointerEnter:state x:x y:y
3087
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  6412
    "mouse pointer entered - request the keyboard focus (sometimes)"
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  6413
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  6414
    |doRequestFocus|
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  6415
4968
63f18801bab8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  6416
    "/ first ask my flags if its enforced or forbidden
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  6417
    self requestFocusOnPointerEnter ifTrue:[
6987
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6418
        doRequestFocus := true
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  6419
    ] ifFalse:[
6987
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6420
        self doNotRequestFocusOnPointerEnter ifTrue:[
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6421
            doRequestFocus := false
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6422
        ] ifFalse:[
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6423
            "/ then look for the settings.
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6424
            doRequestFocus := self wantsFocusWithPointerEnter
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6425
        ]
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  6426
    ].
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  6427
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  6428
    doRequestFocus ifTrue:[
6987
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6429
        self requestFocus.
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6430
    ].
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6431
    self changed:#pointerInView
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6432
    
5924
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  6433
    "Modified: / 01-08-2012 / 17:06:41 / cg"
1381
31b981e0dcad delegate focusIn/out
Claus Gittinger <cg@exept.de>
parents: 1379
diff changeset
  6434
!
31b981e0dcad delegate focusIn/out
Claus Gittinger <cg@exept.de>
parents: 1379
diff changeset
  6435
6987
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6436
pointerLeave:buttonState
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6437
    "mouse pointer left"
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6438
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6439
    super pointerLeave:buttonState.
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6440
    self changed:#pointerInView
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6441
!
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  6442
5749
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6443
propertyChange:propertyId state: state
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6444
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  6445
    "A property has changed, nothing to do here.
5749
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6446
     Note:
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  6447
     This is very X specific. PropertyChange events must be enabled
5749
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6448
     to get this event. To enable, do:
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6449
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6450
    self enableEvent: #propertyChange
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6451
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6452
    "
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6453
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6454
    "Created: / 01-06-2011 / 13:39:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6455
!
aad1af079611 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5729
diff changeset
  6456
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6457
reparented
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6458
    "the view has changed its parent by some outside
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6459
     action - i.e. window manager has added a frame.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6460
     nothing done here"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6461
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6462
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6463
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6464
6516
41d8ab4b00c4 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6515
diff changeset
  6465
requestAutoAccept
41d8ab4b00c4 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6515
diff changeset
  6466
    "request to accept: this is invoked when a dialog closes via accept or cancel.
41d8ab4b00c4 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6515
diff changeset
  6467
     This forces my value to be accepted into my model.
41d8ab4b00c4 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6515
diff changeset
  6468
     Any widget may suppress the ok/cancel, by returning false."
41d8ab4b00c4 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6515
diff changeset
  6469
41d8ab4b00c4 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6515
diff changeset
  6470
    ^ true
41d8ab4b00c4 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6515
diff changeset
  6471
!
41d8ab4b00c4 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6515
diff changeset
  6472
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6473
saveAndTerminate
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6474
    "window manager wants me to save and go away;
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6475
     - notice, that not all window managers are nice enough to
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6476
       send this event, but simply destroy the view instead.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6477
     Can be redefined in subclasses to do whatever is required
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6478
     to prepare for restart."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6479
2216
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  6480
    self closeRequest
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  6481
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  6482
    "Modified: / 3.8.1998 / 19:51:26 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6483
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6484
4674
5677b78c2790 mouse wheel scrolling refactoring
fm
parents: 4654
diff changeset
  6485
scaleMouseWheelScrollAmount:amountToScroll
4739
a0041d972c79 bugfix for views with innerHeight < 1
ca
parents: 4736
diff changeset
  6486
    |hCont factor innerHeight|
a0041d972c79 bugfix for views with innerHeight < 1
ca
parents: 4736
diff changeset
  6487
a0041d972c79 bugfix for views with innerHeight < 1
ca
parents: 4736
diff changeset
  6488
    "/ test whether innerHeight == 0
4855
1a47c76fa152 comment
Stefan Vogel <sv@exept.de>
parents: 4853
diff changeset
  6489
    "/ could happen if the view is resized to 0 (panel)
4739
a0041d972c79 bugfix for views with innerHeight < 1
ca
parents: 4736
diff changeset
  6490
    innerHeight := self innerHeight.
a0041d972c79 bugfix for views with innerHeight < 1
ca
parents: 4736
diff changeset
  6491
    innerHeight > 0 ifFalse:[ ^ 1 ].
4674
5677b78c2790 mouse wheel scrolling refactoring
fm
parents: 4654
diff changeset
  6492
5677b78c2790 mouse wheel scrolling refactoring
fm
parents: 4654
diff changeset
  6493
    hCont := self heightOfContents.
4739
a0041d972c79 bugfix for views with innerHeight < 1
ca
parents: 4736
diff changeset
  6494
    hCont > (innerHeight * 3) ifTrue:[
4907
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  6495
	factor := (hCont // innerHeight) min:4.
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  6496
	^ amountToScroll * factor.
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6497
    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6498
    ^ amountToScroll
4674
5677b78c2790 mouse wheel scrolling refactoring
fm
parents: 4654
diff changeset
  6499
!
5677b78c2790 mouse wheel scrolling refactoring
fm
parents: 4654
diff changeset
  6500
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6501
sizeChanged:how
6318
51e71bc70bce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6315
diff changeset
  6502
    "tell subviews that I changed size.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6503
     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
  6504
     in which subviews are notified (possibly reducing redraw activity)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6505
1290
1cc24cff6fe9 eliminated some references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
  6506
    |subViews|
1cc24cff6fe9 eliminated some references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
  6507
6954
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  6508
    viewBackground isViewBackground ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  6509
        "/ there is only one, which needs this: a gradient over the actual height/width;
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  6510
        "/ this cannot just fill the new exposed area, but must recompute the gradient scales
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  6511
        (viewBackground needsFullRedrawOnChangeOfWidth
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  6512
        or:[ viewBackground needsFullRedrawOnChangeOfHeight]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  6513
            self invalidate
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  6514
        ]
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  6515
    ].    
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  6516
6114
52c6e2447fff class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6090
diff changeset
  6517
    (subViews := self subViews) notEmptyOrNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6518
	(how isNil "false"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6519
	or:[how == #smaller]) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6520
	    subViews do:[:view |
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6521
		view notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6522
		    view containerChangedSize
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6523
		]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6524
	    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6525
	] ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6526
	    "doing it reverse speeds up resizing - usually subviews
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6527
	     are created from top-left to bottom-right; therefore
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6528
	     bottom-right views will be moved/resized first, then top-left ones;
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6529
	     this avoids multiple redraws of subviews"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6530
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6531
	    subViews reverseDo:[:view |
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6532
		view notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6533
		    view containerChangedSize
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6534
		]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6535
	    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6536
	]
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  6537
    ].
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  6538
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  6539
    components notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6540
	(how isNil "false"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6541
	or:[how == #smaller]) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6542
	    components do:[:view |
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6543
		view containerChangedSize
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6544
	    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6545
	] ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6546
	    "doing it reverse speeds up resizing - usually subviews
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6547
	     are created from top-left to bottom-right; therefore
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6548
	     bottom-right views will be moved/resized first, then top-left ones;
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6549
	     this avoids multiple redraws of subviews"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6550
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6551
	    components reverseDo:[:view |
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6552
		view containerChangedSize
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6553
	    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6554
	]
135
claus
parents:
diff changeset
  6555
    ].
1290
1cc24cff6fe9 eliminated some references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
  6556
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6557
    self changed:#sizeOfView with:how.
1290
1cc24cff6fe9 eliminated some references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
  6558
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6559
    superView notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  6560
	superView subViewChangedSize
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6561
    ]
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  6562
2084
e997f6ea54c2 also pass down #larger to sizeCanged: method.
Claus Gittinger <cg@exept.de>
parents: 2061
diff changeset
  6563
    "Modified: / 2.4.1998 / 13:59:59 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6564
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6565
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6566
subViewChangedSize
320
b7b8dc88fe9f interest is written with one 'r' (shame on me)
Claus Gittinger <cg@exept.de>
parents: 312
diff changeset
  6567
    "some subview has changed its size; we are not interested
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6568
     in that here, but some geometry managers redefine this, to reorganize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6569
     components if that happens."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6570
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6571
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6572
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6573
    "Created: 22.9.1995 / 14:44:59 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6574
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6575
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6576
terminate
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6577
    "window manager wants me to go away;
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6578
     - notice, that not all window managers are nice enough to
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6579
       send this event, but simply destroy the view instead.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6580
     Can be redefined in subclasses to do whatever cleanup is
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6581
     required."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6582
2216
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  6583
    self closeRequest
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  6584
a9d902b2cc4b #terminate -> #closeRequest -> #destroy
Claus Gittinger <cg@exept.de>
parents: 2189
diff changeset
  6585
    "Modified: / 3.8.1998 / 19:51:23 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6586
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6587
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6588
unmapped
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6589
    "the view has been unmapped
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6590
     (either by some outside action - i.e. window manager iconified me,
765
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
  6591
     or due to unmapping of my parentView)."
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
  6592
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
  6593
    "/ if I was previously shown, tell it to all of
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
  6594
    "/ my subviews (they remember this in the shown instVar)
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
  6595
769
9470770c306e map/unmap messages
Claus Gittinger <cg@exept.de>
parents: 765
diff changeset
  6596
    "/ currently, the 'shown ifTrue:' optimization is
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  6597
    "/ not ok, since 'shown' is also modified by visibilityChanges.
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  6598
    "/ Also, when remapped, X11 only sends a mapped event for the topView.
769
9470770c306e map/unmap messages
Claus Gittinger <cg@exept.de>
parents: 765
diff changeset
  6599
    "/ Therefore, synthetically generate those #superViewUnmapped messages
9470770c306e map/unmap messages
Claus Gittinger <cg@exept.de>
parents: 765
diff changeset
  6600
    "/ in any case.
4736
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  6601
    |wdgr|
769
9470770c306e map/unmap messages
Claus Gittinger <cg@exept.de>
parents: 765
diff changeset
  6602
5087
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6603
    shown ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6604
	shown := false.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6605
	self changed:#visibility.
5087
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6606
    ].
4736
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  6607
    (wdgr := self windowGroup) notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6608
	wdgr focusView == self ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6609
	    wdgr focusViewUnmapped.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6610
	].
4736
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  6611
    ].
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  6612
1379
bd55ede48c37 comments
Claus Gittinger <cg@exept.de>
parents: 1363
diff changeset
  6613
    subViews notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6614
	subViews do:[:v |
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6615
	    v containerUnmapped
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6616
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6617
	self changed:#visibility.
1379
bd55ede48c37 comments
Claus Gittinger <cg@exept.de>
parents: 1363
diff changeset
  6618
    ]
bd55ede48c37 comments
Claus Gittinger <cg@exept.de>
parents: 1363
diff changeset
  6619
bd55ede48c37 comments
Claus Gittinger <cg@exept.de>
parents: 1363
diff changeset
  6620
    "Modified: 25.2.1997 / 22:40:52 / cg"
135
claus
parents:
diff changeset
  6621
!
claus
parents:
diff changeset
  6622
claus
parents:
diff changeset
  6623
visibilityChange:how
claus
parents:
diff changeset
  6624
    "the visibility of the view has changed (by some outside
claus
parents:
diff changeset
  6625
     action - i.e. window manager rearranged things).
5029
b9b004d17044 do not realize, if visibilityChannel says that the view should be invisible
Stefan Vogel <sv@exept.de>
parents: 5026
diff changeset
  6626
     Using this knowledge avoids useless redraw in obscured views."
135
claus
parents:
diff changeset
  6627
5087
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6628
    |shownBefore|
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6629
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6630
    shownBefore := shown.
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6631
135
claus
parents:
diff changeset
  6632
    how == #fullyObscured ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6633
	shown := false
135
claus
parents:
diff changeset
  6634
    ] ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6635
	shown := true.
5087
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6636
    ].
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6637
    shownBefore ~~ shown ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  6638
	self changed:#visibility.
5087
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  6639
    ].
3139
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  6640
!
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  6641
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  6642
visibilityStateChanged
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  6643
    "this is called when our visibilityChannel changes"
fd771ae3826a visibilityChannel support
Claus Gittinger <cg@exept.de>
parents: 3124
diff changeset
  6644
3410
f345f5f8e704 Undo prev change.
Stefan Vogel <sv@exept.de>
parents: 3409
diff changeset
  6645
    self isVisible:visibilityChannel value
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6646
!
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6647
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6648
win32NativeScroll:scrollCode position:newPosition
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6649
    "this is generated by a native scrollBar widget.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6650
     We should never arrive here, as its only supposed to be
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6651
     sent to scrollableViews..."
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6652
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6653
    scrollCode == #SB_LINEDOWN ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6654
	self scrollDown.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6655
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6656
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6657
    scrollCode == #SB_LINEUP ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6658
	self scrollUp.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6659
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6660
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6661
    scrollCode == #SB_LINELEFT ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6662
	self scrollLeft.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6663
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6664
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6665
    scrollCode == #SB_LINERIGHT ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6666
	self scrollRight.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6667
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6668
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6669
    scrollCode == #SB_PAGEDOWN ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6670
	self pageDown.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6671
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6672
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6673
    scrollCode == #SB_PAGEUP ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6674
	self pageUp.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6675
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6676
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6677
    scrollCode == #SB_PAGELEFT ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6678
	self pageLeft.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6679
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6680
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6681
    scrollCode == #SB_PAGERIGHT ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6682
	self pageRight.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6683
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6684
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6685
    scrollCode == #SB_THUMBPOSITIONVERTICAL ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6686
	self scrollVerticalToPercent:newPosition.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6687
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6688
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6689
    scrollCode == #SB_THUMBPOSITIONHORIZONTAL ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6690
	self scrollHorizontalToPercent:newPosition.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6691
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6692
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6693
    scrollCode == #SB_THUMBTRACKVERTICAL ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6694
	self scrollVerticalToPercent:newPosition.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6695
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6696
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6697
    scrollCode == #SB_THUMBTRACKHORIZONTAL ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6698
	self scrollHorizontalToPercent:newPosition.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6699
	^ self.
4833
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6700
    ].
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6701
384612cc7d37 win32NativeScroll:position: moved from ScrollableView
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  6702
    scrollCode == #SB_ENDSCROLL ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6703
	^ self.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  6704
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6705
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  6706
1302
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6707
!SimpleView methodsFor:'event simulation'!
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6708
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6709
pushEvent:aSelector
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6710
    "push some messageSend into my event queue -
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6711
     I will perform the corresponding method when its time
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6712
     to handle events (useful to update low-prio views from
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6713
     a higher prio process, to avoid blocking in the high prio one)"
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6714
2143
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6715
    ^ self pushEvent:aSelector withArguments:#()
1302
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6716
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6717
    "
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6718
     |v|
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6719
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6720
     v := View new openAndWait.
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6721
     v fill:Color red.
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6722
     v pushEvent:#redraw
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6723
    "
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6724
2143
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6725
    "Modified: / 10.6.1998 / 17:28:40 / cg"
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6726
!
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6727
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6728
pushEvent:aSelector with:arg
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6729
    "push some 1-arg messageSend into my event queue -
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6730
     I will perform the corresponding method when its time
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6731
     to handle events (useful to update low-prio views from
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6732
     a higher prio process, to avoid blocking in the high prio one)"
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6733
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6734
    ^ self pushEvent:aSelector withArguments:(Array with:arg)
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6735
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6736
    "Created: / 10.6.1998 / 17:27:17 / cg"
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6737
!
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6738
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6739
pushEvent:aSelector with:arg1 with:arg2
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6740
    "push some 1-arg messageSend into my event queue -
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6741
     I will perform the corresponding method when its time
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6742
     to handle events (useful to update low-prio views from
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6743
     a higher prio process, to avoid blocking in the high prio one)"
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6744
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6745
    ^ self pushEvent:aSelector withArguments:(Array with:arg1 with:arg2)
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6746
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6747
    "Created: / 10.6.1998 / 17:27:41 / cg"
1302
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6748
!
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6749
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6750
pushEvent:aSelector withArguments:args
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6751
    "push some messageSend into my event queue -
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6752
     I will perform the corresponding method when its time
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6753
     to handle events (useful to update low-prio views from
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6754
     a higher prio process, to avoid blocking in the high prio one)"
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6755
3856
45fccc92d834 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3838
diff changeset
  6756
    self sensor pushUserEvent:aSelector for:self withArguments:args
1302
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6757
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6758
    "
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6759
     |v|
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6760
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6761
     v := (Button label:'hello') openAndWait.
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6762
     Delay waitForSeconds:1.
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6763
     v pushEvent:#buttonPress:x:y: withArguments:#(1 10 10).
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6764
     Delay waitForSeconds:1.
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6765
     v pushEvent:#buttonRelease:x:y: withArguments:#(1 10 10).
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6766
    "
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  6767
2143
d5b9c2e64ce9 added #pushEvent:with: and #pushEvent:with:with:
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  6768
    "Modified: / 10.6.1998 / 17:28:16 / cg"
4347
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6769
!
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6770
5774
56671ce7160c added: #simulateButtonPress:at:
Claus Gittinger <cg@exept.de>
parents: 5770
diff changeset
  6771
simulateButtonPress:button at:aPoint
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  6772
    "simulate a button press by determining which sub-view is affected and
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  6773
     synthetically generating a buttonPressEvent for whatever view is underneath.
5775
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6774
     Returns the view which precessed the event or nil."
5774
56671ce7160c added: #simulateButtonPress:at:
Claus Gittinger <cg@exept.de>
parents: 5770
diff changeset
  6775
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6776
    ^ self simulateButtonPress:button at:aPoint sendDisplayEvent:false
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6777
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6778
    "Created: / 12-07-2011 / 14:36:02 / cg"
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6779
!
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6780
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6781
simulateButtonPress:button at:aPoint sendDisplayEvent:sendDisplayEvent
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6782
    "simulate a button press by determining which sub-view is affected and
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6783
     synthetically generating a buttonPressEvent for whatever view is underneath.
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6784
     Returns the view which precessed the event or nil."
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6785
5774
56671ce7160c added: #simulateButtonPress:at:
Claus Gittinger <cg@exept.de>
parents: 5770
diff changeset
  6786
    |ev|
56671ce7160c added: #simulateButtonPress:at:
Claus Gittinger <cg@exept.de>
parents: 5770
diff changeset
  6787
5775
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6788
    ev := WindowEvent buttonPress:button x:0 y:0 view:self.
6851
4c1547ff5459 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6845
diff changeset
  6789
    "/ x/y will be set in simulateUserEvent:ev at:aPoint
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6790
    ^ self simulateUserEvent:ev at:aPoint sendDisplayEvent:sendDisplayEvent
5775
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6791
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6792
    "Created: / 12-07-2011 / 14:36:02 / cg"
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6793
!
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6794
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6795
simulateButtonRelease:button at:aPoint 
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6796
    "simulate a button release by determining which sub-view is affected and
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6797
     synthetically generating a buttonPressEvent for whatever view is underneath.
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6798
     Returns the view which precessed the event or nil."
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6799
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6800
    ^ self simulateButtonRelease:button at:aPoint sendDisplayEvent:false
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6801
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6802
    "Created: / 12-07-2011 / 14:54:37 / cg"
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6803
!
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6804
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6805
simulateButtonRelease:button at:aPoint sendDisplayEvent:sendDisplayEvent
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  6806
    "simulate a button release by determining which sub-view is affected and
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  6807
     synthetically generating a buttonPressEvent for whatever view is underneath.
5775
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6808
     Returns the view which precessed the event or nil."
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6809
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6810
    |ev|
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6811
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6812
    ev := WindowEvent buttonRelease:button x:0 y:0 view:self.
6851
4c1547ff5459 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6845
diff changeset
  6813
    "/ x/y will be set in simulateUserEvent:ev at:aPoint
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6814
    ^ self simulateUserEvent:ev at:aPoint sendDisplayEvent:sendDisplayEvent
5775
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6815
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6816
    "Created: / 12-07-2011 / 14:54:37 / cg"
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6817
!
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6818
6854
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6819
simulateKeyPress:keyOrStringOrSymbol at:aPoint
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6820
    "simulate a key press by determining which sub-view is affected and
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6821
     synthetically generating a keyPressEvent for whatever view is underneath.
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6822
     Returns the view which processed the event or nil."
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6823
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6824
    ^ self simulateKeyPress:keyOrStringOrSymbol at:aPoint sendDisplayEvent:false
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6825
!
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6826
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6827
simulateKeyPress:keyOrStringOrSymbol at:aPoint sendDisplayEvent:sendDisplayEvent
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6828
    "simulate a key press by determining which sub-view is affected and
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6829
     synthetically generating a keyPressEvent for whatever view is underneath.
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6830
     Returns the view which processed the event or nil."
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6831
6854
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6832
    |sequence ev lastView|
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6833
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6834
    (keyOrStringOrSymbol isCharacter or:[keyOrStringOrSymbol isSymbol])
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6835
        ifTrue:[ sequence := Array with:keyOrStringOrSymbol ]
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6836
        ifFalse:[ sequence := keyOrStringOrSymbol ].
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6837
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6838
    sequence do:[:each |
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6839
        ev := WindowEvent keyPress:each x:0 y:0 view:self.
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6840
        "/ x/y will be set in simulateUserEvent:ev at:aPoint
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6841
        lastView := self simulateUserEvent:ev at:aPoint sendDisplayEvent:sendDisplayEvent
6854
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6842
    ].
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6843
    ^ lastView
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6844
!
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6845
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6846
simulateKeyPressRelease:keyOrStringOrSymbol at:aPoint
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6847
    "simulate a key release by determining which sub-view is affected and
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6848
     synthetically generating a keyPressEvent for whatever view is underneath.
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6849
     Returns the view which processed the event or nil."
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6850
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6851
    ^ self simulateKeyPressRelease:keyOrStringOrSymbol at:aPoint sendDisplayEvent:false
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6852
!
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6853
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6854
simulateKeyPressRelease:keyOrStringOrSymbol at:aPoint sendDisplayEvent:sendDisplayEvent
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6855
    "simulate a key release by determining which sub-view is affected and
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6856
     synthetically generating a keyPressEvent for whatever view is underneath.
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6857
     Returns the view which processed the event or nil."
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6858
6854
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6859
    |sequence ev1 ev2 lastView|
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6860
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6861
    (keyOrStringOrSymbol isCharacter or:[keyOrStringOrSymbol isSymbol])
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6862
        ifTrue:[ sequence := Array with:keyOrStringOrSymbol ]
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6863
        ifFalse:[ sequence := keyOrStringOrSymbol ].
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6864
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6865
    sequence do:[:each |
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6866
        ev1 := WindowEvent keyPress:each x:0 y:0 view:self.
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6867
        "/ x/y will be set in simulateUserEvent:ev at:aPoint
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6868
        lastView := self simulateUserEvent:ev1 at:aPoint sendDisplayEvent:sendDisplayEvent.
6854
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6869
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6870
        ev2 := WindowEvent keyRelease:each x:0 y:0 view:self.
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6871
        "/ x/y will be set in simulateUserEvent:ev at:aPoint
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6872
        lastView := self simulateUserEvent:ev2 at:aPoint sendDisplayEvent:sendDisplayEvent.
6854
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6873
    ].
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6874
    ^ lastView
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6875
!
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6876
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6877
simulateKeyRelease:keyOrStringOrSymbol at:aPoint
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6878
    "simulate a key release by determining which sub-view is affected and
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6879
     synthetically generating a keyPressEvent for whatever view is underneath.
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6880
     Returns the view which processed the event or nil."
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6881
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6882
    ^ self simulateKeyRelease:keyOrStringOrSymbol at:aPoint sendDisplayEvent:false
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6883
!
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6884
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6885
simulateKeyRelease:keyOrStringOrSymbol at:aPoint sendDisplayEvent:sendDisplayEvent
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6886
    "simulate a key release by determining which sub-view is affected and
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6887
     synthetically generating a keyPressEvent for whatever view is underneath.
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6888
     Returns the view which processed the event or nil."
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6889
6854
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6890
    |sequence ev lastView|
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6891
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6892
    (keyOrStringOrSymbol isCharacter or:[keyOrStringOrSymbol isSymbol])
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6893
        ifTrue:[ sequence := Array with:keyOrStringOrSymbol ]
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6894
        ifFalse:[ sequence := keyOrStringOrSymbol ].
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6895
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6896
    sequence do:[:each |
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6897
        ev := WindowEvent keyRelease:each x:0 y:0 view:self.
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6898
        "/ x/y will be set in simulateUserEvent:ev at:aPoint
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6899
        lastView := self simulateUserEvent:ev at:aPoint sendDisplayEvent:sendDisplayEvent
6854
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6900
    ].
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6901
    ^ lastView
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6902
!
e0fc5d0dfc25 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
  6903
5775
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6904
simulateUserEvent:ev at:aPoint
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  6905
    "simulate a button press by determining which sub-view is affected and
6855
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6906
     synthetically generating a buttonPressEvent for whatever view is underneath.
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6907
     Cares for any active grab - i.e. if some other view has grabbed the pointer or keyboard
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6908
     the event is sent to the grabView with pointer coordinate translated as required
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6909
     (typically these are popup views like menus)
5775
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6910
     Returns the view which precessed the event or nil."
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6911
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6912
    ^ self simulateUserEvent:ev at:aPoint sendDisplayEvent:false
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6913
!
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6914
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6915
simulateUserEvent:ev at:aPoint sendDisplayEvent:sendDisplayEvent
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6916
    "simulate a button press by determining which sub-view is affected and
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6917
     synthetically generating a buttonPressEvent for whatever view is underneath.
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6918
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6919
     If sendDisplayEvent is true, a real physical event is generated via sendEvent,
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6920
     from the Display (xserver). Otherwise, the event is pushed into the widget's event
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6921
     queue, without a roundtrip through the display.
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6922
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6923
     Otherwise, care for any active grab - i.e. if some other view has grabbed the pointer or keyboard
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6924
     the event is sent to the grabView with pointer coordinate translated as required
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6925
     (typically these are popup views like menus)
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6926
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6927
     Returns the view which processed the event or nil. For displayEvent sending,
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6928
     always return the receiver, as we do not know how the grab processing came out at the end"
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6929
6855
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6930
    |targetView pointXLated|
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6931
6864
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6932
    sendDisplayEvent ifTrue:[
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6933
        "/ translate to screen coordinates
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6934
        pointXLated := self device translatePoint:aPoint from:(self id) to:(self device rootWindowId).
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6935
        self device 
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6936
            sendKeyOrButtonEvent:ev type 
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6937
            x:pointXLated x y:pointXLated y 
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6938
            keyOrButton:(ev isKeyEvent ifTrue:[ev rawKey] ifFalse:[ev button])
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6939
            state:(ev modifierFlags)
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6940
            toViewId:self id.
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6941
        ^ self.
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6942
    ].
ab6d4dbee1ce class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  6943
6856
36d81d2f7228 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6855
diff changeset
  6944
    (ev isButtonEvent or:[ev isPointerEnterLeaveEvent]) ifTrue:[
6855
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6945
        "/ if there is a pointer grab, the event has to sent to that one
6857
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6852 6856
diff changeset
  6946
        targetView := self device activePointerGrab.
6855
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6947
    ] ifFalse:[
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6948
        (ev isKeyEvent) ifTrue:[
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6949
            "/ if there is a pointer grab, the event has to sent to that one
6857
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6852 6856
diff changeset
  6950
            targetView := self device activeKeyboardGrab.
6855
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6951
        ].
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6952
    ].
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6953
    targetView isNil ifTrue:[
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6954
        ((0@0 corner:self extent) containsPoint:aPoint) ifTrue:[
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6955
            self subViews do:[:each |
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6956
                |whichView|
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6957
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6958
                whichView := each simulateUserEvent:ev at:(self graphicsDevice translatePoint:aPoint fromView:self toView:each).
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6959
                whichView notNil ifTrue:[^ whichView].
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6960
            ].
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6961
            targetView := self.
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6962
        ].
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6963
    ].
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6964
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6965
    targetView notNil ifTrue:[
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6966
        pointXLated := self device translatePoint:aPoint fromView:self toView:targetView.
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6967
        ev x:(pointXLated x).
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6968
        ev y:(pointXLated y).
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6969
        ev view:targetView.
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6970
        targetView sensor pushEvent:ev.
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6971
        ^ targetView
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6972
    ].
02ba4d520821 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6973
5774
56671ce7160c added: #simulateButtonPress:at:
Claus Gittinger <cg@exept.de>
parents: 5770
diff changeset
  6974
    ^ nil
56671ce7160c added: #simulateButtonPress:at:
Claus Gittinger <cg@exept.de>
parents: 5770
diff changeset
  6975
5775
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
  6976
    "Created: / 12-07-2011 / 14:53:19 / cg"
5774
56671ce7160c added: #simulateButtonPress:at:
Claus Gittinger <cg@exept.de>
parents: 5770
diff changeset
  6977
!
56671ce7160c added: #simulateButtonPress:at:
Claus Gittinger <cg@exept.de>
parents: 5770
diff changeset
  6978
4347
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6979
startButtonLongPressedHandlerProcess
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6980
    "start a process, which simulates a right-button press if the left-button
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6981
     has been pressed, but not released, and stayed pressed for a while.
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6982
     This is very handy for single-button-mice, as used with the MAC"
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6983
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6984
    |p|
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6985
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6986
    self stopButtonLongPressedHandlerProcess.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6987
    p :=
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6988
	[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6989
	    Delay waitForSeconds:0.7.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6990
	    self sensor leftButtonPressed ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6991
		"/ simulate a right-button press
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6992
		self buttonPress:2 x:0 y:0
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6993
	    ]
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  6994
	] newProcess.
4347
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6995
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  6996
    self graphicsDevice buttonLongPressedHandlerProcess:p.
4347
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6997
    p resume.
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6998
!
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  6999
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  7000
stopButtonLongPressedHandlerProcess
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  7001
    "stop any long-button-pressed process"
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  7002
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  7003
    |p|
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  7004
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7005
    (p := self graphicsDevice buttonLongPressedHandlerProcess) notNil ifTrue:[
4347
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  7006
"/ Transcript showCR:'stop'.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7007
	self graphicsDevice buttonLongPressedHandlerProcess:nil.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7008
	p terminate.
4347
528ba872cca6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
  7009
    ].
1302
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  7010
! !
0d24401dff29 event queue access added
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
  7011
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7012
!SimpleView methodsFor:'focus handling'!
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7013
6789
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7014
assignKeyboardFocusTo:aConsumer
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7015
    |wg|
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7016
6792
b086ceb76f72 bugfix - check if windowGroup is nil
Michael Beyl <mb@exept.de>
parents: 6789
diff changeset
  7017
    wg := self windowGroup.
b086ceb76f72 bugfix - check if windowGroup is nil
Michael Beyl <mb@exept.de>
parents: 6789
diff changeset
  7018
    wg notNil ifTrue:[
b086ceb76f72 bugfix - check if windowGroup is nil
Michael Beyl <mb@exept.de>
parents: 6789
diff changeset
  7019
        self graphicsDevice isWindowsPlatform ifTrue:[
b086ceb76f72 bugfix - check if windowGroup is nil
Michael Beyl <mb@exept.de>
parents: 6789
diff changeset
  7020
            wg focusView:aConsumer byTab:true.
b086ceb76f72 bugfix - check if windowGroup is nil
Michael Beyl <mb@exept.de>
parents: 6789
diff changeset
  7021
        ] ifFalse:[
b086ceb76f72 bugfix - check if windowGroup is nil
Michael Beyl <mb@exept.de>
parents: 6789
diff changeset
  7022
            aConsumer requestFocus.
b086ceb76f72 bugfix - check if windowGroup is nil
Michael Beyl <mb@exept.de>
parents: 6789
diff changeset
  7023
            "/ consumer requestFocus. - could be denied; but we force it here
b086ceb76f72 bugfix - check if windowGroup is nil
Michael Beyl <mb@exept.de>
parents: 6789
diff changeset
  7024
            wg focusView:aConsumer byTab:false.
b086ceb76f72 bugfix - check if windowGroup is nil
Michael Beyl <mb@exept.de>
parents: 6789
diff changeset
  7025
        ].
6789
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7026
    ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7027
!
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7028
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7029
assignKeyboardFocusToFirstInputField
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7030
    "assign the keyboard focus to the first first keyboardConsumer.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7031
     (in older versions, this used to favour inputfields over editFields;
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7032
      see (or redefine) preferFirstInputFieldWhenAssigningInitialFocus)"
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7033
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7034
    self obsoleteMethodWarning.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7035
    self assignKeyboardFocusToFirstKeyboardConsumer
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7036
!
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7037
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7038
assignKeyboardFocusToFirstKeyboardConsumer
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7039
    "assign the keyboard focus to the first first keyboardConsumer.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7040
     (in older versions, this used to favour inputfields over editFields;
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7041
      see (or redefine) preferFirstInputFieldWhenAssigningInitialFocus)"
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7042
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7043
    |firstInputField firstConsumer firstCursorConsumer consumer|
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7044
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7045
    self withAllSubViewsDo:[:v |
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7046
        v shown ifTrue:[
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7047
            (firstInputField isNil and:[v isInputField]) ifTrue:[
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7048
                firstInputField := v
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7049
            ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7050
            (firstConsumer isNil and:[v isKeyboardConsumer]) ifTrue:[
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7051
                firstConsumer := v
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7052
            ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7053
            (firstCursorConsumer isNil and:[v isCursorKeyConsumer]) ifTrue:[
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7054
                firstCursorConsumer := v
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7055
            ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7056
        ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7057
    ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7058
    (firstInputField notNil and:[self preferFirstInputFieldWhenAssigningInitialFocus]) ifTrue:[
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7059
        consumer := firstInputField.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7060
    ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7061
    consumer := (consumer ? firstConsumer ? firstCursorConsumer).
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7062
    "/ Transcript showCR:consumer.
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7063
    consumer notNil ifTrue:[
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7064
        self assignKeyboardFocusTo:consumer
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7065
    ].
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7066
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7067
    "Modified: / 29-08-2006 / 14:32:30 / cg"
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7068
!
a1d3aeba44c8 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6778
diff changeset
  7069
3150
547754678cb9 add new method(s) canTab(:)
ca
parents: 3139
diff changeset
  7070
canTab
4446
49376dd5489f dont want 'em ugly comments !!!!!
Claus Gittinger <cg@exept.de>
parents: 4433
diff changeset
  7071
    "returns true if the widget is tabable"
49376dd5489f dont want 'em ugly comments !!!!!
Claus Gittinger <cg@exept.de>
parents: 4433
diff changeset
  7072
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  7073
    "/ ^ canTab == true
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  7074
    ^ flagBits bitTest:FlagCanTab
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  7075
!
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  7076
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  7077
canTab:aBoolean
4446
49376dd5489f dont want 'em ugly comments !!!!!
Claus Gittinger <cg@exept.de>
parents: 4433
diff changeset
  7078
    "set widget tabable or not"
49376dd5489f dont want 'em ugly comments !!!!!
Claus Gittinger <cg@exept.de>
parents: 4433
diff changeset
  7079
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  7080
    "/ canTab := aBoolean
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  7081
    aBoolean ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7082
	flagBits := flagBits bitOr:FlagCanTab
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  7083
    ] ifFalse:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7084
	flagBits := flagBits bitClear:FlagCanTab
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  7085
    ].
3150
547754678cb9 add new method(s) canTab(:)
ca
parents: 3139
diff changeset
  7086
!
547754678cb9 add new method(s) canTab(:)
ca
parents: 3139
diff changeset
  7087
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7088
doNotRequestFocusOnPointerEnter
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7089
    "returns true if widget SHOULD NOT request the focus on pointer enter;
4446
49376dd5489f dont want 'em ugly comments !!!!!
Claus Gittinger <cg@exept.de>
parents: 4433
diff changeset
  7090
     if false is returned, the behavior depends upon the settings."
49376dd5489f dont want 'em ugly comments !!!!!
Claus Gittinger <cg@exept.de>
parents: 4433
diff changeset
  7091
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7092
    ^ flagBits bitTest:FlagDoNotRequestFocusOnPointerEnter
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7093
!
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7094
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7095
doNotRequestFocusOnPointerEnter:aBoolean
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7096
    "if true, setup that the widget SHOULD NOT request the focus on pointer enter;
4446
49376dd5489f dont want 'em ugly comments !!!!!
Claus Gittinger <cg@exept.de>
parents: 4433
diff changeset
  7097
     if false, the behavior depends upon the settings."
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7098
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7099
    aBoolean ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7100
	flagBits := flagBits bitOr:FlagDoNotRequestFocusOnPointerEnter
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7101
    ] ifFalse:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7102
	flagBits := flagBits bitClear:FlagDoNotRequestFocusOnPointerEnter
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7103
    ].
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7104
!
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7105
3155
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7106
focusNext
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7107
    "get next focus view to self
4734
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7108
     Skip invisible, disabled or widgets the extent is to small"
4446
49376dd5489f dont want 'em ugly comments !!!!!
Claus Gittinger <cg@exept.de>
parents: 4433
diff changeset
  7109
4736
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7110
    shown ifFalse:[^ nil].
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7111
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7112
    ^ self focusNextForWhich:[:v | v shown]
4734
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7113
!
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7114
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7115
focusNextChildAfter:aChildView
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7116
    "get the next focus view after aChildView in mySelf or nil,
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7117
     if there is none.
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7118
     Skip invisible or disabled widgets"
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7119
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7120
    |viewInSubView index subviewsInFocusOrder|
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7121
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7122
    shown ifFalse:[ ^ nil ].
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7123
    subViews isNil ifTrue:[ ^ nil ].
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7124
    subviewsInFocusOrder := self subviewsInFocusOrder.
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7125
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7126
    index := subviewsInFocusOrder identityIndexOf:aChildView.
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7127
    index == 0 ifTrue:[ ^ nil ].
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7128
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7129
    subviewsInFocusOrder from:(index + 1) do:[:eachChildAfterTheOne |
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7130
	eachChildAfterTheOne shown ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7131
	    (eachChildAfterTheOne canTab
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7132
	    and:[eachChildAfterTheOne enabled]) ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7133
		^ eachChildAfterTheOne
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7134
	    ].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7135
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7136
	    (viewInSubView := eachChildAfterTheOne focusNext) notNil ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7137
		^ viewInSubView
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7138
	    ].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7139
	].
3155
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7140
    ].
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7141
    ^ nil
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7142
!
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7143
4736
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7144
focusNextForWhich:aCondition
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7145
    "get next focus view to self
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7146
     Skip invisible, disabled or widgets the extent is to small"
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7147
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7148
    |viewInSubView|
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7149
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7150
    self subviewsInFocusOrder do:[:aSubView|
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7151
	(aSubView canTab
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7152
	and:[aSubView enabled
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7153
	and:[aCondition value:aSubView]]) ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7154
	    ^ aSubView
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7155
	].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7156
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7157
	(viewInSubView := aSubView focusNextForWhich:aCondition) notNil ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7158
	    ^ viewInSubView
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7159
	]
4736
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7160
    ].
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7161
    ^ nil
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7162
!
a17606a09947 focus handling
ca
parents: 4734
diff changeset
  7163
3155
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7164
focusPrevious
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7165
    "get previous focus view to self
4446
49376dd5489f dont want 'em ugly comments !!!!!
Claus Gittinger <cg@exept.de>
parents: 4433
diff changeset
  7166
     Skip invisible & disabled widgets."
49376dd5489f dont want 'em ugly comments !!!!!
Claus Gittinger <cg@exept.de>
parents: 4433
diff changeset
  7167
3155
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7168
    |viewInSubView|
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7169
4734
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7170
    shown ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7171
	self subviewsInFocusOrder reverseDo:[:aSubView|
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7172
	    aSubView shown ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7173
		viewInSubView := aSubView focusPrevious.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7174
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7175
		viewInSubView notNil ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7176
		    ^ viewInSubView
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7177
		].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7178
		(aSubView canTab and:[aSubView enabled]) ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7179
		    ^ aSubView
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7180
		].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7181
	    ]
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7182
	]
4734
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7183
    ].
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7184
    ^ nil
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7185
!
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7186
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7187
focusPreviousChildBefore:aChildView
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7188
    "get the previous focus view before aChildView in mySelf or nil, if there is none.
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7189
     Skip invisible or disabled widgets"
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7190
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7191
    |viewInSubView index subviewsInFocusOrder|
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7192
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7193
    shown ifFalse:[ ^ nil ].
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7194
    subViews isNil ifTrue:[ ^ nil ].
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7195
    subviewsInFocusOrder := self subviewsInFocusOrder.
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7196
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7197
    index := subviewsInFocusOrder identityIndexOf:aChildView.
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7198
    index == 0 ifTrue:[ ^ nil ].
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7199
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7200
    subviewsInFocusOrder from:1 to:(index - 1) reverseDo:[:eachChildBeforeTheOne |
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7201
	eachChildBeforeTheOne shown ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7202
	    (viewInSubView := eachChildBeforeTheOne focusPrevious) notNil ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7203
		^ viewInSubView
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7204
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7205
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7206
	    (eachChildBeforeTheOne canTab and:[eachChildBeforeTheOne enabled]) ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7207
		^ eachChildBeforeTheOne
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7208
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7209
	].
4734
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7210
    ].
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7211
    "/ the code below allows for a notebooks tab-list to be reached
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7212
    (self canTab and:[self enabled]) ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7213
	^ self
4734
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7214
    ].
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7215
3155
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7216
    ^ nil
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7217
!
660e71b1628b focusNext and focusPrevious implemented
ca
parents: 3152
diff changeset
  7218
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7219
requestDoNotFocusOnPointerEnter
5924
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7220
    <resource: #obsolete>
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7221
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7222
    self obsoleteMethodWarning:'use doNotRequestFocusOnPointerEnter'.
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7223
    ^ flagBits bitTest:FlagDoNotRequestFocusOnPointerEnter
5924
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7224
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7225
    "Modified: / 01-08-2012 / 17:05:56 / cg"
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7226
!
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7227
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7228
requestDoNotFocusOnPointerEnter:aBoolean
5924
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7229
    "very bad naming - wrong english"
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7230
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7231
    <resource: #obsolete>
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7232
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7233
    self obsoleteMethodWarning:'use doNotRequestFocusOnPointerEnter:'.
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7234
    self doNotRequestFocusOnPointerEnter:aBoolean
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7235
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7236
    "Modified (format): / 01-08-2012 / 17:05:42 / cg"
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7237
!
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7238
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7239
requestFocus
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7240
    "request focus from my windowGroup;
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7241
     typically, this is invoked when the mouse pointer enters a
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7242
     widget. The request may or may not be ignored by the wGroup
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7243
     (it will be ignored, if an explicit focus-change is currently
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7244
      active - i.e. if the user tabbed into a widget)"
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7245
5924
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7246
    "/ Transcript show:'take: '; showCR:self.
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7247
    windowGroup notNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7248
	^ windowGroup focusRequestFrom:self
5924
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7249
    ].
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7250
    "/ Transcript show:'oops: '; showCR:self.
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7251
    ^ true
5664
4546b913860e comment/format in: #mapped
Claus Gittinger <cg@exept.de>
parents: 5663
diff changeset
  7252
5665
f901e164a7ba changed: #requestFocus
Claus Gittinger <cg@exept.de>
parents: 5664
diff changeset
  7253
    "Modified: / 09-12-2010 / 14:33:40 / cg"
5924
50df967c642d #requestDoNotFocusOnPointerEnter
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  7254
    "Modified (format): / 01-08-2012 / 17:02:30 / cg"
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7255
!
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7256
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7257
requestFocusOnPointerEnter
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7258
    "returns true if widget SHOULD request the focus on pointer enter;
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7259
     if false is returned, the behavior depends upon the settings.
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7260
    "
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7261
    ^ flagBits bitTest:FlagRequestFocusOnPointerEnter
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7262
!
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7263
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7264
requestFocusOnPointerEnter:aBoolean
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7265
    "if true, setup that the widget SHOULD request the focus on pointer enter;
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7266
     if false, the behavior depends upon the settings.
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7267
    "
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7268
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7269
    aBoolean ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  7270
	flagBits := flagBits bitOr:FlagRequestFocusOnPointerEnter
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7271
    ] ifFalse:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  7272
	flagBits := flagBits bitClear:FlagRequestFocusOnPointerEnter
3590
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7273
    ].
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7274
!
8e942a9ff4aa two more flags: request / doNotRequest focus on pointer enter
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  7275
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7276
showFocus:explicit
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7277
    "highlight myself somehow to tell user that I have the focus.
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7278
     If explicit is true, the focus came via focusStepping (i.e. tabbing);
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7279
     if false, it came via the window manager (i.e. pointer entering).
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7280
     Only change my border, if this is an explicit focusChange."
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7281
6640
a0abbda92054 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6637
diff changeset
  7282
    |delta clrId bd graphicsDevice|
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7283
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7284
    explicit ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7285
	(self drawableId notNil
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7286
	and:[superView notNil
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7287
	and:[styleSheet notNil]]) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7288
	    (styleSheet at:#'focus.showBorder' default:true) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7289
		graphicsDevice := self graphicsDevice.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7290
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7291
		(graphicsDevice supportsWindowBorder:(bd := DefaultFocusBorderWidth)) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7292
		    (graphicsDevice supportsWindowBorder:(bd := 1)) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7293
			bd := 0.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7294
		    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7295
		].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7296
		delta := bd - self borderWidth.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7297
		delta ~~ 0 ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7298
		    (left == 0 or:[top == 0]) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7299
			graphicsDevice resizeWindow:self drawableId width:width-delta-delta height:height-delta-delta.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7300
		    ] ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7301
			graphicsDevice moveWindow:self drawableId x:left-delta y:top-delta.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7302
		    ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7303
		    graphicsDevice setWindowBorderWidth:bd in:self drawableId.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7304
		].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7305
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7306
		clrId := (DefaultFocusColor onDevice:graphicsDevice) colorId.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7307
		clrId isNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7308
		    clrId := graphicsDevice blackpixel
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7309
		].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7310
		graphicsDevice setWindowBorderColor:clrId in:self drawableId.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7311
	    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7312
	]
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7313
    ] ifFalse:[
2560
a19faec26261 showFocus/showNoFocus
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
  7314
"/        superView notNil ifTrue:[
a19faec26261 showFocus/showNoFocus
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
  7315
"/            superView showFocus:explicit
a19faec26261 showFocus/showNoFocus
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
  7316
"/        ]
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7317
    ]
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7318
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7319
    "Modified: / 17.9.1998 / 15:08:34 / cg"
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7320
!
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7321
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7322
showNoFocus:explicit
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7323
    "undo the effect of showFocus.
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7324
     Explicit tells if the focus came via focusStepping (i.e. tabbing)
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7325
     or via the window manager (i.e. pointer entering).
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7326
     Only change my border, if this is an explicit focusChange."
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7327
6640
a0abbda92054 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6637
diff changeset
  7328
    |delta bd graphicsDevice|
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7329
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7330
    explicit ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7331
	(self drawableId notNil and:[superView notNil]) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7332
	    (styleSheet at:#'focus.showBorder' default:true) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7333
		graphicsDevice := self graphicsDevice.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7334
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7335
		(graphicsDevice supportsWindowBorder:(bd := self borderWidth)) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7336
		    (graphicsDevice supportsWindowBorder:(bd := 1)) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7337
			bd := 0.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7338
		    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7339
		].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7340
		delta := DefaultFocusBorderWidth - bd.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7341
		delta ~~ 0 ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7342
		    graphicsDevice setWindowBorderWidth:bd in:self drawableId.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7343
		    graphicsDevice moveWindow:self drawableId x:left y:top.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7344
		    graphicsDevice resizeWindow:self drawableId width:width height:height.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7345
		].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7346
		self setBorderColor.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7347
	    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7348
	]
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7349
    ]
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7350
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7351
    "Modified: / 17.9.1998 / 15:08:02 / cg"
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7352
!
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7353
4734
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7354
subviewsInFocusOrder
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7355
    ^ subViews ? #()
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7356
!
cad9cacb9cde focus handling changed: looking for subviewsInFocusOrder
ca
parents: 4720
diff changeset
  7357
4425
7b2d529158e1 +takeFocus
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  7358
takeFocus
7b2d529158e1 +takeFocus
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  7359
    "Unconditionally take the focus from my windowGroup"
7b2d529158e1 +takeFocus
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  7360
7b2d529158e1 +takeFocus
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  7361
    windowGroup notNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  7362
	windowGroup focusView:self byTab:nil "/false.
4425
7b2d529158e1 +takeFocus
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  7363
    ].
7b2d529158e1 +takeFocus
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  7364
!
7b2d529158e1 +takeFocus
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  7365
5663
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7366
takeFocusWhenMapped
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7367
    ^ flagBits bitTest:FlagTakeFocusWhenMapped
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7368
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7369
    "Created: / 09-12-2010 / 10:34:30 / cg"
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7370
!
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7371
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7372
takeFocusWhenMapped:aBoolean
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7373
    aBoolean ifTrue:[
5707
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  7374
	flagBits := flagBits bitOr:FlagTakeFocusWhenMapped
5663
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7375
    ] ifFalse:[
5707
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  7376
	flagBits := flagBits bitClear:FlagTakeFocusWhenMapped
5663
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7377
    ].
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7378
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7379
    "Created: / 09-12-2010 / 10:34:11 / cg"
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7380
!
e72ce3f3ae68 focus handling when mapped
Claus Gittinger <cg@exept.de>
parents: 5662
diff changeset
  7381
5667
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  7382
topViewWasMapped
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  7383
    "invoked when my topView is mapped"
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  7384
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  7385
    self isKeyboardConsumer ifTrue:[
5707
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  7386
	self takeFocusWhenMapped ifTrue:[
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  7387
	    self requestFocus
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  7388
	]
5667
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  7389
    ] ifFalse:[
5707
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  7390
	subViews notNil ifTrue:[
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  7391
	    subViews do:[:eachSubView |
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  7392
		eachSubView topViewWasMapped
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  7393
	    ].
709abebb57eb delay the stylesheet reading till later
Claus Gittinger <cg@exept.de>
parents: 5706
diff changeset
  7394
	].
5667
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  7395
    ].
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  7396
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  7397
    "Created: / 09-12-2010 / 18:11:51 / cg"
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  7398
!
c065259f0d5c added: #topViewWasMapped
Claus Gittinger <cg@exept.de>
parents: 5665
diff changeset
  7399
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7400
wantsFocusWithButtonPress
2741
7e85a327ce98 added extra query: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
  7401
    "views which do not like to take the keyboard focus
7e85a327ce98 added extra query: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
  7402
     with buttonPress can do so by redefining this
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7403
     to return false
6127
e0dd6ee24d9e class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  7404
     (actually: they should, because it is quite annoying
6649
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  7405
      in the UI, if a menuPanel or button takes my keyboard focus.
88f48ade4b42 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6644
diff changeset
  7406
      So we should consider making the default false here, so every
6127
e0dd6ee24d9e class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  7407
      widget writer has to think twice...
e0dd6ee24d9e class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  7408
      Can we do such a major change?)"
2741
7e85a327ce98 added extra query: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
  7409
5654
3039f635dcba changed: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 5639
diff changeset
  7410
"/    (self class == SimpleView) ifTrue:[
3039f635dcba changed: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 5639
diff changeset
  7411
"/        "/ a pure filler/geometric layout view
3039f635dcba changed: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 5639
diff changeset
  7412
"/        ^ false
3039f635dcba changed: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 5639
diff changeset
  7413
"/    ].
3581
72e09769d372 do not take focus when disabled
Claus Gittinger <cg@exept.de>
parents: 3559
diff changeset
  7414
    ^ self enabled
5654
3039f635dcba changed: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 5639
diff changeset
  7415
3039f635dcba changed: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 5639
diff changeset
  7416
    "Modified: / 17-11-2010 / 16:07:01 / cg"
2741
7e85a327ce98 added extra query: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
  7417
!
7e85a327ce98 added extra query: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
  7418
7e85a327ce98 added extra query: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
  7419
wantsFocusWithPointerEnter
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7420
    "views which like to take the keyboard focus
2741
7e85a327ce98 added extra query: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
  7421
     when the pointer enters can do so by redefining this
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7422
     to return true"
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7423
2741
7e85a327ce98 added extra query: #wantsFocusWithButtonPress
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
  7424
    ^ false
2506
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7425
! !
221b75206a75 focus handling changed.
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  7426
3087
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7427
!SimpleView methodsFor:'grabbing'!
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7428
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7429
forceUngrabKeyboard
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7430
    "force a keyboard ungrab - even if was not the grabber"
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7431
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7432
    self graphicsDevice ungrabKeyboard.
3087
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7433
!
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7434
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7435
forceUngrabPointer
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7436
    "force a pointer ungrab - even if was not the grabber"
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7437
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7438
    self graphicsDevice ungrabPointer
3087
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7439
!
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7440
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7441
grabKeyboard
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7442
    "grab the keayboard - that is: report all keyboard events to myself,
3087
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7443
     even if the mouse moved out of myself.
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7444
     Returns true, if the grab was sucessfull (could fail, if some other
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7445
     application has a grab - but thats very unlikely)."
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7446
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7447
    ^ self graphicsDevice grabKeyboardInView:self.
3087
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7448
!
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7449
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7450
grabPointer
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7451
    "grab the pointer - that is: report all motion events relative to
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7452
     myself, even if moved out of myself.
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7453
     Returns true, if the grab was sucessfull (could fail, if some other
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7454
     application has a grab - but thats very unlikely)."
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7455
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7456
    ^ self grabPointerWithCursor:nil
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7457
!
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7458
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7459
grabPointerWithCursor:aCursorOrNil
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7460
    "grab the pointer - that is: report all motion events relative to
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7461
     myself, even if moved out of myself.
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7462
     Show aCursor during the grab, if the cursor argument is not nil.
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7463
     Returns true, if the grab was sucessfull (could fail, if some other
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7464
     application has a grab - but thats very unlikely)."
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7465
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7466
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7467
"/    (sensor := self sensor) notNil ifTrue:[
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7468
"/        "/ make certain all X events have been received
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7469
"/        device sync.
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7470
"/        "/ now all events have been received.
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7471
"/        "/ now, flush all pointer events
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7472
"/        sensor flushMotionEventsFor:nil
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7473
"/    ].
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7474
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7475
    aCursorOrNil notNil ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7476
	cursor := (aCursorOrNil onDevice:self graphicsDevice).
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7477
	^ self graphicsDevice grabPointerInView:self withCursor:cursor
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7478
    ].
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7479
    ^ self graphicsDevice grabPointerInView:self
3087
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7480
!
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7481
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7482
ungrabKeyboard
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7483
    "ungrab the keyboard - but only if I was the grabber"
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7484
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7485
    |sensor|
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7486
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7487
    self graphicsDevice activeKeyboardGrab == self ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7488
	(sensor := self sensor) notNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7489
	    "/ make certain all X events have been received
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7490
	    self graphicsDevice sync.
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7491
	    "/ now all events have been received.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7492
	    "/ now, flush all pointer events
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7493
	    sensor flushKeyboardFor:self
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7494
	].
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7495
	self graphicsDevice ungrabKeyboard.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7496
    ].
3087
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7497
!
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7498
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7499
ungrabPointer
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7500
    "ungrab the pointer - but only if I was the grabber"
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7501
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7502
    |sensor|
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7503
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7504
    self graphicsDevice activePointerGrab == self ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7505
	(sensor := self sensor) notNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7506
	    "/ make certain all X events have been received
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7507
	    self graphicsDevice sync.
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7508
	    "/ now all events have been received.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7509
	    "/ now, flush all pointer events
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7510
	    sensor flushMotionEventsFor:self
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7511
	].
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7512
	self graphicsDevice ungrabPointer.
3087
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7513
    ]
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7514
! !
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  7515
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7516
!SimpleView methodsFor:'informing others of changes'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7517
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7518
contentsChanged
6090
d4a3672f917c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6087
diff changeset
  7519
    "this one is sent, whenever contents changes its size -
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7520
     tell dependents about the change (i.e. scrollers)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7521
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7522
    self changed:#sizeOfContents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7523
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7524
3383
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7525
noticeOfWindowClose
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7526
    |app|
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7527
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7528
    (app := self application) notNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  7529
	app noticeOfWindowClose:self
3383
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7530
    ].
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7531
!
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7532
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7533
noticeOfWindowOpen
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7534
    |app|
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7535
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7536
    (app := self application) notNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  7537
	app noticeOfWindowOpen:self
3383
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7538
    ].
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7539
!
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7540
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7541
originChanged:delta
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7542
    "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
  7543
     tell dependents (i.e. scrollers) about this"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7544
3510
f8d3abbf10d5 *** empty log message ***
frank
parents: 3485
diff changeset
  7545
    (delta = (0@0)) ifTrue:[^ self].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7546
    self changed:#originOfContents with:delta.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7547
"/   subViews notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7548
"/        subViews do:[:aSubView |
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7549
"/            aSubView pixelOrigin:((aSubView left @ aSubView top) - delta)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7550
"/        ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7551
"/    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7552
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7553
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7554
originWillChange
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7555
    "this one is sent, just before viewOrigin changes -
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7556
     gives subclasses a chance to catch scrolls easily
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7557
     (for example to hide cursor before scroll)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7558
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7559
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7560
! !
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7561
3165
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
  7562
!SimpleView methodsFor:'initialization & release'!
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7563
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7564
defaultControllerClass
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7565
    ^ nil "/ Controller
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7566
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7567
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  7568
defaultExtent
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  7569
    "return the default extent of my instances."
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  7570
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  7571
    ^ self class defaultExtent
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  7572
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  7573
    "Created: 1.3.1996 / 19:20:46 / cg"
586
b91f10f632d5 commentary
Claus Gittinger <cg@exept.de>
parents: 584
diff changeset
  7574
    "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
  7575
!
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  7576
3662
faf50c1021e0 defaultFont
Michael Beyl <mb@exept.de>
parents: 3653
diff changeset
  7577
defaultFont
faf50c1021e0 defaultFont
Michael Beyl <mb@exept.de>
parents: 3653
diff changeset
  7578
    ^ self class defaultFont
faf50c1021e0 defaultFont
Michael Beyl <mb@exept.de>
parents: 3653
diff changeset
  7579
!
faf50c1021e0 defaultFont
Michael Beyl <mb@exept.de>
parents: 3653
diff changeset
  7580
2573
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7581
destroy
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7582
    "unmap & destroy - make me invisible, destroy subviews then
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7583
     make me unknown to the device"
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7584
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7585
    realized ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7586
	self unmap.
5087
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  7587
    ].
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  7588
    shown ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7589
	shown := false.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7590
	self changed:#visibility.
5087
a66493cf7fdd sending of visibility-change fixed
Claus Gittinger <cg@exept.de>
parents: 5082
diff changeset
  7591
    ].
2573
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7592
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7593
"/    controller notNil ifTrue:[
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7594
"/      controller release.
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7595
"/      controller := nil.
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7596
"/    ].
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7597
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7598
    subViews notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7599
	self destroySubViews.
2573
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7600
    ].
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7601
    superView notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7602
	superView removeSubView:self.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7603
	superView := nil
2573
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7604
    ].
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7605
    super destroy.
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7606
3709
7f3f08a3607d flush in #unmap
Claus Gittinger <cg@exept.de>
parents: 3708
diff changeset
  7607
    self release.
7f3f08a3607d flush in #unmap
Claus Gittinger <cg@exept.de>
parents: 3708
diff changeset
  7608
2573
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7609
"/    superView isNil ifTrue:[
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7610
"/        device flush
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7611
"/    ].
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7612
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7613
    controller notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7614
	controller release.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7615
	controller := nil.
2573
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7616
    ].
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7617
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7618
    windowGroup notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7619
	windowGroup removeView:self.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7620
	windowGroup := nil
3383
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7621
    ].
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7622
111b54361247 postOpenedWith, windowEvent and noticeOfWindow-Whatever
tm
parents: 3382
diff changeset
  7623
    self noticeOfWindowClose.
2573
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7624
!
437ff42d1ba3 category change
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  7625
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7626
initEvents
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7627
    "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
  7628
     view events"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7629
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7630
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7631
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7632
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7633
initStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7634
    "this method sets up all style dependent things"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7635
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7636
    self initStyleSheet.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7637
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7638
    viewBackground := DefaultViewBackgroundColor.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7639
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7640
    DefaultLightColor notNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7641
	lightColor := DefaultLightColor.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7642
    ] ifFalse:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7643
	self graphicsDevice hasGrayscales ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7644
	    (viewBackground isImageOrForm and:[viewBackground colorMap isNil]) ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7645
		lightColor := viewBackground averageColor lightened.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7646
	    ] ifFalse:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7647
		lightColor := viewBackground lightened.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7648
	    ].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7649
	    DefaultLightColor := lightColor.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7650
	] ifFalse:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7651
	    "
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7652
	     this seems strange: on B&W screens, we create the light color
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7653
	     darker than normal viewBackground (White) -
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7654
	     to make the boundary of the view visible
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7655
	    "
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7656
	    lightColor := Color gray:50
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7657
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7658
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7659
    DefaultShadowColor notNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7660
	shadowColor := DefaultShadowColor.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7661
    ] ifFalse:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7662
	shadowColor := self blackColor.
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7663
    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7664
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7665
    ((DefaultBorderWidth ? 1) ~= 0 and:[DefaultBorderColor notNil]) ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7666
	self border:(SimpleBorder width:(DefaultBorderWidth ? 1) color:DefaultBorderColor)
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7667
    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  7668
3669
7f3fb4967f53 dont call defaultFont twice
Michael Beyl <mb@exept.de>
parents: 3662
diff changeset
  7669
    "/ font := self defaultFont.  -- already done in #initialize
6259
f31f7e5e6531 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6249
diff changeset
  7670
    gc createFontOnDevice.
747
5980e7ccac8e gray vs. grey
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  7671
749
c83c6d93760d grey vs. gray
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  7672
    "Modified: 28.5.1996 / 21:13:58 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7673
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7674
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7675
initStyleSheet
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7676
    "this method gets the styleSheet"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7677
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7678
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7679
     when coming here the first time, we read the styleSheet
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7680
     and keep the values in fast class variables
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7681
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7682
    StyleSheet isNil ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7683
	DefaultStyle isNil ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7684
	    "/ the very-very first time (no styleSheet yet)
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7685
	    View setDefaultStyle.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7686
	    View defaultStyle:DefaultStyle.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7687
	].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  7688
	SimpleView updateAllStyleCaches
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7689
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7690
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7691
    styleSheet := StyleSheet.
1005
03041f7fb340 init styleSheet (in case no startup file did it)
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  7692
03041f7fb340 init styleSheet (in case no startup file did it)
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  7693
    "Modified: 25.7.1996 / 22:00:06 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7694
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7695
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7696
initialize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7697
    "initialize all state of the view - usually redefined in subclasses,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7698
     but always doing a 'super initialize'. Each class should setup its
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7699
     locals - and not forget the others.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7700
     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
  7701
     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
  7702
     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
  7703
     (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
  7704
      leave the state and contents as-is)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7705
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7706
    |ext myClass controllerClass|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7707
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  7708
    flagBits := flagBits ? 0.
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  7709
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7710
    super initialize.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7711
6259
f31f7e5e6531 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6249
diff changeset
  7712
    self basicFont:self defaultFont.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7713
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  7714
    shown := realized := false.
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  7715
    "/ hiddenOnRealize := false.
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  7716
    "/ explicitExtent := false.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7717
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7718
    "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
  7719
     initialize methods"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7720
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7721
    myClass := self class.
5290
5c7a67abec31 name setup lazy
Claus Gittinger <cg@exept.de>
parents: 5289
diff changeset
  7722
    "/ name := myClass name "asString" asLowercaseFirst. - now lazy
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7723
    resources := myClass classResources.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7724
5390
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  7725
    level := margin := 0.
5414
6edcb212d4a0 border handling
Claus Gittinger <cg@exept.de>
parents: 5411
diff changeset
  7726
    self borderWidth:0.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7727
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7728
    self initStyle.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7729
483
32537786bca6 change defaultExtent protocol (ask inst first, then class)
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  7730
    ext := self defaultExtent.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7731
    left := top := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7732
    width := ext x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7733
    height := ext y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7734
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  7735
    "/ not needed
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  7736
    "/ self originChangedFlag:false extentChangedFlag:false cornerChangedFlag:false.
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  7737
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  7738
    name isNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7739
	name := self class name.
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  7740
    ].
2084
e997f6ea54c2 also pass down #larger to sizeCanged: method.
Claus Gittinger <cg@exept.de>
parents: 2061
diff changeset
  7741
    bitGravity := #NorthWest. "/ nil.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7742
    viewGravity := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7743
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7744
    controllerClass := self defaultControllerClass.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7745
    controllerClass notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7746
	controller := controllerClass new.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7747
	controller view:self.
3967
ed1e413b0ded invoke #initializeMiddleButtonMenu from #initialize;
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7748
    ].
ed1e413b0ded invoke #initializeMiddleButtonMenu from #initialize;
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7749
ed1e413b0ded invoke #initializeMiddleButtonMenu from #initialize;
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7750
    self initializeMiddleButtonMenu.
2382
2fe724f3efcd init borderWidth.
Claus Gittinger <cg@exept.de>
parents: 2381
diff changeset
  7751
2fe724f3efcd init borderWidth.
Claus Gittinger <cg@exept.de>
parents: 2381
diff changeset
  7752
    "Modified: / 1.10.1998 / 14:31:05 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7753
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7754
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7755
initializeMiddleButtonMenu
3968
4bd1b2b090f9 comment
Claus Gittinger <cg@exept.de>
parents: 3967
diff changeset
  7756
    "a place to initialize menu - this one is sent once when the view-object is initialized.
4bd1b2b090f9 comment
Claus Gittinger <cg@exept.de>
parents: 3967
diff changeset
  7757
     usually redefined in subclasses; default here is no menu.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7758
     Notice, that static middleButtonmenus are a historic thing in ST/X;
3968
4bd1b2b090f9 comment
Claus Gittinger <cg@exept.de>
parents: 3967
diff changeset
  7759
     you may prefer to create the menu dynamically."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7760
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7761
    ^ self
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7762
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7763
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7764
prepareForReinit
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7765
    super prepareForReinit.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7766
    windowGroup notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  7767
	windowGroup reinitialize
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7768
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7769
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7770
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7771
reinitStyle
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7772
    "this method is called for a style change"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7773
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7774
    |t|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7775
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7776
    self initStyle.
6341
088a633e67e6 Access graphicsDevice via method send instead of instVar access
Stefan Vogel <sv@exept.de>
parents: 6336
diff changeset
  7777
    (self drawableId notNil and:[self gcId notNil]) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7778
	"force a change"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7779
	t := self borderWidth. self borderWidth:nil. self borderWidth:t.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7780
	t := viewBackground. viewBackground := nil. self viewBackground:t.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7781
	self clearView.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7782
	self invalidate.
2357
29a966362aad clear and invalidate in reinitStyle.
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
  7783
    ].
29a966362aad clear and invalidate in reinitStyle.
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
  7784
29a966362aad clear and invalidate in reinitStyle.
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
  7785
    "Modified: / 18.9.1998 / 21:15:33 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7786
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7787
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7788
reinitialize
795
a57f5f65d0a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  7789
    "this is called right after snapIn"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7790
2649
6551ac88b855 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2638
diff changeset
  7791
    |myController sv|
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7792
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7793
    "if I have already been reinited - return"
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7794
    self drawableId notNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  7795
	^ self
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7796
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7797
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7798
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7799
     superView must be there, first
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7800
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7801
    superView notNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  7802
	(sv := superView view) id isNil ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  7803
	    sv reinitialize
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  7804
	]
2452
0c63e21efd57 (re)initCursor in reinitialize (i.e. after snapIn)
Claus Gittinger <cg@exept.de>
parents: 2451
diff changeset
  7805
    ].
0c63e21efd57 (re)initCursor in reinitialize (i.e. after snapIn)
Claus Gittinger <cg@exept.de>
parents: 2451
diff changeset
  7806
0c63e21efd57 (re)initCursor in reinitialize (i.e. after snapIn)
Claus Gittinger <cg@exept.de>
parents: 2451
diff changeset
  7807
    "reinit cursor"
0c63e21efd57 (re)initCursor in reinitialize (i.e. after snapIn)
Claus Gittinger <cg@exept.de>
parents: 2451
diff changeset
  7808
    self initCursor.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7809
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7810
    myController := controller.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7811
    controller := nil.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7812
    self recreate.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7813
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7814
    "if I was mapped, do it again"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7815
    realized ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  7816
	"only remap if I have a superview - otherwise, I might be
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  7817
	 a hidden iconView or menu ..."
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  7818
	superView notNil ifTrue:[
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7819
"/            shown ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7820
	    self graphicsDevice
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7821
		moveResizeWindow:self drawableId x:left y:top width:width height:height;
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7822
		mapWindow:self drawableId
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  7823
"/                mapView:self id:self drawableId iconified:false
4907
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  7824
"/                atX:left y:top width:width height:height
9002ab7fb33f remapping views
Claus Gittinger <cg@exept.de>
parents: 4899
diff changeset
  7825
"/                minExtent:(self minExtent) maxExtent:(self maxExtent)
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7826
"/            ].
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  7827
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7828
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7829
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  7830
    "restore controller"
2452
0c63e21efd57 (re)initCursor in reinitialize (i.e. after snapIn)
Claus Gittinger <cg@exept.de>
parents: 2451
diff changeset
  7831
    controller := myController.
795
a57f5f65d0a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  7832
2649
6551ac88b855 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2638
diff changeset
  7833
    "Modified: / 6.5.1999 / 13:11:07 / cg"
4372
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7834
!
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7835
6138
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7836
release
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7837
    "remove all dependencies from the receiver"
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7838
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7839
    visibilityChannel notNil ifTrue:[
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7840
	visibilityChannel retractInterestsFor:self.
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7841
	visibilityChannel removeDependent:self. visibilityChannel := nil
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7842
    ].
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7843
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7844
    dependents := nil.
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7845
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7846
    "Modified: 19.4.1996 / 10:31:35 / cg"
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7847
    "Created: 11.6.1997 / 13:11:53 / cg"
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7848
!
6f2369e5755b class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6136
diff changeset
  7849
4372
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7850
restarted
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7851
    "sent by my windowGroup, when restarted from an image.
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7852
     Nothing done here, but can be redefined to perform any actions
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7853
     required to reset some state after an image-restart.
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7854
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7855
     Only top views (usually instances of TopView) get this message sent.
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7856
     Since SimpleViews can act as a top view, too this message is implemented
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7857
     in SimpleView"
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7858
30c22dddafcf Moved up #restarted to SimpleView
Stefan Vogel <sv@exept.de>
parents: 4352
diff changeset
  7859
    ^ self
5713
20b8609cec16 added: #subViewsHaveBeenReparented
ca
parents: 5711
diff changeset
  7860
!
20b8609cec16 added: #subViewsHaveBeenReparented
ca
parents: 5711
diff changeset
  7861
20b8609cec16 added: #subViewsHaveBeenReparented
ca
parents: 5711
diff changeset
  7862
subViewsHaveBeenReparented
20b8609cec16 added: #subViewsHaveBeenReparented
ca
parents: 5711
diff changeset
  7863
    subViews := nil
135
claus
parents:
diff changeset
  7864
! !
claus
parents:
diff changeset
  7865
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7866
!SimpleView methodsFor:'keyboard control'!
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7867
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7868
defineShortcutAndTranslateLabelStringFrom:aString
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7869
    |i|
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7870
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7871
    aString isString ifFalse:[ ^ aString].
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7872
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7873
    (aString includes:$&) ifFalse:[ ^ aString].
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7874
    i := self shortcutAndTranslatedStringFrom:aString.
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7875
    self shortcutKey:(i at:1).
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  7876
    ^ i at:2.
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  7877
!
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7878
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7879
mnemonicKey
4492
17759f9ff27d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  7880
    "get the mnemonic key or nil if undefined"
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7881
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  7882
    ^ self objectAttributeAt:#mnemonicKey
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  7883
!
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7884
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7885
mnemonicKey:aSymbolOrNil
4492
17759f9ff27d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  7886
    "set or clear the mnemonic key"
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7887
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7888
    aSymbolOrNil isSymbol ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7889
	self objectAttributeAt:#mnemonicKey put:aSymbolOrNil
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7890
    ] ifFalse:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7891
	self removeObjectAttribute:#mnemonicKey
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7892
    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7893
!
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7894
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7895
mnemonicViewNext:aKeyEvent
5832
a77aa388f490 changed: #mnemonicViewNext:
Claus Gittinger <cg@exept.de>
parents: 5831
diff changeset
  7896
    "a mnemonicKey event as forwarded from the keyboardProcessor - if there
4492
17759f9ff27d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  7897
     is the mnemonic-key defined for a subView return the view otherwise nil."
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7898
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7899
    |key rawKey mnemonic view|
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7900
4492
17759f9ff27d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  7901
    key := aKeyEvent key.
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7902
    rawKey := aKeyEvent rawKey.
4492
17759f9ff27d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  7903
    (shown and:[ subViews notNil ]) ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7904
	subViews do:[:aSubView |
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7905
	    aSubView shown ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7906
		(aSubView enabled
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7907
		    and:[ (mnemonic := aSubView mnemonicKey) notNil
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7908
		    and:[ (mnemonic == rawKey or:[ mnemonic == key ]) ]])
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7909
		ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7910
		    ^ aSubView
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7911
		].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7912
		(view := aSubView mnemonicViewNext:aKeyEvent) notNil ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7913
		    ^ view
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7914
		].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7915
	    ]
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  7916
	]
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7917
    ].
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  7918
    ^ nil
5832
a77aa388f490 changed: #mnemonicViewNext:
Claus Gittinger <cg@exept.de>
parents: 5831
diff changeset
  7919
a77aa388f490 changed: #mnemonicViewNext:
Claus Gittinger <cg@exept.de>
parents: 5831
diff changeset
  7920
    "Modified (comment): / 06-10-2011 / 16:15:44 / cg"
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  7921
!
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7922
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7923
performShortcutAction
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7924
    "perform my shortcutKey action.
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7925
    "
3374
3313d1faa927 compilable
Claus Gittinger <cg@exept.de>
parents: 3371
diff changeset
  7926
    "/ intentionally left blank here
3313d1faa927 compilable
Claus Gittinger <cg@exept.de>
parents: 3371
diff changeset
  7927
!
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7928
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7929
processShortcut:aKeyEvent
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7930
    "a  shortcutKey event as forwarded from the keyboardProcessor - if there is the
4492
17759f9ff27d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  7931
     shortcut-key defined process the shortcut and return true otherwise false."
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7932
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7933
    |key|
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7934
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7935
    shown ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7936
	self enabled ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7937
	    (key := self shortcutKey) notNil ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7938
		(key == aKeyEvent key or:[ key == aKeyEvent rawKey ]) ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7939
		    self requestFocus.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7940
		    (controller ? self) performShortcutAction.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7941
		    ^ true
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7942
		]
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7943
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7944
	].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7945
	subViews notNil ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7946
	    subViews do:[:aSubView |
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7947
		(aSubView processShortcut:aKeyEvent) ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7948
		    ^ true
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7949
		]
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7950
	    ]
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  7951
	]
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7952
    ].
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  7953
    ^ false
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  7954
!
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7955
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7956
shortcutAndTranslatedStringFrom:aString
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7957
    "return an array filled with an extracted shortcut key and a translated string;
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7958
     looks for and reemoves any ampercent character from aString, and adds underline emphasis to the
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7959
     following character"
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7960
3642
400ffe15bba9 remove unused vars
Stefan Vogel <sv@exept.de>
parents: 3640
diff changeset
  7961
    |xLatedString c n s pos shortcutCharacter shortcut|
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7962
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7963
    xLatedString := '' writeStream.
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7964
    s := aString readStream.
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7965
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7966
    [s atEnd] whileFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7967
	c := s next.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7968
	c == $& ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7969
	   n := s peek.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7970
	   (n notNil and:[n isLetter]) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7971
	       c := s next.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7972
	       pos := xLatedString size + 1.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7973
	   ] ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7974
		n == $& ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7975
		    s next.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7976
		]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7977
	   ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7978
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7979
	c notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7980
	   xLatedString nextPut:c
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7981
	]
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7982
    ].
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7983
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7984
    xLatedString := xLatedString contents.
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7985
    pos notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7986
	shortcutCharacter := xLatedString at:pos ifAbsent:nil.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7987
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7988
	xLatedString isText ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7989
	    xLatedString := xLatedString asText
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7990
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7991
	xLatedString emphasisAt:pos add:#underline.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7992
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  7993
	shortcut := ('Cmd' , shortcutCharacter asLowercase) asSymbol.
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7994
    ].
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7995
    ^ Array with:shortcut with:xLatedString
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7996
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7997
    "
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7998
     Transcript showCR:(self basicNew shortcutAndTranslatedStringFrom:'hello'        ) last
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  7999
     Transcript showCR:(self basicNew shortcutAndTranslatedStringFrom:'he&llo'       ) last
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  8000
     Transcript showCR:(self basicNew shortcutAndTranslatedStringFrom:'he&&llo'      ) last
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  8001
     Transcript showCR:(self basicNew shortcutAndTranslatedStringFrom:'he& llo'      ) last
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  8002
     Transcript showCR:(self basicNew shortcutAndTranslatedStringFrom:'he&123llo'    ) last
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  8003
     Transcript showCR:(self basicNew shortcutAndTranslatedStringFrom:'hello &'      ) last
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  8004
     Transcript showCR:(self basicNew shortcutAndTranslatedStringFrom:'hello &&'     ) last
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  8005
    "
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  8006
!
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  8007
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  8008
shortcutKey
4492
17759f9ff27d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  8009
    "get the shortcut key"
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8010
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  8011
    ^ self objectAttributeAt:#shortcutKey
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  8012
!
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  8013
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8014
shortcutKey:aSymbolOrNil
4492
17759f9ff27d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  8015
    "set or clear the shortcut key"
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8016
4492
17759f9ff27d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  8017
    aSymbolOrNil notNil ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8018
	self objectAttributeAt:#shortcutKey put:aSymbolOrNil
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  8019
    ] ifFalse:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8020
	self removeObjectAttribute:#shortcutKey
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  8021
    ].
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  8022
! !
3371
40eea3d401e5 mnemonic-key and shortcut-key support;
ca
parents: 3368
diff changeset
  8023
1759
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8024
!SimpleView methodsFor:'menu handling'!
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8025
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8026
activateMenu
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8027
    "activate my menu.
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8028
     This code will move into the controller ASAP
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8029
     If there is a static middleButtonMenu, that one is taken,
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8030
     and handled in the superClass (static menus are a historic leftOver).
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8031
     Otherwise, the follwing steps are performed:
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8032
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8033
	- ask the receiver for the menu (via #yellowButtonMenu)
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8034
	- ask the receiver for the menuPerformer.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8035
	- startUp the menu - it is supposed to return an actionSelector
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8036
	- if the menuPerformer responds to the selector,
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8037
	  send it to the performer;
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8038
	  otherwise send it to the view (the receiver)
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8039
	  This is funny, it allows additional menuItems to be added
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8040
	  AND still get the views copy/cut/paste functionality.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8041
	  Without this, you had to redefine and forward all of those
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8042
	  messages in the performer."
2489
f7ce16896fa1 process exposes when menu closes.
Claus Gittinger <cg@exept.de>
parents: 2465
diff changeset
  8043
f7ce16896fa1 process exposes when menu closes.
Claus Gittinger <cg@exept.de>
parents: 2465
diff changeset
  8044
    |menu menuPerformer actionSelector prevReceiver wg|
1759
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8045
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  8046
    self middleButtonMenu isNil ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8047
	"
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8048
	 try ST-80 style menus first:
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8049
	 if there is a model, and a menuMessage is defined,
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8050
	 ask model for the menu and launch that if non-nil.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8051
	"
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8052
	menu := self yellowButtonMenu.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8053
	menu notNil ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8054
	    "
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8055
	     got one, launch the menu. It is supposed
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8056
	     to return an actionSelector.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8057
	    "
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8058
	    menuPerformer := self menuPerformer value.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8059
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8060
	    "/ could be a spec ...
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8061
	    menu isArray ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8062
		menu := menu decodeAsLiteralArray.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8063
		menu receiver:menuPerformer.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8064
		menu findGuiResourcesIn:(self menuHolder).
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8065
	    ] ifFalse:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8066
		(menu respondsTo:#receiver) ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8067
		    menuPerformer := menu receiver ? menuPerformer.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8068
		].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8069
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8070
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8071
	    "
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8072
	     a temporary kludge:
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8073
		 pass myself as receiver, the menuPerformer as performer;
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8074
		 the menu will send its messages to either the
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8075
		 menuPerformer or me (its receiver).
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8076
		 This allows for the ST-80 behavior, where some messages
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8077
		 go to the model, others to the view
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8078
		 (copy/cut/paste).
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8079
	    "
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8080
	    (prevReceiver := menu receiver) isNil ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8081
		"/ kludge for oldStyle menus (MenuView/PopUpMenu)
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8082
		"/ not req'd for real Menus
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8083
		"/ (menu isKindOf:Menu) ifFalse:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8084
		(menu respondsTo:#menuPerformer:) ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8085
		    menu receiver:self.    "/ really ?
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8086
		    menu menuPerformer:menuPerformer.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8087
		] ifFalse:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8088
		"/ ] ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8089
		    "/ new style menu
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8090
		    menu receiver:menuPerformer.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8091
		]
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8092
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8093
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8094
	    "/
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8095
	    "/ startup the menu - this returns a selector
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8096
	    "/
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8097
	    actionSelector := self startUpMenu:menu.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8098
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8099
	    "/ before doing anything else, redraw expose area from
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8100
	    "/ the menu (in case the action changes my state)
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8101
	    (wg := self windowGroup) notNil ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8102
		wg processExposeEvents.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8103
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8104
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8105
	    (actionSelector notNil and:[actionSelector isSymbol]) ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8106
		self dispatchMenuSelection:actionSelector to: menuPerformer.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8107
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8108
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8109
	    menu receiver:prevReceiver.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8110
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8111
	    ^ self
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8112
	].
1759
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8113
    ].
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8114
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8115
    "/
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8116
    "/ old style static menu
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8117
    "/
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8118
    super activateMenu
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8119
2127
c6d63c47bf07 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
  8120
    "Created: / 1.3.1996 / 13:24:18 / cg"
2246
8666105a8750 care for menuPerformer, when using newStyle menu in
Claus Gittinger <cg@exept.de>
parents: 2243
diff changeset
  8121
    "Modified: / 14.8.1998 / 18:09:31 / cg"
1759
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8122
!
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8123
3241
e5c9791522af menuPerformer dispatching
Claus Gittinger <cg@exept.de>
parents: 3202
diff changeset
  8124
dispatchMenuSelection:menuSelection to:aMenuPerformerOrNil
1759
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8125
    "dispatch a menu message.
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8126
     This code will move into the controller ASAP"
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8127
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  8128
    |actionSelector actionArg1 actionArg2 app menuPerformer|
1759
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8129
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8130
    actionSelector := menuSelection.
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8131
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8132
    "
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8133
     mhmh - kludge for selectors with argument
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8134
    "
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8135
    (menuSelection isMemberOf:Array) ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8136
	actionArg1 := menuSelection at:2.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8137
	actionSelector := menuSelection at:1.
3241
e5c9791522af menuPerformer dispatching
Claus Gittinger <cg@exept.de>
parents: 3202
diff changeset
  8138
    ].
e5c9791522af menuPerformer dispatching
Claus Gittinger <cg@exept.de>
parents: 3202
diff changeset
  8139
e5c9791522af menuPerformer dispatching
Claus Gittinger <cg@exept.de>
parents: 3202
diff changeset
  8140
    menuPerformer := aMenuPerformerOrNil ? self menuPerformer.
1839
7da27042198c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1837
diff changeset
  8141
1759
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8142
    "
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8143
     mhmh - ST-80 seems to send some to the model and
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8144
     others (copy/cut/paste) to the controller/view
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8145
     Simulate this behavior, by looking what the model responds to.
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8146
    "
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8147
    actionSelector isSymbol ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8148
	(menuPerformer respondsTo:actionSelector) ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8149
	    ((app := self application) respondsTo:actionSelector) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8150
		menuPerformer := app.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8151
		actionArg1 := self model.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8152
		actionArg2 := self controller.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8153
	    ] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8154
		(self respondsTo:actionSelector) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8155
		    menuPerformer := self
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8156
		]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8157
	    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8158
	].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8159
	menuPerformer perform:actionSelector withOptionalArgument:actionArg1 and:actionArg2.
1759
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8160
    ].
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8161
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  8162
    "Created: / 20.6.1997 / 11:47:42 / cg"
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  8163
    "Modified: / 1.11.1997 / 13:45:23 / cg"
3533
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8164
!
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8165
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8166
menuFromSpec:aMenuOrMenuSpec
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8167
    "create a menu for the receiver from a spec"
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8168
3559
bbdf48b9fb5b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  8169
    |spec|
bbdf48b9fb5b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  8170
bbdf48b9fb5b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  8171
    aMenuOrMenuSpec isNil ifTrue:[^ nil].
3533
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8172
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8173
    aMenuOrMenuSpec isArray ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8174
	spec := aMenuOrMenuSpec decodeAsLiteralArray.
3533
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8175
    ] ifFalse:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8176
	spec := aMenuOrMenuSpec.
3533
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8177
    ].
3556
eaea177415b0 findGuiResources... now sets the receiver, if not yet set
Claus Gittinger <cg@exept.de>
parents: 3540
diff changeset
  8178
    "/ spec receiver:self.     -- now done in findGuiResources ...
3533
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8179
    spec findGuiResourcesIn:self.
fb0eddc93c1e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
  8180
    ^ spec.
3752
c78ca44247d5 can now specify if menu action is to be performed by
ca
parents: 3745
diff changeset
  8181
!
c78ca44247d5 can now specify if menu action is to be performed by
ca
parents: 3745
diff changeset
  8182
c78ca44247d5 can now specify if menu action is to be performed by
ca
parents: 3745
diff changeset
  8183
startUpMenu:aMenu
3753
e593d6729f4e can now specify if menu action is to be performed by
ca
parents: 3752
diff changeset
  8184
    ^ aMenu startUpFor:self
1759
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8185
! !
f4cd63a4d736 extracted menu dispatch code into sep. method.
Claus Gittinger <cg@exept.de>
parents: 1756
diff changeset
  8186
6559
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  8187
!SimpleView methodsFor:'native widget support'!
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  8188
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  8189
nativeWindowType
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  8190
    "return a symbol describing my native window type - here, nil is returned
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  8191
     (may be used internally by the device as a native window creation hint,
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  8192
      iff native windows are enabled AND the device supports it)"
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  8193
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  8194
    ^ nil
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  8195
! !
87057258791c class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6549
diff changeset
  8196
140
claus
parents: 138
diff changeset
  8197
!SimpleView methodsFor:'private'!
claus
parents: 138
diff changeset
  8198
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  8199
componentsContainingX:x y:y do:aBlock
4609
0fb6751514cf care for delegated events when detecting a component
fm
parents: 4579
diff changeset
  8200
    (x isNil or:[y isNil]) ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8201
	"/ delegated
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8202
	^ self
4609
0fb6751514cf care for delegated events when detecting a component
fm
parents: 4579
diff changeset
  8203
    ].
0fb6751514cf care for delegated events when detecting a component
fm
parents: 4579
diff changeset
  8204
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  8205
    components notNil ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8206
	components reverseDo:[:aComponent |
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8207
	    |thisFrame|
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8208
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8209
	    thisFrame := aComponent bounds.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8210
	    (thisFrame containsPointX:x y:y) ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8211
		"/ prepare for masked/non-rectangular components ...
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8212
		(aComponent perform:#containsPointX:y: with:x with:y ifNotUnderstood:true)
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8213
		ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8214
		    aBlock value:aComponent
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8215
			   value:x - thisFrame left
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8216
			   value:y - thisFrame top.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8217
		]
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8218
	    ]
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8219
	]
4609
0fb6751514cf care for delegated events when detecting a component
fm
parents: 4579
diff changeset
  8220
    ].
0fb6751514cf care for delegated events when detecting a component
fm
parents: 4579
diff changeset
  8221
0fb6751514cf care for delegated events when detecting a component
fm
parents: 4579
diff changeset
  8222
    "Created: / 08-05-1996 / 23:40:59 / cg"
0fb6751514cf care for delegated events when detecting a component
fm
parents: 4579
diff changeset
  8223
    "Modified: / 13-09-2006 / 18:55:30 / User"
659
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  8224
!
72c93421a2a3 fixed component-events
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
  8225
140
claus
parents: 138
diff changeset
  8226
computeInnerClip
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  8227
    "compute, but do not set the inside clip-area, in device coordinates"
140
claus
parents: 138
diff changeset
  8228
claus
parents: 138
diff changeset
  8229
    |m2 nX nY nW nH|
claus
parents: 138
diff changeset
  8230
4139
6acf2874394b WO's stuff
werner
parents: 4131
diff changeset
  8231
    margin isNil ifTrue:[margin := 0].
140
claus
parents: 138
diff changeset
  8232
    (margin ~~ 0) ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8233
	m2 := margin + margin.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8234
	nX := nY := margin.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8235
	nW := width - m2.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8236
	nH := height - m2.
2726
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8237
"/        transformation notNil ifTrue:[
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8238
"/            nX := transformation applyInverseToX:nX.
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8239
"/            nY := transformation applyInverseToY:nY.
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8240
"/            nW := transformation applyInverseScaleX:nW.
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8241
"/            nH := transformation applyInverseScaleY:nH.
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8242
"/        ].
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8243
	innerClipRect := Rectangle
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8244
				 left:nX
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8245
				 top:nY
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8246
				 width:nW
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8247
				 height:nH
140
claus
parents: 138
diff changeset
  8248
    ] ifFalse:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8249
	"no clipping"
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8250
	innerClipRect := nil
140
claus
parents: 138
diff changeset
  8251
    ]
2726
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8252
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8253
    "Modified: / 22.5.1999 / 16:50:58 / cg"
140
claus
parents: 138
diff changeset
  8254
!
claus
parents: 138
diff changeset
  8255
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8256
cornerFromRelativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8257
    "compute & return pixel corner from relativeCorner"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8258
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8259
    ^ self cornerFromRelativeCorner:relativeCorner
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8260
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8261
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8262
cornerFromRelativeCorner:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8263
    "compute & return pixel corner from a relativeCorner, aPoint"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8264
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8265
    |p r b bw|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8266
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8267
    p := self pointFromRelative:aPoint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8268
5390
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  8269
    bw := self borderWidth ? 0.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8270
    insets isNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8271
	bw == 0 ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8272
	    ^ p
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8273
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8274
	^ (p x - bw) @ (p y - bw)
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8275
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8276
    r := (insets at:3) + bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8277
    b := (insets at:4) + bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8278
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8279
"/    r := b := bw.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8280
"/    rightInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8281
"/        r := rightInset + bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8282
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8283
"/    bottomInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8284
"/        b := bottomInset + bw
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8285
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8286
    ((r ~~ 0) or:[b ~~ 0]) ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8287
	^ (p x - r) @ (p y - b)
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8288
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8289
    ^ p
2382
2fe724f3efcd init borderWidth.
Claus Gittinger <cg@exept.de>
parents: 2381
diff changeset
  8290
2fe724f3efcd init borderWidth.
Claus Gittinger <cg@exept.de>
parents: 2381
diff changeset
  8291
    "Modified: / 1.10.1998 / 13:21:33 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8292
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8293
3518
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8294
detectViewAt:aPoint
3540
5a043181bded parametrized #detectViewAt:
Claus Gittinger <cg@exept.de>
parents: 3533
diff changeset
  8295
    "find the subView which contains aPoint - invisible components are ignored.
5a043181bded parametrized #detectViewAt:
Claus Gittinger <cg@exept.de>
parents: 3533
diff changeset
  8296
     This is almost the same as #componentContainingX:y: (if that existed) "
5a043181bded parametrized #detectViewAt:
Claus Gittinger <cg@exept.de>
parents: 3533
diff changeset
  8297
5a043181bded parametrized #detectViewAt:
Claus Gittinger <cg@exept.de>
parents: 3533
diff changeset
  8298
    ^ self detectViewAt:aPoint ignoreInvisible:false
5a043181bded parametrized #detectViewAt:
Claus Gittinger <cg@exept.de>
parents: 3533
diff changeset
  8299
!
5a043181bded parametrized #detectViewAt:
Claus Gittinger <cg@exept.de>
parents: 3533
diff changeset
  8300
5a043181bded parametrized #detectViewAt:
Claus Gittinger <cg@exept.de>
parents: 3533
diff changeset
  8301
detectViewAt:aPoint ignoreInvisible:ignoreInvisible
5a043181bded parametrized #detectViewAt:
Claus Gittinger <cg@exept.de>
parents: 3533
diff changeset
  8302
    "find the subView which contains aPoint - invisible components are ignored if
5a043181bded parametrized #detectViewAt:
Claus Gittinger <cg@exept.de>
parents: 3533
diff changeset
  8303
     the ignoreInvisible argument is false.
3518
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8304
     This is almost the same as #componentContainingX:y: (if that existed) "
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8305
3642
400ffe15bba9 remove unused vars
Stefan Vogel <sv@exept.de>
parents: 3640
diff changeset
  8306
    |subViews|
3518
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8307
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8308
    (subViews := self subViews) notNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8309
	subViews do:[:v| |p|
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8310
	    (ignoreInvisible or:[v shown]) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8311
		(    (aPoint x between:(v left) and:(v right))
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8312
		 and:[aPoint y between:(v top)  and:(v bottom)]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8313
		) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8314
		    "/ found a subview - the point is there
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  8315
		    p := self graphicsDevice translatePoint:aPoint fromView:self toView:v.
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8316
		    ^ v detectViewAt:p ignoreInvisible:ignoreInvisible.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8317
		]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8318
	    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8319
	]
3518
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8320
    ].
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8321
    "/ no subview - the point is here
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8322
    ^ self
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8323
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8324
    "Modified: / 10.10.2001 / 13:45:26 / cg"
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8325
!
983e7730a905 use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
  8326
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  8327
explicitExtent:aBoolean
5060
01bb459aaa8b changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 5050
diff changeset
  8328
    "set the exeplicit extent flag to aBoolean."
01bb459aaa8b changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 5050
diff changeset
  8329
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  8330
    aBoolean ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8331
	flagBits := flagBits bitOr:FlagHasExplicitExtent
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  8332
    ] ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8333
	flagBits := flagBits bitClear:FlagHasExplicitExtent
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  8334
    ].
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  8335
!
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  8336
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8337
extentFromRelativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8338
    "compute & return pixel extent from relativeExtent"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8339
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8340
    ^ self extentFromRelativeExtent:relativeExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8341
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8342
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8343
extentFromRelativeExtent:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8344
    "compute & return pixel extent from relativeExtent, aPoint"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8345
5390
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  8346
    |rel newX newY inRect bw bw2 i|
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  8347
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  8348
    bw := self borderWidth ? 0.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8349
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8350
    superView isNil ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  8351
	inRect := 0@0 extent:self graphicsDevice extent
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8352
    ] ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8353
	inRect := superView viewRectangle.
5390
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  8354
    ].
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  8355
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  8356
    bw2 := bw * 2.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8357
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8358
    rel := aPoint x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8359
    rel isInteger ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8360
	newX := (rel * (inRect width + bw2)) asInteger + inRect left.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8361
	(bw ~~ 0) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8362
	    newX := newX - bw
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8363
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8364
    ] ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8365
	newX := rel
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8366
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8367
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8368
    rel := aPoint y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8369
    rel isInteger ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8370
	newY := (rel * (inRect height + bw2)) asInteger + inRect top.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8371
	(bw ~~ 0) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8372
	    newY := newY - bw
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8373
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8374
    ] ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8375
	newY := rel
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8376
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8377
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8378
    insets notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8379
	i := insets at:1.   "top"
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8380
	(i  ~~ 0) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8381
	    newX := newX - i
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8382
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8383
	i := insets at:3.   "left"
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8384
	(i  ~~ 0) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8385
	    newX := newX - i
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8386
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8387
	i := insets at:2.   "right"
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8388
	(i ~~ 0) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8389
	    newY := newY - i
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8390
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8391
	i := insets at:4.   "bottom"
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8392
	(i ~~ 0) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8393
	    newY := newY - i
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8394
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8395
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8396
    ^ newX @ newY
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8397
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8398
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8399
originFromRelativeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8400
    "compute & return pixel origin from relativeOrigin"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8401
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8402
    ^ self originFromRelativeOrigin:relativeOrigin
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8403
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8404
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8405
originFromRelativeOrigin:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8406
    "compute & return pixel origin from relativeOrigin, aPoint"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8407
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8408
    |p l t|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8409
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8410
    p := self pointFromRelative:aPoint.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8411
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8412
    insets isNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  8413
	^ p
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8414
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8415
    l := insets at:1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8416
    t := insets at:2.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8417
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8418
"/  l := t := 0.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8419
"/    leftInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8420
"/        l := leftInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8421
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8422
"/    topInset notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8423
"/        t := topInset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8424
"/    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8425
    ((l ~~ 0) or:[t ~~ 0]) ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  8426
	^ (p x + l) @ (p y + t)
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8427
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8428
    ^ p
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8429
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8430
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8431
pixelCorner:corner
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8432
    "set the view's corner in pixels"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8433
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8434
    |w h|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8435
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8436
    w := corner x - left + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8437
    h := corner y - top + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8438
    self pixelOrigin:(left @ top) extent:(w @ h)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8439
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8440
    "Modified: 31.8.1995 / 18:20:22 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8441
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8442
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8443
pixelExtent:extent
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8444
    "set the view's extent in pixels"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8445
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8446
    self pixelOrigin:(left @ top) extent:extent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8447
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8448
1363
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  8449
pixelOrigin
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8450
    "return the view's origin in pixels. For subviews. the origin is relative
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8451
     to the superview's top-left. For topViews, it's the screen origin."
1363
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  8452
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  8453
    ^ self computeOrigin
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  8454
!
3a02d26cbc35 added #enabled (isEnabled) queries.
ca
parents: 1356
diff changeset
  8455
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8456
pixelOrigin:origin
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8457
    "set the view's origin in pixels. For subviews. the origin is relative
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8458
     to the superview's top-left. For topViews, it's the screen origin."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8459
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8460
    |newLeft newTop|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8461
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8462
    newLeft := origin x.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8463
    newTop := origin y.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8464
    ((newTop ~~ top) or:[newLeft ~~ left]) ifTrue:[
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8465
        top := newTop.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8466
        left := newLeft.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8467
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8468
        "
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8469
         if the receiver is visible, or is a topView, perform the
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8470
         operation right away - otherwise, simply remember that the
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8471
         origin has changed - will tell the display once we get realized
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8472
        "
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8473
"/        (shown
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8474
"/        or:[superView isNil and:[drawableId notNil]]) ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8475
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8476
        "/ no, have to do it if drawableId is there
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8477
        "/ (otherwise, we could not move unmapped views around ...
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8478
        "/
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8479
        self drawableId notNil ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8480
            self graphicsDevice moveWindow:self drawableId x:left y:top
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8481
        ] ifFalse:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8482
            self originChangedFlag:true
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8483
        ]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8484
    ]
5679
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  8485
455385b07655 added: #isReallyShown
Claus Gittinger <cg@exept.de>
parents: 5669
diff changeset
  8486
    "Modified: / 21-01-2011 / 13:59:08 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8487
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8488
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8489
pixelOrigin:origin corner:corner
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8490
    "set the view's origin and corner in pixels"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8491
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8492
    |w h|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8493
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8494
    w := corner x - origin x + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8495
    h := corner y - origin y + 1.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8496
    self pixelOrigin:origin extent:(w @ h)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8497
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8498
    "Modified: 31.8.1995 / 18:24:16 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8499
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8500
140
claus
parents: 138
diff changeset
  8501
pixelOrigin:origin extent:extent
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8502
    "set the view's origin and extent in pixels"
140
claus
parents: 138
diff changeset
  8503
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8504
    |newLeft newTop newWidth newHeight how
140
claus
parents: 138
diff changeset
  8505
     mustRedrawBottomEdge mustRedrawRightEdge mustRepaintBottom
3340
f810ebc6d836 preserve current paint when drawing edges
martin
parents: 3327
diff changeset
  8506
     mustRepaintRight sameOrigin oldWidth oldHeight oldPaint|
140
claus
parents: 138
diff changeset
  8507
claus
parents: 138
diff changeset
  8508
    newLeft := origin x.
claus
parents: 138
diff changeset
  8509
    newTop := origin y.
claus
parents: 138
diff changeset
  8510
    sameOrigin := ((newTop == top) and:[newLeft == left]).
claus
parents: 138
diff changeset
  8511
claus
parents: 138
diff changeset
  8512
    newWidth := extent x.
claus
parents: 138
diff changeset
  8513
    newHeight := extent y.
claus
parents: 138
diff changeset
  8514
claus
parents: 138
diff changeset
  8515
    "
claus
parents: 138
diff changeset
  8516
     X complains badly if you try to create/resize a view with
5436
59effbe755f7 changed:
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  8517
     a dimension <= 0 ... (although I think that 0 makes sense ...)
140
claus
parents: 138
diff changeset
  8518
    "
claus
parents: 138
diff changeset
  8519
    newWidth < 1 ifTrue:[
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8520
        newWidth := 1.
140
claus
parents: 138
diff changeset
  8521
    ].
claus
parents: 138
diff changeset
  8522
    newHeight < 1 ifTrue:[
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8523
        newHeight := 1
140
claus
parents: 138
diff changeset
  8524
    ].
claus
parents: 138
diff changeset
  8525
claus
parents: 138
diff changeset
  8526
    ((newWidth == width) and:[newHeight == height]) ifTrue:[
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8527
        sameOrigin ifTrue:[^ self].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8528
        self changed:#origin.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8529
        ^ self pixelOrigin:origin
5428
62da57f5206d border drawing on resize
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
  8530
    ].
62da57f5206d border drawing on resize
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
  8531
140
claus
parents: 138
diff changeset
  8532
    top := newTop.
claus
parents: 138
diff changeset
  8533
    left := newLeft.
claus
parents: 138
diff changeset
  8534
claus
parents: 138
diff changeset
  8535
"/    shown ifTrue:[                  "4-nov-94 actually correct,"
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  8536
    self drawableId notNil ifTrue:[        "but theres a bug in menus when resized while hidden"
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8537
        mustRedrawBottomEdge := (margin ~~ 0) and:[newHeight < height].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8538
        mustRedrawRightEdge := (margin ~~ 0) and:[newWidth < width].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8539
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8540
        ((newHeight <= height) and:[newWidth <= width]) ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8541
            how := #smaller
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8542
        ] ifFalse:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8543
            ((newHeight >= height) and:[newWidth >= width]) ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8544
                how := #larger
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8545
            ]
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8546
        ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8547
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8548
        mustRepaintRight := false.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8549
        mustRepaintBottom := false.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8550
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8551
        oldWidth := width.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8552
        oldHeight := height.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8553
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8554
        shown ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8555
            (margin ~~ 0) ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8556
                "clear the old edges"
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8557
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8558
                oldPaint := nil.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8559
                newWidth > width ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8560
                    self clippingRectangle:nil.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8561
                    oldPaint := self paint.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8562
                    self paint:viewBackground.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8563
                    self fillDeviceRectangleX:(width - margin)
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8564
                                            y:0
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8565
                                        width:margin
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8566
                                       height:height.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8567
                    mustRepaintRight := true.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8568
                ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8569
                newHeight > height ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8570
                    self clippingRectangle:nil.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8571
                    oldPaint := self paint.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8572
                    self paint:viewBackground.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8573
                    self fillDeviceRectangleX:0
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8574
                                            y:(height - margin)
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8575
                                        width:width
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8576
                                       height:margin.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8577
                    mustRepaintBottom := true.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8578
                ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8579
                oldPaint notNil ifTrue:[ self paint:oldPaint. ]
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8580
            ]
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8581
        ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8582
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8583
        width := newWidth.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8584
        height := newHeight.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8585
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8586
        self setInnerClip.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8587
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8588
        "if view becomes smaller, send sizeChanged first"
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8589
        true  "(how == #smaller)" ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8590
            self sizeChanged:how
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8591
        ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8592
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8593
        "have to tell X, when extent of view is changed"
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8594
        sameOrigin ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8595
            self graphicsDevice resizeWindow:self drawableId width:width height:height.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8596
        ] ifFalse:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8597
            "claus: some xservers seem to do better when resizing
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8598
             first ...."
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8599
"
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8600
            (how == #smaller) ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8601
                self graphicsDevice resizeWindow:drawableId width:width height:height.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8602
                self graphicsDevice moveWindow:drawableId x:left y:top
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8603
            ] ifFalse:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8604
                self graphicsDevice moveResizeWindow:drawableId x:left y:top width:width height:height
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8605
            ].
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8606
"
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8607
            self graphicsDevice moveResizeWindow:self drawableId x:left y:top
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8608
                                           width:width height:height.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8609
        ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8610
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8611
        "if view becomes bigger, send sizeChanged after"
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8612
        false "(how ~~ #smaller)" ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8613
            self sizeChanged:how
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8614
        ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8615
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8616
        shown ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8617
            (mustRedrawBottomEdge or:[mustRedrawRightEdge]) ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8618
                border notNil ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8619
                    mustRedrawBottomEdge ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8620
                        self invalidateDeviceRectangle:((0 @ (height - margin)) extent:width@margin) repairNow:false.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8621
                    ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8622
                    mustRedrawRightEdge ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8623
                        self invalidateDeviceRectangle:(((width - margin) @ 0) extent:margin@height) repairNow:false.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8624
                    ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8625
                ] ifFalse:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8626
                    self deviceClippingRectangle:nil.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8627
                    oldPaint := self paint.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8628
                    mustRedrawBottomEdge ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8629
                        self drawBottomEdge
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8630
                    ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8631
                    mustRedrawRightEdge ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8632
                        self drawRightEdge
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8633
                    ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8634
                    self paint:oldPaint.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8635
                    self deviceClippingRectangle:innerClipRect
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8636
                ]
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8637
            ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8638
        ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8639
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8640
        mustRepaintRight ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8641
            self invalidateDeviceRectangle:(((oldWidth - margin) @ 0)
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8642
                                           extent:margin@height)
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8643
                                 repairNow:false.
2400
13dc68f612fb when resizing, invalidate instead of redrawing right away
Claus Gittinger <cg@exept.de>
parents: 2396
diff changeset
  8644
"/            self redrawDeviceX:(oldWidth - margin)
13dc68f612fb when resizing, invalidate instead of redrawing right away
Claus Gittinger <cg@exept.de>
parents: 2396
diff changeset
  8645
"/                             y:0
13dc68f612fb when resizing, invalidate instead of redrawing right away
Claus Gittinger <cg@exept.de>
parents: 2396
diff changeset
  8646
"/                         width:margin
13dc68f612fb when resizing, invalidate instead of redrawing right away
Claus Gittinger <cg@exept.de>
parents: 2396
diff changeset
  8647
"/                        height:height.
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8648
        ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8649
        mustRepaintBottom ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8650
            self invalidateDeviceRectangle:((0 @ (oldHeight - margin))
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8651
                                           extent:width@margin)
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8652
                                 repairNow:false.
2400
13dc68f612fb when resizing, invalidate instead of redrawing right away
Claus Gittinger <cg@exept.de>
parents: 2396
diff changeset
  8653
"/            self redrawDeviceX:0
13dc68f612fb when resizing, invalidate instead of redrawing right away
Claus Gittinger <cg@exept.de>
parents: 2396
diff changeset
  8654
"/                             y:(oldHeight - margin)
13dc68f612fb when resizing, invalidate instead of redrawing right away
Claus Gittinger <cg@exept.de>
parents: 2396
diff changeset
  8655
"/                         width:width
13dc68f612fb when resizing, invalidate instead of redrawing right away
Claus Gittinger <cg@exept.de>
parents: 2396
diff changeset
  8656
"/                        height:margin.
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8657
        ].
140
claus
parents: 138
diff changeset
  8658
    ] ifFalse:[
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8659
        "otherwise memorize the need for a sizeChanged message"
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8660
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8661
        width := newWidth.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8662
        height := newHeight.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8663
        sameOrigin ifFalse:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8664
            self originChangedFlag:true.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8665
        ].
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8666
        self extentChangedFlag:true.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8667
        subViews size > 0 ifTrue:[
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8668
            self extentChangedBeforeCreatedFlag:true.
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8669
        ].
3784
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  8670
    ].
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  8671
    sameOrigin ifFalse:[
6853
541c6d924a41 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  8672
        self changed:#origin.
3784
378456357157 added #frame for displayObject compatibility
Michael Beyl <mb@exept.de>
parents: 3781
diff changeset
  8673
    ].
739
3d809aa492ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  8674
2726
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8675
    "Modified: / 25.5.1999 / 14:49:56 / cg"
140
claus
parents: 138
diff changeset
  8676
!
claus
parents: 138
diff changeset
  8677
claus
parents: 138
diff changeset
  8678
pointFromRelative:p
claus
parents: 138
diff changeset
  8679
    "compute absolute coordinate from p"
claus
parents: 138
diff changeset
  8680
claus
parents: 138
diff changeset
  8681
    |newX newY rel inRect bw superWidth superHeight superLeft superTop |
claus
parents: 138
diff changeset
  8682
5390
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  8683
    bw := self borderWidth ? 0.
140
claus
parents: 138
diff changeset
  8684
claus
parents: 138
diff changeset
  8685
    superView isNil ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  8686
	superWidth := self graphicsDevice width + bw.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  8687
	superHeight := self graphicsDevice height + bw.
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8688
	superLeft := superTop := 0.
140
claus
parents: 138
diff changeset
  8689
    ] ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8690
	inRect := superView viewRectangle.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8691
	superWidth := inRect width.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8692
	superHeight := inRect height.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8693
	superLeft := inRect left.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8694
	superTop := inRect top.
140
claus
parents: 138
diff changeset
  8695
    ].
claus
parents: 138
diff changeset
  8696
claus
parents: 138
diff changeset
  8697
    rel := p x.
claus
parents: 138
diff changeset
  8698
    rel isInteger ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8699
	newX := rel
140
claus
parents: 138
diff changeset
  8700
    ] ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8701
	newX := (rel * superWidth) asInteger + superLeft.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8702
	(bw ~~ 0) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8703
	    rel ~= 1.0 ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8704
		newX := newX - bw
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8705
	    ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8706
	]
140
claus
parents: 138
diff changeset
  8707
    ].
claus
parents: 138
diff changeset
  8708
claus
parents: 138
diff changeset
  8709
    rel := p y.
claus
parents: 138
diff changeset
  8710
    rel isInteger ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8711
	newY := rel
140
claus
parents: 138
diff changeset
  8712
    ] ifFalse:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8713
	newY := (rel * superHeight) asInteger + superTop.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8714
	(bw ~~ 0) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8715
	    rel ~= 1.0 ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8716
		newY := newY - bw
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8717
	    ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8718
	]
140
claus
parents: 138
diff changeset
  8719
    ].
claus
parents: 138
diff changeset
  8720
    ^ newX @ newY
2382
2fe724f3efcd init borderWidth.
Claus Gittinger <cg@exept.de>
parents: 2381
diff changeset
  8721
2fe724f3efcd init borderWidth.
Claus Gittinger <cg@exept.de>
parents: 2381
diff changeset
  8722
    "Modified: / 1.10.1998 / 13:21:14 / cg"
140
claus
parents: 138
diff changeset
  8723
!
claus
parents: 138
diff changeset
  8724
claus
parents: 138
diff changeset
  8725
setBorderColor
5405
369200caeaaf border stuff
Claus Gittinger <cg@exept.de>
parents: 5390
diff changeset
  8726
    "set my borderColor in the physical view (if supported by the device)"
140
claus
parents: 138
diff changeset
  8727
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8728
"/    |id dither|
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8729
"/
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8730
"/    drawableId notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8731
"/        borderColor := borderColor onDevice:device.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8732
"/        id := borderColor colorId.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8733
"/        id notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8734
"/            device setWindowBorderColor:id in:drawableId
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8735
"/        ] ifFalse:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8736
"/            dither := borderColor ditherForm.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8737
"/            dither notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8738
"/                device setWindowBorderPixmap:(dither id) in:drawableId
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8739
"/            ] ifFalse:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8740
"/                'SimpleView [warning]: bad borderColor' errorPrintCR
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8741
"/            ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8742
"/        ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8743
"/    ]
1172
a69398754511 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1161
diff changeset
  8744
a69398754511 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1161
diff changeset
  8745
    "Modified: 10.1.1997 / 18:06:34 / cg"
135
claus
parents:
diff changeset
  8746
!
claus
parents:
diff changeset
  8747
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8748
setInnerClip
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8749
    "compute, and set the inside clip-area"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8750
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8751
    self computeInnerClip.
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
  8752
    self clippingBounds:innerClipRect.
2726
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8753
c0a05c874843 always use a deviceClipRect as innerClip;
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8754
    "Modified: / 25.5.1999 / 14:45:53 / cg"
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8755
!
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8756
4139
6acf2874394b WO's stuff
werner
parents: 4131
diff changeset
  8757
setShown:aState
6acf2874394b WO's stuff
werner
parents: 4131
diff changeset
  8758
    shown := aState
6acf2874394b WO's stuff
werner
parents: 4131
diff changeset
  8759
6acf2874394b WO's stuff
werner
parents: 4131
diff changeset
  8760
!
6acf2874394b WO's stuff
werner
parents: 4131
diff changeset
  8761
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8762
setViewShape
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8763
    |form|
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8764
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8765
    (form := viewShape borderShapeForm) notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  8766
	gc windowBorderShape:form.
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8767
    ].
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8768
    (form := viewShape viewShapeForm) notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  8769
	gc windowShape:form.
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8770
    ].
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8771
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  8772
    "Created: 18.9.1997 / 11:09:00 / cg"
4139
6acf2874394b WO's stuff
werner
parents: 4131
diff changeset
  8773
!
6acf2874394b WO's stuff
werner
parents: 4131
diff changeset
  8774
6acf2874394b WO's stuff
werner
parents: 4131
diff changeset
  8775
windowGroupClass
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8776
	^ WindowGroup
140
claus
parents: 138
diff changeset
  8777
! !
claus
parents: 138
diff changeset
  8778
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8779
!SimpleView methodsFor:'queries'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8780
6117
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8781
anyComponentHasFocus
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8782
    "return true, if the receiver or any of my components has the keyboard focus
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8783
     (either via the focusView mechanism in the windowGroup,
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8784
      or via delegation)"
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8785
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8786
    |focusViewToCheck focusViewOnDisplay delegate|
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8787
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8788
    windowGroup isNil ifTrue:[^ false].
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8789
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8790
    "/ this is wrong (the old code).
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8791
    "/ focusViewInWindowGroup := windowGroup focusView.
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8792
    "/ focusViewToCheck := focusViewInWindowGroup.
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8793
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  8794
    focusViewOnDisplay := self graphicsDevice focusView.
6117
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8795
    focusViewToCheck := focusViewOnDisplay.
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8796
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8797
    focusViewToCheck == self ifTrue:[ ^ true ].
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8798
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8799
    focusViewToCheck notNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8800
	(focusViewToCheck isComponentOf: self) ifTrue:[ ^ true ].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8801
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8802
	"mhmh - is there a delegation to me ?"
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8803
	(delegate := focusViewToCheck delegate) notNil ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8804
	    delegate == self ifTrue:[^ true].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8805
	    "/ no: delegate does not understand this (EnterFieldGroup or KbdForwarder)
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8806
	    "/ we will see, if commenting this leads to problems...
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8807
	    "/ (delegate isComponentOf: self) ifTrue:[ ^ true ].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8808
	    ^ delegate askFor:#delegatesTo: with:self
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8809
	]
6117
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8810
    ].
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8811
    ^ false
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8812
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8813
    "Modified: / 08-11-2006 / 12:10:32 / cg"
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8814
!
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8815
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8816
canHandle:aKey
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8817
    "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
  8818
     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
  8819
     leftOver and will be removed. Use the delegation mechanism for this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8820
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8821
    ^ false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8822
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8823
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8824
canHandle:aKey from:aView
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8825
    "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
  8826
     in aView.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8827
     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
  8828
     leftOver and will be removed. Use the delegation mechanism for this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8829
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8830
    ^ self canHandle:aKey
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8831
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8832
4915
440fb8ebb234 changed #computePreferredExtent (from cg)
Stefan Vogel <sv@exept.de>
parents: 4907
diff changeset
  8833
computePreferredExtent
5060
01bb459aaa8b changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 5050
diff changeset
  8834
    "compute answer the preferred extent, disregarding
01bb459aaa8b changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 5050
diff changeset
  8835
     an explicit or cached preferred extent for the computation"
01bb459aaa8b changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 5050
diff changeset
  8836
5021
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  8837
    |savedPref savedExplicit computedPref|
4915
440fb8ebb234 changed #computePreferredExtent (from cg)
Stefan Vogel <sv@exept.de>
parents: 4907
diff changeset
  8838
440fb8ebb234 changed #computePreferredExtent (from cg)
Stefan Vogel <sv@exept.de>
parents: 4907
diff changeset
  8839
    savedPref := preferredExtent.
5021
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  8840
    savedExplicit := explicitExtent.
4915
440fb8ebb234 changed #computePreferredExtent (from cg)
Stefan Vogel <sv@exept.de>
parents: 4907
diff changeset
  8841
    [
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8842
	preferredExtent := explicitExtent := nil.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8843
	computedPref := self preferredExtent.
4915
440fb8ebb234 changed #computePreferredExtent (from cg)
Stefan Vogel <sv@exept.de>
parents: 4907
diff changeset
  8844
    ] ensure:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8845
	preferredExtent := savedPref.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  8846
	explicitExtent := savedExplicit.
4915
440fb8ebb234 changed #computePreferredExtent (from cg)
Stefan Vogel <sv@exept.de>
parents: 4907
diff changeset
  8847
    ].
440fb8ebb234 changed #computePreferredExtent (from cg)
Stefan Vogel <sv@exept.de>
parents: 4907
diff changeset
  8848
    ^ computedPref
440fb8ebb234 changed #computePreferredExtent (from cg)
Stefan Vogel <sv@exept.de>
parents: 4907
diff changeset
  8849
!
440fb8ebb234 changed #computePreferredExtent (from cg)
Stefan Vogel <sv@exept.de>
parents: 4907
diff changeset
  8850
3368
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  8851
cornerChangedFlag
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8852
    "/ ^ cornerChangedFlag == true
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8853
    ^ flagBits bitTest:FlagCornerChanged
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8854
!
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8855
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  8856
cornerChangedFlag:aBoolean
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8857
    "/ cornerChangedFlag := aBoolean
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8858
    aBoolean ifTrue:[
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8859
	flagBits := flagBits bitOr:FlagCornerChanged
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8860
    ] ifFalse:[
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8861
	flagBits := flagBits bitClear:FlagCornerChanged
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8862
    ].
3368
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  8863
!
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  8864
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8865
delegatesTo:someone
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8866
    "return true, if I delegate events to someone"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8867
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8868
    delegate isNil ifTrue:[^ false].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8869
    ^ delegate delegatesTo:someone
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8870
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8871
3439
f4f02e2c0af7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3434
diff changeset
  8872
escapeIsCancel
f4f02e2c0af7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3434
diff changeset
  8873
    "return the escapeIsCancel setting - defaults to true for popupViews here."
f4f02e2c0af7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3434
diff changeset
  8874
f4f02e2c0af7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3434
diff changeset
  8875
    ^ self isPopUpView
f4f02e2c0af7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3434
diff changeset
  8876
!
f4f02e2c0af7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3434
diff changeset
  8877
3394
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  8878
extentChangedBeforeCreatedFlag
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  8879
    ^ flagBits bitTest:FlagExtentChangedBeforeCreated
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  8880
!
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  8881
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  8882
extentChangedBeforeCreatedFlag:aBoolean
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  8883
    aBoolean ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8884
	flagBits := flagBits bitOr:FlagExtentChangedBeforeCreated
3394
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  8885
    ] ifFalse:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8886
	flagBits := flagBits bitClear:FlagExtentChangedBeforeCreated
3394
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  8887
    ].
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  8888
!
56080b4ebce1 remember the fact, that the extent changed before the view
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
  8889
3368
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  8890
extentChangedFlag
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8891
    "/ ^ extentChangedFlag == true
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8892
    ^ flagBits bitTest:FlagExtentChanged
3368
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  8893
!
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  8894
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  8895
extentChangedFlag:aBoolean
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8896
    "/ extentChangedFlag := aBoolean
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8897
    aBoolean ifTrue:[
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8898
	flagBits := flagBits bitOr:FlagExtentChanged
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8899
    ] ifFalse:[
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8900
	flagBits := flagBits bitClear:FlagExtentChanged
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  8901
    ].
3368
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  8902
!
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  8903
5140
711f73e23b87 +hasExplicitFocus
Claus Gittinger <cg@exept.de>
parents: 5137
diff changeset
  8904
hasExplicitFocus
711f73e23b87 +hasExplicitFocus
Claus Gittinger <cg@exept.de>
parents: 5137
diff changeset
  8905
    "return true, if the receiver has the keyboard focus
711f73e23b87 +hasExplicitFocus
Claus Gittinger <cg@exept.de>
parents: 5137
diff changeset
  8906
     via the focusView mechanism in the windowGroup"
711f73e23b87 +hasExplicitFocus
Claus Gittinger <cg@exept.de>
parents: 5137
diff changeset
  8907
711f73e23b87 +hasExplicitFocus
Claus Gittinger <cg@exept.de>
parents: 5137
diff changeset
  8908
    windowGroup isNil ifTrue:[^ false].
711f73e23b87 +hasExplicitFocus
Claus Gittinger <cg@exept.de>
parents: 5137
diff changeset
  8909
    ^ windowGroup explicitFocusView == self
711f73e23b87 +hasExplicitFocus
Claus Gittinger <cg@exept.de>
parents: 5137
diff changeset
  8910
!
711f73e23b87 +hasExplicitFocus
Claus Gittinger <cg@exept.de>
parents: 5137
diff changeset
  8911
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8912
hasFocus
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8913
    "return true, if the receiver has the keyboard focus
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8914
     (either via the focusView mechanism in the windowGroup,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8915
      or via delegation)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8916
6077
267fb1241ec2 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 6074
diff changeset
  8917
    |focusViewToCheck focusViewOnDisplay delegate|
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8918
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8919
    windowGroup isNil ifTrue:[^ false].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8920
4675
b8e2a532c680 focusHandling
Claus Gittinger <cg@exept.de>
parents: 4674
diff changeset
  8921
    "/ this is wrong (the old code).
b8e2a532c680 focusHandling
Claus Gittinger <cg@exept.de>
parents: 4674
diff changeset
  8922
    "/ focusViewInWindowGroup := windowGroup focusView.
b8e2a532c680 focusHandling
Claus Gittinger <cg@exept.de>
parents: 4674
diff changeset
  8923
    "/ focusViewToCheck := focusViewInWindowGroup.
b8e2a532c680 focusHandling
Claus Gittinger <cg@exept.de>
parents: 4674
diff changeset
  8924
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  8925
    focusViewOnDisplay := self graphicsDevice focusView.
4675
b8e2a532c680 focusHandling
Claus Gittinger <cg@exept.de>
parents: 4674
diff changeset
  8926
    focusViewToCheck := focusViewOnDisplay.
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  8927
6117
b0f2ee933547 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6116
diff changeset
  8928
    focusViewToCheck == self ifTrue:[ ^ true ].
4675
b8e2a532c680 focusHandling
Claus Gittinger <cg@exept.de>
parents: 4674
diff changeset
  8929
b8e2a532c680 focusHandling
Claus Gittinger <cg@exept.de>
parents: 4674
diff changeset
  8930
    focusViewToCheck notNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8931
	"mhmh - is there a delegation to me ?"
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8932
	(delegate := focusViewToCheck delegate) notNil ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8933
	    delegate == self ifTrue:[^ true].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8934
	    ^ delegate askFor:#delegatesTo: with:self
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  8935
	]
135
claus
parents:
diff changeset
  8936
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8937
    ^ false
4675
b8e2a532c680 focusHandling
Claus Gittinger <cg@exept.de>
parents: 4674
diff changeset
  8938
b8e2a532c680 focusHandling
Claus Gittinger <cg@exept.de>
parents: 4674
diff changeset
  8939
    "Modified: / 08-11-2006 / 12:10:32 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8940
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  8941
370
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  8942
is3D
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  8943
    "return true, if my style is some kind of 3D style
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  8944
     This is OBSOLETE and will be removed."
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  8945
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  8946
    ^ styleSheet is3D
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  8947
!
c43763552e80 category changes
Claus Gittinger <cg@exept.de>
parents: 369
diff changeset
  8948
6136
be85ab25bd44 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6132
diff changeset
  8949
isActive
be85ab25bd44 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6132
diff changeset
  8950
    "true, if I have the focus (w.r.t the windowing system);
be85ab25bd44 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6132
diff changeset
  8951
     i.e. if one of my subViews actually has the real focus.
be85ab25bd44 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6132
diff changeset
  8952
     With click-to-focus behavior, this is obviously the current application.
be85ab25bd44 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6132
diff changeset
  8953
     Use this query with caution, for example, to suppress tooltips for inactive apps."
be85ab25bd44 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6132
diff changeset
  8954
be85ab25bd44 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6132
diff changeset
  8955
    ^ windowGroup notNil and:[windowGroup anyViewHasFocus]
be85ab25bd44 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6132
diff changeset
  8956
!
be85ab25bd44 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6132
diff changeset
  8957
794
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  8958
isBorderedWrapper
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  8959
     ^ false
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  8960
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  8961
    "Created: 5.6.1996 / 14:11:15 / cg"
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  8962
!
d21c9a163f20 care for border wrappers
Claus Gittinger <cg@exept.de>
parents: 792
diff changeset
  8963
791
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  8964
isComponentOf:aViewOrComponent
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  8965
    "return true, if I am a (direct or indirect) component of aViewOrComponent"
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  8966
3362
6774771fc2b8 fix #isComponentOf:
ca
parents: 3358
diff changeset
  8967
    |sview|
6774771fc2b8 fix #isComponentOf:
ca
parents: 3358
diff changeset
  8968
6774771fc2b8 fix #isComponentOf:
ca
parents: 3358
diff changeset
  8969
    sview := self.
6774771fc2b8 fix #isComponentOf:
ca
parents: 3358
diff changeset
  8970
3616
0ddaf2ce9b06 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3614
diff changeset
  8971
    [ (sview := sview container) notNil ] whileTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  8972
	sview == aViewOrComponent ifTrue:[^ true].
3362
6774771fc2b8 fix #isComponentOf:
ca
parents: 3358
diff changeset
  8973
    ].
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  8974
    ^ false
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  8975
!
791
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  8976
3711
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8977
isCursorKeyConsumer
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8978
    "return true, if the receiver can be controlled by cursor keys;
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8979
     i.e. it can handle some keyboard input,
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8980
     isCursorKeyConsumer are potential candidates for getting the keyboard
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8981
     focus initially within dialogBoxes, or when the focus-follows-pointer
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8982
     mode is off.
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8983
     Return false here, this is redefined in SelectionInListView."
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8984
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8985
    ^ false
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8986
!
f74e461c8b31 added #isCursorKeyConsumer (second chance initial focus in dialog)
Claus Gittinger <cg@exept.de>
parents: 3709
diff changeset
  8987
2496
f3093d8a83f8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2495
diff changeset
  8988
isDefault
f3093d8a83f8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2495
diff changeset
  8989
    "return true, if I am a default widget;
f3093d8a83f8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2495
diff changeset
  8990
     Used with autoAccept. Currently only default buttons are supposed to return
f3093d8a83f8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2495
diff changeset
  8991
     true here"
f3093d8a83f8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2495
diff changeset
  8992
f3093d8a83f8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2495
diff changeset
  8993
     ^ false
f3093d8a83f8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2495
diff changeset
  8994
!
f3093d8a83f8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2495
diff changeset
  8995
2430
fbce2378d686 added isExternalTopView query.
Claus Gittinger <cg@exept.de>
parents: 2425
diff changeset
  8996
isExternalTopView
2454
f708fb443ffe method comment
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  8997
    "return true, if this is an external topView - always false here"
f708fb443ffe method comment
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  8998
2430
fbce2378d686 added isExternalTopView query.
Claus Gittinger <cg@exept.de>
parents: 2425
diff changeset
  8999
    ^ false
fbce2378d686 added isExternalTopView query.
Claus Gittinger <cg@exept.de>
parents: 2425
diff changeset
  9000
fbce2378d686 added isExternalTopView query.
Claus Gittinger <cg@exept.de>
parents: 2425
diff changeset
  9001
fbce2378d686 added isExternalTopView query.
Claus Gittinger <cg@exept.de>
parents: 2425
diff changeset
  9002
!
fbce2378d686 added isExternalTopView query.
Claus Gittinger <cg@exept.de>
parents: 2425
diff changeset
  9003
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9004
isICCCWindowGroupWindow
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9005
    "needed for checkForEndOfDispatch"
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9006
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9007
    ^ false
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9008
!
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9009
497
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  9010
isInputField
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  9011
    "return true, if the receiver is some kind of input view,
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  9012
     i.e. it should (can) be part of an enterGroup.
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  9013
     Return false here, this is redefined in EnterField."
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  9014
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  9015
    ^ false
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  9016
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  9017
    "Created: 4.3.1996 / 11:34:07 / cg"
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  9018
!
5c2f58720c62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  9019
2410
050a7633ba9f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
  9020
isJavaView
050a7633ba9f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
  9021
    ^ false
050a7633ba9f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
  9022
050a7633ba9f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
  9023
    "Created: / 4.12.1998 / 14:10:06 / cg"
050a7633ba9f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
  9024
!
050a7633ba9f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
  9025
2588
4a5b0e48d645 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2584
diff changeset
  9026
isKeyboardConsumer
2727
2047aa7dd3ac comment
Claus Gittinger <cg@exept.de>
parents: 2726
diff changeset
  9027
    "return true, if the receiver is a keyboard consumer;
2588
4a5b0e48d645 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2584
diff changeset
  9028
     i.e. it can handle (non-shortkey) keyboard input,
4a5b0e48d645 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2584
diff changeset
  9029
     keyboardConsumer are potential candidates for getting the keyboard
4a5b0e48d645 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2584
diff changeset
  9030
     focus initially within dialogBoxes, or when the focus-follows-pointer
4a5b0e48d645 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2584
diff changeset
  9031
     mode is off.
4a5b0e48d645 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2584
diff changeset
  9032
     Return false here, this is redefined in EditTextView and EditField."
4a5b0e48d645 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2584
diff changeset
  9033
4a5b0e48d645 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2584
diff changeset
  9034
    ^ false
2727
2047aa7dd3ac comment
Claus Gittinger <cg@exept.de>
parents: 2726
diff changeset
  9035
2047aa7dd3ac comment
Claus Gittinger <cg@exept.de>
parents: 2726
diff changeset
  9036
    "Modified: / 22.5.1999 / 16:19:27 / cg"
2588
4a5b0e48d645 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2584
diff changeset
  9037
!
4a5b0e48d645 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2584
diff changeset
  9038
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  9039
isLayoutWrapper
5229
3caaef23e005 UIPainter can now resize subviews of PanelViews
Stefan Vogel <sv@exept.de>
parents: 5228
diff changeset
  9040
    "answer true, if this view defines the layout of it's subviews"
3caaef23e005 UIPainter can now resize subviews of PanelViews
Stefan Vogel <sv@exept.de>
parents: 5228
diff changeset
  9041
3caaef23e005 UIPainter can now resize subviews of PanelViews
Stefan Vogel <sv@exept.de>
parents: 5228
diff changeset
  9042
    ^ false
964
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  9043
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  9044
    "Created: 19.7.1996 / 17:51:04 / cg"
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  9045
!
5236c3ceb002 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  9046
4497
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  9047
isMDIClientView
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  9048
    ^false
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  9049
!
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  9050
4184
1b6a082d98e2 isModal added
ca
parents: 4157
diff changeset
  9051
isModal
1b6a082d98e2 isModal added
ca
parents: 4157
diff changeset
  9052
    "return true, if the receiver has been opened modal.
1b6a082d98e2 isModal added
ca
parents: 4157
diff changeset
  9053
     For compatibility with topView (if regular views are the window of an application),
1b6a082d98e2 isModal added
ca
parents: 4157
diff changeset
  9054
     return false here."
1b6a082d98e2 isModal added
ca
parents: 4157
diff changeset
  9055
1b6a082d98e2 isModal added
ca
parents: 4157
diff changeset
  9056
    ^ false
1b6a082d98e2 isModal added
ca
parents: 4157
diff changeset
  9057
!
1b6a082d98e2 isModal added
ca
parents: 4157
diff changeset
  9058
3653
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  9059
isSameOrComponentOf:aView
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  9060
    "return true, if I am aView or a (direct or indirect) component of aView"
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  9061
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  9062
    ^ self == aView or:[self isComponentOf:aView].
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  9063
!
dd77a60ef178 +isSameOrComponentOf:
penk
parents: 3648
diff changeset
  9064
2161
46940821c697 added #isScrollWrapper query.
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  9065
isScrollWrapper
4918
4c804945889f Clean up documentation & variable names
Stefan Vogel <sv@exept.de>
parents: 4915
diff changeset
  9066
     "answer true if this view wraps a possibly larger view and has scroll bars"
4c804945889f Clean up documentation & variable names
Stefan Vogel <sv@exept.de>
parents: 4915
diff changeset
  9067
2161
46940821c697 added #isScrollWrapper query.
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  9068
     ^ false
46940821c697 added #isScrollWrapper query.
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  9069
46940821c697 added #isScrollWrapper query.
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  9070
    "Created: / 5.6.1996 / 14:11:15 / cg"
46940821c697 added #isScrollWrapper query.
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  9071
    "Modified: / 20.6.1998 / 14:15:29 / cg"
46940821c697 added #isScrollWrapper query.
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  9072
!
46940821c697 added #isScrollWrapper query.
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  9073
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9074
isSubViewOf:aView
791
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  9075
    "return true, if I am a (direct or indirect) subview of aView"
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  9076
3434
f76f82ce8f28 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3425
diff changeset
  9077
    <resource:#obsolete>
f76f82ce8f28 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3425
diff changeset
  9078
791
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  9079
    self obsoleteMethodWarning:'use #isComponentOf:'.
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  9080
    ^ self isComponentOf:aView.
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  9081
e6adfb28e3bc isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  9082
    "Modified: 5.6.1996 / 14:25:35 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9083
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9084
5804
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9085
isTextView
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9086
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9087
    "Returns true, if the view displays text"
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9088
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9089
    "JV@2011-09-16: Do not remove this method, it is called
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9090
     at many places. See senders before removing!!!!!!"
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9091
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9092
    ^ false
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9093
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9094
    "Created: / 16-09-2011 / 17:49:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9095
!
c769d3a0325d re-added: #isTextView (it is sent at many places)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5782
diff changeset
  9096
4151
werner
parents: 4150
diff changeset
  9097
isTransparentBox
werner
parents: 4150
diff changeset
  9098
     ^ false
werner
parents: 4150
diff changeset
  9099
!
werner
parents: 4150
diff changeset
  9100
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  9101
isWrapper
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  9102
     ^ false
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  9103
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  9104
    "Created: 5.6.1996 / 01:05:06 / cg"
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  9105
!
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  9106
3368
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  9107
originChangedFlag
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9108
    "/ ^ originChangedFlag == true
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9109
    ^ flagBits bitTest:FlagOriginChanged
3368
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  9110
!
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  9111
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  9112
originChangedFlag:aBoolean
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9113
    "/ originChangedFlag := aBoolean
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9114
    aBoolean ifTrue:[
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9115
	flagBits := flagBits bitOr:FlagOriginChanged
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9116
    ] ifFalse:[
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9117
	flagBits := flagBits bitClear:FlagOriginChanged
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9118
    ].
3368
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  9119
!
57da0cceaf16 concentrated all accesses to originChanged, extentChanged and
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  9120
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9121
originChangedFlag:originChanged extentChangedFlag:extentChanged
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9122
    |newBits|
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9123
5946
a2a03a6445c1 changed:
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
  9124
    newBits := flagBits bitClear:(FlagOriginChanged bitOr: FlagExtentChanged).
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9125
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9126
    originChanged ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9127
	newBits := newBits bitOr:FlagOriginChanged
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9128
    ].
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9129
    extentChanged ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9130
	newBits := newBits bitOr:FlagExtentChanged
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9131
    ].
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9132
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9133
    flagBits := newBits.
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9134
!
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9135
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9136
originChangedFlag:originChanged extentChangedFlag:extentChanged cornerChangedFlag:cornerChanged
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9137
    |newBits|
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9138
5946
a2a03a6445c1 changed:
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
  9139
    newBits := flagBits bitClear:((FlagOriginChanged bitOr: FlagExtentChanged) bitOr: FlagCornerChanged).
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9140
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9141
    originChanged ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9142
	newBits := newBits bitOr:FlagOriginChanged
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9143
    ].
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9144
    extentChanged ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9145
	newBits := newBits bitOr:FlagExtentChanged
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9146
    ].
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9147
    cornerChanged ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9148
	newBits := newBits bitOr:FlagCornerChanged
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9149
    ].
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9150
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9151
    flagBits := newBits.
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9152
!
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9153
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  9154
originOrExtentChanged
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  9155
    "/ ^ originChanged or:[extentChanged].
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  9156
    ^ flagBits bitTest:( FlagOriginChanged + FlagExtentChanged )
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  9157
!
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  9158
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  9159
originOrExtentOrCornerChanged
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  9160
    "/ ^ originChanged or:[extentChanged or:[cornerChanged]].
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  9161
    ^ flagBits bitTest:( FlagOriginChanged + FlagExtentChanged + FlagCornerChanged )
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  9162
!
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
  9163
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9164
preferredBounds
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9165
    "ST-80 compatibility."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9166
971
3137be953256 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 967
diff changeset
  9167
    ^ 0@0 extent:(self preferredExtent)
3137be953256 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 967
diff changeset
  9168
3137be953256 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 967
diff changeset
  9169
    "Modified: 19.7.1996 / 20:41:36 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9170
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9171
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9172
preferredExtent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9173
    "return my preferred extent - this is the minimum size I would like to have.
761
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9174
     If the preferredExtent has been set, that one is returned.
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9175
     Otherwise, if there are any components, a rectangle enclosing them
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9176
     is returned. Otherwise, the actual extent is returned."
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9177
1063
ba1bf8091bc1 unused variable cleanup
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  9178
    |maxX maxY|
761
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9179
5021
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  9180
    "/ If I have an explicit preferredExtent..
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  9181
    explicitExtent notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9182
	^ explicitExtent
5021
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  9183
    ].
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  9184
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  9185
    "/ If I have a cached preferredExtent value..
761
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9186
    preferredExtent notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9187
	^ preferredExtent
761
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9188
    ].
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9189
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9190
    "/ mhmh - if I have subViews, collect their
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9191
    "/ preferred bounds ...
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9192
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9193
    subViews notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9194
	maxX := maxY := 0.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9195
	subViews do:[:aSubView |
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9196
	    |org corn|
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9197
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9198
	    org := aSubView computeOrigin.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9199
	    corn := org + aSubView preferredExtent.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9200
	    maxX := maxX max:corn x.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9201
	    maxY := maxY max:corn y.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9202
	]
5021
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  9203
    ].
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  9204
b35cef3e421d changed #copyDataEvent:eventData:view:
Claus Gittinger <cg@exept.de>
parents: 5017
diff changeset
  9205
    "/ mhmh - if I have components, collect their preferred bounds ...
761
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9206
    components notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9207
	maxX isNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9208
	    maxX := maxY := 0.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9209
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9210
	components do:[:aComponent |
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9211
	    |bounds org corn|
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9212
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9213
	    bounds := aComponent preferredBounds.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9214
	    corn := bounds corner.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9215
	    maxX := maxX max:corn x.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9216
	    maxY := maxY max:corn y.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9217
	]
761
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9218
    ].
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9219
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9220
    "/ nothing found - return the actual size
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9221
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9222
    maxX isNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9223
	^ self extent.
761
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9224
    ].
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9225
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9226
    ^ maxX @ maxY.
761
34d17118452a care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  9227
971
3137be953256 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 967
diff changeset
  9228
    "Modified: 19.7.1996 / 20:43:32 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9229
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9230
4970
6a58581288cc added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  9231
preferredHeight
6a58581288cc added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  9232
    ^ self preferredExtent y
6a58581288cc added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  9233
!
6a58581288cc added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  9234
6a58581288cc added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  9235
preferredWidth
6a58581288cc added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  9236
    ^ self preferredExtent x
6a58581288cc added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  9237
!
6a58581288cc added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  9238
2956
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  9239
reallyRealized
6246
bca5bde259bf class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6229
diff changeset
  9240
    "return true, if the receiver is realized and all containers are realized.
bca5bde259bf class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6229
diff changeset
  9241
     Realized means that it has been mapped (i.e. made visible) on
bca5bde259bf class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6229
diff changeset
  9242
     the display (as opposed to being only created and possibly invisible)"
2956
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  9243
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  9244
    realized ifFalse:[^ false].
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  9245
    superView isNil ifTrue:[^ true].
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  9246
    ^ superView reallyRealized
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  9247
!
7df6d15ae1a5 renamed #fullyRealized
Claus Gittinger <cg@exept.de>
parents: 2935
diff changeset
  9248
2130
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  9249
resources
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9250
    "return the views resources -
5221
3c4682d4b409 comment only
Claus Gittinger <cg@exept.de>
parents: 5214
diff changeset
  9251
     that's a ResourcePack containing national language strings"
3c4682d4b409 comment only
Claus Gittinger <cg@exept.de>
parents: 5214
diff changeset
  9252
2130
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  9253
    ^ resources
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  9254
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  9255
    "Created: / 25.5.1998 / 13:00:02 / cg"
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  9256
!
5dbffd126b4a added #resources class method for all views.
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  9257
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9258
sizeFixed
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9259
    "return true, if this vew wants its size to remain unchanged.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9260
     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
  9261
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9262
    ^ false
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9263
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9264
    "Created: 17.9.1995 / 20:29:20 / claus"
3901
88018bc87ad9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  9265
!
88018bc87ad9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  9266
5727
d0b9ef9c0cc0 added: #startWindowMoveOnButtonPress
Claus Gittinger <cg@exept.de>
parents: 5722
diff changeset
  9267
startWindowMoveOnButtonPress
d0b9ef9c0cc0 added: #startWindowMoveOnButtonPress
Claus Gittinger <cg@exept.de>
parents: 5722
diff changeset
  9268
    "if another view is used as topView"
d0b9ef9c0cc0 added: #startWindowMoveOnButtonPress
Claus Gittinger <cg@exept.de>
parents: 5722
diff changeset
  9269
d0b9ef9c0cc0 added: #startWindowMoveOnButtonPress
Claus Gittinger <cg@exept.de>
parents: 5722
diff changeset
  9270
    ^ false
d0b9ef9c0cc0 added: #startWindowMoveOnButtonPress
Claus Gittinger <cg@exept.de>
parents: 5722
diff changeset
  9271
d0b9ef9c0cc0 added: #startWindowMoveOnButtonPress
Claus Gittinger <cg@exept.de>
parents: 5722
diff changeset
  9272
    "Created: / 04-03-2011 / 08:57:45 / cg"
d0b9ef9c0cc0 added: #startWindowMoveOnButtonPress
Claus Gittinger <cg@exept.de>
parents: 5722
diff changeset
  9273
!
d0b9ef9c0cc0 added: #startWindowMoveOnButtonPress
Claus Gittinger <cg@exept.de>
parents: 5722
diff changeset
  9274
3901
88018bc87ad9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  9275
tabRequiresControl
88018bc87ad9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  9276
    "returns true, if a focus tabbing requires a control-key to be pressed.
88018bc87ad9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  9277
     The default is true for editTextView, false for other widgets,
88018bc87ad9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  9278
     to allow for easier text entry"
88018bc87ad9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  9279
88018bc87ad9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  9280
    ^ false
4191
7f999428c830 *** empty log message ***
ca
parents: 4189
diff changeset
  9281
!
7f999428c830 *** empty log message ***
ca
parents: 4189
diff changeset
  9282
7f999428c830 *** empty log message ***
ca
parents: 4189
diff changeset
  9283
window
7f999428c830 *** empty log message ***
ca
parents: 4189
diff changeset
  9284
    "for compatibility with applicationModels ... return the receiver"
7f999428c830 *** empty log message ***
ca
parents: 4189
diff changeset
  9285
7f999428c830 *** empty log message ***
ca
parents: 4189
diff changeset
  9286
    ^ self
1699
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9287
! !
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9288
5202
966f7b304597 No longer scroll the focus view for mouseWheel events.
Stefan Vogel <sv@exept.de>
parents: 5154
diff changeset
  9289
!SimpleView methodsFor:'queries-delegation'!
966f7b304597 No longer scroll the focus view for mouseWheel events.
Stefan Vogel <sv@exept.de>
parents: 5154
diff changeset
  9290
966f7b304597 No longer scroll the focus view for mouseWheel events.
Stefan Vogel <sv@exept.de>
parents: 5154
diff changeset
  9291
handlesMouseWheelMotion:event inView:aView
966f7b304597 No longer scroll the focus view for mouseWheel events.
Stefan Vogel <sv@exept.de>
parents: 5154
diff changeset
  9292
    "we do not handle delegated mousewheel events - subclasses may handle them"
966f7b304597 No longer scroll the focus view for mouseWheel events.
Stefan Vogel <sv@exept.de>
parents: 5154
diff changeset
  9293
966f7b304597 No longer scroll the focus view for mouseWheel events.
Stefan Vogel <sv@exept.de>
parents: 5154
diff changeset
  9294
    ^ false
966f7b304597 No longer scroll the focus view for mouseWheel events.
Stefan Vogel <sv@exept.de>
parents: 5154
diff changeset
  9295
! !
966f7b304597 No longer scroll the focus view for mouseWheel events.
Stefan Vogel <sv@exept.de>
parents: 5154
diff changeset
  9296
3266
4db6dd90cc17 category change
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
  9297
!SimpleView methodsFor:'queries-events'!
2802
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9298
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9299
buttonMotionEventPending
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9300
    "return true, if a button motion event is pending.
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9301
     Normally, you dont want to use this, since no polling is needed
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9302
     (not even for mouse-tracking).
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9303
     Actually, its a historical leftover"
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9304
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9305
    windowGroup notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  9306
	^ windowGroup sensor hasButtonMotionEventFor:self
2802
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9307
    ].
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9308
    ^ super buttonMotionEventPending
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9309
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9310
    "Modified: 1.11.1996 / 17:04:38 / cg"
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9311
! !
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  9312
3266
4db6dd90cc17 category change
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
  9313
!SimpleView methodsFor:'queries-internal'!
1699
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9314
1354
b5baf62b8c7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1335
diff changeset
  9315
specClass
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9316
    "fallback - heuristics to get a specClass for some viewClass.
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9317
     Based upon my className, look for a corresponding Spec-class.
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9318
     If there is none, return ArbiraryComponentSpec as a fallBack"
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9319
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9320
    |myClass myName cls|
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9321
4157
6499061440cd Streamline autoloading.
Stefan Vogel <sv@exept.de>
parents: 4151
diff changeset
  9322
    myClass := self class.
6499061440cd Streamline autoloading.
Stefan Vogel <sv@exept.de>
parents: 4151
diff changeset
  9323
    (myClass == View or:[myClass == SimpleView]) ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9324
	^ ViewSpec "/ CompositeSpecCollection
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9325
    ].
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9326
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9327
    "/ try: appending 'Spec' to my classes name
1409
3818a8a85c16 use CompositeSpecCollection as specClass for
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  9328
1354
b5baf62b8c7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1335
diff changeset
  9329
    myName := self class name.
b5baf62b8c7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1335
diff changeset
  9330
    cls := Smalltalk classNamed:(myName , 'Spec').
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9331
    cls notNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9332
	cls := cls autoload.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9333
	(cls isSubclassOf:UISpecification) ifTrue:[^ cls].
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9334
    ].
1354
b5baf62b8c7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1335
diff changeset
  9335
b5baf62b8c7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1335
diff changeset
  9336
    (myName endsWith:'View') ifTrue:[
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9337
"/        "/ try name without 'View'
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9338
"/        cls := Smalltalk classNamed:(myName copyWithoutLast:4).
4157
6499061440cd Streamline autoloading.
Stefan Vogel <sv@exept.de>
parents: 4151
diff changeset
  9339
"/        cls notNil ifTrue:[
6499061440cd Streamline autoloading.
Stefan Vogel <sv@exept.de>
parents: 4151
diff changeset
  9340
"/            cls := cls autoload.
6499061440cd Streamline autoloading.
Stefan Vogel <sv@exept.de>
parents: 4151
diff changeset
  9341
"/            (cls isSubclassOf:UISpecification) ifTrue:[^ cls].
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9342
"/        ].
4157
6499061440cd Streamline autoloading.
Stefan Vogel <sv@exept.de>
parents: 4151
diff changeset
  9343
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9344
	"/ try with 'View' replaced by 'Spec'
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9345
	cls := Smalltalk classNamed:((myName copyButLast:4) , 'View').
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9346
	cls notNil ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9347
	    cls := cls autoload.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9348
	    (cls isSubclassOf:UISpecification) ifTrue:[^ cls].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9349
	]
4157
6499061440cd Streamline autoloading.
Stefan Vogel <sv@exept.de>
parents: 4151
diff changeset
  9350
    ].
6499061440cd Streamline autoloading.
Stefan Vogel <sv@exept.de>
parents: 4151
diff changeset
  9351
6499061440cd Streamline autoloading.
Stefan Vogel <sv@exept.de>
parents: 4151
diff changeset
  9352
    "/ fall back for all others
1356
90756b9ce548 *** empty log message ***
ca
parents: 1354
diff changeset
  9353
    ^ ArbitraryComponentSpec
90756b9ce548 *** empty log message ***
ca
parents: 1354
diff changeset
  9354
1354
b5baf62b8c7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1335
diff changeset
  9355
b5baf62b8c7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1335
diff changeset
  9356
    "
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9357
     FramedBox new specClass
1354
b5baf62b8c7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1335
diff changeset
  9358
    "
1409
3818a8a85c16 use CompositeSpecCollection as specClass for
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  9359
1943
bab4bcd19c6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1938
diff changeset
  9360
    "Modified: / 31.10.1997 / 19:44:55 / cg"
1699
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9361
!
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9362
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9363
windowStyle
3715
70eea03a8d8d comment
Claus Gittinger <cg@exept.de>
parents: 3711
diff changeset
  9364
    "return a symbol describing my style (one of: #dialog, #popUp or #normal)"
1699
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9365
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9366
    self isPopUpView ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  9367
	^ #popUp
4497
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  9368
    ].
4501
0455a5453085 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4499
diff changeset
  9369
    self isMDIChildView ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
  9370
	^ #mdiChild
4501
0455a5453085 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4499
diff changeset
  9371
    ].
1699
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9372
    ^ #normal
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9373
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9374
    "Created: 2.5.1997 / 14:29:48 / cg"
ae9986a1a97f preps for native window support
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  9375
    "Modified: 2.5.1997 / 14:30:14 / cg"
4494
5f811173a85b preps for mdi-windowType
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  9376
!
5f811173a85b preps for mdi-windowType
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  9377
5f811173a85b preps for mdi-windowType
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  9378
windowType
5f811173a85b preps for mdi-windowType
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  9379
    "return a symbol describing my type (one of: #mdichild or nil)"
5f811173a85b preps for mdi-windowType
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  9380
5f811173a85b preps for mdi-windowType
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  9381
    ^ nil
140
claus
parents: 138
diff changeset
  9382
! !
claus
parents: 138
diff changeset
  9383
claus
parents: 138
diff changeset
  9384
!SimpleView methodsFor:'realization'!
claus
parents: 138
diff changeset
  9385
5602
eca06436db1d added: #activate
Claus Gittinger <cg@exept.de>
parents: 5595
diff changeset
  9386
activate
eca06436db1d added: #activate
Claus Gittinger <cg@exept.de>
parents: 5595
diff changeset
  9387
    "noop for protocol compatibility with TopViews (in case you do a Button new open)"
eca06436db1d added: #activate
Claus Gittinger <cg@exept.de>
parents: 5595
diff changeset
  9388
eca06436db1d added: #activate
Claus Gittinger <cg@exept.de>
parents: 5595
diff changeset
  9389
    "Created: / 17-09-2010 / 16:30:24 / cg"
eca06436db1d added: #activate
Claus Gittinger <cg@exept.de>
parents: 5595
diff changeset
  9390
    "Modified: / 17-09-2010 / 18:39:35 / cg"
eca06436db1d added: #activate
Claus Gittinger <cg@exept.de>
parents: 5595
diff changeset
  9391
!
eca06436db1d added: #activate
Claus Gittinger <cg@exept.de>
parents: 5595
diff changeset
  9392
3459
d50728855052 optionBox: cancel-value corrected
Claus Gittinger <cg@exept.de>
parents: 3439
diff changeset
  9393
closeCancel
d50728855052 optionBox: cancel-value corrected
Claus Gittinger <cg@exept.de>
parents: 3439
diff changeset
  9394
    "for protocol compatibility with modal dialogs"
d50728855052 optionBox: cancel-value corrected
Claus Gittinger <cg@exept.de>
parents: 3439
diff changeset
  9395
d50728855052 optionBox: cancel-value corrected
Claus Gittinger <cg@exept.de>
parents: 3439
diff changeset
  9396
    self hideRequest
d50728855052 optionBox: cancel-value corrected
Claus Gittinger <cg@exept.de>
parents: 3439
diff changeset
  9397
!
d50728855052 optionBox: cancel-value corrected
Claus Gittinger <cg@exept.de>
parents: 3439
diff changeset
  9398
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9399
create
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9400
    "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
  9401
     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
  9402
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9403
    self drawableId isNil ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9404
	"
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9405
	 make certain that superview is created also
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9406
	"
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9407
	superView notNil ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9408
	     superView view create.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9409
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9410
"/            "and put my controller into the superviews controller list"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9411
"/            controller notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9412
"/                superView controller notNil ifTrue:[
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9413
"/                    controller manager:(superView controller manager)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9414
"/                ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9415
"/            ]
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9416
	] ifFalse:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9417
	    "/
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9418
	    "/ if the display is not already dispatching events,
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9419
	    "/ this starts the event process.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9420
	    "/
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9421
	    self graphicsDevice startDispatch
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9422
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9423
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9424
	cursor notNil ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9425
	    cursor := cursor onDevice:self graphicsDevice.
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9426
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9427
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9428
	self extentChangedBeforeCreatedFlag ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9429
	    "/ this is true, if the extent was changed before
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9430
	    "/ this view was created (and therefore, no sizeChangeEvent
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9431
	    "/ was sent to me, which would notify children.)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9432
	    "/ have to do this here.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9433
	    self sizeChanged:nil.   "/ must tell children (if any)
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9434
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9435
	self hasExplicitExtent ifFalse:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9436
	    self resize
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9437
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9438
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9439
	self physicalCreate.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9440
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9441
	viewBackground notNil ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9442
	   self setViewBackground
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9443
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9444
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9445
	self initEvents.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9446
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9447
	"
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9448
	 this is the first create,
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9449
	 force sizechange messages to be sent to the view
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9450
	"
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
  9451
	self originChangedFlag:true extentChangedFlag:true
151
claus
parents: 145
diff changeset
  9452
    ]
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  9453
1494
4faf11deec70 cursor #on: is obsoleted by #onDevice:.
Claus Gittinger <cg@exept.de>
parents: 1490
diff changeset
  9454
    "Modified: 28.3.1997 / 13:50:17 / cg"
151
claus
parents: 145
diff changeset
  9455
!
claus
parents: 145
diff changeset
  9456
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9457
createWithAllSubViews
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9458
    "create, then create all subviews"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9459
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9460
    self drawableId isNil ifTrue:[self create].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9461
    subViews notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  9462
	subViews do:[:subView | subView createWithAllSubViews]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9463
    ]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9464
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9465
1193
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9466
fetchDeviceResources
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9467
    "fetch all device specific resources. This is invoked,
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9468
     when the view is made visible on some device for the very first
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9469
     time, to allocate device specific colors, fonts, bitmaps etc.
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9470
     The view may keep those in instance variables, to avoid reallocating
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9471
     those with every redraw.
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9472
     If you ommit to do this, the views will still be able to display themself,
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9473
     but possibly slower, since resources are reallocated over and over.
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9474
     If you redefine this method, make certain that 'super fetchDeviceResources'
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9475
     is always sent."
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9476
6987
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  9477
    |device|
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  9478
    
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  9479
    shadowColor notNil ifTrue:[
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  9480
        device := self graphicsDevice.
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  9481
        shadowColor := shadowColor onDevice:device
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  9482
    ].
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  9483
    lightColor notNil ifTrue:[
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  9484
        device isNil ifTrue:[ device := self graphicsDevice].
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  9485
        lightColor := lightColor onDevice:device
46f73079d0ec #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6954
diff changeset
  9486
    ].
1193
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9487
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9488
    "Created: 13.1.1997 / 21:51:59 / cg"
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9489
!
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9490
140
claus
parents: 138
diff changeset
  9491
fixSize
claus
parents: 138
diff changeset
  9492
    "This is called right before the view is made visible.
claus
parents: 138
diff changeset
  9493
     Adjust the size of the view according to either relative/abs or
claus
parents: 138
diff changeset
  9494
     block extent; also set origin. Also, subclasses may redefine this
claus
parents: 138
diff changeset
  9495
     method to adjust the size based on some extent (for example, PopUpMenus
claus
parents: 138
diff changeset
  9496
     do so to take care of changed number of menu entries)."
claus
parents: 138
diff changeset
  9497
151
claus
parents: 145
diff changeset
  9498
    |org ext r|
claus
parents: 145
diff changeset
  9499
claus
parents: 145
diff changeset
  9500
    "
claus
parents: 145
diff changeset
  9501
     slowly migrating to use layoutObjects ...
claus
parents: 145
diff changeset
  9502
    "
claus
parents: 145
diff changeset
  9503
    layout notNil ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9504
	superView notNil ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9505
	    (self originOrExtentOrCornerChanged) ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9506
		r := (layout rectangleRelativeTo:(superView viewRectangle)
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9507
				       preferred:[self preferredBounds]).
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9508
		org := r origin rounded.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9509
		ext := r extent rounded.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9510
		self pixelOrigin:org extent:ext.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9511
	    ].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9512
	].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9513
	^ self.
151
claus
parents: 145
diff changeset
  9514
    ].
claus
parents: 145
diff changeset
  9515
140
claus
parents: 138
diff changeset
  9516
    "if the extent is not the one we created the window with ..."
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9517
"/    self extentChangedFlag ifTrue:[
890
f202a05da548 avoid sending sizeChanged: twice
Claus Gittinger <cg@exept.de>
parents: 867
diff changeset
  9518
"/        self sizeChanged:nil.
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9519
"/        self extentChangedFlag:false
890
f202a05da548 avoid sending sizeChanged: twice
Claus Gittinger <cg@exept.de>
parents: 867
diff changeset
  9520
"/    ].
140
claus
parents: 138
diff changeset
  9521
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9522
    self originChangedFlag ifTrue:[
140
claus
parents: 138
diff changeset
  9523
"/        org := self computeOrigin.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9524
"/        self pixelOrigin:org.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9525
	originRule notNil ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9526
	    self pixelOrigin:self computeOrigin
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9527
	] ifFalse:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9528
	    relativeOrigin notNil ifTrue:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9529
		self originFromRelativeOrigin:relativeOrigin
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9530
	    ] ifFalse:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9531
		shown ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9532
		    self graphicsDevice moveWindow:self drawableId x:left y:top.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9533
		] ifFalse:[
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9534
		    self pixelOrigin:left@top
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9535
		].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9536
	    ].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9537
	].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9538
	self originChangedFlag:false
140
claus
parents: 138
diff changeset
  9539
    ]
890
f202a05da548 avoid sending sizeChanged: twice
Claus Gittinger <cg@exept.de>
parents: 867
diff changeset
  9540
f202a05da548 avoid sending sizeChanged: twice
Claus Gittinger <cg@exept.de>
parents: 867
diff changeset
  9541
    "Modified: 18.6.1996 / 21:44:03 / cg"
140
claus
parents: 138
diff changeset
  9542
!
claus
parents: 138
diff changeset
  9543
4853
86edbcfacc3b +forceResize
Claus Gittinger <cg@exept.de>
parents: 4834
diff changeset
  9544
forceResize
86edbcfacc3b +forceResize
Claus Gittinger <cg@exept.de>
parents: 4834
diff changeset
  9545
    "force resizing - even if already done"
86edbcfacc3b +forceResize
Claus Gittinger <cg@exept.de>
parents: 4834
diff changeset
  9546
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
  9547
    self explicitExtent:false.
4853
86edbcfacc3b +forceResize
Claus Gittinger <cg@exept.de>
parents: 4834
diff changeset
  9548
    self resize
86edbcfacc3b +forceResize
Claus Gittinger <cg@exept.de>
parents: 4834
diff changeset
  9549
!
86edbcfacc3b +forceResize
Claus Gittinger <cg@exept.de>
parents: 4834
diff changeset
  9550
393
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  9551
hide
1356
90756b9ce548 *** empty log message ***
ca
parents: 1354
diff changeset
  9552
    "only useful with modal views: hide the view and return control
90756b9ce548 *** empty log message ***
ca
parents: 1354
diff changeset
  9553
     back to the suspended main view. Ignored for non-modal views."
90756b9ce548 *** empty log message ***
ca
parents: 1354
diff changeset
  9554
2579
774e6fb33dde checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
  9555
    |masterGroup|
1356
90756b9ce548 *** empty log message ***
ca
parents: 1354
diff changeset
  9556
90756b9ce548 *** empty log message ***
ca
parents: 1354
diff changeset
  9557
    realized ifFalse:[^ self].
5273
9c8813e5b7a1 handling of abort of a hide-operation
Claus Gittinger <cg@exept.de>
parents: 5271
diff changeset
  9558
    (windowGroup notNil and:[windowGroup isModal]) ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9559
	masterGroup := windowGroup previousGroup.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9560
	windowGroup focusView:nil.
5273
9c8813e5b7a1 handling of abort of a hide-operation
Claus Gittinger <cg@exept.de>
parents: 5271
diff changeset
  9561
    ].
1356
90756b9ce548 *** empty log message ***
ca
parents: 1354
diff changeset
  9562
90756b9ce548 *** empty log message ***
ca
parents: 1354
diff changeset
  9563
    self unmap.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9564
    self flush.
1356
90756b9ce548 *** empty log message ***
ca
parents: 1354
diff changeset
  9565
2579
774e6fb33dde checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
  9566
    masterGroup notNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9567
	"
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9568
	 this is a kludge for IRIS and others which do not provide backingstore:
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9569
	 when we hide a modalbox (such as a searchbox) which covered
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9570
	 a scrollbar, the scrollbars bitblt-method will copy from the
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9571
	 not-yet redrawn area - effectively clearing the scroller.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9572
	 We need a short delay here, since at this time, the expose event has
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9573
	 not yet arrived.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9574
	"
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9575
	Delay waitForSeconds:0.05.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
  9576
	masterGroup processExposeEvents
2576
96944b0cf18c comment;
Claus Gittinger <cg@exept.de>
parents: 2573
diff changeset
  9577
    ].
96944b0cf18c comment;
Claus Gittinger <cg@exept.de>
parents: 2573
diff changeset
  9578
96944b0cf18c comment;
Claus Gittinger <cg@exept.de>
parents: 2573
diff changeset
  9579
"/    WindowGroup leaveSignal raise.
96944b0cf18c comment;
Claus Gittinger <cg@exept.de>
parents: 2573
diff changeset
  9580
"/    "/ not reached
393
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  9581
!
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  9582
3087
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  9583
hideForAction
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  9584
    "for popUpMenu compatibility;
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  9585
     this is invoked to hide a when it is going to perform its action
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  9586
     (in contrast to the generic hide)."
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  9587
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  9588
    ^ self hide
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  9589
!
9d9e097b39ef grabbing cleaned up;
ca
parents: 3055
diff changeset
  9590
393
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  9591
hideRequest
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  9592
    "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
  9593
     ignored here."
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  9594
3439
f4f02e2c0af7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3434
diff changeset
  9595
    self isPopUpView ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9596
	self hide
3439
f4f02e2c0af7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3434
diff changeset
  9597
    ].
393
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  9598
    ^ self
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  9599
!
3504a0adbb2d use hideRequest to close via Escape key (allows redefinition);
Claus Gittinger <cg@exept.de>
parents: 385
diff changeset
  9600
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9601
map
1827
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9602
    "make the view visible on the screen.
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9603
     For topViews, the windowManager will choose (or ask for) the
2103
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  9604
     views position on the screen.
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  9605
     Notice:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  9606
	Actually, this method is only valid for topViews;
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  9607
	however, it is defined here to allow things like 'Button new realize'"
1827
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9608
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9609
    self mapAt:nil iconified:false
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9610
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9611
    "Modified: 24.7.1997 / 13:44:25 / cg"
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9612
!
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9613
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9614
mapAt:aPoint
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9615
    "make the view visible on the screen.
1827
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9616
     For topViews, if aPoint is nonNil, the views origin is located there
2103
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  9617
     (unless you have a dictator as windowManager ;-)
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  9618
     Notice:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  9619
	Actually, this method is only valid for topViews;
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  9620
	however, it is defined here to allow things like 'Button new realize'"
1827
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9621
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9622
    self mapAt:aPoint iconified:false
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9623
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9624
    "Modified: 24.7.1997 / 13:45:02 / cg"
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9625
!
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9626
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9627
mapAt:aPoint iconified:iconified
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9628
    "make the view visible on the screen.
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9629
     For topViews, if aPoint is nonNil, the views origin is located there
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9630
     (unless you have a dictator as windowManager ;-).
2103
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  9631
     If the iconified argument is true, the window is created as icon initially.
dbe7a348084f do not forget minExtent/maxExtent in remap
Claus Gittinger <cg@exept.de>
parents: 2095
diff changeset
  9632
     Notice:
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9633
	Actually, this method is only valid for topViews;
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9634
	however, it is defined here to allow things like 'Button new realize'"
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9635
1809
fec93025e9e7 mapping trouble fixed (see mswindows scrollBar remap)
Claus Gittinger <cg@exept.de>
parents: 1808
diff changeset
  9636
    |subs|
fec93025e9e7 mapping trouble fixed (see mswindows scrollBar remap)
Claus Gittinger <cg@exept.de>
parents: 1808
diff changeset
  9637
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9638
    realized ifFalse:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9639
	self drawableId isNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9640
	    "
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9641
	     first time ?
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9642
	     yes, realize (implies a map)
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9643
	    "
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9644
	    self realizeKeepingGroup:false at:aPoint iconified:iconified
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9645
	] ifFalse:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9646
	    "
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9647
	     no, map only
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9648
	    "
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9649
	    realized := true.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9650
	    aPoint isNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9651
		iconified ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9652
		    self graphicsDevice
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9653
			mapView:self id:self drawableId iconified:iconified
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9654
			atX:0 y:0
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9655
			width:width height:height
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9656
			minExtent:(self minExtent) maxExtent:(self maxExtent).
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9657
		] ifFalse:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9658
		    self graphicsDevice mapWindow:self drawableId.
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9659
		]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9660
	    ] ifFalse:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9661
		left := aPoint x.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9662
		top := aPoint y.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9663
		self graphicsDevice
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9664
		    mapView:self id:self drawableId iconified:iconified
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9665
		    atX:left y:top
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9666
		    width:width height:height
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9667
		    minExtent:(self minExtent) maxExtent:(self maxExtent).
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9668
	    ].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9669
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9670
	    "/
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9671
	    "/ implies that all realized subviews
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9672
	    "/ are now also mapped
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9673
	    "/
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9674
	    "/ not needed for topViews - the mapped event does exactly the same
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9675
	    "/ however, X does not generate mapped events for non-topViews
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9676
	    "/ when a view gets deiconified.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9677
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9678
	    superView notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9679
		(subs := self subViews) notNil ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9680
		    subs do:[:v |
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9681
			v realized "shown" ifFalse:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9682
			    v mapped
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9683
			]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9684
		    ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9685
		]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9686
	    ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
  9687
	].
140
claus
parents: 138
diff changeset
  9688
    ]
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  9689
1039
ef2ded1798df Send #realize to subviews even if hiddenOnRealize is set for myself.
Stefan Vogel <sv@exept.de>
parents: 1038
diff changeset
  9690
    "Modified: 23.8.1996 / 14:53:55 / stefan"
1827
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9691
    "Created: 24.7.1997 / 13:43:23 / cg"
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9692
    "Modified: 24.7.1997 / 13:46:21 / cg"
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9693
!
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9694
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9695
mapIconified
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9696
    "make the view visible on the screen.
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9697
     For topViews, the view is created in iconified state"
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9698
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9699
    self mapAt:nil iconified:true
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9700
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9701
    "Modified: 24.7.1997 / 13:44:25 / cg"
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9702
    "Created: 24.7.1997 / 13:47:03 / cg"
140
claus
parents: 138
diff changeset
  9703
!
claus
parents: 138
diff changeset
  9704
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9705
physicalCreate
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9706
    "common code for create & recreate:
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9707
     physically create (but do not map) the view on the device."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9708
3642
400ffe15bba9 remove unused vars
Stefan Vogel <sv@exept.de>
parents: 3640
diff changeset
  9709
    |sv isInputOnly|
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  9710
6229
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9711
    sv := superView isNil ifTrue:[nil] ifFalse:[superView view].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9712
3008
81987f198808 let WindowSensor perform the preViewCreation/postViewCreation
Claus Gittinger <cg@exept.de>
parents: 3007
diff changeset
  9713
    "/ give global eventListeners a chance to intercept windowCreation
81987f198808 let WindowSensor perform the preViewCreation/postViewCreation
Claus Gittinger <cg@exept.de>
parents: 3007
diff changeset
  9714
    "/ and provide another origin (by payching my origin via setOrigin:).
81987f198808 let WindowSensor perform the preViewCreation/postViewCreation
Claus Gittinger <cg@exept.de>
parents: 3007
diff changeset
  9715
    WindowSensor preViewCreateNotification:self.
81987f198808 let WindowSensor perform the preViewCreation/postViewCreation
Claus Gittinger <cg@exept.de>
parents: 3007
diff changeset
  9716
2088
8e40159a7913 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  9717
    isInputOnly := self isInputOnly.
8e40159a7913 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  9718
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9719
    gc
6229
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9720
      createWindowFor:self
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9721
      type:(self windowType)
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9722
      origin:(left @ top)
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9723
      extent:(width @ height)
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9724
      minExtent:nil
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9725
      maxExtent:nil
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9726
      borderWidth:0 "self borderWidth"
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9727
      subViewOf:sv
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9728
      style:(self windowStyle)
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9729
      inputOnly:isInputOnly
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9730
      label:nil
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9731
      owner:nil
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9732
      icon:nil iconMask:nil
5428c16b92f2 class: SimpleView
Stefan Vogel <sv@exept.de>
parents: 6218
diff changeset
  9733
      iconView:nil.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9734
3010
ea1a075505b4 Let #waitUntilVisible processExposeEvents
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
  9735
    "/ if there is a global eventListener,
ea1a075505b4 Let #waitUntilVisible processExposeEvents
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
  9736
    "/ give it a chance to track views
ea1a075505b4 Let #waitUntilVisible processExposeEvents
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
  9737
3008
81987f198808 let WindowSensor perform the preViewCreation/postViewCreation
Claus Gittinger <cg@exept.de>
parents: 3007
diff changeset
  9738
    "/ give global listeners a chance to track views
81987f198808 let WindowSensor perform the preViewCreation/postViewCreation
Claus Gittinger <cg@exept.de>
parents: 3007
diff changeset
  9739
    WindowSensor postViewCreateNotification:self.
1716
d6bf8f0deb18 added werners eventListener hook for view creation
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  9740
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9741
    self originChangedFlag:false extentChangedFlag:false.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9742
5390
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  9743
"/    (borderColor notNil and:[borderColor ~= Black]) ifTrue:[
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  9744
"/        isInputOnly ifFalse:[
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  9745
"/            self setBorderColor
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  9746
"/        ]
9509eceb1348 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 5366
diff changeset
  9747
"/    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9748
    (viewGravity notNil "and:[viewGravity ~~ #NorthWest]") ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  9749
	gc viewGravity:viewGravity.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9750
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9751
    (bitGravity notNil "and:[bitGravity ~~ #NorthWest]") ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  9752
	isInputOnly ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  9753
	    gc bitGravity:bitGravity.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  9754
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9755
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9756
    viewShape notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  9757
	self setViewShape
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9758
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9759
    (backed notNil and:[backed ~~ false]) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  9760
	self backingStore:backed.
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  9761
    ].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  9762
    self saveUnder ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  9763
	self saveUnder:true.
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
  9764
    ].
1960
aa9ef6e21f15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
  9765
    cursor notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  9766
	self setCursor
2088
8e40159a7913 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  9767
    ].
8e40159a7913 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  9768
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9769
    name notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
  9770
	self windowName:name.
5557
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9771
    ].
9028b831a288 set window name
Claus Gittinger <cg@exept.de>
parents: 5555
diff changeset
  9772
2088
8e40159a7913 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  9773
    "Modified: / 9.4.1998 / 20:18:12 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9774
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9775
1827
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9776
postRealize
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9777
    "invoked after a view was realized.
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9778
     Can be redefined in subclasses to perform delayed actions."
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9779
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9780
    "/ nothing done here
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9781
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9782
    "Created: 24.7.1997 / 14:35:36 / cg"
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9783
!
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9784
4126
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9785
preRealize
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9786
    "invoked right before a view is realized.
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9787
     Can be redefined in subclasses to perform delayed actions."
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9788
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9789
    "/ nothing done here
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9790
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9791
    "Created: 24.7.1997 / 14:35:36 / cg"
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9792
!
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9793
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9794
realize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9795
    "realize - make visible;
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9796
     realizing is done very late (after layout is fixed) to avoid
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9797
     visible rearranging of windows on the screen"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9798
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9799
    self realizeKeepingGroup:false at:nil iconified:false
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9800
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9801
    "Modified: 24.7.1997 / 13:14:28 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9802
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9803
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9804
realizeAllSubViews
1193
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9805
    "realize all my subviews - but not myself."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9806
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9807
    subViews notNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9808
	subViews do:[:subView |
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9809
	    subView realize
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9810
	]
792
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  9811
    ].
177cfa66f2b8 prepare for components & non-view as superView
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
  9812
    components notNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9813
	components do:[:component |
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9814
	    component realize
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9815
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9816
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9817
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9818
    "Modified: 5.9.1995 / 23:30:47 / claus"
1193
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  9819
    "Modified: 13.1.1997 / 21:25:49 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9820
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9821
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9822
realizeAt:aPoint
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9823
    "realize - make visible;
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9824
     realizing is done very late (after layout is fixed) to avoid
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9825
     visible rearranging of windows on the screen"
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9826
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9827
    self realizeKeepingGroup:false at:aPoint iconified:false
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9828
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9829
    "Modified: 24.7.1997 / 13:14:28 / cg"
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9830
    "Created: 24.7.1997 / 13:21:04 / cg"
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9831
!
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9832
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9833
realizeInGroup
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9834
    "special realize - leave windowgroup as is;
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9835
     This allows a view to be realized in any windowgroup;
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
  9836
     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
  9837
     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
  9838
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  9839
    windowGroup isForModalSubview:true.
1877
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  9840
"/    self realize.
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  9841
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  9842
    self realizeKeepingGroup:true at:nil iconified:false
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  9843
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  9844
    "Modified: 20.8.1997 / 14:56:20 / cg"
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  9845
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  9846
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9847
realizeKeepingGroup:keepGroupAsIs at:position iconified:iconified
151
claus
parents: 145
diff changeset
  9848
    "common helper for realize and realizeInGroup.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9849
     Create the view; if the keepGroupAsIs argument is not true,
1877
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  9850
     assign my windowGroup."
140
claus
parents: 138
diff changeset
  9851
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  9852
    |superGroup groupChange keep|
140
claus
parents: 138
diff changeset
  9853
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9854
    "/ fetch device colors, to avoid reallocation at redraw time
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9855
    self fetchDeviceResources.
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9856
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9857
    self drawableId isNil ifTrue:[
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9858
        self create.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9859
        self drawableId isNil ifTrue:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9860
            ('SimpleView [warning]: could not create view: ' , self class name) errorPrintCR.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9861
            ^ self
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9862
        ]
2189
86284985c4c0 care for non-creatable views.
Claus Gittinger <cg@exept.de>
parents: 2174
diff changeset
  9863
    ].
140
claus
parents: 138
diff changeset
  9864
372
78e5b6e96649 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 371
diff changeset
  9865
    groupChange := false.
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  9866
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9867
    (windowGroup notNil
1877
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  9868
     and:[superView isNil
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
  9869
     and:[windowGroup isForModalSubview]]) ifTrue:[
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9870
        keep := true.
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  9871
    ] ifFalse:[
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9872
        keep := keepGroupAsIs
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  9873
    ].
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  9874
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  9875
    keep ifFalse:[
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9876
        "
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9877
         put myself into superviews windowgroup if there is a superview
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9878
         This is the default behavior, which may be suppressed by
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9879
         passing true as keepGroupAsIs-argument.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9880
         (it may be useful to assign a separate windowGroup to
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9881
          a childView to have it execute independent of the parent
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9882
          -> an example is found in the fileBrowsers kill-button)
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9883
        "
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9884
        superView notNil ifTrue:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9885
            superGroup := superView windowGroup.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9886
            (windowGroup notNil and:[superGroup ~~ windowGroup]) ifTrue:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9887
                "
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9888
                 mhmh - seems that the windowgroup has changed ....
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9889
                "
145
claus
parents: 144
diff changeset
  9890
"/                'oops - wgroup change on realize' printNL.
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9891
                groupChange := true.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9892
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9893
                "/
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9894
                "/ recursively change the windowGroup of
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9895
                "/ myself and all of my children
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9896
                "/
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9897
                self windowGroup:superGroup.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9898
            ] ifFalse:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9899
                windowGroup isNil ifTrue:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9900
                    "/
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9901
                    "/ only change the group of myself -
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9902
                    "/ subviews will fetch it when realized.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9903
                    "/
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9904
                    windowGroup := superGroup.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9905
                    superGroup notNil ifTrue:[superGroup addView:self].
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9906
                ]
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9907
            ].
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9908
        ].
140
claus
parents: 138
diff changeset
  9909
    ].
claus
parents: 138
diff changeset
  9910
3375
08b67e29a66e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3374
diff changeset
  9911
    (self originOrExtentChanged) ifTrue:[
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9912
        self fixSize.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9913
        self sizeChanged:nil.
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9914
    ].
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9915
    position notNil ifTrue:[
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9916
        self origin:position.
1039
ef2ded1798df Send #realize to subviews even if hiddenOnRealize is set for myself.
Stefan Vogel <sv@exept.de>
parents: 1038
diff changeset
  9917
    ].
ef2ded1798df Send #realize to subviews even if hiddenOnRealize is set for myself.
Stefan Vogel <sv@exept.de>
parents: 1038
diff changeset
  9918
ef2ded1798df Send #realize to subviews even if hiddenOnRealize is set for myself.
Stefan Vogel <sv@exept.de>
parents: 1038
diff changeset
  9919
    (subViews notNil or:[components notNil]) ifTrue:[
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9920
        (realized not or:[groupChange]) ifTrue:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9921
            self isHiddenOnRealize ifFalse:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9922
                self realizeAllSubViews.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9923
            ].
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9924
        ].
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9925
    ].
1874
a46a8c065050 recursively change the windowGroup of all children,
Claus Gittinger <cg@exept.de>
parents: 1860
diff changeset
  9926
4126
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9927
    self preRealize.
34e3c660a5b2 preRealize hook
Claus Gittinger <cg@exept.de>
parents: 4123
diff changeset
  9928
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9929
    iconified ifTrue:[
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9930
        realized ifFalse:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9931
            self mapIconified
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9932
        ]
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
  9933
    ] ifFalse:[
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9934
        (self isHiddenOnRealize not
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9935
         and:[visibilityChannel isNil or:[visibilityChannel value]]) ifTrue:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9936
            self setInnerClip.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9937
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9938
            realized ifFalse:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9939
                "
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9940
                 now, make the view visible
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9941
                "
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9942
                self mapAt:position
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9943
            ]
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9944
        ]
140
claus
parents: 138
diff changeset
  9945
    ].
claus
parents: 138
diff changeset
  9946
claus
parents: 138
diff changeset
  9947
    controller notNil ifTrue:[
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9948
        controller startUp
1827
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9949
    ].
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9950
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
  9951
    self postRealize
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  9952
2189
86284985c4c0 care for non-creatable views.
Claus Gittinger <cg@exept.de>
parents: 2174
diff changeset
  9953
    "Modified: / 23.8.1996 / 15:07:16 / stefan"
86284985c4c0 care for non-creatable views.
Claus Gittinger <cg@exept.de>
parents: 2174
diff changeset
  9954
    "Created: / 24.7.1997 / 13:10:17 / cg"
86284985c4c0 care for non-creatable views.
Claus Gittinger <cg@exept.de>
parents: 2174
diff changeset
  9955
    "Modified: / 27.7.1998 / 20:01:02 / cg"
140
claus
parents: 138
diff changeset
  9956
!
claus
parents: 138
diff changeset
  9957
claus
parents: 138
diff changeset
  9958
recreate
3301
1bcebb26ecbb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3276
diff changeset
  9959
    "recreate (i.e. tell X about me) after a snapin or a migration"
140
claus
parents: 138
diff changeset
  9960
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9961
    self drawableId isNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9962
	super recreate.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9963
	self physicalCreate.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9964
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9965
	viewBackground notNil ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  9966
	    self setViewBackground
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9967
	].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9968
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9969
	"
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9970
	 XXX has to be changed: eventmasks are device specific -
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9971
	 XXX will not allow restart on another Workstation-type.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9972
	 XXX event masks must become symbolic
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9973
	"
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3754
diff changeset
  9974
	eventMask isNil ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9975
	    eventMask := self graphicsDevice defaultEventMask
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9976
	].
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
  9977
	self graphicsDevice setEventMask:eventMask in:self drawableId
140
claus
parents: 138
diff changeset
  9978
    ]
claus
parents: 138
diff changeset
  9979
!
claus
parents: 138
diff changeset
  9980
6863
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9981
recursiveRealizeAllSubViews
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9982
    "realize all my subviews and all of their subviews - but not myself."
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9983
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9984
    subViews notNil ifTrue:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9985
        subViews do:[:subView |
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9986
            subView realize.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9987
            subView recursiveRealizeAllSubViews.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9988
        ]
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9989
    ].
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9990
    components notNil ifTrue:[
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9991
        components do:[:component |
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9992
            component realize.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9993
            component recursiveRealizeAllSubViews.
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9994
        ]
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9995
    ].
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9996
!
48127be3e1be class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6856
diff changeset
  9997
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  9998
remap
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  9999
    "make the view visible on the screen at its previous position.
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
 10000
     In contrast to map, this asks the windowManager to show the view
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
 10001
     immediately (instead of asking for a frame). However, some windowManagers
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
 10002
     are known to ignore this ..."
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
 10003
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
 10004
    realized ifFalse:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10005
	"
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10006
	 now, make the view visible
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10007
	"
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10008
	realized := true.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10009
	self graphicsDevice
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10010
	    mapView:self id:self drawableId iconified:false
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10011
	    atX:left y:top width:width height:height
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10012
	    minExtent:(self minExtent) maxExtent:(self maxExtent)
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
 10013
    ]
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
 10014
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
 10015
    "Created: 8.5.1996 / 09:33:06 / cg"
1379
bd55ede48c37 comments
Claus Gittinger <cg@exept.de>
parents: 1363
diff changeset
 10016
    "Modified: 25.2.1997 / 22:44:33 / cg"
654
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
 10017
!
921c156962fa added #remap
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
 10018
1109
3b9d9cc6e639 readded rerealize
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
 10019
rerealize
3b9d9cc6e639 readded rerealize
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
 10020
    "rerealize at old position in (a possibly different) windowGroup."
3b9d9cc6e639 readded rerealize
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
 10021
1193
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
 10022
    self fetchDeviceResources.
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
 10023
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
 10024
    self rerealizeInGroup:windowGroup.
1109
3b9d9cc6e639 readded rerealize
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
 10025
3b9d9cc6e639 readded rerealize
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
 10026
    "Created: 7.11.1996 / 16:27:09 / cg"
1193
341a4265f5d6 added #fetchDeviceResources,
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
 10027
    "Modified: 13.1.1997 / 21:53:18 / cg"
1109
3b9d9cc6e639 readded rerealize
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
 10028
!
3b9d9cc6e639 readded rerealize
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
 10029
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10030
rerealizeInGroup:aWindowGroup
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10031
    "rerealize at old position in (a possibly different) windowGroup."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10032
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10033
    self drawableId isNil ifTrue:[self create].
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10034
    self drawableId notNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10035
	aWindowGroup ~~ windowGroup ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10036
	    windowGroup notNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10037
		windowGroup removeView:self
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10038
	    ].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10039
	    windowGroup := aWindowGroup.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10040
	    aWindowGroup addTopView:self.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10041
	].
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10042
	self remap.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10043
    ]
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
 10044
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
 10045
    "Modified: 3.5.1996 / 23:59:30 / stefan"
1837
454d10a53a64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
 10046
    "Modified: 28.7.1997 / 18:53:01 / cg"
140
claus
parents: 138
diff changeset
 10047
!
claus
parents: 138
diff changeset
 10048
claus
parents: 138
diff changeset
 10049
rerealizeWithAllSubViews
claus
parents: 138
diff changeset
 10050
    "rerealize myself with all subviews"
claus
parents: 138
diff changeset
 10051
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10052
    self drawableId notNil ifTrue:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10053
	realized := true.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10054
	self realizeAllSubViews.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10055
	superView isNil ifTrue:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10056
	    self graphicsDevice
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10057
		mapView:self id:self drawableId iconified:false
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10058
		atX:left y:top width:width height:height
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10059
		minExtent:(self minExtent) maxExtent:(self maxExtent)
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10060
	] ifFalse:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10061
	    self graphicsDevice
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10062
		mapWindow:self drawableId
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10063
	].
140
claus
parents: 138
diff changeset
 10064
    ]
1290
1cc24cff6fe9 eliminated some references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
 10065
1cc24cff6fe9 eliminated some references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
 10066
    "Modified: 28.1.1997 / 17:59:28 / cg"
180
claus
parents: 176
diff changeset
 10067
!
claus
parents: 176
diff changeset
 10068
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10069
resize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10070
    "resize myself to make everything fit into me.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10071
     Here, nothing special is done (except for setting my extent to the
947
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
 10072
     preferredExtent), but may be redefined in some subclasses."
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
 10073
4899
5d9393ff0aae use accessors for hiddenOnRealize and explicitExtents;
Claus Gittinger <cg@exept.de>
parents: 4898
diff changeset
 10074
    self hasExplicitExtent ifFalse:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10075
	layout isNil ifTrue:[
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10076
	    self extent:(self preferredExtent).
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10077
	    self explicitExtent:false.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10078
	].
947
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
 10079
    ]
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
 10080
e8ff54bc0309 remember an explicit change of the extent;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
 10081
    "Modified: 15.7.1996 / 11:20:27 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10082
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10083
6126
5cc385c35406 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6121
diff changeset
 10084
setForegroundWindow
5cc385c35406 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6121
diff changeset
 10085
    "noop for protocol compatibility with TopViews (in case you do a Button new open)"
5cc385c35406 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6121
diff changeset
 10086
5cc385c35406 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6121
diff changeset
 10087
    "Created: / 17-09-2010 / 16:30:24 / cg"
5cc385c35406 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6121
diff changeset
 10088
    "Modified: / 17-09-2010 / 18:39:35 / cg"
5cc385c35406 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6121
diff changeset
 10089
!
5cc385c35406 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6121
diff changeset
 10090
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10091
unmap
2576
96944b0cf18c comment;
Claus Gittinger <cg@exept.de>
parents: 2573
diff changeset
 10092
    "unmap the view - the view stays created (but invisible), and can be remapped again later."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10093
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10094
    realized ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10095
	realized := false.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10096
	self drawableId notNil ifTrue:[
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10097
	    self graphicsDevice unmapWindow:self drawableId.
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10098
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10099
	    "/ make it go away immediately
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10100
	    "/ (this hides the subview killing)
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10101
	    self flush.
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10102
	].
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10103
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10104
	"/ Normally, this is not correct with X, where the
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10105
	"/ unmap is an asynchronous operation.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10106
	"/ (shown is cleared also in unmapped event)
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10107
	"/ Do it anyway, to avoid synchronisation problems.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10108
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10109
	shown ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10110
	    shown := false.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10111
	    self changed:#visibility.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10112
	]
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10113
    ].
190
claus
parents: 189
diff changeset
 10114
claus
parents: 189
diff changeset
 10115
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10116
     |top sub|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10117
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10118
     top := StandardSystemView new.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10119
     top extent:200@200.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10120
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10121
     sub := View
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10122
		origin:0.2@0.2
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10123
		corner:0.8@0.8
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10124
		in:top.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10125
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10126
     sub viewBackground:Color red.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10127
     sub hiddenOnRealize:true.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10128
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10129
     top open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10130
     (Delay forSeconds:5) wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10131
     sub map.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10132
     (Delay forSeconds:3) wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10133
     sub unmap.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10134
     sub viewBackground:(Color green).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10135
     (Delay forSeconds:3) wait.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10136
     sub map.
151
claus
parents: 145
diff changeset
 10137
    "
1379
bd55ede48c37 comments
Claus Gittinger <cg@exept.de>
parents: 1363
diff changeset
 10138
2465
193a96bd94d7 clear shown when unmapped notification arrives
Claus Gittinger <cg@exept.de>
parents: 2454
diff changeset
 10139
    "Modified: / 22.2.1999 / 20:10:58 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10140
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10141
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10142
unrealize
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10143
    "alias for unmap, for historic reasons"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10144
3434
f76f82ce8f28 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3425
diff changeset
 10145
    <resource:#obsolete>
f76f82ce8f28 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3425
diff changeset
 10146
4464
58adfdb1f1d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4463
diff changeset
 10147
    self obsoleteMethodWarning:'use #unmap'.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10148
    self unmap.
646
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
 10149
0d2886a9ae38 Rename unrealize-->unmap, rerealize-->map.
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
 10150
    "Modified: 4.5.1996 / 00:07:48 / stefan"
151
claus
parents: 145
diff changeset
 10151
! !
claus
parents: 145
diff changeset
 10152
claus
parents: 145
diff changeset
 10153
!SimpleView methodsFor:'redrawing'!
claus
parents: 145
diff changeset
 10154
5263
654f1779f5ed changed redraw to always clear the exposed area, unless
Claus Gittinger <cg@exept.de>
parents: 5262
diff changeset
 10155
clearExposedAreaInRedraw
654f1779f5ed changed redraw to always clear the exposed area, unless
Claus Gittinger <cg@exept.de>
parents: 5262
diff changeset
 10156
    "return true here, if the exposed area should be cleared here
654f1779f5ed changed redraw to always clear the exposed area, unless
Claus Gittinger <cg@exept.de>
parents: 5262
diff changeset
 10157
     or not. In almost every situation, it makes sense to do so..."
654f1779f5ed changed redraw to always clear the exposed area, unless
Claus Gittinger <cg@exept.de>
parents: 5262
diff changeset
 10158
654f1779f5ed changed redraw to always clear the exposed area, unless
Claus Gittinger <cg@exept.de>
parents: 5262
diff changeset
 10159
    ^ true
654f1779f5ed changed redraw to always clear the exposed area, unless
Claus Gittinger <cg@exept.de>
parents: 5262
diff changeset
 10160
!
654f1779f5ed changed redraw to always clear the exposed area, unless
Claus Gittinger <cg@exept.de>
parents: 5262
diff changeset
 10161
6644
c6c4686b4979 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6643
diff changeset
 10162
drawFocusFrame
c6c4686b4979 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6643
diff changeset
 10163
    self hasFocus ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10164
	(styleSheet at:#focusHighlightStyle) == #win95 ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10165
	    self windowGroup focusCameByTab ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10166
		self drawWin95FocusFrame
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10167
	    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10168
	].
6644
c6c4686b4979 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6643
diff changeset
 10169
    ]
c6c4686b4979 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6643
diff changeset
 10170
!
c6c4686b4979 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6643
diff changeset
 10171
765
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10172
flash
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10173
    "flash the view - fill it black, then white, finally
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10174
     redraw completely.
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10175
     Can be used to wakeup the user :-)
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10176
     when problem or warning conditions arise.
2174
dea03b88b1d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2173
diff changeset
 10177
     Someone may redefine this to flash its contents (instead of black/white)."
765
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10178
6386
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10179
    self flash:nil
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10180
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10181
    "
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10182
     |v|
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10183
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10184
     v := View new openAndWait.
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10185
     Delay waitForSeconds:2.
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10186
     v flash.
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10187
     Delay waitForSeconds:2.
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10188
     v destroy
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10189
    "
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10190
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10191
    "Modified: / 16.7.1998 / 18:46:48 / cg"
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10192
!
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10193
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10194
flash:messageOrNil
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10195
    "flash the view - fill it black, then white, finally
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10196
     redraw completely.
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10197
     Can be used to wakeup the user :-)
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10198
     when problem or warning conditions arise.
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10199
     Someone may redefine this to flash its contents (instead of black/white)."
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10200
6906
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10201
    self flash:messageOrNil withColor:self blackColor.
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10202
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10203
    "
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10204
     |v|
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10205
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10206
     v := View new openAndWait.
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10207
     Delay waitForSeconds:2.
6907
94dbd3782c96 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6906
diff changeset
 10208
     v flash:'Hello World'.
6906
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10209
     Delay waitForSeconds:2.
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10210
     v destroy
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10211
    "
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10212
!
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10213
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10214
flash:messageOrNil withColor:flashColor
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10215
    "flash the view - fill it black, then white, finally
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10216
     redraw completely.
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10217
     Can be used to wakeup the user :-)
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10218
     when problem or warning conditions arise.
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10219
     Someone may redefine this to flash its contents (instead of black/white)."
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10220
f032cb9bedd3 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
 10221
    self fill:flashColor.
6386
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10222
    messageOrNil notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10223
	self withForeground:Color white do:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10224
	    self displayString:messageOrNil centeredAt:(self center).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10225
	].
6386
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10226
    ].
765
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10227
    Delay waitForSeconds:0.1.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10228
    self fill:self whiteColor.
6604
5bf53c022613 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6593
diff changeset
 10229
    messageOrNil notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10230
	self withForeground:Color black do:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10231
	    self displayString:messageOrNil centeredAt:(self center).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10232
	].
6604
5bf53c022613 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6593
diff changeset
 10233
    ].
765
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10234
    Delay waitForSeconds:0.1.
2173
0686e9f35817 flash fix
Claus Gittinger <cg@exept.de>
parents: 2171
diff changeset
 10235
    self fill:viewBackground.
765
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10236
    self invalidate
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10237
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10238
    "
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10239
     |v|
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10240
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10241
     v := View new openAndWait.
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10242
     Delay waitForSeconds:2.
6907
94dbd3782c96 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6906
diff changeset
 10243
     v flash:'Hello World' withColor:Color red.
765
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10244
     Delay waitForSeconds:2.
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10245
     v destroy
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10246
    "
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10247
2174
dea03b88b1d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2173
diff changeset
 10248
    "Modified: / 16.7.1998 / 18:46:48 / cg"
765
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10249
!
f6c9c653e03f removed useless superViewMapped/superViewUnmapped messages
Claus Gittinger <cg@exept.de>
parents: 763
diff changeset
 10250
6386
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10251
flashReadOnly
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10252
    "flash the view and show 'Read Only' for a moment."
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10253
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10254
    self flash:(resources string:'Read Only')
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10255
!
d85150e57a43 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6341
diff changeset
 10256
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
 10257
invalidate
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
 10258
    "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
 10259
     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
 10260
     the views process itself, and there is a possibilty to merge
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10261
     multiple damage rectangles into single redraws.
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10262
     However, be aware, that the redrawing may be delayed for some time,
4057
32596bdb0e1a Fix typo in comment
Stefan Vogel <sv@exept.de>
parents: 4054
diff changeset
 10263
     until the receivers windowGroupProcess gets rescheduled."
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
 10264
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10265
    shown ifFalse:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10266
	"/ no need to add damage - will get a full-redraw anyway,
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10267
	"/ when I will be shown again.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10268
	^ self
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10269
    ].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10270
    self
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10271
	invalidateDeviceRectangle:(Rectangle left:0 top:0 width:width height:height)
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10272
	repairNow:false
2394
cfb6434f1a9c oops - invalidate must add deviceRectangles to the damage-list.
Claus Gittinger <cg@exept.de>
parents: 2382
diff changeset
 10273
cfb6434f1a9c oops - invalidate must add deviceRectangles to the damage-list.
Claus Gittinger <cg@exept.de>
parents: 2382
diff changeset
 10274
    "Modified: / 9.11.1998 / 21:04:16 / cg"
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
 10275
!
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
 10276
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
 10277
invalidate:aRectangle
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
 10278
    "add a damage to redraw part of the recevier, to its input event queue.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10279
     This is preferable to calling redraw directly,
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10280
     in that the drawing is done by the views process itself,
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10281
     and there is a possibilty to merge multiple damage rectangles into
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10282
     single redraws.
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10283
     However, be aware, that the redrawing may be delayed for some time,
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10284
     intil the receivers windowGroupProcess gets rescheduled."
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
 10285
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10286
    shown ifFalse:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10287
	"/ no need to add damage - will get a full-redraw anyway,
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10288
	"/ when I will be shown again.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10289
	^ self
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10290
    ].
2394
cfb6434f1a9c oops - invalidate must add deviceRectangles to the damage-list.
Claus Gittinger <cg@exept.de>
parents: 2382
diff changeset
 10291
    self invalidate:aRectangle repairNow:false
cfb6434f1a9c oops - invalidate must add deviceRectangles to the damage-list.
Claus Gittinger <cg@exept.de>
parents: 2382
diff changeset
 10292
cfb6434f1a9c oops - invalidate must add deviceRectangles to the damage-list.
Claus Gittinger <cg@exept.de>
parents: 2382
diff changeset
 10293
    "Modified: / 9.11.1998 / 21:03:14 / cg"
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10294
!
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10295
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10296
invalidate:aRectangle repairNow:doRepairNow
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10297
    "add a damage to redraw part of the receiver, to its input event queue.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10298
     and (if repairNow is true), force the receiver to repair all of its
2451
c6d3bc32f50a comments
Claus Gittinger <cg@exept.de>
parents: 2450
diff changeset
 10299
     damaged areas right now.
c6d3bc32f50a comments
Claus Gittinger <cg@exept.de>
parents: 2450
diff changeset
 10300
     The given rectangle is in logical coordinate space."
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10301
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10302
    |r currentTransformation|
3856
45fccc92d834 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3838
diff changeset
 10303
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10304
    shown ifFalse:[
5008
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10305
	"/ no need to add damage - will get a full-redraw anyway,
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10306
	"/ when I will be shown again.
468d1a62a90f middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
 10307
	^ self
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10308
    ].
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10309
3856
45fccc92d834 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3838
diff changeset
 10310
    r := aRectangle.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10311
    currentTransformation := gc transformation.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10312
    currentTransformation notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10313
	r := (currentTransformation transformPoint:r origin) corner:(currentTransformation transformPoint:r corner).
4971
Claus Gittinger <cg@exept.de>
parents: 4970
diff changeset
 10314
    ].
4993
bf54a6128b78 oops - invalidate:repairNow: did not care for transformation !
Claus Gittinger <cg@exept.de>
parents: 4990
diff changeset
 10315
    self invalidateDeviceRectangle:r repairNow:doRepairNow
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10316
6748
df14278f29bc bugfix: invalid transformation
az
parents: 6720
diff changeset
 10317
    "Modified: / 10-11-1998 / 01:55:03 / cg"
df14278f29bc bugfix: invalid transformation
az
parents: 6720
diff changeset
 10318
    "Modified: / 22-01-2015 / 14:23:09 / az"
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10319
!
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10320
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10321
invalidateDeviceRectangle:aRectangle repairNow:doRepairNow
2396
da3125ce46f1 oops - must invalidate deviceRectangle in scroll.
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
 10322
    "add a damage to redraw part of the receiver, to its input event queue.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10323
     and (if repairNow is true), force the receiver to repair all of its
2451
c6d3bc32f50a comments
Claus Gittinger <cg@exept.de>
parents: 2450
diff changeset
 10324
     damaged areas right now.
c6d3bc32f50a comments
Claus Gittinger <cg@exept.de>
parents: 2450
diff changeset
 10325
     The given rectangle is in device coordinate space."
2396
da3125ce46f1 oops - must invalidate deviceRectangle in scroll.
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
 10326
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10327
    shown ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10328
	"/ no need to add damage - will get a full-redraw anyway,
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10329
	"/ when I will be shown again.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10330
	^ self
6549
4832802aba27 class: SimpleView
ca
parents: 6546
diff changeset
 10331
    ].
4832802aba27 class: SimpleView
ca
parents: 6546
diff changeset
 10332
    (aRectangle width <= 0 or:[aRectangle height <= 0]) ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10333
	"/ no need to add damages with extent <= 0
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10334
	^ self
6549
4832802aba27 class: SimpleView
ca
parents: 6546
diff changeset
 10335
    ].
4049
0a306121ef88 code cleanup
Claus Gittinger <cg@exept.de>
parents: 4047
diff changeset
 10336
    self sensor addDamage:aRectangle view:self.
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10337
    doRepairNow ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 10338
	self repairDamage
2396
da3125ce46f1 oops - must invalidate deviceRectangle in scroll.
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
 10339
    ]
da3125ce46f1 oops - must invalidate deviceRectangle in scroll.
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
 10340
da3125ce46f1 oops - must invalidate deviceRectangle in scroll.
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
 10341
    "Modified: / 10.11.1998 / 01:55:03 / cg"
da3125ce46f1 oops - must invalidate deviceRectangle in scroll.
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
 10342
    "Created: / 10.11.1998 / 19:02:01 / cg"
da3125ce46f1 oops - must invalidate deviceRectangle in scroll.
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
 10343
!
da3125ce46f1 oops - must invalidate deviceRectangle in scroll.
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
 10344
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10345
invalidateRepairNow:doRepair
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10346
    "add a damage to redraw all of the receiver, to its input event queue.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10347
     and (if repairNow is true), force the receiver to repair all of its
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10348
     damaged areas right now."
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10349
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10350
    shown ifFalse:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10351
	"/ no need to add damage - will get a full-redraw anyway,
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10352
	"/ when I will be shown again.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10353
	^ self
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10354
    ].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10355
    self
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10356
	invalidateDeviceRectangle:(Rectangle left:0 top:0 width:width height:height)
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10357
	repairNow:doRepair
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10358
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10359
    "Created: 19.4.1997 / 11:58:04 / cg"
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10360
    "Modified: 19.4.1997 / 12:00:00 / cg"
718
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
 10361
!
4ff126c012b5 added #invalidate / #invalidate:
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
 10362
3704
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10363
invalidateX:x y:y width:w height:h
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10364
    "add a damage to redraw all of the receiver, to its input event queue."
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10365
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10366
    shown ifFalse:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10367
	"/ no need to add damage - will get a full-redraw anyway,
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10368
	"/ when I will be shown again.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10369
	^ self
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10370
    ].
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10371
    self invalidate:(Rectangle left:x top:y width:w height:h)
3704
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10372
!
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10373
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10374
invalidateX:x y:y width:w height:h repairNow:doRepair
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10375
    "add a damage to redraw all of the receiver, to its input event queue.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10376
     and (if repairNow is true), force the receiver to repair all of its
3704
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10377
     damaged areas right now."
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10378
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10379
    shown ifFalse:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10380
	"/ no need to add damage - will get a full-redraw anyway,
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10381
	"/ when I will be shown again.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10382
	^ self
4047
622d06eca488 invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 4038
diff changeset
 10383
    ].
3704
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10384
    self invalidate:(Rectangle left:x top:y width:w height:h) repairNow:doRepair
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10385
!
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10386
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10387
redraw
782
51c03bc803ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
 10388
    "redraw myself completely - this is sent by redrawX:y:width:height:
51c03bc803ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
 10389
     as a fallback.
51c03bc803ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
 10390
     Cannot do much here - is redefined in subclasses which dont care for
51c03bc803ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
 10391
     updating regions but instead update everything."
51c03bc803ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
 10392
51c03bc803ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
 10393
    "Modified: 29.5.1996 / 18:02:52 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10394
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10395
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10396
redraw:aRectangle
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10397
    "redraw a part of the view immediately."
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10398
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10399
    self
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10400
	redrawX:(aRectangle left)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10401
	      y:(aRectangle top)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10402
	  width:(aRectangle width)
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10403
	 height:(aRectangle height)
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10404
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10405
    "Modified: 19.4.1997 / 11:54:23 / cg"
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10406
!
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10407
5250
59bd3d76efc5 component handling
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
 10408
redrawComponentsIn:aRectangle
59bd3d76efc5 component handling
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
 10409
    components notNil ifTrue:[
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10410
	components do:[:aComponent |
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10411
	    |thisFrame is|
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10412
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10413
	    thisFrame := aComponent bounds.
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10414
	    (thisFrame notNil and:[thisFrame intersects:aRectangle]) ifTrue:[
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10415
		aComponent displayOn:self
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10416
	    ]
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 10417
	]
5250
59bd3d76efc5 component handling
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
 10418
    ].
59bd3d76efc5 component handling
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
 10419
!
59bd3d76efc5 component handling
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
 10420
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10421
redrawDeviceX:x y:y width:w height:h
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10422
    "have to redraw part of the view.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10423
     The coordinates are in device space - if there is a transformation,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10424
     must inverse-transform back to logical coordinates. (since the view thinks
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10425
     in its coordinate space)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10426
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10427
    |lx ly lw lh currentTransformation|
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10428
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10429
    currentTransformation := gc transformation.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10430
    currentTransformation isNil ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10431
	lx := x.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10432
	ly := y.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10433
	lw := w.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10434
	lh := h.
2822
b95545cef407 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
 10435
    ] ifFalse:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10436
	lx := currentTransformation applyInverseToX:x.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10437
	ly := currentTransformation applyInverseToY:y.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10438
	lw := currentTransformation applyInverseScaleX:w.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10439
	lh := currentTransformation applyInverseScaleY:h.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10440
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10441
    self redrawX:lx y:ly width:lw height:lh
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10442
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10443
151
claus
parents: 145
diff changeset
 10444
redrawX:x y:y width:w height:h
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10445
    "redraw part of myself immediately, given logical coordinates
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10446
     (if transformation is nonNil)
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10447
     The default here is to redraw everything
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10448
     - subclasses usually redefine this, adding more intelligence"
151
claus
parents: 145
diff changeset
 10449
738
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
 10450
    |area oldClip|
151
claus
parents: 145
diff changeset
 10451
claus
parents: 145
diff changeset
 10452
    shown ifFalse:[^ self].
claus
parents: 145
diff changeset
 10453
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10454
    area := Rectangle left:x top:y width:w height:h.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10455
    oldClip := gc clippingBoundsOrNil.
738
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
 10456
    self clippingRectangle:area.
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
 10457
5263
654f1779f5ed changed redraw to always clear the exposed area, unless
Claus Gittinger <cg@exept.de>
parents: 5262
diff changeset
 10458
    self clearExposedAreaInRedraw ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10459
	"/ win95 workaround: non-existing bg-pixmap support (obsolete)
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10460
	(viewBackground isImageOrForm and:[ self graphicsDevice supportsAnyViewBackgroundPixmaps not ]) ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10461
	    self fillRectangleWithViewBackgroundX:x y:y width:w height:h
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10462
	] ifFalse:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10463
	    self clearRectangleX:x y:y width:w height:h.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10464
	]
5542
273bf2233a67 plug for renderer
Claus Gittinger <cg@exept.de>
parents: 5530
diff changeset
 10465
    ].
273bf2233a67 plug for renderer
Claus Gittinger <cg@exept.de>
parents: 5530
diff changeset
 10466
273bf2233a67 plug for renderer
Claus Gittinger <cg@exept.de>
parents: 5530
diff changeset
 10467
    self renderOrRedraw.
5250
59bd3d76efc5 component handling
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
 10468
59bd3d76efc5 component handling
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
 10469
    "/ draw them afterwards - they can be used to replace heavy-weight views.
59bd3d76efc5 component handling
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
 10470
    self redrawComponentsIn:area.
738
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
 10471
    self clippingRectangle:oldClip.
cea442005997 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 737
diff changeset
 10472
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10473
    "Modified: 19.4.1997 / 11:55:08 / cg"
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10474
!
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10475
5542
273bf2233a67 plug for renderer
Claus Gittinger <cg@exept.de>
parents: 5530
diff changeset
 10476
renderOrRedraw
273bf2233a67 plug for renderer
Claus Gittinger <cg@exept.de>
parents: 5530
diff changeset
 10477
    renderer notNil ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10478
	"/ experimental feature
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10479
	thisContext isRecursive ifTrue:[self halt].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10480
	renderer render:self on:self at:0@0
5542
273bf2233a67 plug for renderer
Claus Gittinger <cg@exept.de>
parents: 5530
diff changeset
 10481
    ] ifFalse:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10482
	"/ redraw everything - a fallBack for lazy views.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10483
	self redraw.
5542
273bf2233a67 plug for renderer
Claus Gittinger <cg@exept.de>
parents: 5530
diff changeset
 10484
    ].
273bf2233a67 plug for renderer
Claus Gittinger <cg@exept.de>
parents: 5530
diff changeset
 10485
!
273bf2233a67 plug for renderer
Claus Gittinger <cg@exept.de>
parents: 5530
diff changeset
 10486
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10487
repairDamage
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10488
    "force the receiver to repair all of its
2095
7aaac9675f97 checkin from browser
ca
parents: 2094
diff changeset
 10489
     damaged areas right now."
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10490
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10491
    |wg|
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10492
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10493
    shown ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10494
	(wg := self windowGroup) notNil ifTrue:[
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10495
	    "/ wg processRealExposeEventsFor:self. "/ this ignores map/unmap
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10496
	    wg processExposeEventsFor:self.        "/ this handles map/unmap
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10497
	]
1615
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10498
    ]
24950d99a5c2 added #repairDamage & invalidate-with-repair
Claus Gittinger <cg@exept.de>
parents: 1614
diff changeset
 10499
2138
1800e9b5afe3 also handle map/unmap events in repairDamage.
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
 10500
    "Created: / 19.4.1997 / 12:01:13 / cg"
2406
8f6f579901ac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2405
diff changeset
 10501
    "Modified: / 3.12.1998 / 14:02:06 / cg"
151
claus
parents: 145
diff changeset
 10502
!
claus
parents: 145
diff changeset
 10503
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10504
showActive
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10505
    "redraw myself as active (i.e. busy).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10506
     Nothing done here, but redefined in some classes."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10507
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10508
    ^ self
135
claus
parents:
diff changeset
 10509
!
claus
parents:
diff changeset
 10510
claus
parents:
diff changeset
 10511
showPassive
claus
parents:
diff changeset
 10512
    "redraw myself as inactive (i.e. nonbusy).
151
claus
parents: 145
diff changeset
 10513
     Nothing done here, but redefined in some classes."
135
claus
parents:
diff changeset
 10514
claus
parents:
diff changeset
 10515
    ^ self
claus
parents:
diff changeset
 10516
! !
claus
parents:
diff changeset
 10517
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10518
!SimpleView methodsFor:'scrolling'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10519
2559
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10520
halfPageDown
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10521
    "scroll down half a page
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10522
    "
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10523
    self scrollDown:(self innerHeight // 2)
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10524
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10525
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10526
!
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10527
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10528
halfPageUp
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10529
    "scroll up half a page
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10530
    "
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10531
    self scrollUp:(self innerHeight // 2)
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10532
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10533
!
6f5c5691475e halfPage scroll methods moved to SimpleView
Claus Gittinger <cg@exept.de>
parents: 2558
diff changeset
 10534
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10535
horizontalScrollStep
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10536
    "return the amount to scroll when stepping left/right.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10537
     Subclasses may want to redefine this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10538
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10539
    ^ (self graphicsDevice horizontalPixelPerMillimeter * 20) asInteger
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10540
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10541
1052
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10542
pageDown
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10543
    self scrollDown:(self innerHeight)
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10544
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10545
    "Created: 13.9.1996 / 14:06:54 / cg"
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10546
!
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10547
4964
b059a14ce764 Define #pageLeft and #pageRight
Stefan Vogel <sv@exept.de>
parents: 4958
diff changeset
 10548
pageLeft
b059a14ce764 Define #pageLeft and #pageRight
Stefan Vogel <sv@exept.de>
parents: 4958
diff changeset
 10549
    self scrollLeft:(self innerWidth)
b059a14ce764 Define #pageLeft and #pageRight
Stefan Vogel <sv@exept.de>
parents: 4958
diff changeset
 10550
b059a14ce764 Define #pageLeft and #pageRight
Stefan Vogel <sv@exept.de>
parents: 4958
diff changeset
 10551
    "Created: 13.9.1996 / 14:06:54 / cg"
b059a14ce764 Define #pageLeft and #pageRight
Stefan Vogel <sv@exept.de>
parents: 4958
diff changeset
 10552
!
b059a14ce764 Define #pageLeft and #pageRight
Stefan Vogel <sv@exept.de>
parents: 4958
diff changeset
 10553
b059a14ce764 Define #pageLeft and #pageRight
Stefan Vogel <sv@exept.de>
parents: 4958
diff changeset
 10554
pageRight
b059a14ce764 Define #pageLeft and #pageRight
Stefan Vogel <sv@exept.de>
parents: 4958
diff changeset
 10555
    self scrollRight:(self innerWidth)
b059a14ce764 Define #pageLeft and #pageRight
Stefan Vogel <sv@exept.de>
parents: 4958
diff changeset
 10556
!
b059a14ce764 Define #pageLeft and #pageRight
Stefan Vogel <sv@exept.de>
parents: 4958
diff changeset
 10557
1052
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10558
pageUp
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10559
    self scrollUp:(self innerHeight)
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10560
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10561
    "Created: 13.9.1996 / 14:07:01 / cg"
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10562
!
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10563
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10564
scrollDown
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10565
    "scroll down by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10566
     scroll-step down button is pressed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10567
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10568
    self scrollDown:(self verticalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10569
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10570
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10571
scrollDown:nPixels
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10572
    "change origin to scroll down some pixels"
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10573
5572
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10574
    self scrollRelative:nPixels
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10575
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10576
    "Modified: / 18-07-2010 / 09:10:47 / cg"
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10577
!
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10578
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10579
scrollHorizontalTo:aPixelOffset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10580
    "change origin to make aPixelOffset be the left col"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10581
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10582
    |orgY|
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10583
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10584
    orgY := self viewOrigin y.
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10585
    ^ self scrollTo:(aPixelOffset @ orgY).
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10586
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10587
    "Modified: 8.7.1996 / 15:34:54 / stefan"
140
claus
parents: 138
diff changeset
 10588
!
claus
parents: 138
diff changeset
 10589
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10590
scrollHorizontalToPercent:percent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10591
    "scroll to a position given in percent of total"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10592
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10593
    |wCont currentTransformation|
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10594
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10595
    wCont := self widthOfContents.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10596
    currentTransformation := gc transformation.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10597
    currentTransformation notNil ifTrue:[
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10598
	wCont := currentTransformation applyScaleX:wCont.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10599
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10600
    self scrollHorizontalTo:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10601
	    ((((wCont * percent) / 100.0) + 0.5) asInteger)
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10602
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10603
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10604
scrollLeft
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10605
    "scroll left by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10606
     scroll-step left button is pressed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10607
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10608
    self scrollLeft:(self horizontalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10609
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10610
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10611
scrollLeft:nPixels
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10612
    "change origin to scroll left some pixels"
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10613
1035
261c3ab854f0 Use #viewOrigin instead of translation transformation to get
Stefan Vogel <sv@exept.de>
parents: 1028
diff changeset
 10614
    |viewOrigin|
261c3ab854f0 Use #viewOrigin instead of translation transformation to get
Stefan Vogel <sv@exept.de>
parents: 1028
diff changeset
 10615
2703
cfdad703743d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2702
diff changeset
 10616
    nPixels ~~ 0 ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10617
	viewOrigin := self viewOrigin.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10618
	self scrollTo:((viewOrigin x - nPixels) @ viewOrigin y).
2703
cfdad703743d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2702
diff changeset
 10619
    ]
cfdad703743d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2702
diff changeset
 10620
cfdad703743d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2702
diff changeset
 10621
    "Modified: / 20.8.1996 / 17:35:09 / stefan"
cfdad703743d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2702
diff changeset
 10622
    "Modified: / 21.5.1999 / 15:58:03 / cg"
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10623
!
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10624
5572
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10625
scrollRelative:nPixels
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10626
    "change origin to scroll up (nPixels < 0) or down (nPixels > 0)"
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10627
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10628
    |viewOrigin|
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10629
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10630
    nPixels ~~ 0 ifTrue:[
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10631
	viewOrigin := self viewOrigin.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 10632
	self scrollTo:(viewOrigin x @ (viewOrigin y + nPixels))
5572
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10633
    ]
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10634
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10635
    "Modified: / 20-08-1996 / 17:34:36 / stefan"
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10636
    "Created: / 18-07-2010 / 09:09:54 / cg"
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10637
!
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10638
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10639
scrollRight
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10640
    "scroll right by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10641
     scroll-step right button is pressed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10642
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10643
    self scrollRight:(self horizontalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10644
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10645
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10646
scrollRight:nPixels
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10647
    "change origin to scroll right some pixels"
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10648
1035
261c3ab854f0 Use #viewOrigin instead of translation transformation to get
Stefan Vogel <sv@exept.de>
parents: 1028
diff changeset
 10649
    |viewOrigin|
261c3ab854f0 Use #viewOrigin instead of translation transformation to get
Stefan Vogel <sv@exept.de>
parents: 1028
diff changeset
 10650
2703
cfdad703743d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2702
diff changeset
 10651
    nPixels ~~ 0 ifTrue:[
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10652
	viewOrigin := self viewOrigin.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10653
	self scrollTo:((viewOrigin x + nPixels) @ viewOrigin y)
2703
cfdad703743d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2702
diff changeset
 10654
    ]
cfdad703743d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2702
diff changeset
 10655
cfdad703743d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2702
diff changeset
 10656
    "Modified: / 20.8.1996 / 17:35:37 / stefan"
cfdad703743d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2702
diff changeset
 10657
    "Modified: / 21.5.1999 / 15:58:08 / cg"
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10658
!
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10659
1052
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10660
scrollToBottom
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10661
    self scrollTo:0 @ (self heightOfContents - self innerHeight)
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10662
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10663
    "Created: 13.9.1996 / 14:08:03 / cg"
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10664
    "Modified: 13.9.1996 / 14:09:32 / cg"
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10665
!
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10666
2371
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10667
scrollToLeft
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10668
    "move viewOrigin to the left"
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10669
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10670
    self scrollHorizontalTo:0
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10671
!
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10672
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10673
scrollToPercent:originAsPercent
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10674
    "scroll to a position given in percent of total (x and y as a Point)"
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10675
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10676
    |wCont hCont percent currentTransformation|
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10677
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10678
    percent := originAsPercent asPoint.
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10679
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10680
    wCont := self widthOfContents.
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10681
    hCont := self heightOfContents.
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10682
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10683
    currentTransformation := gc transformation.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10684
    currentTransformation notNil ifTrue:[
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10685
	wCont := currentTransformation applyScaleX:wCont.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10686
	hCont := currentTransformation applyScaleY:hCont.
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10687
    ].
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10688
    self scrollTo:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10689
	    ((((wCont * percent x) / 100.0) + 0.5) asInteger) @
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10690
	    ((((hCont * percent y) / 100.0) + 0.5) asInteger)
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10691
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10692
    "Created: 5.8.1996 / 12:15:53 / stefan"
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10693
    "Modified: 5.8.1996 / 12:42:57 / stefan"
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10694
!
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10695
2371
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10696
scrollToRight
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10697
    "move viewOrigin to the right"
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10698
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10699
    |wCont currentTransformation|
2371
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10700
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10701
    wCont := self widthOfContents.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10702
    currentTransformation := gc transformation.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10703
    currentTransformation notNil ifTrue:[
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10704
	wCont := currentTransformation applyScaleX:wCont.
2371
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10705
    ].
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10706
    self scrollHorizontalTo:((wCont - self innerWidth) max:0)
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10707
!
fafba97d401c added #scrollToLeft and #scrollToRight
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
 10708
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10709
scrollToTop
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10710
    "move viewOrigin to top"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10711
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10712
    self scrollVerticalTo:0
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10713
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10714
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10715
scrollToTopLeft
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10716
    "move viewOrigin to top/left"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10717
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10718
    self scrollTo:(0 @ 0).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10719
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10720
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10721
scrollUp
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10722
    "scroll up by some amount; this is called when the scrollbars
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10723
     scroll-step up button is pressed."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10724
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10725
    self scrollUp:(self verticalScrollStep)
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10726
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10727
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10728
scrollUp:nPixels
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10729
    "change origin to scroll up (towards the origin) by some pixels"
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10730
5572
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10731
    self scrollRelative:nPixels negated
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10732
0b2c89db1387 added: #scrollRelative:
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
 10733
    "Modified: / 18-07-2010 / 09:10:59 / cg"
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10734
!
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10735
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10736
scrollVerticalTo:aPixelOffset
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10737
    "change origin to make aPixelOffset be the top line"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10738
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10739
    |orgX|
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10740
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10741
    orgX := self viewOrigin x.
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10742
    ^ self scrollTo:(orgX @ aPixelOffset).
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10743
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10744
    "Modified: 8.7.1996 / 15:35:40 / stefan"
135
claus
parents:
diff changeset
 10745
!
claus
parents:
diff changeset
 10746
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10747
scrollVerticalToPercent:percent
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10748
    "scroll to a position given in percent of total"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10749
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10750
    |hCont currentTransformation|
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10751
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10752
    hCont := self heightOfContents.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10753
    currentTransformation := gc transformation.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10754
    currentTransformation notNil ifTrue:[
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10755
	hCont := currentTransformation applyScaleY:hCont.
140
claus
parents: 138
diff changeset
 10756
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10757
    self scrollVerticalTo:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10758
	    ((((hCont * percent) / 100.0) + 0.5) asInteger)
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10759
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10760
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10761
verticalScrollStep
5026
90f01342a59c comment
Claus Gittinger <cg@exept.de>
parents: 5022
diff changeset
 10762
    "return the amount to scroll when stepping up/down (also used for mouseWheel).
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10763
     Subclasses may want to redefine this."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10764
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10765
    ^ (self graphicsDevice verticalPixelPerMillimeter * 20) asInteger
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10766
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10767
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10768
widthForScrollBetween:yStart and:yEnd
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10769
    "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
 10770
     - 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
 10771
     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
 10772
     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
 10773
     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
 10774
     not notice any difference."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10775
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10776
    ^ (width - margin - margin)
135
claus
parents:
diff changeset
 10777
! !
claus
parents:
diff changeset
 10778
claus
parents:
diff changeset
 10779
!SimpleView methodsFor:'scrolling-basic'!
claus
parents:
diff changeset
 10780
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10781
scrollTo:newOrigin
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10782
    "change origin to have newOrigin be visible at the top-left.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10783
     The argument defines the integer device coordinates of the new top-left
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10784
     point."
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10785
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10786
     ^ self scrollTo:newOrigin redraw:true
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10787
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10788
    "Modified: 15.7.1996 / 11:35:08 / stefan"
1052
c7e31a453192 added default implementations for pageUp / pageDown
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
 10789
    "Modified: 13.9.1996 / 14:09:19 / cg"
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10790
!
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10791
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10792
scrollTo:newOrigin redraw:doRedraw
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10793
    "change origin to have newOrigin be visible at the top-left.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10794
     The argument defines the integer device coordinates of the new top-left
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10795
     point."
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10796
3704
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10797
    ^ self
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10798
	scrollTo:newOrigin
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10799
	redraw:doRedraw
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10800
	allowScrollBeyondContents:false
3704
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10801
!
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10802
4294
40a19f1e8c76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4262
diff changeset
 10803
scrollTo:newOrigin redraw:doRedraw allowScrollBeyondContents:allowScrollBehondContents
40a19f1e8c76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4262
diff changeset
 10804
    "change origin to have newOrigin be visible at the top-left.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10805
     The argument defines the integer device coordinates of the new top-left
4294
40a19f1e8c76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4262
diff changeset
 10806
     point."
40a19f1e8c76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4262
diff changeset
 10807
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10808
    |dX   "{ Class:SmallInteger }"
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10809
     dY   "{ Class:SmallInteger }"
4520
8e7a5f587df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4517
diff changeset
 10810
     orgX
8e7a5f587df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4517
diff changeset
 10811
     orgY
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10812
     x y iw ih
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10813
     hCont wCont fromX toX fromY toY copyWidth copyHeight
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10814
     redrawX redrawY wg currentTransformation|
135
claus
parents:
diff changeset
 10815
claus
parents:
diff changeset
 10816
    hCont := self heightOfContents.
claus
parents:
diff changeset
 10817
    wCont := self widthOfContents.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10818
    currentTransformation := gc transformation.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10819
    currentTransformation isNil ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10820
	orgY := orgX := 0
135
claus
parents:
diff changeset
 10821
    ] ifFalse:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10822
	wCont := (currentTransformation applyScaleX:wCont) rounded.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10823
	hCont := (currentTransformation applyScaleY:hCont) rounded.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10824
	orgY := currentTransformation translation y negated.
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 10825
	orgX := currentTransformation translation x negated
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10826
    ].
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10827
135
claus
parents:
diff changeset
 10828
    iw := self innerWidth.
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10829
    ih := self innerHeight.
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10830
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10831
    "don't scroll outside of displayed area"
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10832
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10833
    x := newOrigin x.
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10834
    y := newOrigin y.
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10835
3704
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10836
    allowScrollBehondContents ifFalse:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10837
	x + iw > wCont ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10838
	    x := (wCont - iw) asInteger.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10839
	].
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10840
    ].
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10841
    x < 0 ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10842
	x := 0
3704
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10843
    ].
3652985d3d9c more invalidate methods;
penk
parents: 3698
diff changeset
 10844
    allowScrollBehondContents ifFalse:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10845
	y + ih > hCont ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10846
	    y := (hCont - ih) asInteger.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10847
	].
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10848
    ].
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10849
    y < 0 ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10850
	y := 0.
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10851
    ].
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10852
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10853
    dX := x - orgX.
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10854
    dY := y - orgY.
135
claus
parents:
diff changeset
 10855
1066
bd9f100a928f ignore null-scrolls
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
 10856
    (dX == 0 and:[dY == 0]) ifTrue:[
bd9f100a928f ignore null-scrolls
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
 10857
       ^ self
bd9f100a928f ignore null-scrolls
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
 10858
    ].
bd9f100a928f ignore null-scrolls
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
 10859
2649
6551ac88b855 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2638
diff changeset
 10860
    (wg := self windowGroup) notNil ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10861
	wg processRealExposeEventsFor:self.
2649
6551ac88b855 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2638
diff changeset
 10862
    ].
2405
95e4a8e563d8 precess expose events before scroll
Claus Gittinger <cg@exept.de>
parents: 2400
diff changeset
 10863
135
claus
parents:
diff changeset
 10864
    self originWillChange.
1017
43bc3829dcc5 Make #scrollTo: the basic scroll action.
Stefan Vogel <sv@exept.de>
parents: 1005
diff changeset
 10865
    (shown and:[doRedraw]) ifTrue:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10866
	copyWidth := iw - dX abs.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10867
	copyHeight := ih - dY abs.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10868
	((copyWidth > 0) and:[copyHeight > 0]) ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10869
	    "/ some of the currently displayed pixels
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10870
	    "/ remain visible. Copy them
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10871
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10872
	    dX < 0 ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10873
	      fromX := margin.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10874
	      toX := margin - dX.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10875
	      redrawX := margin
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10876
	    ] ifFalse:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10877
	      fromX := margin + dX.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10878
	      toX := margin.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10879
	      redrawX := margin + copyWidth.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10880
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10881
	    dY < 0 ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10882
	      fromY := margin.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10883
	      toY   := margin - dY.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10884
	      redrawY := margin.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10885
	    ] ifFalse:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10886
	      fromY := margin + dY.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10887
	      toY   := margin.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10888
	      redrawY := margin + copyHeight.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10889
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10890
	    self catchExpose.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10891
	    self setViewOrigin:(x @ y).
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10892
	    self
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10893
		copyFrom:self
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10894
		x:fromX y:fromY
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10895
		toX:toX   y:toY
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10896
		width:copyWidth
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10897
		height:copyHeight
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10898
		async:true.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10899
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10900
	    self setInnerClip.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10901
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10902
	    "first redraw the rectangle above/below the
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10903
	     copied area (with full width)."
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10904
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10905
	    copyHeight < ih ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10906
	    self invalidateDeviceRectangle:((margin@redrawY) extent:(iw@(ih - copyHeight))) repairNow:false.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10907
"/                self
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10908
"/                    redrawDeviceX:margin y:redrawY
2381
9a365ce57a19 async redraw when scrolling (i.e. invalidate instead of redraw)
Claus Gittinger <cg@exept.de>
parents: 2376
diff changeset
 10909
"/                    width:iw height:(ih - copyHeight).
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10910
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10911
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10912
	    "second redraw the rectangle left/right of the
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10913
	     copied area"
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10914
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10915
	    copyWidth < iw ifTrue:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10916
	    self invalidateDeviceRectangle:((redrawX@toY) extent:((iw-copyWidth)@copyHeight)) repairNow:false.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10917
"/                self redrawDeviceX:redrawX y:toY
2381
9a365ce57a19 async redraw when scrolling (i.e. invalidate instead of redraw)
Claus Gittinger <cg@exept.de>
parents: 2376
diff changeset
 10918
"/
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10919
"/                             width:iw - copyWidth
2381
9a365ce57a19 async redraw when scrolling (i.e. invalidate instead of redraw)
Claus Gittinger <cg@exept.de>
parents: 2376
diff changeset
 10920
"/                            height:copyHeight.
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10921
	    ].
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10922
	    self waitForExpose.
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10923
	] ifFalse:[
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10924
	    "redraw everything"
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10925
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10926
	    self setViewOrigin:(x @ y).
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10927
	    self invalidateDeviceRectangle:((margin@margin) extent:(iw@ih)) repairNow:false.
2381
9a365ce57a19 async redraw when scrolling (i.e. invalidate instead of redraw)
Claus Gittinger <cg@exept.de>
parents: 2376
diff changeset
 10928
"/            self redrawDeviceX:margin y:margin
9a365ce57a19 async redraw when scrolling (i.e. invalidate instead of redraw)
Claus Gittinger <cg@exept.de>
parents: 2376
diff changeset
 10929
"/                         width:iw
9a365ce57a19 async redraw when scrolling (i.e. invalidate instead of redraw)
Claus Gittinger <cg@exept.de>
parents: 2376
diff changeset
 10930
"/                        height:ih.
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10931
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10932
    ] ifFalse:[
4834
312cf6fbee53 *** empty log message ***
fm
parents: 4833
diff changeset
 10933
	self setViewOrigin:(x @ y).
2802
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
 10934
    ].
c715aa164707 comment & category change
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
 10935
709
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
 10936
    self originChanged:(dX negated @ dY negated).
6a8d793633ee fixed arg to #originChanged:
Claus Gittinger <cg@exept.de>
parents: 705
diff changeset
 10937
2381
9a365ce57a19 async redraw when scrolling (i.e. invalidate instead of redraw)
Claus Gittinger <cg@exept.de>
parents: 2376
diff changeset
 10938
    "Modified: / 5.8.1996 / 11:57:09 / stefan"
2405
95e4a8e563d8 precess expose events before scroll
Claus Gittinger <cg@exept.de>
parents: 2400
diff changeset
 10939
    "Modified: / 1.12.1998 / 22:35:18 / cg"
135
claus
parents:
diff changeset
 10940
! !
claus
parents:
diff changeset
 10941
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10942
!SimpleView methodsFor:'startup'!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10943
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10944
open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10945
    "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
 10946
     (i.e. the new view comes up as independent process).
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10947
     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
 10948
     implemented in TopView), it is implemented here - therefore, every view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10949
     can be opened as a topView.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 10950
     This is redefined in ModalBox, which comes up modal (i.e.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10951
     control is under the current process, so that interaction with the
4131
30e53fab0bc0 comment
Claus Gittinger <cg@exept.de>
parents: 4126
diff changeset
 10952
     current group is blocked while the modalBox is active).
30e53fab0bc0 comment
Claus Gittinger <cg@exept.de>
parents: 4126
diff changeset
 10953
30e53fab0bc0 comment
Claus Gittinger <cg@exept.de>
parents: 4126
diff changeset
 10954
     Notice: after the open, you cannot be sure that the view is really open and
30e53fab0bc0 comment
Claus Gittinger <cg@exept.de>
parents: 4126
diff changeset
 10955
     visible, since #open forks a new process, which does the actual window opening.
30e53fab0bc0 comment
Claus Gittinger <cg@exept.de>
parents: 4126
diff changeset
 10956
     To ensure visibility, use #openAndWait or waitUntilVisible after the open."
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10957
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10958
    ^ self openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10959
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10960
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10961
     View new open
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10962
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10963
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10964
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10965
     (Button label:'hello') open
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10966
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10967
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10968
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10969
     |top|
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10970
     top := StandardSystemView new.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10971
     top extent:200@200.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10972
     Button label:'hello' in:top.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10973
     top open
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10974
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10975
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10976
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10977
     YesNoBox new open
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10978
    "
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10979
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 10980
    "Modified: 24.7.1997 / 13:26:42 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10981
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10982
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10983
openAndWait
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10984
    "open up the view - wait until it is visible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10985
     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
 10986
     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
 10987
     first expose event.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10988
     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
 10989
     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
 10990
     Use this open in those situations."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10991
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10992
    self open.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10993
    self waitUntilVisible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10994
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10995
    "does not work:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 10996
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10997
	|v|
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10998
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 10999
	v := View new open.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11000
	v displayLineFrom:0@0 to:50@50
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11001
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11002
     does work:
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11003
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11004
	|v|
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11005
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11006
	v := View new openAndWait.
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11007
	v displayLineFrom:0@0 to:50@50
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11008
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11009
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11010
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11011
openAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11012
    "open up the view modeless - positions the view"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11013
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11014
    ^self openModelessAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11015
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11016
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11017
     (Button label:'hello') open
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11018
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11019
     (Button label:'hello') openAt:(100@100)
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11020
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11021
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11022
    "Modified: 24.7.1997 / 13:26:23 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11023
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11024
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11025
openAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11026
    "open up the view modeless - positions the view"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11027
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11028
    ^self openModelessAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11029
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11030
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11031
     (Button label:'hello') open
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11032
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11033
     (Button label:'hello') openAtCenter
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11034
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11035
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11036
    "Modified: 24.7.1997 / 13:01:12 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11037
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11038
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11039
openAutonomous
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11040
    "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
 11041
     The view will be handled by its own process, effectively running in
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11042
     parallel.
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11043
     Notice:
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11044
	This entry is for NON-topviews, which want to be served
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11045
	autonomous from their real topview.
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11046
	(see the fileBrowsers kill-button
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11047
	 when executing unix commands as an example)"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11048
1877
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11049
    |wg mainGroup|
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11050
4139
6acf2874394b WO's stuff
werner
parents: 4131
diff changeset
 11051
    wg := self windowGroupClass new.
763
dad0ad10c4d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 761
diff changeset
 11052
    self windowGroup:wg.
1877
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11053
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11054
    mainGroup := WindowGroup activeGroup.
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11055
    mainGroup notNil ifTrue:[
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11056
	mainGroup := mainGroup mainGroup.
1877
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11057
    ].
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11058
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11059
    wg isForModalSubview:true.        "/ make it handle update events for the main group
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11060
    wg startupWith:[wg mainGroup:mainGroup. self realizeInGroup].
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11061
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11062
    "/ wg startupModal:[true] forGroup:mainGroup
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11063
    "/ self realizeInGroup.
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11064
6c7c5d6ad7f5 fixed windowGroup setting;
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
 11065
    "Modified: 20.8.1997 / 17:57:38 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11066
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11067
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11068
openInGroup:aGroup
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11069
    "special open within another windowGroup.
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11070
     This allows a view to be realized in any windowgroup;
420
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11071
     for applications where multiple views act as a group
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11072
     (i.e. close and iconify together)."
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11073
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11074
    self windowGroup:aGroup.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11075
    aGroup addTopView:self.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11076
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11077
"/    self realizeKeepingGroup:true
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11078
    aGroup isForModalSubview:true.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11079
    self realize.
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11080
!
9ad55eba79ac allow opening subViews as modal;
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
 11081
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11082
openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11083
    "create a new windowgroup, but start processing in the current process
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11084
     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
 11085
     Stay in the modalLoop while the view is visible.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11086
     (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
 11087
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11088
    self openModal:[true]
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11089
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11090
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11091
     the same:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11092
	 YesNoBox new open
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11093
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11094
	 YesNoBox new openModal
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11095
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11096
     different:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11097
	 (Button label:'hello') open
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11098
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11099
	 (Button label:'hello') openModal
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11100
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11101
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11102
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11103
openModal:aBlock
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11104
    "create a new windowgroup, but start processing in the current process -
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11105
     actually suspending event processing for the currently active group.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11106
     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
 11107
     visible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11108
     (i.e. control is returned to the sender when the receiver is closed)
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11109
     This makes any interaction with the current window impossible -
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11110
     however, other views (in other windowgroups) still work."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11111
6077
267fb1241ec2 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 6074
diff changeset
 11112
    |activeGroup|
5271
228c32bcdd37 mainGroup detection was wrong for modal-view-open;
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
 11113
5273
9c8813e5b7a1 handling of abort of a hide-operation
Claus Gittinger <cg@exept.de>
parents: 5271
diff changeset
 11114
    activeGroup := WindowGroup activeGroup.
9c8813e5b7a1 handling of abort of a hide-operation
Claus Gittinger <cg@exept.de>
parents: 5271
diff changeset
 11115
5411
26b475890a60 eliminated borderWidth & borderColor;
Claus Gittinger <cg@exept.de>
parents: 5405
diff changeset
 11116
    "/ cg - because we raise that window, we should avoid to raise the main-non-modal view,
5271
228c32bcdd37 mainGroup detection was wrong for modal-view-open;
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
 11117
    "/ if a dialog is opend from another modal view (confirmation in a modal-box)
2167
41e74cf73d7a fixed modal popup from a modal view
Claus Gittinger <cg@exept.de>
parents: 2161
diff changeset
 11118
5273
9c8813e5b7a1 handling of abort of a hide-operation
Claus Gittinger <cg@exept.de>
parents: 5271
diff changeset
 11119
"/    mainGroup := activeGroup.
2167
41e74cf73d7a fixed modal popup from a modal view
Claus Gittinger <cg@exept.de>
parents: 2161
diff changeset
 11120
"/    mainGroup notNil ifTrue:[mainGroup := mainGroup mainGroup].
41e74cf73d7a fixed modal popup from a modal view
Claus Gittinger <cg@exept.de>
parents: 2161
diff changeset
 11121
5273
9c8813e5b7a1 handling of abort of a hide-operation
Claus Gittinger <cg@exept.de>
parents: 5271
diff changeset
 11122
"/    masterGroup := activeGroup.
5271
228c32bcdd37 mainGroup detection was wrong for modal-view-open;
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
 11123
"/    [masterGroup notNil and:[masterGroup isPopUp or:[masterGroup isModal]]] whileTrue:[
228c32bcdd37 mainGroup detection was wrong for modal-view-open;
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
 11124
"/        masterGroup := masterGroup previousGroup.
228c32bcdd37 mainGroup detection was wrong for modal-view-open;
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
 11125
"/   ].
228c32bcdd37 mainGroup detection was wrong for modal-view-open;
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
 11126
    ^ self openModal:aBlock inGroup:activeGroup "/ masterGroup "/ mainGroup.
2167
41e74cf73d7a fixed modal popup from a modal view
Claus Gittinger <cg@exept.de>
parents: 2161
diff changeset
 11127
41e74cf73d7a fixed modal popup from a modal view
Claus Gittinger <cg@exept.de>
parents: 2161
diff changeset
 11128
    "Created: / 10.12.1995 / 14:06:45 / cg"
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11129
    "Modified: / 9.7.1998 / 01:20:57 / cg"
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11130
!
299
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
 11131
5494
c02b3c579300 comment/format in: #openModal:
Stefan Vogel <sv@exept.de>
parents: 5456
diff changeset
 11132
openModal:aBlock inGroup:aWindowGroup
299
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
 11133
    "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
 11134
     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
 11135
     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
 11136
     visible.
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
 11137
     (i.e. control is returned to the sender when the receiver is closed)
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11138
     This makes any interaction with the current window impossible -
299
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
 11139
     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
 11140
6121
17d2c885beac class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6119
diff changeset
 11141
    |tops mainView previousGroup mainGroup cursorChanged isPopup makeTransient|
5888
d83030f456a6 changed: #openModal:inGroup:
Stefan Vogel <sv@exept.de>
parents: 5871
diff changeset
 11142
6072
69ba59e3fe6d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6070
diff changeset
 11143
    StandardSystemView cancelAutoRaise.
69ba59e3fe6d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6070
diff changeset
 11144
6116
332ca0cd606f class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6115
diff changeset
 11145
    isPopup := self isPopUpView.
5888
d83030f456a6 changed: #openModal:inGroup:
Stefan Vogel <sv@exept.de>
parents: 5871
diff changeset
 11146
    aWindowGroup notNil ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11147
	mainGroup := aWindowGroup mainGroup.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11148
	mainView := mainGroup mainView.
5888
d83030f456a6 changed: #openModal:inGroup:
Stefan Vogel <sv@exept.de>
parents: 5871
diff changeset
 11149
    ].
1397
932c517ad29c moved tranientView setup up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
 11150
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11151
    "/ set the windowgroup BEFORE sending the aboutToOpen notification
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11152
    "/ (so the handler sees me with a wGroup, sensor etc).
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11153
    "/ this allows for the handler to enqueue an event,
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11154
    "/ or to add event hooks.
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11155
    Processor activeProcessIsSystemProcess ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11156
	"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11157
	 put myself into the modal group, let it handle events for
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11158
	 me as well. This is only a half way solution, since the view
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11159
	 is not modal at all ... however, the only situation
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11160
	 where this happens is with modal boxes popped while in a
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11161
	 modal browser. You will forgive me for that inconvenience.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11162
	"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11163
	windowGroup := aWindowGroup.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11164
	aWindowGroup notNil ifTrue:[aWindowGroup addTopView:self].
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11165
    ] ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11166
	previousGroup := WindowGroup activeGroup.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11167
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11168
	"/ create a new window group put myself into it
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11169
	windowGroup := self windowGroupClass new
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11170
				addTopView:self;
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11171
				setPreviousGroup:previousGroup.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11172
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11173
	superView notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11174
	    "/
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11175
	    "/ special: this is a modal subview,
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11176
	    "/ prevent the view from reassigning its windowGroup when realized
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11177
	    "/ (subviews normaly place themself into the superviews group)
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11178
	    "/
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11179
	    windowGroup isForModalSubview:true.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11180
	].
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11181
    ].
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11182
6121
17d2c885beac class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6119
diff changeset
 11183
    makeTransient := true.
6116
332ca0cd606f class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6115
diff changeset
 11184
    isPopup ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11185
	"/ the following allows for knowledgable programmers to suppress dialog boxes,
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11186
	"/ or to patch common controls right before opening...
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11187
	(Dialog aboutToOpenBoxNotificationSignal raiseRequestWith:self) == #abort ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11188
	    ^ self
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11189
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11190
	"/ the following allows for hooks to add a bell sound or other whenever a dialog opens
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11191
	self graphicsDevice modalWindowListenersDo:[:listener | listener aboutToOpenWindow:self].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11192
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11193
	"/ the following raises the corresponding mainview, so the dialog shows above
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11194
	"/ any currently covered view. However, be careful if being debugged, or if this dialog
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11195
	"/ is opened by an already open dialog.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11196
	mainView notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11197
	    (mainView windowGroup isInModalLoop
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11198
		or:[ mainView windowGroup isDebugged
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11199
		or:[ WindowGroup activeGroup isDebugged
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11200
	    ]]) ifFalse:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11201
		self tracePoint:#cg message:'activate'.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11202
		self debuggingCodeFor:#cg is:[ Transcript showCR:mainView; showCR:mainView windowGroup. ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11203
		mainView activate; setForegroundWindow.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11204
	    ] ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11205
		makeTransient := false.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11206
	    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11207
	].
5888
d83030f456a6 changed: #openModal:inGroup:
Stefan Vogel <sv@exept.de>
parents: 5871
diff changeset
 11208
    ].
6121
17d2c885beac class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6119
diff changeset
 11209
    makeTransient ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11210
	mainView notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11211
	    "set the transient property.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11212
	     This is currently used for X, to tell the Window Manager
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11213
	     That this view should be always on top of the mainView"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11214
	    self drawableId isNil ifTrue:[self create].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11215
	    self graphicsDevice setTransient:self drawableId for:mainView id.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11216
	]
1397
932c517ad29c moved tranientView setup up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
 11217
    ].
932c517ad29c moved tranientView setup up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
 11218
932c517ad29c moved tranientView setup up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
 11219
    self raise.
299
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
 11220
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11221
    Processor activeProcessIsSystemProcess ifTrue:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11222
	self realize
135
claus
parents:
diff changeset
 11223
    ] ifFalse:[
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11224
	"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11225
	 show a stop-cursor in the suspended window groups
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11226
	"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11227
	(mainGroup notNil and:[isPopup not]) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11228
	    mainGroup showCursor:(Cursor stop).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11229
	    previousGroup ~~ mainGroup ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11230
		previousGroup showCursor:(Cursor stop).
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11231
	    ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11232
	    cursorChanged := true.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11233
	].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11234
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11235
	"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11236
	 go dispatch events in this new group
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11237
	 (thus current windowgroup is blocked from interaction)
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11238
	"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11239
	AbortOperationRequest handle:[:ex |
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11240
	    "/ the dialog/popup is aborted - hide it. Care for another abort during the hide.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11241
	    AbortOperationRequest handle:[:ex2 |
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11242
		"/ an aborted hide (possibly due to a cancelled user confirmation or similar)
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11243
		self breakPoint:#cg.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11244
		ex exit.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11245
	    ] do:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11246
		self hide.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11247
		realized ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11248
		    "/ self halt. "/ hide handled and closeRequest not wanted:
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11249
		    ex exit.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11250
		].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11251
	    ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11252
	] do:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11253
	    [
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11254
		[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11255
		    windowGroup startupModal:[realized and:aBlock] forGroup:aWindowGroup
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11256
		] ifCurtailed:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11257
		    self hide.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11258
		]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11259
	    ] ensure:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11260
		aWindowGroup notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11261
		    aWindowGroup graphicsDevice sync.  "thats a round trip - make sure that all drawing has been processed"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11262
		    "/ ensure that eventListener runs here ...
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11263
		    Delay waitForSeconds:0.05.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11264
		    aWindowGroup processExposeEvents.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11265
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11266
		    (self isPopUpView or:[ ReturnFocusWhenClosingModalBoxes ]) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11267
			"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11268
			 return the input focus to the previously active group's top.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11269
			 This helps with window managers which need an explicit click
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11270
			 on the view for the focus.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11271
			 Only do this, if the previous group is still having the focus.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11272
			 (i.e. no other view was opened in the meantime)
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11273
			"
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11274
			aWindowGroup graphicsDevice focusView isNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11275
			    tops := aWindowGroup topViews.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11276
			    (tops notEmptyOrNil) ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11277
				tops first getKeyboardFocus
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11278
			    ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11279
			].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11280
		    ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11281
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11282
		    "
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11283
		     restore cursors in the changed groups
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11284
		    "
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11285
		    cursorChanged notNil ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11286
			mainGroup restoreCursors.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11287
			previousGroup ~~ mainGroup ifTrue:[
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11288
			    previousGroup restoreCursors.
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11289
			].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11290
		    ].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11291
		].
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11292
	    ]
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11293
	].
135
claus
parents:
diff changeset
 11294
    ]
299
e2c8fd828a64 passing group to avoid multiple activeGroup searches
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
 11295
4654
baa4bc036ec4 drag & drop
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
 11296
    "Created: / 10-12-1995 / 14:06:14 / cg"
6121
17d2c885beac class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6119
diff changeset
 11297
    "Modified: / 29-08-2013 / 16:17:10 / cg"
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11298
!
135
claus
parents:
diff changeset
 11299
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11300
openModalAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11301
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11302
     (i.e. circumvents window managers positioning)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11303
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11304
    self origin:aPoint.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 11305
    self drawableId isNil ifTrue:[self create].
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 11306
"/    device setTransient:self drawableId for:0.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11307
    ^ self openModal
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11308
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11309
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11310
     View new openModal
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11311
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11312
    "
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11313
     View new openModalAt:100@100
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11314
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11315
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11316
    "Created: 18.9.1995 / 23:21:42 / claus"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11317
    "Modified: 18.9.1995 / 23:32:26 / claus"
1837
454d10a53a64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
 11318
    "Modified: 28.7.1997 / 18:52:29 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11319
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11320
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11321
openModalAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11322
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11323
     (i.e. circumvents window managers positioning)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11324
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 11325
    ^ self openModalAt:(self graphicsDevice centerOfMonitorHavingPointer - (self extent//2)).
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11326
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11327
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11328
     View new openModal
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11329
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11330
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11331
     View new openModalAtCenter
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11332
    "
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11333
5729
a2d13b74741a changed: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
 11334
    "Modified: / 22-03-2011 / 13:33:10 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11335
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11336
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11337
openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11338
    "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
 11339
     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
 11340
     parallel (i.e. control is returned to the sender immediately)."
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11341
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11342
    self openModelessAt:nil
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11343
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11344
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11345
     the same:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11346
	 (Button label:'hello') open
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11347
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11348
	 (Button label:'hello') openModeless
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11349
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11350
     different:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11351
	 YesNoBox new open
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11352
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11353
	 YesNoBox new openModeless
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11354
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11355
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11356
     (almost) the same:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11357
	 YesNoBox new open
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11358
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11359
	 YesNoBox new openModal
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11360
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11361
     different:
3152
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11362
	 (Button label:'hello') open
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11363
b64eeb833f5b added flag bits;
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
 11364
	 (Button label:'hello') openModal
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11365
    "
503
c2b27766bb0a dont create a new windowGroup if there is one (in #openModeless)
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
 11366
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11367
    "Modified: 24.7.1997 / 13:17:49 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11368
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11369
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11370
openModelessAt:aPoint
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11371
    "open up the view modeless - positions the view
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11372
     (i.e. tries to circumvent the window managers positioning)
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11373
     Notice: some windowManagers seem to ignore this and always
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11374
     ask the user to position the view."
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11375
1827
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11376
    self openModelessAt:aPoint iconified:false
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11377
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11378
    "
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11379
     View new openModeless
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11380
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11381
     View new openModelessAt:100@100
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11382
    "
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11383
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11384
    "Created: 18.9.1995 / 23:21:42 / claus"
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11385
    "Modified: 24.7.1997 / 13:48:52 / cg"
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11386
!
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11387
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11388
openModelessAt:aPoint iconified:iconified
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11389
    "open up the view modeless - positions the view
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11390
     (i.e. tries to circumvent the window managers positioning)
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11391
     Notice: some windowManagers seem to ignore this and always
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11392
     ask the user to position the view."
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11393
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11394
    |newGroup|
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11395
6072
69ba59e3fe6d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6070
diff changeset
 11396
    StandardSystemView cancelAutoRaise.
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 11397
    self drawableId isNil ifTrue:[self create].
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11398
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11399
    windowGroup isNil ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11400
	newGroup := true.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11401
	windowGroup := self windowGroupClass new.
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11402
    ] ifFalse:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11403
	newGroup := false.
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11404
    ].
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11405
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11406
    windowGroup addTopView:self.
5635
20533b01f718 changed:
Claus Gittinger <cg@exept.de>
parents: 5629
diff changeset
 11407
20533b01f718 changed:
Claus Gittinger <cg@exept.de>
parents: 5629
diff changeset
 11408
    "/ the following allows for hooks to be informed whenever a non-modal view opens
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 11409
    self graphicsDevice nonModalWindowListenersDo:[:listener | listener aboutToOpenWindow:self].
5635
20533b01f718 changed:
Claus Gittinger <cg@exept.de>
parents: 5629
diff changeset
 11410
3745
8456462f2ac0 code beautifaction
Claus Gittinger <cg@exept.de>
parents: 3730
diff changeset
 11411
    newGroup ifTrue:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11412
	(aPoint isNil and:[iconified not]) ifTrue:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11413
	    windowGroup startupWith:[self realize].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11414
	] ifFalse:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11415
	    windowGroup startupWith:[self realizeKeepingGroup:false at:aPoint iconified:iconified].
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11416
	].
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11417
    ] ifFalse:[
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11418
	self realizeInGroup.
1823
56c9a8366a31 changes to support #openIconified.
Claus Gittinger <cg@exept.de>
parents: 1809
diff changeset
 11419
    ].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11420
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11421
    "
1827
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11422
     StandardSystemView new openModeless
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11423
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11424
     StandardSystemView new openModelessAt:100@100
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11425
bd127ee5469d more fixes
Claus Gittinger <cg@exept.de>
parents: 1823
diff changeset
 11426
     StandardSystemView new openModelessAt:100@100 iconified:true
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11427
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11428
5635
20533b01f718 changed:
Claus Gittinger <cg@exept.de>
parents: 5629
diff changeset
 11429
    "Created: / 18-09-1995 / 23:21:42 / claus"
20533b01f718 changed:
Claus Gittinger <cg@exept.de>
parents: 5629
diff changeset
 11430
    "Modified: / 24-10-2010 / 15:22:53 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11431
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11432
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11433
openModelessAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11434
    "open up the view modeless - positions the view
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11435
     (i.e. circumvents window managers positioning)"
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11436
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 11437
    ^ self openModelessAt:(self graphicsDevice centerOfMonitorHavingPointer - (self extent//2)).
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11438
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11439
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11440
     View new openModeless
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11441
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11442
     View new openModelessAtCenter
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11443
    "
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11444
5729
a2d13b74741a changed: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
 11445
    "Created: / 18-09-1995 / 23:21:42 / claus"
a2d13b74741a changed: #openModal:inGroup:
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
 11446
    "Modified: / 22-03-2011 / 13:33:13 / cg"
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11447
!
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11448
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11449
waitUntilVisible
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11450
    "wait until the receiver visible.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11451
     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
 11452
     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
 11453
     first expose event.
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11454
     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
 11455
     in doIt expressions), or subsequent views depend on some state of
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11456
     another view (which is only available once visible),
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11457
     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
 11458
     Caveat:
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11459
	we poll here for the view to be shown - we need a semaphore
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11460
	which is raised by the view in order to do it right."
3522
a98163edc25b care for #waitUntilVisible to be called from within the event dispatcher
Claus Gittinger <cg@exept.de>
parents: 3518
diff changeset
 11461
a98163edc25b care for #waitUntilVisible to be called from within the event dispatcher
Claus Gittinger <cg@exept.de>
parents: 3518
diff changeset
 11462
    |wg n|
a98163edc25b care for #waitUntilVisible to be called from within the event dispatcher
Claus Gittinger <cg@exept.de>
parents: 3518
diff changeset
 11463
a98163edc25b care for #waitUntilVisible to be called from within the event dispatcher
Claus Gittinger <cg@exept.de>
parents: 3518
diff changeset
 11464
    n := 0.
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11465
    [self shown] whileFalse:[
6315
27f1a761148e [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 6291
diff changeset
 11466
	(self graphicsDevice notNil and:[self graphicsDevice isOpen not]) ifTrue:[^ self].
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11467
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11468
	"/ this was added to avoid a deadlock, when called from within
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11469
	"/ the event dispatch process (as when doing foo inspect there).
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11470
	n > (10 / 0.05) ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11471
	    'SimpleView [info]: View not visible after 10 seconds - will not wait any longer in waitUntilVisible' infoPrintCR.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11472
	    ^ self
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11473
	].
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11474
	n := n + 1.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11475
	Delay waitForSeconds:0.05.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11476
	(wg := self windowGroup) notNil ifTrue:[
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11477
	    wg processExposeEvents.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11478
	].
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11479
    ].
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11480
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11481
    "does not work (the view is in its opening phase,
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11482
     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
 11483
     its internals are not yet correctly setup):
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11484
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11485
	|v|
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11486
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11487
	v := View new open.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11488
	v displayLineFrom:0@0 to:50@50
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11489
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11490
     does work (since we wait until the view has completely finished
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11491
     its startup phase):
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11492
5612
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11493
	|v|
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11494
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11495
	v := View new open.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11496
	v waitUntilVisible.
f7b84930b3fb Multi Screen Support
Michael Beyl <mb@exept.de>
parents: 5608
diff changeset
 11497
	v displayLineFrom:0@0 to:50@50
5595
05e3cc1b4ba7 changed: #waitUntilVisible
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
 11498
    "
05e3cc1b4ba7 changed: #waitUntilVisible
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
 11499
05e3cc1b4ba7 changed: #waitUntilVisible
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
 11500
    "Modified: / 08-08-2010 / 14:46:34 / cg"
135
claus
parents:
diff changeset
 11501
! !
claus
parents:
diff changeset
 11502
5912
028265548a34 added: #isApplicationSubView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5896
diff changeset
 11503
!SimpleView methodsFor:'testing'!
028265548a34 added: #isApplicationSubView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5896
diff changeset
 11504
6622
1fa709b9d5a1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6611
diff changeset
 11505
hasOwnScrollbars
1fa709b9d5a1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6611
diff changeset
 11506
    "a hack for codeView2, which behaves like a TextView, but has its own
1fa709b9d5a1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6611
diff changeset
 11507
     scrollbars embedded - sigh (an extra load one).
1fa709b9d5a1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6611
diff changeset
 11508
     This allows for the UIBuilder to avoid creating an extra set around such
1fa709b9d5a1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6611
diff changeset
 11509
     a view (as is the case with TextSpec with scrollbars when using CodeView2)"
1fa709b9d5a1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6611
diff changeset
 11510
1fa709b9d5a1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6611
diff changeset
 11511
    ^ false
1fa709b9d5a1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6611
diff changeset
 11512
!
1fa709b9d5a1 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6611
diff changeset
 11513
5912
028265548a34 added: #isApplicationSubView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5896
diff changeset
 11514
isApplicationSubView
028265548a34 added: #isApplicationSubView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5896
diff changeset
 11515
    ^ false
6911
b7e5e48b5c0a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6907
diff changeset
 11516
!
b7e5e48b5c0a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6907
diff changeset
 11517
6472
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
 11518
isCodeView2
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
 11519
5b21ff383a12 Delegated gc stuff
Stefan Vogel <sv@exept.de>
parents: 6246
diff changeset
 11520
    ^ false
6933
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6908 6911
diff changeset
 11521
!
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6908 6911
diff changeset
 11522
6911
b7e5e48b5c0a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6907
diff changeset
 11523
isComboView
b7e5e48b5c0a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6907
diff changeset
 11524
    ^ false
b7e5e48b5c0a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6907
diff changeset
 11525
!
b7e5e48b5c0a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6907
diff changeset
 11526
b7e5e48b5c0a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6907
diff changeset
 11527
isPopUpList
b7e5e48b5c0a class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6907
diff changeset
 11528
    ^ false
5912
028265548a34 added: #isApplicationSubView
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5896
diff changeset
 11529
! !
5805
fd85e3ffea7d category of: #isCodeView2
Claus Gittinger <cg@exept.de>
parents: 5804
diff changeset
 11530
3276
9ed39f7e7282 category change
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
 11531
!SimpleView methodsFor:'user interaction & notifications'!
135
claus
parents:
diff changeset
 11532
claus
parents:
diff changeset
 11533
warn:aString
claus
parents:
diff changeset
 11534
    "like Objects warn, but translates the string via the
claus
parents:
diff changeset
 11535
     resourcePack, thus giving a translated string automatically"
claus
parents:
diff changeset
 11536
4452
0076d4427e51 remember the helpKey in the view - not in the builder
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
 11537
    super warn:(resources stringWithCRs:aString)
135
claus
parents:
diff changeset
 11538
!
claus
parents:
diff changeset
 11539
claus
parents:
diff changeset
 11540
warn:aString with:argument
claus
parents:
diff changeset
 11541
    "like Objects warn, but translates the string via the
claus
parents:
diff changeset
 11542
     resourcePack, thus giving a translated string automatically"
claus
parents:
diff changeset
 11543
4406
09339c622956 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
 11544
    super warn:(resources stringWithCRs:aString with:argument)
151
claus
parents: 145
diff changeset
 11545
!
claus
parents: 145
diff changeset
 11546
claus
parents: 145
diff changeset
 11547
warn:aString with:arg1 with:arg2
claus
parents: 145
diff changeset
 11548
    "like Objects warn, but translates the string via the
claus
parents: 145
diff changeset
 11549
     resourcePack, thus giving a translated string automatically"
claus
parents: 145
diff changeset
 11550
4406
09339c622956 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
 11551
    super warn:(resources stringWithCRs:aString with:arg1 with:arg2)
3182
6bbbe1943191 added #warn:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 3181
diff changeset
 11552
!
6bbbe1943191 added #warn:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 3181
diff changeset
 11553
6bbbe1943191 added #warn:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 3181
diff changeset
 11554
warn:aString with:arg1 with:arg2 with:arg3
6bbbe1943191 added #warn:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 3181
diff changeset
 11555
    "like Objects warn, but translates the string via the
6bbbe1943191 added #warn:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 3181
diff changeset
 11556
     resourcePack, thus giving a translated string automatically"
6bbbe1943191 added #warn:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 3181
diff changeset
 11557
4406
09339c622956 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
 11558
    super warn:(resources stringWithCRs:aString with:arg1 with:arg2 with:arg3)
135
claus
parents:
diff changeset
 11559
! !
claus
parents:
diff changeset
 11560
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11561
!SimpleView::AboutToOpenBoxNotificationSignal class methodsFor:'documentation'!
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11562
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11563
documentation
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11564
"
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11565
    this is a hook notification, raised right before a dialog box is about to be opened.
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11566
    This allows for standard dialogs (such as confirmers, choosers or notifiers) to
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11567
    be customized by additional widgets.
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11568
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11569
    i.e. its typical use is like:
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11570
	|doNotShowHolder|
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11571
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11572
	doNotShowHolder := false asValue.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11573
	Dialog aboutToOpenBoxNotificationSignal handle:[:ex |
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11574
	    |box|
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11575
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11576
	    box := ex box.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11577
	    box verticalPanel
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11578
		add:(CheckBox label:('Do not show this information in the future.')
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11579
			      model:doNotShowHolder).
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11580
	] do:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11581
	    Dialog information:'This is a standard information box.\(but has an additional check toggle in it)' withCRs.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11582
	].
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11583
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11584
    Another application is to suppress dialogs, by returning #abort from the query
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11585
    (of course, in real life, the Dialog call is deeply nested below the handler and done elsewhere):
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11586
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11587
	Dialog aboutToOpenBoxNotificationSignal
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11588
	    answer:#abort
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11589
	    do:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11590
		Dialog information:'This box is not shown.'
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11591
	    ].
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11592
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11593
    or to automatically answer all dialogs by simulating user entering a return:
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11594
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11595
	Dialog aboutToOpenBoxNotificationSignal
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11596
	    handle:[:ex |
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11597
		ex box windowGroup sensor
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11598
		    pushEvent:
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11599
			(WindowEvent
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11600
				keyPress:#Return
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11601
				rawKey:#Return
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11602
				hasShift:false ctrl:false alt:false meta:false
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11603
				button1:false button2:false button3:false
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11604
				x:1 y:1 view:ex box).
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11605
	    ] do:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11606
		Transcript showCR:(Dialog confirm:'Please confirm.')
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11607
	    ].
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11608
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11609
    or an escape:
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11610
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11611
	Dialog aboutToOpenBoxNotificationSignal
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11612
	    handle:[:ex |
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11613
		ex box windowGroup sensor
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11614
		    pushEvent:
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11615
			(WindowEvent
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11616
				keyPress:#Escape
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11617
				rawKey:#Escape
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11618
				hasShift:false ctrl:false alt:false meta:false
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11619
				button1:false button2:false button3:false
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11620
				x:1 y:1 view:ex box).
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11621
	    ] do:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11622
		Transcript showCR:(Dialog confirm:'Please confirm.')
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11623
	    ].
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11624
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11625
    Finally, a recorder may want to keep track of which dialogs have been opened:
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11626
    (of course, again, the Dialog calls are deeply nested below the handler and done elsewhere):
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11627
6291
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11628
	Dialog aboutToOpenBoxNotificationSignal handle:[:ex |
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11629
	    Transcript showCR:ex box topView label
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11630
	] do:[
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11631
	    Dialog information:'box #1.'.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11632
	    Dialog information:'box #2.'.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11633
	    Dialog confirm:'bla'.
65b57dca9902 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6289
diff changeset
 11634
	].
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11635
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11636
"
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11637
! !
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11638
5340
45fd6e8b756d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5296
diff changeset
 11639
!SimpleView::AboutToOpenBoxNotificationSignal methodsFor:'accessing'!
45fd6e8b756d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5296
diff changeset
 11640
6074
7e2bd99101d5 Added SimpleView::SboutToOpenBoxNotificationSignal>>application
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6072
diff changeset
 11641
application
6115
7b0730adc987 aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 6114
diff changeset
 11642
    ^ self box application
6074
7e2bd99101d5 Added SimpleView::SboutToOpenBoxNotificationSignal>>application
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6072
diff changeset
 11643
7e2bd99101d5 Added SimpleView::SboutToOpenBoxNotificationSignal>>application
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6072
diff changeset
 11644
    "Created: / 03-06-2013 / 17:33:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7e2bd99101d5 Added SimpleView::SboutToOpenBoxNotificationSignal>>application
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6072
diff changeset
 11645
!
7e2bd99101d5 Added SimpleView::SboutToOpenBoxNotificationSignal>>application
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6072
diff changeset
 11646
5770
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
 11647
box
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
 11648
    ^ parameter
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
 11649
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
 11650
    "Created: / 30-06-2011 / 19:24:02 / cg"
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
 11651
!
Claus Gittinger <cg@exept.de>
parents: 5749
diff changeset
 11652
5340
45fd6e8b756d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5296
diff changeset
 11653
dialogBeingOpened
45fd6e8b756d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5296
diff changeset
 11654
    ^ parameter
45fd6e8b756d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5296
diff changeset
 11655
! !
45fd6e8b756d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5296
diff changeset
 11656
2750
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
 11657
!SimpleView::ViewShape methodsFor:'queries'!
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
 11658
3366
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11659
isRoundShape
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11660
    ^ false
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11661
! !
2750
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
 11662
3377
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11663
!SimpleView::RoundViewShape methodsFor:'queries'!
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11664
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11665
isRoundShape
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11666
    ^ true
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11667
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11668
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11669
! !
9a9199a8bc3f must invoke findGUIResources, when an spec array is converted to
Claus Gittinger <cg@exept.de>
parents: 3375
diff changeset
 11670
2750
36b1a4d30882 moved round-view shape computation code to simpleView
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
 11671
!SimpleView::ArbitraryViewShape methodsFor:'accessing'!
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
 11672
3366
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11673
borderShapeForm
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11674
    "return the value of the instance variable 'borderShapeForm' (automatically generated)"
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11675
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11676
    ^ borderShapeForm
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11677
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11678
    "Created: 18.9.1997 / 11:04:29 / cg"
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11679
!
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11680
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11681
borderShapeForm:something
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11682
    "set the value of the instance variable 'borderShapeForm' (automatically generated)"
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11683
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11684
    borderShapeForm := something.
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11685
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11686
    "Created: 18.9.1997 / 11:04:29 / cg"
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11687
!
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11688
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11689
viewShapeForm
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11690
    "return the value of the instance variable 'viewShapeForm' (automatically generated)"
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11691
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11692
    ^ viewShapeForm
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11693
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11694
    "Created: 18.9.1997 / 11:04:29 / cg"
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11695
!
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11696
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11697
viewShapeForm:something
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11698
    "set the value of the instance variable 'viewShapeForm' (automatically generated)"
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11699
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11700
    viewShapeForm := something.
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11701
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11702
    "Created: 18.9.1997 / 11:04:29 / cg"
3750f8131471 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
 11703
! !
1903
285c7dc06ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1894
diff changeset
 11704
1101
ffeb697dd9e0 hasButtonMotionEventsFor -> hasButtonMotionEventFor
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
 11705
!SimpleView class methodsFor:'documentation'!
269
ea536bb319a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
 11706
5775
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
 11707
version
6880
f2af2640ad4d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6864
diff changeset
 11708
    ^ '$Header$'
5775
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
 11709
!
Claus Gittinger <cg@exept.de>
parents: 5774
diff changeset
 11710
5354
4a62930c1786 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
 11711
version_CVS
6880
f2af2640ad4d class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 6864
diff changeset
 11712
    ^ '$Header$'
6819
f91377f97414 Merged 1e33b4eeb725 and ee648b604f67 (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6800 6798
diff changeset
 11713
135
claus
parents:
diff changeset
 11714
! !
3745
8456462f2ac0 code beautifaction
Claus Gittinger <cg@exept.de>
parents: 3730
diff changeset
 11715
135
claus
parents:
diff changeset
 11716
SimpleView initialize!