Wrapper.st
author fm
Mon, 11 Sep 2006 15:01:25 +0200
changeset 2209 e5c8505b8530
parent 1789 f52f0a0d8448
child 2662 c8338281bc33
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1996 by Claus Gittinger
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
1789
f52f0a0d8448 category
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    15
"{ Package: 'stx:libview2' }"
f52f0a0d8448 category
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    16
279
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
    17
VisualPart subclass:#Wrapper
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	instanceVariableNames:'component'
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	classVariableNames:''
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	poolDictionaries:''
1789
f52f0a0d8448 category
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    21
	category:'Compatibility-ST80-Graphics-Display Objects'
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
365
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    24
!Wrapper class methodsFor:'documentation'!
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
copyright
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 COPYRIGHT (c) 1996 by Claus Gittinger
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
              All Rights Reserved
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 This software is furnished under a license and may be used
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 only in accordance with the terms of that license and with the
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 inclusion of the above copyright notice.   This software may not
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 be provided or otherwise made available to, or used by, any
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 other person.  No title to or ownership of the software is
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 hereby transferred.
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
documentation
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    abstract superclass for all kinds of wrapping components
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
365
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    46
    This class and its subclasses (currently) exist mostly for
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    47
    ST-80 compatibility - to provide a home for ported PD classes,
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    48
    which depend on the VisualPart hierarchy.
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    49
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    50
    Notice: 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    51
        this class was implemented using protocol information
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    52
        from alpha testers, from reading PD programs and 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    53
        from the Hopkins/Horan book.
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    54
        - it may not be complete or compatible to the corresponding ST-80 class. 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    55
        If you encounter any incompatibilities, please forward a note 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    56
        describing the incompatibility verbal (i.e. no code) to the ST/X team.
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    57
        This is still being constructed - not yet finished.
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    58
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    [author:]
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
        Claus Gittinger
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
! !
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
365
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
    65
!Wrapper class methodsFor:'instance creation'!
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
on:aComponent
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
    ^ self new component:aComponent
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
    "Created: 8.5.1996 / 23:20:46 / cg"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
! !
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
!Wrapper methodsFor:'accessing'!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
component
247
7b29d5a02e68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
    76
    "return the wrappers component"
7b29d5a02e68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
    77
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
    ^ component
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
    "Created: 8.5.1996 / 23:17:30 / cg"
247
7b29d5a02e68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
    81
    "Modified: 9.5.1996 / 00:19:58 / cg"
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
component:someComponent
247
7b29d5a02e68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
    85
    "set the wrappers component"
7b29d5a02e68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
    86
279
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
    87
    component := someComponent.
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
    88
    component notNil ifTrue:[
283
f28c462b9d13 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
    89
        "/ temporary kludge - images are (currently) not
f28c462b9d13 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
    90
        "/ inheriting from visualComponent ...
292
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
    91
"/        (someComponent respondsTo:#container:) ifTrue:[
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
    92
            someComponent container:self.
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
    93
"/        ].
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
    94
        bounds isNil ifTrue:[
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
    95
            component bounds notNil ifTrue:[
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
    96
                bounds := component bounds
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
    97
            ]
283
f28c462b9d13 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
    98
        ]
279
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
    99
    ]
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
    "Created: 8.5.1996 / 23:17:46 / cg"
292
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   102
    "Modified: 5.6.1996 / 02:31:40 / cg"
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
! !
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
!Wrapper methodsFor:'accessing - bounds'!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
bounds:newBounds
246
9f80dbcbcd34 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   108
    "set my bounds - forwarded to the wrapped object"
9f80dbcbcd34 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   109
321
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   110
    newBounds ~= bounds ifTrue:[
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   111
        bounds := newBounds.
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   112
        component bounds:newBounds
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   113
    ].
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
    "Created: 8.5.1996 / 23:18:12 / cg"
321
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   116
    "Modified: 19.7.1996 / 17:47:34 / cg"
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
279
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   119
newBounds:newBounds containingBounds:containingBounds
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   120
    self bounds:newBounds
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   121
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   122
    "Created: 26.5.1996 / 16:50:49 / cg"
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   123
!
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   124
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
preferredBounds
246
9f80dbcbcd34 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   126
    "return my preferredBounds as the components preferredBounds"
9f80dbcbcd34 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   127
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
    ^ component preferredBounds
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
    "Created: 8.5.1996 / 23:18:53 / cg"
246
9f80dbcbcd34 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   131
    "Modified: 9.5.1996 / 00:10:32 / cg"
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
! !
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
!Wrapper methodsFor:'displaying'!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
2209
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   136
displayOn:aGCOrStream
246
9f80dbcbcd34 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   137
    "display myself - forwarded to the wrapped object"
9f80dbcbcd34 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   138
2209
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   139
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   140
    "/ ST/X (and some old ST80's) mean: draw-yourself on a GC.
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   141
    (aGCOrStream isStream or:[aGCOrStream == Transcript]) ifTrue:[
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   142
        self printOn:aGCOrStream.
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   143
        ^ self
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   144
    ].
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   145
    component displayOn:aGCOrStream
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
2209
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   147
    "Created: / 08-05-1996 / 23:19:24 / cg"
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   148
    "Modified: / 11-09-2006 / 15:01:24 / User"
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
! !
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
292
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   151
!Wrapper methodsFor:'queries'!
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   152
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   153
hasBorder
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   154
    ^ false
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   155
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   156
    "Created: 26.5.1996 / 16:47:37 / cg"
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   157
!
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   158
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   159
isWrapper
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   160
    ^ true
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   161
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   162
    "Created: 5.6.1996 / 01:04:30 / cg"
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   163
! !
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   164
279
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   165
!Wrapper methodsFor:'testing'!
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   166
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   167
containsPoint:aPoint
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   168
    ^ component containsPoint:aPoint
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   169
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   170
    "Created: 26.5.1996 / 16:48:00 / cg"
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   171
!
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   172
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   173
intersects:aRectangle
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   174
    ^ component intersects:aRectangle
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   175
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   176
    "Created: 26.5.1996 / 16:48:52 / cg"
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   177
! !
bf069aab8a8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
   178
292
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   179
!Wrapper methodsFor:'view protocol mimicri'!
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   180
321
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   181
containerMapped
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   182
    component containerMapped
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   183
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   184
    "Created: 19.7.1996 / 17:41:31 / cg"
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   185
!
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   186
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   187
containerUnmapped
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   188
    component containerUnmapped
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   189
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   190
    "Created: 19.7.1996 / 17:45:10 / cg"
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   191
!
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   192
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   193
destroy
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   194
    component destroy
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   195
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   196
    "Created: 19.7.1996 / 17:26:02 / cg"
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   197
!
6421da8810e2 more view mimicri;
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
   198
292
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   199
realize
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   200
    "my container realized itself. Forward this to my component"
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   201
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   202
    component realize.
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   203
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   204
    "Created: 4.6.1996 / 21:29:27 / cg"
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   205
!
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   206
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   207
removeSubView:aView
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   208
    component := nil
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   209
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   210
    "Created: 4.6.1996 / 21:39:50 / cg"
1220
39e5e28042da protocol fixes to make examples work again
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   211
!
39e5e28042da protocol fixes to make examples work again
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   212
39e5e28042da protocol fixes to make examples work again
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   213
withAllSubViewsDo:aBlock
39e5e28042da protocol fixes to make examples work again
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   214
    aBlock value:self.
39e5e28042da protocol fixes to make examples work again
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   215
    component notNil ifTrue:[
39e5e28042da protocol fixes to make examples work again
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   216
        component withAllSubViewsDo:aBlock
39e5e28042da protocol fixes to make examples work again
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   217
    ].
39e5e28042da protocol fixes to make examples work again
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   218
292
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   219
! !
60fbf13dfc8c prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 283
diff changeset
   220
365
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
   221
!Wrapper class methodsFor:'documentation'!
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   223
version
2209
e5c8505b8530 *** empty log message ***
fm
parents: 1789
diff changeset
   224
    ^ '$Header: /cvs/stx/stx/libview2/Wrapper.st,v 1.12 2006-09-11 13:01:25 fm Exp $'
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
! !