InputView.st
author Claus Gittinger <cg@exept.de>
Tue, 10 Oct 2006 22:11:19 +0200
changeset 2244 99a72edca7ee
parent 1241 414114cfc5cc
child 2250 77b78d1ca422
permissions -rw-r--r--
automatically generated by browser
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
3f9277473954 Initial revision
claus
parents:
diff changeset
     1
"
6
4ac87e6bf82f *** empty log message ***
claus
parents: 5
diff changeset
     2
 COPYRIGHT (c) 1990 by Claus Gittinger
99
claus
parents: 96
diff changeset
     3
	      All Rights Reserved
0
3f9277473954 Initial revision
claus
parents:
diff changeset
     4
3f9277473954 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
3f9277473954 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
3f9277473954 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
3f9277473954 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
3f9277473954 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
3f9277473954 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
3f9277473954 Initial revision
claus
parents:
diff changeset
    11
"
3f9277473954 Initial revision
claus
parents:
diff changeset
    12
65
claus
parents: 23
diff changeset
    13
SimpleView subclass:#InputView
225
7c62c2ffb363 documentation
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
    14
	instanceVariableNames:'eventReceiver'
7c62c2ffb363 documentation
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
    15
	classVariableNames:''
7c62c2ffb363 documentation
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
    16
	poolDictionaries:''
235
236f3222fa88 class category changes
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
    17
	category:'Views-Special'
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    18
!
3f9277473954 Initial revision
claus
parents:
diff changeset
    19
449
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    20
!InputView class methodsFor:'documentation'!
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    22
copyright
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    23
"
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    24
 COPYRIGHT (c) 1990 by Claus Gittinger
99
claus
parents: 96
diff changeset
    25
	      All Rights Reserved
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    26
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    27
 This software is furnished under a license and may be used
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    28
 only in accordance with the terms of that license and with the
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    30
 be provided or otherwise made available to, or used by, any
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    31
 other person.  No title to or ownership of the software is
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    32
 hereby transferred.
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    33
"
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    34
!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    35
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    36
documentation
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    37
"
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    38
    a view for input only - forwarding all events to another object.
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    39
    This kind of view can be used to be laid ontop of another view to catch all
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    40
    input. (Interface builder)
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    41
    NOTICE: the event forwarding is a leftover from times when not delegation mechanism
225
7c62c2ffb363 documentation
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
    42
            existed - it will vanish - use delegates for new code.
7c62c2ffb363 documentation
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
    43
7c62c2ffb363 documentation
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
    44
    [author:]
7c62c2ffb363 documentation
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
    45
        Claus Gittinger
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    46
"
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    47
! !
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    48
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    49
!InputView methodsFor:'accessing'!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    50
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    51
eventReceiver:aView
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    52
    "set the view to which input events are forwarded"
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    53
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    54
    eventReceiver := aView
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    55
!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    56
286
b7f2e2aefae1 renamed #inputOnly to #isInputOnly
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    57
isInputOnly
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    58
    "return true, since this is a transparent input-only view"
286
b7f2e2aefae1 renamed #inputOnly to #isInputOnly
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    59
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    60
    ^ true
286
b7f2e2aefae1 renamed #inputOnly to #isInputOnly
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    61
b7f2e2aefae1 renamed #inputOnly to #isInputOnly
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    62
    "Created: 1.6.1996 / 13:22:31 / cg"
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    63
! !
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    64
449
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    65
!InputView methodsFor:'drag & drop'!
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    66
521
2937b6c596b3 drop arg is always a collection
Claus Gittinger <cg@exept.de>
parents: 449
diff changeset
    67
canDrop:aCollectionOfDropObjects
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    68
    "return true, if aCollectionOfDropObjects can be dropped here.
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    69
     Delegated to my eventReceiving view"
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    70
449
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    71
    eventReceiver notNil ifTrue:[
521
2937b6c596b3 drop arg is always a collection
Claus Gittinger <cg@exept.de>
parents: 449
diff changeset
    72
        ^ eventReceiver canDrop:aCollectionOfDropObjects
449
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    73
    ].
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    74
    ^ false
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    75
521
2937b6c596b3 drop arg is always a collection
Claus Gittinger <cg@exept.de>
parents: 449
diff changeset
    76
    "Modified: 11.4.1997 / 12:42:06 / cg"
449
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    77
!
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    78
521
2937b6c596b3 drop arg is always a collection
Claus Gittinger <cg@exept.de>
parents: 449
diff changeset
    79
drop:aCollectionOfDropObjects at:aPoint
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    80
    "drop aCollectionOfDropObjects here.
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    81
     Delegated to my eventReceiving view"
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    82
449
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    83
    eventReceiver notNil ifTrue:[
521
2937b6c596b3 drop arg is always a collection
Claus Gittinger <cg@exept.de>
parents: 449
diff changeset
    84
        eventReceiver drop:aCollectionOfDropObjects at:aPoint
449
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    85
    ].
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    86
521
2937b6c596b3 drop arg is always a collection
Claus Gittinger <cg@exept.de>
parents: 449
diff changeset
    87
    "Modified: 11.4.1997 / 12:43:41 / cg"
449
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    88
! !
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
    89
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    90
!InputView methodsFor:'event handling'!
3f9277473954 Initial revision
claus
parents:
diff changeset
    91
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    92
buttonMotion:state x:x y:y
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    93
    "redefined to forward the event to my eventReceiver"
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
    94
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    95
    eventReceiver notNil ifTrue:[
1185
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    96
        eventReceiver buttonMotion:state x:x y:y
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    97
    ] ifFalse:[
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    98
        super buttonMotion:state x:x y:y
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    99
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
   100
!
3f9277473954 Initial revision
claus
parents:
diff changeset
   101
3f9277473954 Initial revision
claus
parents:
diff changeset
   102
buttonPress:button x:x y:y
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   103
    "redefined to forward the event to my eventReceiver"
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
   104
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   105
    eventReceiver notNil ifTrue:[
1185
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   106
        eventReceiver buttonPress:button x:x y:y
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   107
    ] ifFalse:[
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   108
        super buttonPress:button x:x y:y
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   109
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
   110
!
3f9277473954 Initial revision
claus
parents:
diff changeset
   111
3f9277473954 Initial revision
claus
parents:
diff changeset
   112
buttonRelease:button x:x y:y
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   113
    "redefined to forward the event to my eventReceiver"
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
   114
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   115
    eventReceiver notNil ifTrue:[
1185
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   116
        eventReceiver buttonRelease:button x:x y:y
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   117
    ] ifFalse:[
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   118
        super buttonRelease:button x:x y:y
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   119
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
   120
!
3f9277473954 Initial revision
claus
parents:
diff changeset
   121
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   122
exposeX:x y:y width:w height:h
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   123
    "dummy - will never be received"
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   124
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   125
    ^ self
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   126
!
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   127
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   128
focusIn
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   129
    "redefined to forward the event to my eventReceiver"
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
   130
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   131
    eventReceiver notNil ifTrue:[
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   132
        eventReceiver focusIn
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   133
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
   134
!
3f9277473954 Initial revision
claus
parents:
diff changeset
   135
3f9277473954 Initial revision
claus
parents:
diff changeset
   136
focusOut
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   137
    "redefined to forward the event to my eventReceiver"
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
   138
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   139
    eventReceiver notNil ifTrue:[
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   140
        eventReceiver focusOut
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   141
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
   142
!
3f9277473954 Initial revision
claus
parents:
diff changeset
   143
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   144
keyPress:key x:x y:y
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   145
    "redefined to forward the event to my eventReceiver"
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   146
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   147
    eventReceiver notNil ifTrue:[
1185
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   148
        eventReceiver keyPress:key x:x y:y
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   149
    ] ifFalse:[
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   150
        super keyPress:key x:x y:y
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   151
    ]
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   152
!
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   153
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   154
keyRelease:key x:x y:y
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   155
    "redefined to forward the event to my eventReceiver"
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   156
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   157
    eventReceiver notNil ifTrue:[
1185
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   158
        eventReceiver keyRelease:key x:x y:y
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   159
    ] ifFalse:[
522d9c84f0a9 fix: if no delegate, perform normal (superclass)
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   160
        super keyRelease:key x:x y:y
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   161
    ]
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   162
!
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   163
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   164
pointerEnter:state x:x y:y
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   165
    "redefined to forward the event to my eventReceiver"
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
   166
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   167
    eventReceiver notNil ifTrue:[
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   168
        eventReceiver pointerEnter:state x:x y:y
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   169
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
   170
!
3f9277473954 Initial revision
claus
parents:
diff changeset
   171
3f9277473954 Initial revision
claus
parents:
diff changeset
   172
pointerLeave:state
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   173
    "redefined to forward the event to my eventReceiver"
21
66b31c91177f *** empty log message ***
claus
parents: 6
diff changeset
   174
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   175
    eventReceiver notNil ifTrue:[
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   176
        eventReceiver pointerLeave:state
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   177
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
   178
! !
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   179
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   180
!InputView methodsFor:'initialization'!
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   181
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   182
initialize
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   183
    super initialize.
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   184
    borderWidth := 0
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   185
! !
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   186
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   187
!InputView methodsFor:'redefined dummy'!
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   188
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   189
setViewBackground
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   190
    "dummy - inputviews have no background"
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   191
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   192
    ^ self
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   193
! !
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   194
449
9d18c9a66b59 delegate drop
ca
parents: 327
diff changeset
   195
!InputView class methodsFor:'documentation'!
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   196
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   197
version
1241
414114cfc5cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   198
    ^ '$Header: /cvs/stx/stx/libview2/InputView.st,v 1.18 1999-09-20 06:58:44 cg Exp $'
130
ddb0e9c49fc8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   199
! !