WindowSensor.st
author Claus Gittinger <cg@exept.de>
Fri, 27 Feb 1998 15:22:26 +0100
changeset 2072 a9770eb53908
parent 2058 59a52789086a
child 2085 908c3baa4a56
permissions -rw-r--r--
reenabled flushing of expose events before map/unmap event.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
     1
"
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
72
3e84121988c3 *** empty log message ***
claus
parents: 66
diff changeset
     3
	      All Rights Reserved
26
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
     4
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
     5
 This software is furnished under a license and may be used
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
     6
 only in accordance with the terms of that license and with the
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
     8
 be provided or otherwise made available to, or used by, any
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
     9
 other person.  No title to or ownership of the software is
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
    10
 hereby transferred.
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
    11
"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
    12
48194c26a46c Initial revision
claus
parents:
diff changeset
    13
Object subclass:#WindowSensor
326
f04810e0425a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 322
diff changeset
    14
	instanceVariableNames:'eventSemaphore damage mouseAndKeyboard compressMotionEvents
260
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
    15
		ignoreUserInput exposeEventSemaphore catchExpose gotExpose
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
    16
		gotOtherEvent translateKeyboardEvents shiftDown ctrlDown metaDown
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
    17
		altDown leftButtonDown middleButtonDown rightButtonDown
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
    18
		eventListener keyboardListener ignoreExposeEvents accessLock'
326
f04810e0425a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 322
diff changeset
    19
	classVariableNames:'ControlCEnabled EventListener ComposeTable GotCompose Compose1'
f04810e0425a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 322
diff changeset
    20
	poolDictionaries:''
f04810e0425a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 322
diff changeset
    21
	category:'Interface-Support'
0
48194c26a46c Initial revision
claus
parents:
diff changeset
    22
!
48194c26a46c Initial revision
claus
parents:
diff changeset
    23
1082
44d671491f5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
    24
!WindowSensor class methodsFor:'documentation'!
46
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    25
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    26
copyright
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    27
"
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    28
 COPYRIGHT (c) 1993 by Claus Gittinger
72
3e84121988c3 *** empty log message ***
claus
parents: 66
diff changeset
    29
	      All Rights Reserved
46
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    30
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    31
 This software is furnished under a license and may be used
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    32
 only in accordance with the terms of that license and with the
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    33
 inclusion of the above copyright notice.   This software may not
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    34
 be provided or otherwise made available to, or used by, any
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    35
 other person.  No title to or ownership of the software is
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    36
 hereby transferred.
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    37
"
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    38
!
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    39
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    40
documentation
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
    41
"
72
3e84121988c3 *** empty log message ***
claus
parents: 66
diff changeset
    42
    Instances of this class keep track of events and damage areas for a group of 
3e84121988c3 *** empty log message ***
claus
parents: 66
diff changeset
    43
    views. All incoming expose rectangles and events (from Workstation) are 
144
claus
parents: 140
diff changeset
    44
    collected here, until someone (usually the windowGroup process)
claus
parents: 140
diff changeset
    45
    gets a chance to handle them. 
claus
parents: 140
diff changeset
    46
    In contrast to ST-80 (which has one windowSensor per window), ST/X usually
claus
parents: 140
diff changeset
    47
    only assigns one sensor per windowGroup.
157
claus
parents: 154
diff changeset
    48
    (however, you could manually arrange for per view private sensors
claus
parents: 154
diff changeset
    49
     - at least, theoretically)
144
claus
parents: 140
diff changeset
    50
72
3e84121988c3 *** empty log message ***
claus
parents: 66
diff changeset
    51
    When adding an expose rectangle, WindowSensor tries to merge the rectangle 
3e84121988c3 *** empty log message ***
claus
parents: 66
diff changeset
    52
    with the list of existing damages to minimize redrawing.
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
    53
158
claus
parents: 157
diff changeset
    54
    Processing of compose key sequences is done here; if a Compose
claus
parents: 157
diff changeset
    55
    key event arrives, the following 2 characters are used to search an
claus
parents: 157
diff changeset
    56
    entry in the composeTable, and are replaced by the character found there.
claus
parents: 157
diff changeset
    57
    For example, pressing Compose-a-` gives the french a-accent-grave character;
claus
parents: 157
diff changeset
    58
    pressing Compose-a-e gives the ae ligature.
claus
parents: 157
diff changeset
    59
144
claus
parents: 140
diff changeset
    60
    Beside the above, windowSensors provide facilities (hooks) to allow
157
claus
parents: 154
diff changeset
    61
    a so-called 'eventListener' to get the event before it is entered into
144
claus
parents: 140
diff changeset
    62
    the queue. There are 3 possible listening hooks available:
claus
parents: 140
diff changeset
    63
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
    64
	a global EventListener - gets keybd/mouse events for all views
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
    65
	a per-sensor eventListener - gets only keybd/mouse events for this sensors wGroup
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
    66
	a per-sensor keyboardListener - only gets keyboard events for this sensors wGroup
144
claus
parents: 140
diff changeset
    67
172
claus
parents: 158
diff changeset
    68
    (actually, there are two more mechanisms, event delegation which allows
claus
parents: 158
diff changeset
    69
     delegation of key- and buttonEvents of a specific view,
claus
parents: 158
diff changeset
    70
     and per-windowGroup eventHooks)
144
claus
parents: 140
diff changeset
    71
claus
parents: 140
diff changeset
    72
    The global eventListener is installed via a class method (eventListener:) to
claus
parents: 140
diff changeset
    73
    the WindowSensor class; local listeners are installed via instance methods.
claus
parents: 140
diff changeset
    74
    Each listener should return true, if it handled the event and that event should
claus
parents: 140
diff changeset
    75
    therefore NOT be enqueued. Likewise, if it returns false, the event is
157
claus
parents: 154
diff changeset
    76
    processed as usual (i.e. enqueued and forwarded to the views controller).
claus
parents: 154
diff changeset
    77
144
claus
parents: 140
diff changeset
    78
    The global listener is called before the local listener, which is called
claus
parents: 140
diff changeset
    79
    before the keyboard listener. If any returns true, later listeners wont get
claus
parents: 140
diff changeset
    80
    the event.
claus
parents: 140
diff changeset
    81
    EventListeners were added to allow the implementation of event recorders
157
claus
parents: 154
diff changeset
    82
    or other spy functionality. They also allow hooking up views which otherwise
claus
parents: 154
diff changeset
    83
    insist on doing things themself.
144
claus
parents: 140
diff changeset
    84
claus
parents: 140
diff changeset
    85
    Notice, that beside event listening, you can also define a delegate for
claus
parents: 140
diff changeset
    86
    a views keyboard and button events. 
claus
parents: 140
diff changeset
    87
    Read the documentation in WindowEvent for more info.
claus
parents: 140
diff changeset
    88
claus
parents: 140
diff changeset
    89
598
1a2339e902d4 commentary
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
    90
    [instance variables:]
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
    91
	eventSemaphore          <Semaphore>     the semaphore to be signalled when an event
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
    92
						(or damage) arrives
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
    93
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
    94
	damage                  <Collection>    collection of damage events
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
    95
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
    96
	mouseAndKeyboard        <Collection>    collection of user events
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
    97
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
    98
	compressMotionEvents    <Boolean>       if true, multiple motion events are
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
    99
						compressed to one event. If false, each
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   100
						event is handled individual.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   101
						(should be set to false when doing free-hand drawing)
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   102
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   103
	ignoreUserInput         <Boolean>       if true, key & button events are ignored
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   104
						(usually set to true by WindowGroup, while a
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   105
						 modalbox covers a view)
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   106
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   107
	shiftDown               <Boolean>       true while shift/meta/control-key is pressed
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   108
	metaDown                                (to support ST-80 style query: sensor shiftDown)
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   109
	ctrlDown
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   110
	altDown                                 (notice, that on most systems, alt and meta key is
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   111
						 the same, both reported as #Alt)
72
3e84121988c3 *** empty log message ***
claus
parents: 66
diff changeset
   112
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   113
	exposeEventSemaphore    <Semaphore>     X-special: semaphore to be signalled when
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   114
						expose event arrives after a copyArea.
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   115
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   116
	catchExpose             <SetOfView>     if nonEMpty, the drawables which wait for
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   117
						an expose/noExpose event.  (after a copyArea)
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   118
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   119
	gotExpose               <SetOfView>     the set of drawables which got an expose/noExpose
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   120
						event.  (after a copyarea)
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   121
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   122
	gotOtherEvent           <SetOfView>     set of drawables which received if other events,
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   123
						while waiting for expose (after a copyarea).
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   124
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   125
	translateKeyboardEvents <Boolean>       if true, keyboard events are translated via
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   126
						the devices leyboardMap; if false, they
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   127
						are reported as raw-keys. Default is true.
81
4ba554473294 *** empty log message ***
claus
parents: 78
diff changeset
   128
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   129
	eventListener           <Object>        if non nil, this one will get all pointer
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   130
						and keyboard events for this sensors views first.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   131
						If it returns true, the event is supposed to
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   132
						be already handled by the listener and not sent to
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   133
						the view. If false, the event is handled as usual.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   134
						This allows applications to catch events for any of
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   135
						its views.
140
claus
parents: 133
diff changeset
   136
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   137
	keyboardListener        <Object>        if non nil, this one will get all keyboard events 
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   138
						for this sensors views first (but after the eventListener,
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   139
						if any).
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   140
						If it returns true, the event is supposed to
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   141
						be already handled by the listener and not sent to
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   142
						the view. If false, the event is handled as usual.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   143
						This allows applications to catch events for any of
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   144
						its views.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   145
						ApplicationModels can catch keyboard input with:
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   146
						    postOpenWith:aBuilder
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   147
							aBuilder window sensor keyboardListener:self
140
claus
parents: 133
diff changeset
   148
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   149
	accessLock              <Semaphore>     controls access to the event queues
140
claus
parents: 133
diff changeset
   150
598
1a2339e902d4 commentary
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   151
    [class variables:]
140
claus
parents: 133
diff changeset
   152
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   153
	ControlCEnabled         <Boolean>       if true (which is the default) Control-C
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   154
						will interrupt the process handling the
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   155
						view.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   156
						For secure stand-alone applications,
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   157
						this can be set to false, in which case 
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   158
						Control-C does NOT interrupt the process.
124
f5b3dd3d38db *** empty log message ***
claus
parents: 118
diff changeset
   159
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   160
	EventListener           <Object>        if non nil, this one will get all pointer
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   161
						and keyboard events for ALL views first.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   162
						If it returns true, the event is supposed to
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   163
						be already handled by the listener and not enqueued. 
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   164
						If false, the event is handled as usual.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   165
						This allows overall event catchers to be
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   166
						installed for example to implement event
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   167
						recorders, active help managers etc.
157
claus
parents: 154
diff changeset
   168
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   169
	ComposeTable            <Array>         compose-key translation table
598
1a2339e902d4 commentary
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   170
1a2339e902d4 commentary
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   171
612
8758d0c9933e documentation
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
   172
    [author:]
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   173
	Claus Gittinger
612
8758d0c9933e documentation
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
   174
598
1a2339e902d4 commentary
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   175
    [see also:]
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   176
	WindowGroup 
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   177
	WindowEvent KeyboardMap KeyboardForwarder EventListener
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   178
	DeviceWorkstation View
46
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
   179
"
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
   180
! !
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
   181
1082
44d671491f5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
   182
!WindowSensor class methodsFor:'initialization'!
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   183
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   184
initialize
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   185
    "initialize the classes constants"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   186
81
4ba554473294 *** empty log message ***
claus
parents: 78
diff changeset
   187
    ControlCEnabled := true.
158
claus
parents: 157
diff changeset
   188
386
f9a80cac659e only init once
Claus Gittinger <cg@exept.de>
parents: 371
diff changeset
   189
    ComposeTable isNil ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   190
	self initializeComposeKeyTable
386
f9a80cac659e only init once
Claus Gittinger <cg@exept.de>
parents: 371
diff changeset
   191
    ]
157
claus
parents: 154
diff changeset
   192
claus
parents: 154
diff changeset
   193
    "
claus
parents: 154
diff changeset
   194
     WindowSensor initialize
claus
parents: 154
diff changeset
   195
    "
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   196
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   197
    "Modified: 22.4.1996 / 16:19:24 / cg"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   198
!
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   199
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   200
initializeComposeKeyTable
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   201
    "setup the composeKey table"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   202
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   203
    ComposeTable := #(
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   204
	"/ format is:
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   205
	"/ ( key1 key2 <character or asciiValue> )
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   206
	"/
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   207
	($+ $+ $#)         "/ number-sign
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   208
	($A $A $@)         "/ at-sign
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   209
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   210
	($( $- ${)         "/ left brace
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   211
	($) $- $})         "/ right brace
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   212
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   213
	($| $c 16rA2)      "/ cent-sign 
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   214
	($| $S $$)         "/ dollar-sign
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   215
	($= $L 16rA3)      "/ pound-sign     
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   216
	($= $Y 16rA5)      "/ yen-sign        
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   217
	($!! $s 16rA7)      "/ section-sign    
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   218
	($O $C 16rA9)      "/ copyright        
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   219
	($< $< 16rAB)      "/ french <<-quotes 
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   220
	($O $R 16rAE)      "/ registered       
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   221
	($/ $u 16rB5)      "/ greek mu         
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   222
	($!! $p 16rB6)      "/ paragraph sign   
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   223
	($> $> 16rBB)      "/ french >> quotes 
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   224
	($^ $0 16rB0)      "/ degree sign      
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   225
	($+ $- 16rB1)      "/ plus-minus       
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   226
	($^ $2 16rB2)      "/ superscript-2    
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   227
	($^ $3 16rB3)      "/ superscript-3    
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   228
	($^ $. 16rB7)      "/ middle dot       
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   229
	($^ $1 16rB9)      "/ superscript-1    
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   230
	($1 $4 16rBC)      "/ 1/4              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   231
	($1 $2 16rBD)      "/ 1/2              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   232
	($3 $4 16rBE)      "/ 3/4              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   233
	($? $? 16rBF)      "/ ?-inverted       
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   234
	($- $: 16rF7)      "/ divide           
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   235
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   236
	"/ diacriticals: Compose diacrit character
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   237
	"/ grave
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   238
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   239
	($A $` 16rC0)      "/ A-`              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   240
	($a $` 16rE0)      "/ a-`              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   241
	($E $` 16rC8)      "/ E-`              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   242
	($e $` 16rE8)      "/ e-`              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   243
	($I $` 16rCC)      "/ I-`              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   244
	($i $` 16rEC)      "/ i-`              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   245
	($O $` 16rD2)      "/ O-`              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   246
	($o $` 16rF2)      "/ o-`              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   247
	($U $` 16rD9)      "/ U-`              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   248
	($u $` 16rF9)      "/ u-`              
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   249
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   250
	"/ acute
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   251
	($A $' 16rC1)      "/ A-'             
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   252
	($a $' 16rE1)      "/ a-'             
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   253
	($E $' 16rC9)      "/ E-'            
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   254
	($e $' 16rE9)      "/ e-'           
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   255
	($I $' 16rCD)      "/ I-'          
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   256
	($i $' 16rED)      "/ i-'         
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   257
	($O $' 16rD3)      "/ O-'        
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   258
	($o $' 16rF3)      "/ o-'       
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   259
	($U $' 16rDA)      "/ U-'      
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   260
	($u $' 16rFA)      "/ u-'     
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   261
	($Y $' 16rDD)      "/ Y-'    
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   262
	($y $' 16rFD)      "/ y-'   
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   263
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   264
	"/ circumflex
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   265
	($A $^ 16rC2)      "/ A-^              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   266
	($a $^ 16rE2)      "/ a-^             
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   267
	($E $^ 16rCA)      "/ E-^            
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   268
	($e $^ 16rEA)      "/ e-^           
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   269
	($I $^ 16rCE)      "/ I-^          
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   270
	($i $^ 16rEE)      "/ i-^         
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   271
	($O $^ 16rD4)      "/ O-^        
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   272
	($o $^ 16rF4)      "/ o-^       
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   273
	($U $^ 16rDB)      "/ U-^      
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   274
	($u $^ 16rFB)      "/ u-^     
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   275
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   276
	"/ tilde
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   277
	($A $~ 16rC3)      "/ A-~              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   278
	($a $~ 16rE3)      "/ a-~             
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   279
	($O $~ 16rD5)      "/ O-~            
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   280
	($o $~ 16rF5)      "/ o-~           
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   281
	($N $~ 16rD1)      "/ N-tilde      
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   282
	($n $~ 16rF1)      "/ n-~         
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   283
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   284
	"/ ring above
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   285
	($a $* 16rE5)      "/ a-*              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   286
	($A $* 16rC5)      "/ A-*             
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   287
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   288
	"/ cedille
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   289
	($C $, 16rC7)      "/ C-,              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   290
	($c $, 16rE7)      "/ c-,             
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   291
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   292
	"/ dieresis
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   293
	($A $" 16rC4)      "/ A-"              
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   294
	($a $" 16rE4)      "/ a-"             
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   295
	($E $" 16rCB)      "/ E-"            
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   296
	($e $" 16rEB)      "/ e-"           
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   297
	($I $" 16rCF)      "/ I-"          
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   298
	($i $" 16rEF)      "/ i-"         
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   299
	($O $" 16rD6)      "/ O-"        
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   300
	($o $" 16rF6)      "/ o-"       
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   301
	($U $" 16rDC)      "/ U-"      
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   302
	($u $" 16rFC)      "/ u-"     
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   303
	($y $" 16rFF)      "/ y-"    
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   304
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   305
	"/ slashed
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   306
	($o $/ 16rF8)      "/ o-/        
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   307
	($O $/ 16rD8)      "/ O-/    
608
3370e1f983d4 o-slash compose sequence
Claus Gittinger <cg@exept.de>
parents: 598
diff changeset
   308
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   309
	"/ ligatures
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   310
	($s $s 16rDF)      "/ german sz        
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   311
	($a $e 16rE6)      "/ (french) ae     
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   312
	($A $E 16rC6)      "/ (french) AE    
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   313
    ).
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   314
608
3370e1f983d4 o-slash compose sequence
Claus Gittinger <cg@exept.de>
parents: 598
diff changeset
   315
    "              
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   316
     WindowSensor initializeComposeKeyTable
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   317
    "
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   318
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   319
    "Created: 22.4.1996 / 14:06:43 / cg"
608
3370e1f983d4 o-slash compose sequence
Claus Gittinger <cg@exept.de>
parents: 598
diff changeset
   320
    "Modified: 24.4.1996 / 16:37:08 / cg"
140
claus
parents: 133
diff changeset
   321
! !
81
4ba554473294 *** empty log message ***
claus
parents: 78
diff changeset
   322
1082
44d671491f5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
   323
!WindowSensor class methodsFor:'instance creation'!
140
claus
parents: 133
diff changeset
   324
claus
parents: 133
diff changeset
   325
new
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   326
    "return a new initialized instance"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   327
140
claus
parents: 133
diff changeset
   328
    ^ self basicNew initialize
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   329
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
   330
    "Modified: 22.4.1996 / 16:19:40 / cg"
124
f5b3dd3d38db *** empty log message ***
claus
parents: 118
diff changeset
   331
! !
f5b3dd3d38db *** empty log message ***
claus
parents: 118
diff changeset
   332
1082
44d671491f5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
   333
!WindowSensor class methodsFor:'accessing'!
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   334
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   335
composeTable
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   336
    "return the compose-key table.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   337
     Entries consist of 3-element arrays each, where
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   338
     the first two entries (of each entry) are the raw characters,
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   339
     and the third is the resulting composed-key"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   340
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   341
    ^ ComposeTable
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   342
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   343
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   344
composeTable:aTable
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   345
    "set the compose-key table.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   346
     Entries consist of 3-element arrays each, where
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   347
     the first two entries (of each entry) are the raw characters,
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   348
     and the third is the resulting composed-key"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   349
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   350
    ComposeTable := aTable
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   351
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   352
144
claus
parents: 140
diff changeset
   353
controlCEnabled:aBoolean
claus
parents: 140
diff changeset
   354
    "enable/disable Control-C processing. 
claus
parents: 140
diff changeset
   355
     If enabled, pressing CNTL-C in a view will interrupt it and bring
1940
83012f66306a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1873
diff changeset
   356
     its process into the debugger (actually raising a UserInterrupt signal).
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   357
     Otherwise, CNTL-C is sent to the view like any other key.
144
claus
parents: 140
diff changeset
   358
     The default is true (enabled).
1940
83012f66306a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1873
diff changeset
   359
     Be very careful - only disable CNTL-C handling for well-debugged
83012f66306a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1873
diff changeset
   360
     applications ... however, even if disabled, there still is the CNTL-C
83012f66306a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1873
diff changeset
   361
     key on the startup (x)-terminal window (which can also be disabled).
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   362
    "
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   363
144
claus
parents: 140
diff changeset
   364
    ControlCEnabled := aBoolean
1940
83012f66306a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1873
diff changeset
   365
83012f66306a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1873
diff changeset
   366
    "Modified: / 29.10.1997 / 15:48:29 / cg"
124
f5b3dd3d38db *** empty log message ***
claus
parents: 118
diff changeset
   367
!
f5b3dd3d38db *** empty log message ***
claus
parents: 118
diff changeset
   368
f5b3dd3d38db *** empty log message ***
claus
parents: 118
diff changeset
   369
eventListener
f5b3dd3d38db *** empty log message ***
claus
parents: 118
diff changeset
   370
    "return the eventListener 
f5b3dd3d38db *** empty log message ***
claus
parents: 118
diff changeset
   371
     - see documentation for what this can be used for"
f5b3dd3d38db *** empty log message ***
claus
parents: 118
diff changeset
   372
f5b3dd3d38db *** empty log message ***
claus
parents: 118
diff changeset
   373
    ^ EventListener
157
claus
parents: 154
diff changeset
   374
!
claus
parents: 154
diff changeset
   375
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   376
eventListener:aListener
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   377
    "set the eventListener 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   378
     - see documentation for what this can be used for"
157
claus
parents: 154
diff changeset
   379
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   380
    EventListener := aListener
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   381
! !
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
   382
1082
44d671491f5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
   383
!WindowSensor class methodsFor:'queries'!
133
claus
parents: 124
diff changeset
   384
claus
parents: 124
diff changeset
   385
cursorPoint
140
claus
parents: 133
diff changeset
   386
    "ST-80 compatibility: 
157
claus
parents: 154
diff changeset
   387
     return the position of the cursor on the current display"
133
claus
parents: 124
diff changeset
   388
153
claus
parents: 152
diff changeset
   389
    ^ Screen current pointerPosition
133
claus
parents: 124
diff changeset
   390
claus
parents: 124
diff changeset
   391
    "
claus
parents: 124
diff changeset
   392
     WindowSensor cursorPoint
claus
parents: 124
diff changeset
   393
    "
claus
parents: 124
diff changeset
   394
! !
claus
parents: 124
diff changeset
   395
1412
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   396
!WindowSensor methodsFor:'ST-80 compatibility'!
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   397
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   398
eventQuit:event
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   399
    "ST-80 compatibility:
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   400
     push an event for terminating the topViews application"
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   401
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   402
    ^ self pushEvent:(WindowEvent
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   403
                             for:nil
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   404
                             type:#quit)
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   405
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   406
    "Modified: 3.3.1997 / 20:15:00 / cg"
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   407
! !
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   408
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   409
!WindowSensor methodsFor:'accessing'!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   410
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   411
compressMotionEvents:aBoolean
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   412
    "turn on/off motion event compression"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   413
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   414
    compressMotionEvents := aBoolean
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   415
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   416
1847
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   417
criticalEventQueueAccess:aBlock
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   418
    |wasBlocked|
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   419
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   420
    wasBlocked := Processor activeProcess blockInterrupts.
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   421
    [
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   422
        accessLock critical:aBlock
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   423
    ] valueNowOrOnUnwindDo:[
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   424
        wasBlocked ifFalse:[
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   425
            Processor activeProcess unblockInterrupts.
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   426
        ]
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   427
    ]
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   428
!
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   429
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   430
eventListener
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   431
    "return the eventListener 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   432
     - see documentation for what this can be used for"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   433
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   434
    ^ eventListener
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   435
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   436
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   437
eventListener:aListener
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   438
    "set the eventListener 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   439
     - see documentation for what this can be used for"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   440
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   441
    eventListener := aListener
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   442
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   443
!
140
claus
parents: 133
diff changeset
   444
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   445
eventSemaphore
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   446
    "return the semaphore used to signal event arrival"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   447
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   448
    ^ eventSemaphore
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   449
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   450
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   451
eventSemaphore:aSemaphore
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   452
    "set the semaphore used to signal event arrival"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   453
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   454
    eventSemaphore := aSemaphore
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   455
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   456
703
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   457
ignoreExposeEvents:aBoolean
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   458
    ignoreExposeEvents := aBoolean
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   459
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   460
    "Created: 21.5.1996 / 18:21:18 / cg"
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   461
!
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   462
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   463
ignoreUserInput
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   464
    "return true, if Ctrl-C processing is currently turned off"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   465
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   466
    ^ ignoreUserInput
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   467
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   468
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   469
ignoreUserInput:aBoolean
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   470
    "turn on/off ignoring of Ctrl-C processing"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   471
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   472
    ignoreUserInput := aBoolean
140
claus
parents: 133
diff changeset
   473
!
claus
parents: 133
diff changeset
   474
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   475
keyboardListener
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   476
    "return the keyboardListener 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   477
     - see documentation for what this can be used for"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   478
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   479
    ^ keyboardListener
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   480
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   481
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   482
keyboardListener:aListener
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   483
    "set the keyboardListener 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   484
     - see documentation for what this can be used for"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   485
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   486
    keyboardListener := aListener
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   487
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   488
! !
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   489
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   490
!WindowSensor methodsFor:'event flushing'!
144
claus
parents: 140
diff changeset
   491
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   492
compressKeyPressEventsWithKey:aKey
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   493
    "count and remove multiple pending keyPress events for the
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   494
     same key, aKey. This is currently used in TextViews to compress
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   495
     multiple cursorUp/cursorDown events and do the scroll in one
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   496
     operation. (to avoid run-after-cursor on slow displays)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   497
2022
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   498
    |n ev evKey|
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   499
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   500
    n := 0.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   501
    ev := self pendingEvent.
2022
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   502
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   503
    [ev notNil and:[ev isKeyEvent]] whileTrue:[
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   504
        evKey := ev arguments at:1.
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   505
        (evKey == aKey) ifTrue:[
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   506
            ev isKeyReleaseEvent ifTrue:[
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   507
                self nextEvent.
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   508
                ev := self pendingEvent.
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   509
            ] ifFalse:[
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   510
                n := n + 1.
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   511
                self nextEvent.
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   512
                ev := self pendingEvent.
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   513
            ]
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   514
        ] ifFalse:[
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   515
            ev := nil
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   516
        ]
144
claus
parents: 140
diff changeset
   517
    ].
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   518
    ^ n
2022
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   519
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
   520
    "Modified: / 27.1.1998 / 14:15:00 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   521
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   522
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   523
flushEventsFor:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   524
    "throw away all events for aView, 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   525
     or any view, if the argument is nil."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   526
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   527
    self flushExposeEventsFor:aView.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   528
    self flushUserEventsFor:aView.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   529
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   530
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   531
flushEventsFor:aView inQueue:anEventQueue and:aCondition
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   532
    "throw away all pending damage events for aView, 
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   533
     for which aCondition returns true.
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   534
     Or any view for which aCondition returns true, if the argument is nil. 
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   535
     A helper for the various flush entries."
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   536
1847
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   537
    self criticalEventQueueAccess:[
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   538
        |nEvent "{ Class: SmallInteger }" anEvent|
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   539
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   540
        damage notNil ifTrue:[
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   541
            nEvent := anEventQueue size.
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   542
            1 to:nEvent do:[:index |
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   543
                anEvent := anEventQueue at:index.
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   544
                anEvent notNil ifTrue:[
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   545
                    (aView isNil or:[anEvent view == aView]) ifTrue:[
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   546
                        (aCondition value:anEvent) ifTrue:[
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   547
                            anEventQueue at:index put:nil
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   548
                        ]
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   549
                    ]
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   550
                ]
1847
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   551
            ]
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   552
        ].
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   553
    ]
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   554
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   555
    "Created: 28.6.1997 / 16:11:35 / cg"
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   556
    "Modified: 6.8.1997 / 20:31:34 / cg"
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   557
!
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   558
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   559
flushExposeEvents
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   560
    "throw away all pending expose events; this
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   561
     can be done after a full redraw (or in views, which are
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   562
     doing full redraws anly)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   563
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   564
    self
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   565
        flushEventsFor:nil inQueue:damage and:[:event | event isDamage].
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   566
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   567
    "Modified: 6.8.1997 / 20:31:45 / cg"
144
claus
parents: 140
diff changeset
   568
!
claus
parents: 140
diff changeset
   569
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   570
flushExposeEventsFor:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   571
    "throw away all pending expose events for aView, 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   572
     or any view, if the argument is nil. 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   573
     This can be done after a full redraw 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   574
     (or in views, which are always doing full redraws -
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   575
      instead of drawing the clip-area only)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   576
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   577
    self
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   578
        flushEventsFor:aView inQueue:damage and:[:event | event isDamage].
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   579
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   580
    "Modified: 6.8.1997 / 20:31:54 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   581
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   582
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   583
flushKeyboard
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   584
    "ST-80 compatibility: throw away all pending keyboard events"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   585
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   586
    self flushKeyboardFor:nil
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   587
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   588
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   589
flushKeyboardFor:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   590
    "throw away all pending keyboard events for aView, 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   591
     or any view, if the argument is nil." 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   592
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   593
    self
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   594
        flushEventsFor:aView inQueue:mouseAndKeyboard 
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   595
        and:[:event | event isKeyEvent]
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   596
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   597
    "Modified: 6.8.1997 / 20:32:05 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   598
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   599
1731
ca
parents: 1616
diff changeset
   600
flushMotionEventsFor:aView
ca
parents: 1616
diff changeset
   601
    "throw away all pending motion events for aView, 
ca
parents: 1616
diff changeset
   602
     or for any view, if the argument is nil." 
ca
parents: 1616
diff changeset
   603
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   604
    self
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   605
        flushEventsFor:aView inQueue:mouseAndKeyboard 
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   606
        and:[:event | event isButtonMotionEvent]
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   607
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   608
    "Modified: 6.8.1997 / 20:32:10 / cg"
1731
ca
parents: 1616
diff changeset
   609
!
ca
parents: 1616
diff changeset
   610
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   611
flushUserEvents
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   612
    "throw away all pending user events"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   613
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   614
    (mouseAndKeyboard isNil or:[mouseAndKeyboard size > 0]) ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   615
	self flushUserEventsFor:nil
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   616
    ].
1159
e5247f8a48f3 do not flush synthetic events in #flushUserEvents
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
   617
e5247f8a48f3 do not flush synthetic events in #flushUserEvents
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
   618
    "Modified: 8.1.1997 / 11:23:11 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   619
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   620
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   621
flushUserEventsFor:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   622
    "throw away all pending user events for aView, 
1159
e5247f8a48f3 do not flush synthetic events in #flushUserEvents
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
   623
     or for any view, if the argument is nil." 
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   624
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   625
    self
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   626
        flushEventsFor:aView inQueue:mouseAndKeyboard 
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   627
        and:[:event | event isUserEvent]
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
   628
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   629
    "Modified: 6.8.1997 / 20:32:14 / cg"
157
claus
parents: 154
diff changeset
   630
! !
claus
parents: 154
diff changeset
   631
claus
parents: 154
diff changeset
   632
!WindowSensor methodsFor:'event processing'!
claus
parents: 154
diff changeset
   633
140
claus
parents: 133
diff changeset
   634
buttonMotion:state x:x y:y view:aView
claus
parents: 133
diff changeset
   635
    "mouse was moved - this is sent from the device (Display)"
claus
parents: 133
diff changeset
   636
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   637
    |args ev|
140
claus
parents: 133
diff changeset
   638
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
   639
    "/ update my idea of shift/alt/ctrl pressed information
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
   640
    self updateModifierStateFrom:state device:(aView graphicsDevice).
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
   641
140
claus
parents: 133
diff changeset
   642
    EventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   643
        (EventListener buttonMotion:state x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
   644
    ].
claus
parents: 133
diff changeset
   645
    eventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   646
        (eventListener buttonMotion:state x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
   647
    ].
claus
parents: 133
diff changeset
   648
claus
parents: 133
diff changeset
   649
    ignoreUserInput == true ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   650
        ^ self
140
claus
parents: 133
diff changeset
   651
    ].
claus
parents: 133
diff changeset
   652
    args := Array with:state with:x with:y.
claus
parents: 133
diff changeset
   653
claus
parents: 133
diff changeset
   654
    compressMotionEvents ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   655
        "
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   656
         merge with last motion
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   657
        "
1847
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
   658
        self criticalEventQueueAccess:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   659
            mouseAndKeyboard reverseDo:[:ev |
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   660
                ev notNil ifTrue:[
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   661
                    ((ev type == #buttonMotion:x:y:) 
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   662
                    and:[(ev view == aView)
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   663
                    and:[(ev arguments at:1) == state]]) ifTrue:[
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   664
                        ev arguments:args.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   665
                        ^ self
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   666
                    ]
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   667
                ]
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   668
            ]
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   669
        ]
140
claus
parents: 133
diff changeset
   670
    ].
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   671
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   672
    ev := WindowEvent buttonEvent
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   673
             for:aView
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   674
             type:#buttonMotion:x:y:
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   675
             arguments:args.
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   676
    ev hasShift:shiftDown ctrl:ctrlDown alt:altDown meta:metaDown
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   677
                          button1:leftButtonDown button2:middleButtonDown button3:rightButtonDown.
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   678
    self pushEvent:ev.
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   679
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   680
    "Modified: 13.8.1997 / 22:19:06 / cg"
140
claus
parents: 133
diff changeset
   681
!
claus
parents: 133
diff changeset
   682
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   683
buttonMultiPress:button x:x y:y view:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   684
    "mouse button was pressed - this is sent from the device (Display)"
140
claus
parents: 133
diff changeset
   685
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   686
    |ev|
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   687
1083
6e947cc67324 fixed #anyButtonPressed & setting of buttonDown-flags
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
   688
    self button:button inView:aView state:true.
6e947cc67324 fixed #anyButtonPressed & setting of buttonDown-flags
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
   689
140
claus
parents: 133
diff changeset
   690
    EventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   691
        (EventListener buttonMultiPress:button x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
   692
    ].
claus
parents: 133
diff changeset
   693
    eventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   694
        (eventListener buttonMultiPress:button x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
   695
    ].
claus
parents: 133
diff changeset
   696
claus
parents: 133
diff changeset
   697
    ignoreUserInput == true ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   698
        ^ self
140
claus
parents: 133
diff changeset
   699
    ].
1083
6e947cc67324 fixed #anyButtonPressed & setting of buttonDown-flags
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
   700
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   701
    ev := WindowEvent buttonEvent
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   702
             for:aView
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   703
             type:#buttonMultiPress:x:y:
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   704
             arguments:(Array with:button with:x with:y).
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   705
    ev hasShift:shiftDown ctrl:ctrlDown alt:altDown meta:metaDown
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   706
                          button1:leftButtonDown button2:middleButtonDown button3:rightButtonDown.
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   707
    self pushEvent:ev.
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   708
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   709
    "Modified: 13.8.1997 / 22:19:11 / cg"
140
claus
parents: 133
diff changeset
   710
!
claus
parents: 133
diff changeset
   711
claus
parents: 133
diff changeset
   712
buttonPress:button x:x y:y view:aView
claus
parents: 133
diff changeset
   713
    "mouse button was pressed - this is sent from the device (Display)"
claus
parents: 133
diff changeset
   714
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   715
    |ev|
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   716
157
claus
parents: 154
diff changeset
   717
    self button:button inView:aView state:true.
claus
parents: 154
diff changeset
   718
140
claus
parents: 133
diff changeset
   719
    EventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   720
        (EventListener buttonPress:button x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
   721
    ].
claus
parents: 133
diff changeset
   722
    eventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   723
        (eventListener buttonPress:button x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
   724
    ].
claus
parents: 133
diff changeset
   725
claus
parents: 133
diff changeset
   726
    ignoreUserInput == true ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   727
        ^ self
140
claus
parents: 133
diff changeset
   728
    ].
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   729
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   730
    ev := WindowEvent buttonEvent
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   731
             for:aView
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   732
             type:#buttonPress:x:y:
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   733
             arguments:(Array with:button with:x with:y).
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   734
    ev hasShift:shiftDown ctrl:ctrlDown alt:altDown meta:metaDown
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   735
                          button1:leftButtonDown button2:middleButtonDown button3:rightButtonDown.
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   736
    self pushEvent:ev.
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   737
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   738
    "Modified: 13.8.1997 / 22:19:13 / cg"
140
claus
parents: 133
diff changeset
   739
!
claus
parents: 133
diff changeset
   740
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   741
buttonRelease:button x:x y:y view:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   742
    "mouse button was released- this is sent from the device (Display)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   743
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   744
    |ev|
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   745
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   746
    self button:button inView:aView state:false.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   747
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   748
    EventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   749
        (EventListener buttonRelease:button x:x y:y view:aView) ifTrue:[^ self]
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   750
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   751
    eventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   752
        (eventListener buttonRelease:button x:x y:y view:aView) ifTrue:[^ self]
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   753
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   754
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   755
    ignoreUserInput == true ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   756
        ^ self
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   757
    ].
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   758
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   759
    ev := WindowEvent buttonEvent
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   760
             for:aView
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   761
             type:#buttonRelease:x:y:
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   762
             arguments:(Array with:button with:x with:y).
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   763
    ev hasShift:shiftDown ctrl:ctrlDown alt:altDown meta:metaDown
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   764
                          button1:leftButtonDown button2:middleButtonDown button3:rightButtonDown.
1861
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   765
    self pushEvent:ev.
1b1e49147380 remember shift,meta,alt & ctrl state in buttonEvents
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   766
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
   767
    "Modified: 13.8.1997 / 22:19:16 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   768
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   769
1545
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   770
clientMessage:type format:format eventData:data view:aView
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   771
    "some other data sent to a view.
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   772
     This is an X-specific event."
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   773
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   774
    self pushEvent:(WindowEvent clientEvent
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   775
                             for:aView
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   776
                             type:#clientMessage:format:eventData:
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   777
                             arguments:(Array with:type with:format with:data)).
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   778
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   779
    "Created: 4.4.1997 / 17:51:08 / cg"
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   780
    "Modified: 4.4.1997 / 18:53:50 / cg"
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   781
!
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   782
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   783
configureX:x y:y width:w height:h view:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   784
    "a views size or position has changed - this is sent from the device (Display)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   785
1108
748f9e5c5b1e ignore configureEvents for subviews.
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
   786
    aView superView notNil ifTrue:[
1969
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   787
        "/ this is a configure event for a subView
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   788
        "/ I guess, this resulted from a resize of
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   789
        "/ myself (are there any windowManagers which resize subviews ?)
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   790
        "/ Therefore, ignore it here.
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   791
        "/ This also fixed problems due to late-arriving configure events,
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   792
        "/ in case of a resized view, which was resized before.
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   793
        "/ Without the return below, we need a flushConfigureEvents entry here,
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   794
        "/ to be invoked whenever a subview is resized / repositioned.
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   795
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   796
        ^ self
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   797
    ].
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   798
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   799
    "/
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   800
    "/ experimental: only queue one confif event (WIN32 speedup)
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   801
    "/
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   802
    damage size ~~ 0 ifTrue:[
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   803
        damage do:[:aDamage |
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   804
            aDamage notNil ifTrue:[
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   805
                aDamage type == #configureX:y:width:height: ifTrue:[
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   806
                    aDamage view == aView ifTrue:[
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   807
                        aDamage
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   808
                            arguments:(Array with:x with:y with:w with:h).
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   809
                        ^ false
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   810
                    ]
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   811
                ]
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   812
            ].
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   813
        ]
1108
748f9e5c5b1e ignore configureEvents for subviews.
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
   814
    ].
748f9e5c5b1e ignore configureEvents for subviews.
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
   815
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   816
    self pushDamageEvent:(WindowEvent
1969
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   817
                             for:aView
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   818
                             type:#configureX:y:width:height:
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   819
                             arguments:(Array with:x with:y with:w with:h)).
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   820
d2d7073b7c56 experimental: only enqueue last configure event
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
   821
    "Modified: / 8.12.1997 / 19:16:12 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   822
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   823
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   824
coveredBy:sibling view:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   825
    "aView was covered by one of its siblings - this is sent from the device (Display)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   826
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   827
    self pushDamageEvent:(WindowEvent
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   828
			     for:aView
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   829
			     type:#coveredBy:
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   830
			     arguments:(Array with:sibling)).
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   831
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   832
    "Modified: 18.1.1997 / 14:18:32 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   833
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   834
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   835
destroyedView:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   836
    "view was destroyed (from window manager) - this is sent from the device (Display)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   837
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   838
    "at this time, the view is already gone; remove
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   839
     all pending events for this one ..."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   840
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   841
    self flushEventsFor:aView.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   842
    self pushDamageEvent:(WindowEvent
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   843
			     for:aView
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   844
			     type:#destroyed).
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   845
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   846
    "Modified: 18.1.1997 / 14:18:19 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   847
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   848
1545
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   849
dropMessage:dropType data:dropValue view:aView
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   850
    "a drop sent to a view. The dropType is a symbolic specifier,
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   851
     which may be ignored, since the dropValue has already been
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   852
     converted into an ST/X dropObject."
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   853
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   854
    self pushEvent:(WindowEvent 
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   855
                             for:aView
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   856
                             type:#dropMessage:data:
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   857
                             arguments:(Array with:dropType with:dropValue)).
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   858
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   859
    "Created: 4.4.1997 / 18:13:41 / cg"
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   860
    "Modified: 4.4.1997 / 18:55:25 / cg"
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   861
!
f821b3870502 client- and drop messages
Claus Gittinger <cg@exept.de>
parents: 1529
diff changeset
   862
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   863
exposeX:left y:top width:width height:height view:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   864
    "an expose event arrived - this is sent from the device (Display)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   865
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   866
    |didEnq|
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   867
703
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   868
    ignoreExposeEvents ~~ true ifTrue:[
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   869
        didEnq :=
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   870
        self addDamage:(Rectangle left:left top:top width:width height:height) 
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   871
                  view:aView
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   872
                wakeup:true.
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   873
    ] ifFalse:[
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   874
        'ignored expose' printCR
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   875
    ]
703
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   876
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
   877
    "Modified: 6.8.1997 / 20:31:22 / cg"
140
claus
parents: 133
diff changeset
   878
!
claus
parents: 133
diff changeset
   879
claus
parents: 133
diff changeset
   880
focusInView:aView
claus
parents: 133
diff changeset
   881
    "view got input focus - this is sent from the device (Display)"
claus
parents: 133
diff changeset
   882
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   883
    self pushEvent:(WindowEvent
1331
bc6f96de5305 checkin from browser
ca
parents: 1320
diff changeset
   884
                     for:aView
bc6f96de5305 checkin from browser
ca
parents: 1320
diff changeset
   885
                     type:#focusIn).
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   886
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   887
    "Modified: 18.1.1997 / 14:07:01 / cg"
140
claus
parents: 133
diff changeset
   888
!
claus
parents: 133
diff changeset
   889
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   890
focusOutView:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   891
    "view lost input focus - this is sent from the device (Display)"
140
claus
parents: 133
diff changeset
   892
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   893
    self pushEvent:(WindowEvent
1331
bc6f96de5305 checkin from browser
ca
parents: 1320
diff changeset
   894
                     for:aView
bc6f96de5305 checkin from browser
ca
parents: 1320
diff changeset
   895
                     type:#focusOut).
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   896
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   897
    "Modified: 18.1.1997 / 14:07:09 / cg"
140
claus
parents: 133
diff changeset
   898
!
claus
parents: 133
diff changeset
   899
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   900
graphicsExposeX:left y:top width:width height:height final:final view:aView
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   901
    "a graphic expose event arrived - this is sent from the device (Display)"
140
claus
parents: 133
diff changeset
   902
1243
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   903
    "/ this is also a possible response to a scroll operation
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   904
    "/ (if an expose is pending)
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   905
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   906
    final ifTrue:[
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   907
        (catchExpose includes:aView) ifTrue:[
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   908
	    gotExpose add:aView.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   909
	    exposeEventSemaphore signalForAll
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   910
	] ifFalse:[
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   911
	    'WSensor [warning]: got exposeEvent for non-catching view:' infoPrint. aView infoPrintCR
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
   912
	]
1243
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   913
    ].
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   914
751
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   915
    self addDamage:(left @ top extent:width @ height) view:aView wakeup:false.
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   916
1268
612204a36c38 no, regular expose events should not trigger the exposeSema
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   917
    "Modified: 23.1.1997 / 22:15:53 / cg"
140
claus
parents: 133
diff changeset
   918
!
claus
parents: 133
diff changeset
   919
claus
parents: 133
diff changeset
   920
keyPress:key x:x y:y view:aView
claus
parents: 133
diff changeset
   921
    "key was pressed - this is sent from the device (Display).
claus
parents: 133
diff changeset
   922
     beside the keyboard translation, CntlC processing is done here."
claus
parents: 133
diff changeset
   923
510
c0c7a04317a9 resources
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
   924
    <resource: #keyboard ( #Compose #DestroyView #DestroyTopView #FlushInput
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   925
                           #UserInterrupt ) >
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   926
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   927
    |xlatedKey group process ev|
140
claus
parents: 133
diff changeset
   928
144
claus
parents: 140
diff changeset
   929
    self key:key state:true. 
claus
parents: 140
diff changeset
   930
140
claus
parents: 133
diff changeset
   931
    EventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   932
        (EventListener keyPress:key x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
   933
    ].
claus
parents: 133
diff changeset
   934
    eventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   935
        (eventListener keyPress:key x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
   936
    ].
claus
parents: 133
diff changeset
   937
    keyboardListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   938
        (keyboardListener keyPress:key x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
   939
    ].
claus
parents: 133
diff changeset
   940
claus
parents: 133
diff changeset
   941
    translateKeyboardEvents ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   942
        xlatedKey := aView graphicsDevice translateKey:key.
140
claus
parents: 133
diff changeset
   943
    ] ifFalse:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   944
        xlatedKey := key.
140
claus
parents: 133
diff changeset
   945
    ].
157
claus
parents: 154
diff changeset
   946
140
claus
parents: 133
diff changeset
   947
    xlatedKey isNil ifTrue:[^ self].
claus
parents: 133
diff changeset
   948
157
claus
parents: 154
diff changeset
   949
    (xlatedKey == #Compose) ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   950
        GotCompose := true. Compose1 := nil.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   951
        ^ self
157
claus
parents: 154
diff changeset
   952
    ].
claus
parents: 154
diff changeset
   953
    GotCompose == true ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   954
        Compose1 isNil ifTrue:[
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   955
            (self isModifierKey:xlatedKey) ifFalse:[
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   956
                Compose1 := xlatedKey. 
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   957
            ].
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   958
            ^ self
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   959
        ].
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   960
        (self isModifierKey:xlatedKey) ifFalse:[
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   961
            xlatedKey  := self compose:Compose1 with:xlatedKey.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   962
            Compose1 := nil. GotCompose := false.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   963
        ]
157
claus
parents: 154
diff changeset
   964
    ].
claus
parents: 154
diff changeset
   965
claus
parents: 154
diff changeset
   966
    (xlatedKey == #CmdCtrlV) ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   967
        'Smalltalk/X ' errorPrint. 
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   968
        Smalltalk versionString errorPrint. ' of ' errorPrint.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   969
        Smalltalk versionDate errorPrintCR.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   970
        Smalltalk copyrightString errorPrintCR.
140
claus
parents: 133
diff changeset
   971
    ].
claus
parents: 133
diff changeset
   972
157
claus
parents: 154
diff changeset
   973
    (xlatedKey == #DestroyView) ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   974
        aView closeRequest.
157
claus
parents: 154
diff changeset
   975
    ].
claus
parents: 154
diff changeset
   976
    (xlatedKey == #DestroyTopView) ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   977
        aView topView closeRequest.
157
claus
parents: 154
diff changeset
   978
    ].
claus
parents: 154
diff changeset
   979
152
claus
parents: 144
diff changeset
   980
    (xlatedKey == #FlushInput) ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   981
        "this removes any enqueued user events -
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   982
         helps, if you pressed DoIt too often, and want to flush those
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   983
        "
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   984
        self flushUserEvents.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   985
        ^ self
152
claus
parents: 144
diff changeset
   986
    ].
claus
parents: 144
diff changeset
   987
140
claus
parents: 133
diff changeset
   988
    ((xlatedKey == #UserInterrupt) and:[ControlCEnabled]) ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   989
        "
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   990
         Special handling for Ctrl-C: interrupt the underlying process.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   991
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   992
         cannot halt here (this would stop the event-dispatcher),
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   993
         but instead interrupt the underlying process and have it
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   994
         perform the userInterrupt in the interrupt-method.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   995
        "
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   996
        group := aView windowGroup.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   997
        group notNil ifTrue:[
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   998
            process := group process.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   999
            process notNil ifTrue:[
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1000
                process interruptWith:[:where | process userInterruptIn:where]
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1001
            ]
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1002
        ].
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1003
        ^ self
140
claus
parents: 133
diff changeset
  1004
    ].
claus
parents: 133
diff changeset
  1005
claus
parents: 133
diff changeset
  1006
    ignoreUserInput == true ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1007
        ^ self
140
claus
parents: 133
diff changeset
  1008
    ].
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1009
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1010
    ev := WindowEvent keyboardEvent
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1011
             for:aView
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1012
             type:#keyPress:x:y:
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1013
             arguments:(Array with:xlatedKey with:x with:y).
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1014
    ev rawKey:key.
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
  1015
    ev hasShift:shiftDown ctrl:ctrlDown alt:altDown meta:metaDown
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
  1016
                          button1:leftButtonDown button2:middleButtonDown button3:rightButtonDown.
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1017
    self pushEvent:ev.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1018
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
  1019
    "Modified: 13.8.1997 / 22:19:19 / cg"
140
claus
parents: 133
diff changeset
  1020
!
claus
parents: 133
diff changeset
  1021
claus
parents: 133
diff changeset
  1022
keyRelease:key x:x y:y view:aView
claus
parents: 133
diff changeset
  1023
    "key was released - this is sent from the device (Display)."
claus
parents: 133
diff changeset
  1024
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1025
    |xlatedKey ev|
140
claus
parents: 133
diff changeset
  1026
144
claus
parents: 140
diff changeset
  1027
    self key:key state:false. 
claus
parents: 140
diff changeset
  1028
140
claus
parents: 133
diff changeset
  1029
    EventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1030
        (EventListener keyRelease:key x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
  1031
    ].
claus
parents: 133
diff changeset
  1032
    eventListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1033
        (eventListener keyRelease:key x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
  1034
    ].
claus
parents: 133
diff changeset
  1035
    keyboardListener notNil ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1036
        (keyboardListener keyRelease:key x:x y:y view:aView) ifTrue:[^ self]
140
claus
parents: 133
diff changeset
  1037
    ].
claus
parents: 133
diff changeset
  1038
claus
parents: 133
diff changeset
  1039
    ignoreUserInput == true ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1040
        ^ self
140
claus
parents: 133
diff changeset
  1041
    ].
claus
parents: 133
diff changeset
  1042
    translateKeyboardEvents ifTrue:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1043
        xlatedKey := aView graphicsDevice translateKey:key.
140
claus
parents: 133
diff changeset
  1044
    ] ifFalse:[
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1045
        xlatedKey := key.
140
claus
parents: 133
diff changeset
  1046
    ].
claus
parents: 133
diff changeset
  1047
    xlatedKey isNil ifTrue:[^ self].
claus
parents: 133
diff changeset
  1048
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1049
    ev := WindowEvent keyboardEvent
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1050
             for:aView
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1051
             type:#keyRelease:x:y:
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1052
             arguments:(Array with:xlatedKey with:x with:y).
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1053
    ev rawKey:key.
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
  1054
    ev hasShift:shiftDown ctrl:ctrlDown alt:altDown meta:metaDown
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
  1055
                          button1:leftButtonDown button2:middleButtonDown button3:rightButtonDown.
1528
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1056
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1057
    self pushEvent:ev.
78c64c132593 started to separate into distinct event classes;
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
  1058
1862
e56d9a7389bb also remember buttonStates in keyEvents.
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
  1059
    "Modified: 13.8.1997 / 22:19:22 / cg"
140
claus
parents: 133
diff changeset
  1060
!
claus
parents: 133
diff changeset
  1061
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1062
mappedView:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1063
    "view was mapped (from window manager) - this is sent from the device (Display)"
140
claus
parents: 133
diff changeset
  1064
2058
59a52789086a fixed (I hope) redraw bug in debugView
Claus Gittinger <cg@exept.de>
parents: 2052
diff changeset
  1065
    self flushExposeEventsFor:aView.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1066
    self pushDamageEvent:(WindowEvent
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1067
                             for:aView
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1068
                             type:#mapped).
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1069
2058
59a52789086a fixed (I hope) redraw bug in debugView
Claus Gittinger <cg@exept.de>
parents: 2052
diff changeset
  1070
    "Modified: / 16.2.1998 / 13:20:41 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1071
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1072
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1073
noExposeView:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1074
    "an noexpose event arrived - this is sent from the device (Display)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1075
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1076
    (catchExpose includes:aView) ifTrue:[
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1077
        gotExpose add:aView.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1078
        exposeEventSemaphore signalForAll
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1079
    ] ifFalse:[
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1080
        'WSensor [warning]: got noExpose for non-catching view:' infoPrint. aView infoPrintCR
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1081
    ]
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1082
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1083
1340
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1084
pasteFromClipBoard:something view:aView
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1085
    "a clipboard paste - this is handled like a user event"
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1086
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1087
    self pushEvent:(WindowEvent
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1088
                     for:aView
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1089
                     type:#pasteFromClipBoard:
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1090
                     arguments:(Array with:something)).
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1091
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1092
    "Modified: 18.1.1997 / 14:07:25 / cg"
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1093
    "Created: 13.2.1997 / 13:40:24 / cg"
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1094
!
f028f125f606 pasteFromClipBoard: must go through the sensor
Claus Gittinger <cg@exept.de>
parents: 1331
diff changeset
  1095
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1096
pointerEnter:state x:x y:y view:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1097
    "mouse cursor was moved into the view - this is sent from the device (Display)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1098
1864
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1099
    |ev|
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1100
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1101
    "/ update my idea of shift/alt/ctrl pressed information
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1102
    self updateModifierStateFrom:state device:(aView graphicsDevice).
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1103
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1104
    EventListener notNil ifTrue:[
1864
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1105
        (EventListener pointerEnter:state x:x y:y view:aView) ifTrue:[^ self]
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1106
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1107
    eventListener notNil ifTrue:[
1864
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1108
        (eventListener pointerEnter:state x:x y:y view:aView) ifTrue:[^ self]
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1109
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1110
1864
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1111
    ev := WindowEvent inputEvent
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1112
             for:aView
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1113
             type:#pointerEnter:x:y:
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1114
             arguments:(Array with:state with:x with:y).
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1115
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1116
    ev hasShift:shiftDown ctrl:ctrlDown alt:altDown meta:metaDown
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1117
                          button1:leftButtonDown button2:middleButtonDown button3:rightButtonDown.
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1118
    self pushEvent:ev.
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1119
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1120
    "Modified: 13.8.1997 / 23:04:09 / cg"
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1121
!
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1122
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1123
pointerLeave:state view:aView
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1124
    "mouse cursor was moved out of the view - this is sent from the device (Display)"
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1125
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1126
    |ev|
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1127
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1128
    "/ update my idea of shift/alt/ctrl pressed information
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1129
    self updateModifierStateFrom:state device:(aView graphicsDevice).
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1130
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1131
    EventListener notNil ifTrue:[
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1132
        (EventListener pointerLeave:state view:aView) ifTrue:[^ self]
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1133
    ].
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1134
    eventListener notNil ifTrue:[
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1135
        (eventListener pointerLeave:state view:aView) ifTrue:[^ self]
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1136
    ].
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1137
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1138
    ev := WindowEvent inputEvent
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1139
             for:aView
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1140
             type:#pointerLeave:
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1141
             arguments:(Array with:state).
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1142
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1143
    ev hasShift:shiftDown ctrl:ctrlDown alt:altDown meta:metaDown
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1144
                          button1:leftButtonDown button2:middleButtonDown button3:rightButtonDown.
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1145
    self pushEvent:ev.
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1146
4aeff6edaab6 remember modifiers in pointerEnter/Leave events
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
  1147
    "Modified: 13.8.1997 / 23:04:13 / cg"
140
claus
parents: 133
diff changeset
  1148
!
claus
parents: 133
diff changeset
  1149
claus
parents: 133
diff changeset
  1150
saveAndTerminateView:aView
claus
parents: 133
diff changeset
  1151
    "view should save & terminate (from window manager) - this is sent from the device (Display)"
claus
parents: 133
diff changeset
  1152
claus
parents: 133
diff changeset
  1153
    self flushEventsFor:aView.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1154
    self pushDamageEvent:(WindowEvent
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1155
			     for:aView
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1156
			     type:#saveAndTerminate).
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1157
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1158
    "Modified: 18.1.1997 / 14:17:37 / cg"
140
claus
parents: 133
diff changeset
  1159
!
claus
parents: 133
diff changeset
  1160
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1161
terminateView:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1162
    "view should terminate (from window manager) - this is sent from the device (Display)"
140
claus
parents: 133
diff changeset
  1163
claus
parents: 133
diff changeset
  1164
    self flushEventsFor:aView.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1165
    self pushDamageEvent:(WindowEvent
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1166
			     for:aView
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1167
			     type:#terminate).
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1168
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1169
    "Modified: 18.1.1997 / 14:17:24 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1170
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1171
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1172
unmappedView:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1173
    "view was unmapped (from window manager) - this is sent from the device (Display)"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1174
2058
59a52789086a fixed (I hope) redraw bug in debugView
Claus Gittinger <cg@exept.de>
parents: 2052
diff changeset
  1175
    self flushExposeEventsFor:aView.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1176
    self pushDamageEvent:(WindowEvent
2058
59a52789086a fixed (I hope) redraw bug in debugView
Claus Gittinger <cg@exept.de>
parents: 2052
diff changeset
  1177
                             for:aView
59a52789086a fixed (I hope) redraw bug in debugView
Claus Gittinger <cg@exept.de>
parents: 2052
diff changeset
  1178
                             type:#unmapped).
59a52789086a fixed (I hope) redraw bug in debugView
Claus Gittinger <cg@exept.de>
parents: 2052
diff changeset
  1179
59a52789086a fixed (I hope) redraw bug in debugView
Claus Gittinger <cg@exept.de>
parents: 2052
diff changeset
  1180
    "Modified: / 16.2.1998 / 13:20:37 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  1181
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
  1182
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1183
!WindowSensor methodsFor:'event processing - private'!
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1184
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1185
button:button inView:aView state:onOrOff
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1186
    "update the state of the xxxButtonDown flags"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1187
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1188
    |physicalButton|
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1189
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1190
    physicalButton := aView graphicsDevice buttonTranslation keyAtValue:button ifAbsent:button.
1084
9c433066e960 oops - leftover debugPrint
Claus Gittinger <cg@exept.de>
parents: 1083
diff changeset
  1191
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1192
    (physicalButton == 1) ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1193
	leftButtonDown := onOrOff.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1194
	^ self
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1195
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1196
    (physicalButton == 2) ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1197
	middleButtonDown := onOrOff.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1198
	^ self
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1199
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1200
    (physicalButton == 3) ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1201
	rightButtonDown := onOrOff.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1202
	^ self
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1203
    ].
743
64c9b71b3cc4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1204
1084
9c433066e960 oops - leftover debugPrint
Claus Gittinger <cg@exept.de>
parents: 1083
diff changeset
  1205
    "Modified: 21.10.1996 / 11:47:35 / cg"
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1206
!
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1207
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1208
compose:key1 with:key2
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1209
    "compose a 2-character sequence into a composed key"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1210
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1211
    ComposeTable do:[:entry |
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1212
	|v|
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1213
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1214
	((key1 == (entry at:1)) and:[key2 == (entry at:2)]) ifTrue:[
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1215
	    v := entry at:3.
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1216
	    v isCharacter ifFalse:[v := Character value:v].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1217
	    ^ v
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1218
	]
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1219
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1220
    "/
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1221
    "/ for illegal sequence, return 2nd key
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1222
    "/
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1223
"/ key1 print. ' ' print. key2 printNL.
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1224
    ^ key2
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1225
!
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1226
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1227
isModifierKey:key
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1228
    "return true if key is a modifier (Alt, Shift, Ctrl or Meta)"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1229
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1230
    (key == #Shift
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1231
    or:[key == #'Shift_R' 
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1232
    or:[key == #'Shift_L']]) ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1233
	^ true
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1234
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1235
    (key == #Alt
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1236
    or:[key == #'Alt_R' or:[key == #'Alt_L']])  ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1237
	^ true
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1238
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1239
    (key == #Meta
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1240
    or:[key == #'Meta_R' or:[key == #'Meta_L']]) ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1241
	^ true
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1242
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1243
    (key == #Control
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1244
    or:[key == #'Control_R' or:[key == #'Control_L']]) ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1245
	^ true
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1246
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1247
    ^ false
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1248
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1249
    "Modified: 22.4.1996 / 16:22:16 / cg"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1250
!
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1251
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1252
key:key state:onOrOff
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1253
    "update the state of the shiftDown/metaDown and ctrlDown
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1254
     flags"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1255
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1256
    (key = #Shift
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1257
    or:[key = #'Shift_R' 
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1258
    or:[key = #'Shift_L']]) ifTrue:[
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1259
	shiftDown := onOrOff.
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1260
	^ self
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1261
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1262
    (key = #Alt
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1263
    or:[key = #'Alt_R' or:[key = #'Alt_L']])  ifTrue:[
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1264
	altDown := onOrOff.
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1265
	^ self
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1266
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1267
    (key = #Meta
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1268
    or:[key = #'Meta_R' or:[key = #'Meta_L']]) ifTrue:[
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1269
	metaDown := onOrOff.
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1270
	^ self
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1271
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1272
    (key = #Control
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1273
    or:[key = #'Control_R' or:[key = #'Control_L']]) ifTrue:[
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1274
	ctrlDown := onOrOff.
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1275
	^ self
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1276
    ].
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1277
!
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1278
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1279
notifyEventArrival:aView
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1280
    "an event arrived - if there is an eventSemaphore,
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1281
     signal it, to wake up any windowGroup process"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1282
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1283
    (catchExpose includesIdentical:aView) ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1284
        "
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1285
         dont wake up, if we are currently waiting for an expose
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1286
         but remember arrival of something.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1287
        "
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1288
        gotOtherEvent add:aView.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1289
        ^ self
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1290
    ].
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1291
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1292
    eventSemaphore notNil ifTrue:[
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1293
"/        eventSemaphore signal
1184
1372bad824af single trigger on the eventSemaphore is ok
Claus Gittinger <cg@exept.de>
parents: 1179
diff changeset
  1294
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1295
        "/ can get along with a single trigger;
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1296
        "/ because processEvents will read all events
1184
1372bad824af single trigger on the eventSemaphore is ok
Claus Gittinger <cg@exept.de>
parents: 1179
diff changeset
  1297
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1298
        eventSemaphore signalOnce
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1299
    ]
1184
1372bad824af single trigger on the eventSemaphore is ok
Claus Gittinger <cg@exept.de>
parents: 1179
diff changeset
  1300
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1301
    "Modified: 8.2.1997 / 12:01:48 / cg"
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1302
!
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1303
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1304
updateModifierStateFrom:state device:aDevice
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1305
    "this refetches the modifier key-states.
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1306
     Called privately when pointer enters a view."
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1307
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1308
    "/ Prevents wrong behavior in the following scenario:
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1309
    "/    ctrl is pressed in a view
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1310
    "/    pointer is moved out of view
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1311
    "/    ctrl is released
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1312
    "/    pointer moved back into view
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1313
    "/    popup-menu still thinks that ctrl is pressed"
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1314
        
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1315
    shiftDown := "state bitAnd:(aDevice shiftMask)       " aDevice shiftDown.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1316
    ctrlDown := "state bitAnd:(aDevice controlMask)      " aDevice ctrlDown.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1317
    metaDown := "state bitAnd:(aDevice metaModifierMask) " aDevice metaDown.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1318
    altDown := "state bitAnd:(aDevice altModifierMask)   " aDevice altDown.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1319
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1320
    leftButtonDown := "state bitAnd:(aDevice leftButtonStateMask) " aDevice leftButtonPressed.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1321
    middleButtonDown := "state bitAnd:(aDevice middleButtonStateMask)" aDevice middleButtonPressed.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1322
    rightButtonDown := "state bitAnd:(aDevice rightButtonStateMask)" aDevice rightButtonPressed.
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1323
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1324
    "Created: 27.2.1996 / 14:54:38 / cg"
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1325
    "Modified: 1.11.1996 / 16:51:47 / cg"
581
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1326
! !
23dc2352dce9 commentary
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1327
140
claus
parents: 133
diff changeset
  1328
!WindowSensor methodsFor:'event queue'!
claus
parents: 133
diff changeset
  1329
144
claus
parents: 140
diff changeset
  1330
addDamage:aRectangle view:aView
1318
5810dfc3137a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1317
diff changeset
  1331
    "{ Pragma: +optSpeed }"
5810dfc3137a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1317
diff changeset
  1332
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  1333
    "Add aRectangle to the damage list.
144
claus
parents: 140
diff changeset
  1334
     Try to merge incoming rectangles with the existing damage rectangles.
claus
parents: 140
diff changeset
  1335
     Incoming rectangles which are completely contained in any existing damage rect are ignored,
claus
parents: 140
diff changeset
  1336
     any existing damage rectangle which is completely contained in the incoming rectangle
152
claus
parents: 144
diff changeset
  1337
     is replaced. Also, rectangles are merged into bigger ones, if they join exactly.
144
claus
parents: 140
diff changeset
  1338
     Except for special cases (moveOpaque of a view over one of my views),
claus
parents: 140
diff changeset
  1339
     these optimizations are not noticable."
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  1340
751
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1341
    ^ self addDamage:aRectangle view:aView wakeup:true
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1342
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1343
    "Modified: 28.5.1996 / 21:52:47 / cg"
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1344
!
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1345
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1346
addDamage:aRectangle view:aView wakeup:doWakeup
1317
e1bd3b4aee72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1347
    "{ Pragma: +optSpeed }"
e1bd3b4aee72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1348
751
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1349
    "Add aRectangle to the damage list.
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1350
     Try to merge incoming rectangles with the existing damage rectangles.
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1351
     Incoming rectangles which are completely contained in any existing damage rect are ignored,
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1352
     any existing damage rectangle which is completely contained in the incoming rectangle
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1353
     is replaced. Also, rectangles are merged into bigger ones, if they join exactly.
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1354
     Except for special cases (moveOpaque of a view over one of my views),
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1355
     these optimizations are not noticable.
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1356
     Returns true, if a new event has been added to the queue, false if it
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1357
     was optimized away."
751
043bbbd431e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1358
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1359
    |ret|
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1360
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1361
    ret := false.
1847
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
  1362
    self criticalEventQueueAccess:[
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1363
        (self basicAddDamage:aRectangle view:aView)
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1364
        ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1365
            doWakeup ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1366
                self notifyEventArrival:aView.
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1367
                ret := true
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1368
            ].
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1369
        ].
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1370
    ].
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1371
    ^ ret
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1372
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1373
    "Created: 28.5.1996 / 21:51:16 / cg"
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1374
    "Modified: 27.3.1997 / 16:11:56 / cg"
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1375
!
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1376
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1377
basicAddDamage:aRectangle view:aView
1317
e1bd3b4aee72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1378
    "{ Pragma: +optSpeed }"
e1bd3b4aee72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1379
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1380
    "Add aRectangle to the damage list.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1381
     Try to merge incoming rectangles with the existing damage rectangles.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1382
     Incoming rectangles which are completely contained in any existing damage rect are ignored,
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1383
     any existing damage rectangle which is completely contained in the incoming rectangle
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1384
     is replaced. Also, rectangles are merged into bigger ones, if they join exactly.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1385
     Except for special cases (moveOpaque of a view over one of my views),
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1386
     these optimizations are not noticable.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1387
     Returns true, if a new event has been added to the queue, false if it
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1388
     was optimized away."
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1389
1616
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1390
    |temp index newEvent r fullRedraw
2035
637bb684af6a fixed ca's damage compression
Claus Gittinger <cg@exept.de>
parents: 2022
diff changeset
  1391
     aDamage ev2 dRect stopSearch
152
claus
parents: 144
diff changeset
  1392
     count             "{ Class: SmallInteger }" 
claus
parents: 144
diff changeset
  1393
     sz                "{ Class: SmallInteger }" 
1852
27b0cefc31a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1394
     firstInteresting
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1395
     lastInteresting   "{ Class: SmallInteger }"
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1396
     idx "{ Class: SmallInteger }"
1616
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1397
     rL "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1398
     rT "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1399
     rB "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1400
     rR "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1401
     dL "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1402
     dR "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1403
     dT "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1404
     dB "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1405
     minX "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1406
     minY "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1407
     maxX "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1408
     maxY "{ Class: SmallInteger }"
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1409
     t    "{ Class: SmallInteger }"|
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  1410
152
claus
parents: 144
diff changeset
  1411
    r := aRectangle.
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1412
    (fullRedraw := aView redrawsFull) ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1413
        r := 0@0 corner:9999@9999.
488
97f384f5e2aa views which always redraw full may say so in #redrawsFull
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
  1414
    ].
97f384f5e2aa views which always redraw full may say so in #redrawsFull
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
  1415
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1416
    sz := damage size.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1417
    sz == 0 ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1418
        damage := OrderedCollection new:10.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1419
    ] ifFalse:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1420
        "
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1421
         first look, if this rectangle is already in the expose list;
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1422
         if so, dont add to queue
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1423
         On the fly, count the number of damages for this view
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1424
        "
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1425
        fullRedraw ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1426
            firstInteresting := 1.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1427
            lastInteresting := sz.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1428
        ] ifFalse:[
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1429
            count := 0.
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1430
            firstInteresting := nil.
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1431
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1432
            "/ must search backward, break search with first
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1433
            "/ non-Expose (i.e. mapped/unmapped)
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1434
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1435
            stopSearch := false.
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1436
            idx := sz.
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1437
            [(idx > 0) and:[stopSearch not]] whileTrue:[
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1438
                aDamage := damage at:idx.
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1439
                aDamage notNil ifTrue:[
2035
637bb684af6a fixed ca's damage compression
Claus Gittinger <cg@exept.de>
parents: 2022
diff changeset
  1440
                    aDamage view == aView ifTrue:[
637bb684af6a fixed ca's damage compression
Claus Gittinger <cg@exept.de>
parents: 2022
diff changeset
  1441
                        aDamage isDamage ifTrue:[
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1442
                            ((aDamage rectangle) contains:r) ifTrue:[
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1443
                                ^ false
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1444
                            ].
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1445
                            count := count + 1.
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1446
                            lastInteresting := idx.
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1447
                            firstInteresting isNil ifTrue:[
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1448
                                firstInteresting := idx
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1449
                            ]
2035
637bb684af6a fixed ca's damage compression
Claus Gittinger <cg@exept.de>
parents: 2022
diff changeset
  1450
                        ] ifFalse:[
637bb684af6a fixed ca's damage compression
Claus Gittinger <cg@exept.de>
parents: 2022
diff changeset
  1451
                            "/ if its a map/unmap, we can forget 
637bb684af6a fixed ca's damage compression
Claus Gittinger <cg@exept.de>
parents: 2022
diff changeset
  1452
                            "/ any older damage event for this view ...
637bb684af6a fixed ca's damage compression
Claus Gittinger <cg@exept.de>
parents: 2022
diff changeset
  1453
                            (aDamage isUnmapEvent or:[aDamage isMapEvent]) ifTrue:[
2072
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1454
                                idx := idx - 1.
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1455
                                [idx > 0] whileTrue:[
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1456
                                    ev2 := damage at:idx.
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1457
                                    ev2 notNil ifTrue:[
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1458
                                        ev2 isDamage ifTrue:[
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1459
                                            ev2 view == aView ifTrue:[
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1460
                                                damage at:idx put:nil
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1461
                                            ]
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1462
                                        ]
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1463
                                    ].
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1464
                                    idx := idx - 1.
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1465
                                ].
2035
637bb684af6a fixed ca's damage compression
Claus Gittinger <cg@exept.de>
parents: 2022
diff changeset
  1466
                                stopSearch := true
637bb684af6a fixed ca's damage compression
Claus Gittinger <cg@exept.de>
parents: 2022
diff changeset
  1467
                            ].
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1468
                        ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1469
                    ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1470
                ].
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1471
                idx := idx - 1.
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1472
            ].
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1473
        ].
46
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
  1474
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1475
        "
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1476
         are there any damages for this view in the queue ?
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1477
        "
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1478
        firstInteresting notNil ifTrue:[
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1479
            "
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1480
             if there are already many damages for this view,
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1481
             remove them all, and replace by a full expose
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1482
             This limits the runtime spent here, which may become big
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1483
             due to the square runtime behavior (stupid algorithm ...)
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1484
            "
2022
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
  1485
            (fullRedraw or:[count > 10]) ifTrue:[
1616
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1486
                minX := r left. minY := r top.
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1487
                maxX := r right. maxY := r bottom.
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1488
                firstInteresting to:lastInteresting by:-1 do:[:i |
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1489
                    aDamage := damage at:i.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1490
                    aDamage notNil ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1491
                        aDamage isDamage ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1492
                            (aDamage view) == aView ifTrue:[
1616
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1493
                                dRect := aDamage rectangle.
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1494
                                (t := dRect left) < minX ifTrue:[minX := t].
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1495
                                (t := dRect top) < minY ifTrue:[minY := t].
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1496
                                (t := dRect right) > maxX ifTrue:[maxX := t].
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1497
                                (t := dRect bottom) > maxY ifTrue:[maxY := t].
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1498
                                damage at:i put:nil.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1499
                            ].
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1500
                        ].
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1501
                    ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1502
                ].
1616
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1503
                newEvent := WindowEvent 
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1504
                                damageFor:aView 
4d78d9d9f474 better rectangle merge
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
  1505
                                rectangle:(minX@minY corner:maxX@maxY).
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1506
                damage add:newEvent.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1507
                ^ true
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1508
            ].
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1509
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1510
            "
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1511
             then look, if the new rectangle contains any in the expose list;
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1512
             if so, remove the old damage (here, by nilling it in the queue).
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1513
             Or, merge it with existing rectangles if possible.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1514
            "
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1515
            count := 0.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1516
            rR := r right.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1517
            rL := r left.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1518
            rT := r top.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1519
            rB := r bottom.
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1520
            firstInteresting to:lastInteresting by:-1 do:[:i |
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1521
                aDamage := damage at:i.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1522
                aDamage notNil ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1523
                    aDamage isDamage ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1524
                        (aDamage view) == aView ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1525
                            dRect := aDamage rectangle.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1526
                            (r contains:dRect) ifTrue: [ 
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1527
                                damage at:i put:nil.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1528
                                count := count + 1
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1529
                            ] ifFalse:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1530
                                dL := dRect left.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1531
                                dT := dRect top.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1532
                                dR := dRect right.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1533
                                dB := dRect bottom.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1534
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1535
                                (rT == dT
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1536
                                and:[rB == dB]) ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1537
                                    (rR > dR) ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1538
                                        (rL <= (dR + 1)) ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1539
                                            dRect right:rR.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1540
                                            ^ false
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1541
                                        ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1542
                                    ].
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1543
                                    (rL < dL) ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1544
                                        (rR >= (dL  - 1)) ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1545
                                            dRect left:rL.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1546
                                            ^ false
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1547
                                        ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1548
                                    ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1549
                                ].
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1550
                                (rR == dR
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1551
                                and:[rL == dL]) ifTrue:[
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1552
                                    (rB > dB) ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1553
                                        (rT <= (dB + 1)) ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1554
                                            dRect bottom:rB.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1555
                                            ^ false
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1556
                                        ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1557
                                    ].
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1558
                                    (rT < dT) ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1559
                                        (rB >= (dT - 1)) ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1560
                                            dRect top:rT.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1561
                                            ^ false
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1562
                                        ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1563
                                    ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1564
                                ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1565
                            ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1566
                        ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1567
                    ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1568
                ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1569
            ].
152
claus
parents: 144
diff changeset
  1570
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1571
"/            "
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1572
"/             if we nilled more then 20 events, reorganize the queue
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1573
"/             (doing this for every 20 removes only avoids excessive 
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1574
"/              reorganization of the input queue)
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1575
"/            "
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1576
"/            count > 20 ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1577
"/                temp := OrderedCollection new:(sz - count + 1).
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1578
"/                index := 1.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1579
"/                1 to:sz do:[:idx |
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1580
"/                    aDamage := damage at:idx.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1581
"/                    aDamage notNil ifTrue: [
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1582
"/                        temp add:aDamage.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1583
"/                    ]
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1584
"/                ].
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1585
"/                damage := temp
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1586
"/            ].
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1587
        ].
46
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
  1588
    ].
7b331e9012fd *** empty log message ***
claus
parents: 28
diff changeset
  1589
1312
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1590
    newEvent := WindowEvent damageFor:aView rectangle:r.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1591
    damage add:newEvent.
92570edec99c try again with single wakeUp (#signalIf);
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  1592
144
claus
parents: 140
diff changeset
  1593
    ^ true
488
97f384f5e2aa views which always redraw full may say so in #redrawsFull
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
  1594
2022
90d1cebc9a92 fixed compressKeyFor:
Claus Gittinger <cg@exept.de>
parents: 1969
diff changeset
  1595
    "Created: / 8.2.1997 / 12:07:06 / cg"
2072
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1596
    "Modified: / 27.2.1998 / 01:49:06 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  1597
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  1598
428
33156201125b added #hasConfigureEvent
werner
parents: 386
diff changeset
  1599
damage
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1600
    "return the damage event list"
428
33156201125b added #hasConfigureEvent
werner
parents: 386
diff changeset
  1601
33156201125b added #hasConfigureEvent
werner
parents: 386
diff changeset
  1602
    ^ damage.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1603
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1604
    "Modified: 18.1.1997 / 14:11:08 / cg"
428
33156201125b added #hasConfigureEvent
werner
parents: 386
diff changeset
  1605
!
33156201125b added #hasConfigureEvent
werner
parents: 386
diff changeset
  1606
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1607
nextDamage
703
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1608
    "retrieve the next damage (either expose or resize event)
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1609
     or nil, if there is none. Remove it from the queue."
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1610
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1611
    |d foundOne|
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1612
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1613
    damage size == 0 ifTrue:[^ nil].
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1614
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1615
    foundOne := false.
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1616
    [foundOne] whileFalse:[
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1617
        "
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1618
         be careful: events are inserted at higher prio ...
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1619
        "
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1620
        self criticalEventQueueAccess:[
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1621
            damage size == 0 ifTrue:[
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1622
                foundOne := true
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1623
            ] ifFalse:[
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1624
                d := damage removeFirst.
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1625
                foundOne := d notNil.
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1626
            ]
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1627
        ]
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1628
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1629
    ^ d
476
cc4848695a66 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 470
diff changeset
  1630
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1631
    "Modified: 6.8.1997 / 20:29:18 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1632
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1633
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1634
nextEvent
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1635
    "retrieve the next event or nil, if there is none.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1636
     Remove it from the queue."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1637
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1638
    |e foundOne|
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1639
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1640
    mouseAndKeyboard size == 0 ifTrue:[^ nil].
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1641
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1642
    foundOne := false.
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1643
    [foundOne] whileFalse:[
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1644
        "
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1645
         be careful: events are inserted at higher prio ...
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1646
        "
1847
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
  1647
	self criticalEventQueueAccess:[
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1648
            mouseAndKeyboard size == 0 ifTrue:[
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1649
                foundOne := true
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1650
            ] ifFalse:[
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1651
                e := mouseAndKeyboard removeFirst.
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1652
                foundOne := e notNil.
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1653
            ]
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1654
        ]
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1655
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1656
    ^ e
476
cc4848695a66 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 470
diff changeset
  1657
1492
cb0118ee73e3 avoid returning from critical-blocks (avoid mkrealcontext calls)
Claus Gittinger <cg@exept.de>
parents: 1412
diff changeset
  1658
    "Modified: 27.3.1997 / 16:17:38 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1659
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1660
703
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1661
nextExposeEventFor:aView
1806
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1662
    "retrieve the next expose event for aView (or any view if nil).
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1663
     Return if there are no expose events.
703
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1664
     Remove it from the queue."
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1665
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1666
    damage size == 0 ifTrue:[^ nil].
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1667
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1668
    "
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1669
     be careful: events are inserted at higher prio ...
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1670
    "
1847
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
  1671
    self criticalEventQueueAccess:[
1806
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1672
        damage keysAndValuesDo:[:idx :anEvent |
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1673
            anEvent notNil ifTrue:[
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1674
                anEvent isDamage ifTrue:[
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1675
                    (aView isNil or:[anEvent view == aView]) ifTrue:[
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1676
                        damage at:idx put:nil.
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1677
                        ^ anEvent
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1678
                    ]
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1679
                ].
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1680
            ].
16c958be35d8 fixed no-deviceID error with destroy arriving while waiting for
Claus Gittinger <cg@exept.de>
parents: 1791
diff changeset
  1681
        ]
703
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1682
    ].
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1683
703
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1684
    ^ nil
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1685
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1686
    "Created: 21.5.1996 / 17:20:54 / cg"
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1687
    "Modified: 6.8.1997 / 20:29:37 / cg"
703
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1688
!
4324ab5e3630 added facility to lock expose event queue (temporary kludge ?)
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  1689
140
claus
parents: 133
diff changeset
  1690
pendingEvent
152
claus
parents: 144
diff changeset
  1691
    "retrieve the next pending user (i.e. non-damage) event.
claus
parents: 144
diff changeset
  1692
     Return nil, if there is none pending.
140
claus
parents: 133
diff changeset
  1693
     Do not remove it from the queue."
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
  1694
1063
ba1bf8091bc1 unused variable cleanup
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1695
    |e|
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
  1696
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1697
    mouseAndKeyboard size == 0 ifTrue:[^ nil].
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1698
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
  1699
    [e isNil] whileTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1700
	"
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1701
	 be careful: events are inserted at higher prio ...
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1702
	"
1847
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
  1703
        self criticalEventQueueAccess:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1704
	    mouseAndKeyboard size == 0 ifTrue:[^ nil].
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1705
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1706
	    e := mouseAndKeyboard first.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1707
	    e isNil ifTrue:[
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1708
		mouseAndKeyboard removeFirst
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1709
	    ].
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1710
	]
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  1711
    ].
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
  1712
    ^ e
476
cc4848695a66 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 470
diff changeset
  1713
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1714
    "Modified: 18.1.1997 / 14:13:04 / cg"
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1715
!
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1716
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1717
pushDamageEvent:anEvent
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1718
    "put an event into the damage queue
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1719
     - this is not meant for public use"
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1720
1847
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
  1721
    self criticalEventQueueAccess:[
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1722
        damage addLast:anEvent.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1723
    ].
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1724
    self notifyEventArrival:anEvent view
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1725
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1726
    "Created: 18.1.1997 / 14:16:45 / cg"
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1727
    "Modified: 6.8.1997 / 19:14:24 / cg"
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1728
!
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1729
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1730
pushEvent:anEvent
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1731
    "put an event into the queue - this can also be sent by
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1732
     applications and allows simulation of events 
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1733
     (implementation of recorders & playback)
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1734
     or asynchronous communication between view applications
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1735
     (by sending arbitrary events, which leads to a message sent,
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1736
      when the target windowGroups process is rescheduled)."
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1737
1412
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
  1738
    |v|
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
  1739
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
  1740
    v := anEvent view.
1847
f449f3009e88 need even more protection against process-interrupts
Claus Gittinger <cg@exept.de>
parents: 1806
diff changeset
  1741
    self criticalEventQueueAccess:[
1412
c2553d477315 handle #quit event (ST-80 support)
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
  1742
        mouseAndKeyboard addLast:anEvent.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1743
    ].
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1744
    self notifyEventArrival:v
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1745
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1746
    "Created: 18.9.1995 / 22:37:57 / claus"
1851
6a6225647696 fixes for expose-event-lost after re-map
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  1747
    "Modified: 6.8.1997 / 19:14:14 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  1748
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
  1749
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1750
!WindowSensor methodsFor:'event simulation'!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1751
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1752
forwardKeyEventsTo:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1753
    "remove all keyboard events and send them to aViews sensor instead"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1754
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1755
    1 to:mouseAndKeyboard size do:[:i |
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1756
	|anEvent|
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1757
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1758
	anEvent := mouseAndKeyboard at:i.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1759
	anEvent notNil ifTrue:[
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1760
	    anEvent isKeyEvent ifTrue:[
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1761
		anEvent view:aView.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1762
		aView sensor pushEvent:anEvent.
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1763
		mouseAndKeyboard at:i put:nil
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1764
	    ]
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1765
	]
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1766
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1767
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1768
    "Modified: 18.1.1997 / 14:05:02 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1769
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1770
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1771
pushUserEvent:aSelector for:aView
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1772
    "manually put an event into the queue - this allows
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1773
     simulation of events (implementation of recorders & playback)
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1774
     or asynchronous communication between view applications.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1775
     The view will perform a method as specified by aSelector,
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1776
     when it performs event processing; this is different than sending
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1777
     this message directly, since the execution is done by the views process,
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1778
     not by the current process (which is especially worthwhile, if that method 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1779
     shows a modal box or similar)."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1780
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1781
     self pushUserEvent:aSelector for:aView withArguments:#() 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1782
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1783
    "Modified: 18.9.1995 / 22:40:12 / claus"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1784
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1785
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1786
pushUserEvent:aSelector for:aView withArguments:arguments
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1787
    "manually put an event into the queue - this allows
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1788
     simulation of events (implementation of recorders & playback)
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1789
     or asynchronous communication between view applications.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1790
     The view will perform a method as specified by aSelector,
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1791
     when it performs event processing; this is different than sending
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1792
     this message directly, since the execution is done by the views process,
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1793
     not by the current process (which is especially worthwhile, if that method 
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1794
     shows a modal box or similar)."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1795
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1796
    self pushEvent:(WindowEvent 
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1797
		     for:aView
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1798
		     type:aSelector
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1799
		     arguments:arguments).
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1800
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1801
    "
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1802
     |b|
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1803
     b := Button label:'test'.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1804
     b open.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1805
     (Delay forSeconds:5) wait.
1155
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1806
     b sensor pushUserEvent:#pointerEnter:x:y: for:b withArguments:#(0 1 1).
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1807
     (Delay forSeconds:1) wait.
1155
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1808
     b sensor pushUserEvent:#buttonPress:x:y: for:b withArguments:#(1 1 1).
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1809
     (Delay forSeconds:2) wait.
1155
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1810
     b sensor pushUserEvent:#buttonRelease:x:y: for:b withArguments:#(1 1 1).
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1811
     (Delay forSeconds:1) wait.
1155
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1812
     b sensor pushUserEvent:#pointerLeave: for:b withArguments:#(0).
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1813
    "
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1814
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1815
    "
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1816
     |b|
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1817
     b := Button label:'test'.
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1818
     b open.
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1819
     (Delay forSeconds:5) wait.
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1820
     b sensor pushUserEvent:#fooBar for:b withArguments:#().
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1821
    "
1155
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1822
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1823
    "
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1824
     |b|
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1825
     b := Button label:'test'.
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1826
     b open.
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1827
     (Delay forSeconds:3) wait.
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1828
     b sensor pushUserEvent:#disable for:b withArguments:#().
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1829
    "
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1830
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1831
    "Modified: 4.1.1997 / 13:53:01 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1832
! !
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1833
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1834
!WindowSensor methodsFor:'initialization'!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1835
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1836
initialize
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1837
    "initialize the event queues to empty"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1838
1791
d7b59bf5e9da use new per-process interruptBlock feature
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  1839
    accessLock := Semaphore forMutualExclusion.
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
  1840
    accessLock name:'WSensor ev-q accessLock'.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1841
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1842
    damage := OrderedCollection new.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1843
    mouseAndKeyboard := OrderedCollection new.
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1844
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1845
    gotExpose := IdentitySet new.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1846
    catchExpose := IdentitySet new.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1847
    gotOtherEvent := IdentitySet new.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1848
    exposeEventSemaphore := Semaphore new name:'WSensor exposeSema'.
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1849
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1850
    compressMotionEvents := translateKeyboardEvents := true.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1851
    ignoreUserInput := false.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1852
    shiftDown := ctrlDown := altDown := metaDown := false.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1853
    leftButtonDown := middleButtonDown := rightButtonDown := false.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1854
1791
d7b59bf5e9da use new per-process interruptBlock feature
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  1855
    "Modified: 28.6.1997 / 16:56:07 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1856
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1857
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1858
reinitialize
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1859
    "called when an image is restarted;
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1860
     reinitialize the event queues to empty; leave other setup as-is"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1861
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1862
    self flushUserEvents.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1863
    self flushExposeEvents.
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1864
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1865
    gotExpose := IdentitySet new.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1866
    catchExpose := IdentitySet new.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1867
    gotOtherEvent := IdentitySet new.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1868
    exposeEventSemaphore := Semaphore new name:'WSensor exposeSema'.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1869
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1870
    shiftDown := ctrlDown := altDown := metaDown := false.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1871
    leftButtonDown := middleButtonDown := rightButtonDown := false.
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1872
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  1873
    "Modified: 18.1.1997 / 15:30:23 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1874
! !
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  1875
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1876
!WindowSensor methodsFor:'queries - event queue'!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1877
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1878
eventPending
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1879
    "return true, if either damage or events are pending"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1880
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1881
    mouseAndKeyboard size ~~ 0 ifTrue:[^ true].
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1882
    ^ damage size ~~ 0
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1883
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1884
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1885
hasButtonEventFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1886
    "return true, if any button events are pending.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1887
     If the argument, aView is nil, the information is regarding any
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1888
     view (i.e. is there a button event for any of my views);
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1889
     otherwise, the information is regarding that specific view."
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1890
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1891
    (self hasButtonMotionEventFor:aView) ifTrue:[^ true].
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1892
    (self hasButtonPressEventFor:aView) ifTrue:[^ true].
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1893
    ^ (self hasButtonReleaseEventFor:aView)
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1894
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1895
    "Created: 1.11.1996 / 17:02:23 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1896
    "Modified: 1.11.1996 / 17:12:03 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1897
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1898
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1899
hasButtonMotionEventFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1900
    "return true, if any buttonMotion events are pending.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1901
     If the argument, aView is nil, the information is regarding any
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1902
     view (i.e. is there a motion event for any of my views);
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1903
     otherwise, the information is regarding that specific view."
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1904
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1905
    ^ self hasEvent:#buttonMotion:x:y: orPendingDeviceEvent:#buttonMotion for:aView
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1906
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1907
    "Created: 1.11.1996 / 17:04:01 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1908
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1909
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1910
hasButtonPressEventFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1911
    "return true, if any buttonPress events are pending.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1912
     If the argument, aView is nil, the information is regarding any
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1913
     view (i.e. is there a buttonPress event for any of my views);
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1914
     otherwise, the information is regarding that specific view."
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1915
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1916
    ^ self hasEvent:#buttonPress:x:y: orPendingDeviceEvent:#buttonPress for:aView
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1917
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1918
    "Created: 1.11.1996 / 17:05:10 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1919
    "Modified: 1.11.1996 / 17:11:09 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1920
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1921
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1922
hasButtonReleaseEventFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1923
    "return true, if any buttonRelease events are pending.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1924
     If the argument, aView is nil, the information is regarding any
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1925
     view (i.e. is there a buttonrelease event for any of my views);
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1926
     otherwise, the information is regarding that specific view."
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1927
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1928
    ^ self hasEvent:#buttonRelease:x:y: orPendingDeviceEvent:#buttonRelease for:aView
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1929
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1930
    "Created: 1.11.1996 / 17:05:26 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1931
    "Modified: 1.11.1996 / 17:11:18 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1932
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1933
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1934
hasConfigureEventFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1935
    "return true, if any resize/position events are pending.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1936
     If the argument, aView is nil, the information is regarding any
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1937
     view (i.e. is there a configure event for any of my views);
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1938
     otherwise, the information is regarding that specific view."
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1939
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1940
    ^ self hasEvent:#configureX:y:width:height: orPendingDeviceEvent:#structureNotify for:aView
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1941
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1942
    "Modified: 1.11.1996 / 17:11:27 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1943
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1944
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1945
hasDamage 
1512
489ff9d103a0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1505
diff changeset
  1946
    "return true, if any damage events (i.e. expose or resize) are pending.
489ff9d103a0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1505
diff changeset
  1947
     Since this is often invoked by ST-80 classes to poll the sensor,
489ff9d103a0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1505
diff changeset
  1948
     a yield is done here to avoid a busy wait blocking other processes."
489ff9d103a0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1505
diff changeset
  1949
489ff9d103a0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1505
diff changeset
  1950
    Processor yield.
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1951
    ^ damage size ~~ 0
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1952
1512
489ff9d103a0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1505
diff changeset
  1953
    "Modified: 2.4.1997 / 14:14:01 / cg"
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1954
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1955
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1956
hasDamageFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1957
    "return true, if any damage events (i.e. expose or resize)
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1958
     are pending for aView"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1959
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1960
    damage size ~~ 0 ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1961
	damage do:[:aDamage |
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1962
	    aDamage notNil ifTrue:[
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1963
		aDamage view == aView ifTrue:[^ true].
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1964
	    ].
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  1965
	]
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1966
    ].
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1967
    ^ false
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1968
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1969
    "Modified: 21.5.1996 / 17:15:09 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1970
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1971
1155
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1972
hasEvent:type for:aView withArguments:args 
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1973
    "return true, if a specific event is pending in my queues.
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1974
     Type is the type of event, args are the arguments.
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1975
     If the argument, aView is nil, the information is regarding any
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1976
     view (i.e. is there an event for any of my views);
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1977
     otherwise, the information is regarding to that specific view."
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1978
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1979
    ^ self
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1980
        hasEvent:type 
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1981
        for:aView 
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1982
        withMatchingArguments:[:evArgs | evArgs = args]
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1983
!
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1984
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1985
hasEvent:type for:aView withMatchingArguments:argMatchBlock 
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1986
    "return true, if a matching event is pending in my queues.
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1987
     Type is the type of event, matchBlock is a block which gets the event args
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1988
     and should return true.
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1989
     If the argument, aView is nil, the information is regarding any
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1990
     view (i.e. is there an event for any of my views);
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1991
     otherwise, the information is regarding to that specific view."
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1992
1155
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  1993
    mouseAndKeyboard size ~~ 0 ifTrue:[
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1994
        mouseAndKeyboard do:[:anEvent |
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1995
            anEvent notNil ifTrue:[
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1996
                (aView isNil or:[anEvent view == aView]) ifTrue:[
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1997
                    anEvent type == type ifTrue:[
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1998
                        (argMatchBlock value:anEvent arguments) ifTrue:[
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  1999
                            ^ true
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2000
                        ].
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2001
                    ]
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2002
                ]
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2003
            ].
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2004
        ]
1155
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  2005
    ].
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  2006
    damage size ~~ 0 ifTrue:[
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2007
        damage do:[:anEvent |
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2008
            anEvent notNil ifTrue:[
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2009
                (aView isNil or:[anEvent view == aView]) ifTrue:[
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2010
                    anEvent type == type ifTrue:[
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2011
                        (argMatchBlock value:anEvent arguments) ifTrue:[
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2012
                            ^ true
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2013
                        ]
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2014
                    ].
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2015
                ]
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2016
            ].
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2017
        ]
1155
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  2018
    ].
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  2019
    ^ false
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  2020
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  2021
    "Modified: 1.11.1996 / 17:11:47 / cg"
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  2022
    "Created: 4.1.1997 / 14:00:29 / cg"
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  2023
!
e8b6f0e8484e added query for event with args for view pending
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  2024
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2025
hasEvent:type orPendingDeviceEvent:dType for:aView
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2026
    "return true, if a specific event is pending.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2027
     Type is the type of event, dType the corresponding device event.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2028
     If the argument, aView is nil, the information is regarding any
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2029
     view (i.e. is there an event for any of my views);
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2030
     otherwise, the information is regarding to that specific view."
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2031
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2032
    mouseAndKeyboard size ~~ 0 ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2033
	mouseAndKeyboard do:[:anEvent |
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2034
	    anEvent notNil ifTrue:[
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2035
		(aView isNil or:[anEvent view == aView]) ifTrue:[
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2036
		    anEvent type == type ifTrue:[^ true].
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2037
		]
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2038
	    ].
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2039
	]
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2040
    ].
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2041
    damage size ~~ 0 ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2042
	damage do:[:anEvent |
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2043
	    anEvent notNil ifTrue:[
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2044
		(aView isNil or:[anEvent view == aView]) ifTrue:[
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2045
		    anEvent type == type ifTrue:[^ true].
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2046
		]
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2047
	    ].
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2048
	]
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2049
    ].
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2050
    aView notNil ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2051
	^ aView graphicsDevice eventPending:dType for:aView id
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2052
    ].
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2053
    ^ false
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2054
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2055
    "Modified: 1.11.1996 / 17:11:47 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2056
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2057
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2058
hasEvents 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2059
    "return true, if any mouse/keyboard events are pending"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2060
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2061
    ^ mouseAndKeyboard size ~~ 0
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2062
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2063
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2064
hasExposeEventFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2065
    "return true, if any exposure events are pending for aView"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2066
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2067
    damage size ~~ 0 ifTrue:[
1271
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2068
	damage do:[:aDamage |
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2069
	    aDamage notNil ifTrue:[
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2070
		aDamage isDamage ifTrue:[
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2071
		    (aView isNil
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2072
		     or:[aDamage view == aView]) ifTrue:[^ true].
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2073
		]
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2074
	    ].
d0a46bba43af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2075
	]
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2076
    ].
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2077
    ^ false
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2078
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2079
    "Modified: 21.5.1996 / 17:13:09 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2080
    "Created: 1.11.1996 / 17:05:41 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2081
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2082
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2083
hasKeyEventFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2084
    "return true, if any key (press or release) events are pending.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2085
     If the argument, aView is nil, the information is regarding any
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2086
     view (i.e. is there a key event for any of my views);
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2087
     otherwise, the information is regarding that specific view."
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2088
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2089
    (self hasKeyPressEventFor:aView) ifTrue:[^ true].
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2090
    ^ self hasKeyReleaseEventFor:aView
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2091
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2092
    "Created: 1.11.1996 / 17:08:03 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2093
    "Modified: 1.11.1996 / 17:11:55 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2094
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2095
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2096
hasKeyPressEventFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2097
    "return true, if any keyPress events are pending.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2098
     If the argument, aView is nil, the information is regarding any
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2099
     view (i.e. is there a keyPress event for any of my views);
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2100
     otherwise, the information is regarding that specific view."
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2101
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2102
    ^ self hasEvent:#keyPress:x:y: orPendingDeviceEvent:#keyPress for:aView
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2103
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2104
    "Created: 1.11.1996 / 17:05:58 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2105
    "Modified: 1.11.1996 / 17:12:10 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2106
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2107
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2108
hasKeyReleaseEventFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2109
    "return true, if any keyRelease events are pending.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2110
     If the argument, aView is nil, the information is regarding any
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2111
     view (i.e. is there a keyRelease event for any of my views);
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2112
     otherwise, the information is regarding that specific view."
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2113
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2114
    ^ self hasEvent:#keyRelease:x:y: orPendingDeviceEvent:#keyRelease for:aView
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2115
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2116
    "Created: 1.11.1996 / 17:06:34 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2117
    "Modified: 1.11.1996 / 17:12:15 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2118
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2119
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2120
hasUserEventFor:aView 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2121
    "return true, if any user event (i.e. key or button events) are pending.
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2122
     If the argument, aView is nil, the information is regarding any
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2123
     view (i.e. is there a user event for any of my views);
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2124
     otherwise, the information is regarding that specific view."
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2125
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2126
    (self hasKeyEventFor:aView) ifTrue:[^ true].
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2127
    ^ (self hasButtonEventFor:aView)
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2128
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2129
    "Created: 1.11.1996 / 17:08:50 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2130
    "Modified: 1.11.1996 / 17:12:21 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2131
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2132
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2133
motionEventPending 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2134
    "return true, if any buttonMotion events are pending."
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2135
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2136
    ^ self hasButtonMotionEventFor:nil
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2137
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2138
    "Created: 24.3.1996 / 20:09:55 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2139
    "Modified: 1.11.1996 / 17:04:43 / cg"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2140
! !
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2141
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2142
!WindowSensor methodsFor:'queries - key & button state'!
140
claus
parents: 133
diff changeset
  2143
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2144
altDown
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2145
    "return true, if the meta key is currently pressed.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2146
     Notice, that some keyboards dont have an alt key;
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2147
     it is better to use 'sensor metaDown or:[sensor altDown]'."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2148
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2149
    ^ altDown
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2150
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2151
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2152
anyButtonPressed
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2153
    "ST-80 compatibility: return true, if any mouse button is pressed.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2154
     You should no use it in 'normal' applications.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2155
     Instead, keep track of the buttons state in your views or controllers
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2156
     button-event methods."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2157
1083
6e947cc67324 fixed #anyButtonPressed & setting of buttonDown-flags
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2158
    ^ leftButtonDown or:[middleButtonDown or:[rightButtonDown]]
6e947cc67324 fixed #anyButtonPressed & setting of buttonDown-flags
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2159
6e947cc67324 fixed #anyButtonPressed & setting of buttonDown-flags
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2160
    "Modified: 21.10.1996 / 11:37:31 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2161
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2162
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2163
blueButtonPressed
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2164
    "ST-80 compatibility: return true, if the right mouse button is pressed.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2165
     You should no use it in 'normal' applications.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2166
     Instead, keep track of the buttons state in your views or controllers
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2167
     button-event methods."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2168
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2169
    ^ rightButtonDown
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2170
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2171
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2172
ctrlDown
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2173
    "return true, if any CTRL key is currently pressed."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2174
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2175
    ^ ctrlDown
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2176
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2177
157
claus
parents: 154
diff changeset
  2178
leftButtonPressed
claus
parents: 154
diff changeset
  2179
    "return true, if the left mouse button is pressed.
claus
parents: 154
diff changeset
  2180
     This has been added to support ST-80 style button polling;
claus
parents: 154
diff changeset
  2181
     however, you should no use it in 'normal' applications.
claus
parents: 154
diff changeset
  2182
     Instead, keep track of the buttons state in your views or controllers
claus
parents: 154
diff changeset
  2183
     button-event methods."
claus
parents: 154
diff changeset
  2184
claus
parents: 154
diff changeset
  2185
    ^ leftButtonDown
claus
parents: 154
diff changeset
  2186
!
claus
parents: 154
diff changeset
  2187
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2188
metaDown
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2189
    "return true, if the meta key is currently pressed.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2190
     Notice, that most keyboards dont have a meta key;
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2191
     it is better to use 'sensor metaDown or:[sensor altDown]'."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2192
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2193
    ^ metaDown
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2194
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2195
157
claus
parents: 154
diff changeset
  2196
middleButtonPressed
claus
parents: 154
diff changeset
  2197
    "return true, if the middle mouse button is pressed.
claus
parents: 154
diff changeset
  2198
     This has been added to support ST-80 style button polling;
claus
parents: 154
diff changeset
  2199
     however, you should no use it in 'normal' applications.
claus
parents: 154
diff changeset
  2200
     Instead, keep track of the buttons state in your views or controllers
claus
parents: 154
diff changeset
  2201
     button-event methods."
claus
parents: 154
diff changeset
  2202
claus
parents: 154
diff changeset
  2203
    ^ middleButtonDown
claus
parents: 154
diff changeset
  2204
!
claus
parents: 154
diff changeset
  2205
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2206
redButtonPressed
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2207
    "ST-80 compatibility: return true, if the left mouse button is pressed.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2208
     You should no use it in 'normal' applications.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2209
     Instead, keep track of the buttons state in your views or controllers
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2210
     button-event methods."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2211
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2212
    ^ leftButtonDown
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2213
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2214
157
claus
parents: 154
diff changeset
  2215
rightButtonPressed
claus
parents: 154
diff changeset
  2216
    "return true, if the right mouse button is pressed.
claus
parents: 154
diff changeset
  2217
     This has been added to support ST-80 style button polling;
claus
parents: 154
diff changeset
  2218
     however, you should no use it in 'normal' applications.
claus
parents: 154
diff changeset
  2219
     Instead, keep track of the buttons state in your views or controllers
claus
parents: 154
diff changeset
  2220
     button-event methods."
claus
parents: 154
diff changeset
  2221
claus
parents: 154
diff changeset
  2222
    ^ rightButtonDown
claus
parents: 154
diff changeset
  2223
!
claus
parents: 154
diff changeset
  2224
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2225
shiftDown
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2226
    "return true, if any shift key is currently pressed."
157
claus
parents: 154
diff changeset
  2227
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2228
    ^ shiftDown
157
claus
parents: 154
diff changeset
  2229
!
claus
parents: 154
diff changeset
  2230
claus
parents: 154
diff changeset
  2231
yellowButtonPressed
claus
parents: 154
diff changeset
  2232
    "ST-80 compatibility: return true, if the middle mouse button is pressed.
claus
parents: 154
diff changeset
  2233
     You should no use it in 'normal' applications.
claus
parents: 154
diff changeset
  2234
     Instead, keep track of the buttons state in your views or controllers
claus
parents: 154
diff changeset
  2235
     button-event methods."
claus
parents: 154
diff changeset
  2236
claus
parents: 154
diff changeset
  2237
    ^ middleButtonDown
140
claus
parents: 133
diff changeset
  2238
! !
claus
parents: 133
diff changeset
  2239
1100
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2240
!WindowSensor methodsFor:'queries - pointer'!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2241
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2242
cursorPoint
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2243
    "ST-80 compatibility: 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2244
     return the position of the mouse pointer on the current display
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2245
     (in screen coordinates)"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2246
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2247
     ^ self class cursorPoint
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2248
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2249
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2250
globalOrigin 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2251
    "ST-80 compatibility: 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2252
     dont know what we should return here ...
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2253
     ... at least the PD program which uses it works when we return 0@0."
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2254
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2255
     ^ 0@0
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2256
!
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2257
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2258
mousePoint
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2259
    "ST-80 compatibility: 
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2260
     return the position of the mouse pointer on the current display
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2261
     (in screen coordinates)"
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2262
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2263
     ^ self cursorPoint
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2264
! !
70e93fc002cb more event query methods;
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2265
26
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
  2266
!WindowSensor methodsFor:'special'!
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
  2267
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  2268
catchExposeFor:aView
54
29a6b2f8e042 *** empty log message ***
claus
parents: 47
diff changeset
  2269
    "start catching noExpose events (must be done BEFORE a bitblt,
29a6b2f8e042 *** empty log message ***
claus
parents: 47
diff changeset
  2270
     to prepare for the exposeEventSemaphore to be signalled when 
29a6b2f8e042 *** empty log message ***
claus
parents: 47
diff changeset
  2271
     the noExpose event arrives)."
26
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
  2272
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2273
    "/ this is only needed for X ...
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2274
    aView device scrollsAsynchronous ifFalse:[
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2275
	^ self
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2276
    ].
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2277
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2278
    (catchExpose includes:aView) ifTrue:[
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2279
        ('WSensor [warning]: already catching (for ' , aView printString , ')') errorPrintCR.
1274
778fdd997e45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
  2280
        Delay waitForMilliseconds:100.
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2281
        (catchExpose includes:aView) ifTrue:[
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2282
            ('WSensor [warning]: still catching (for ' , aView printString , ')') errorPrintCR.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2283
	    "/ wake the other one
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2284
	    gotExpose add:aView.
1274
778fdd997e45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
  2285
            exposeEventSemaphore signalForAll.
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2286
	    Delay waitForMilliseconds:100.
1274
778fdd997e45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
  2287
        ].
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  2288
    ].
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  2289
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2290
    [
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2291
        gotOtherEvent remove:aView ifAbsent:nil.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2292
        gotExpose remove:aView ifAbsent:nil.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2293
        catchExpose add:aView.
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2294
    ] valueUninterruptably.
28
3879ff2138f1 *** empty log message ***
claus
parents: 27
diff changeset
  2295
!
3879ff2138f1 *** empty log message ***
claus
parents: 27
diff changeset
  2296
1320
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2297
pollForActivity
1529
cf81e3de53e0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1528
diff changeset
  2298
    "ST-80 compatibility: wait for some activity (i.e. poll for an event) "
1320
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2299
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2300
    "/ should add a buttonStateChangeSemaphore and wait on this ...
1529
cf81e3de53e0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1528
diff changeset
  2301
"/    Delay waitForSeconds:0.01.
cf81e3de53e0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1528
diff changeset
  2302
    Processor yield.
cf81e3de53e0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1528
diff changeset
  2303
cf81e3de53e0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1528
diff changeset
  2304
    "Modified: 12.2.1997 / 12:46:09 / cg"
1320
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2305
!
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2306
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2307
waitButton
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2308
    "ST-80 compatibility: wait until any mouse button is pressed.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2309
     Do not use this in your applications; polling the sensor is
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2310
     bad style."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2311
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2312
    [self anyButtonPressed] whileFalse:[
1320
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2313
        self pollForActivity
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2314
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2315
1320
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2316
    "Modified: 10.2.1997 / 13:30:38 / cg"
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2317
!
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2318
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2319
waitClickButton
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2320
    "ST-80 compatibility: wait until any mouse button is pressed & released again.
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2321
     Do not use this in your applications; polling the sensor is
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2322
     bad style."
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2323
1790
a7f42261ab45 need a RecursionLock for the accessLock to avoid
Claus Gittinger <cg@exept.de>
parents: 1734
diff changeset
  2324
    self waitButton.
1320
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2325
    ^self waitNoButton
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2326
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2327
    "Created: 10.2.1997 / 13:31:09 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2328
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
  2329
26
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
  2330
waitForExposeFor:aView
157
claus
parents: 154
diff changeset
  2331
    "wait until a graphicsExpose or a noExpose arrives (after a bitblt).
claus
parents: 154
diff changeset
  2332
     This may be too X-specific, and things may change in this area
claus
parents: 154
diff changeset
  2333
     in future versions. (or the new device may simulate the arrival of
claus
parents: 154
diff changeset
  2334
     such an event)"
54
29a6b2f8e042 *** empty log message ***
claus
parents: 47
diff changeset
  2335
1873
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2336
    |blocked lostExpose device stopPoll endPollTime|
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2337
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2338
    device := aView graphicsDevice.
1359
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2339
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2340
    "/ this is only needed for X ...
1873
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2341
    device scrollsAsynchronous ifFalse:[
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2342
        gotExpose remove:aView ifAbsent:nil.
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2343
        catchExpose remove:aView ifAbsent:nil.
1359
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2344
        ^ self
1027
0ba82862ca8d fixes for synchronous scrolling (WINDOWS)
Claus Gittinger <cg@exept.de>
parents: 1013
diff changeset
  2345
    ].
0ba82862ca8d fixes for synchronous scrolling (WINDOWS)
Claus Gittinger <cg@exept.de>
parents: 1013
diff changeset
  2346
1359
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2347
    blocked := true.
1013
32d804ff472d cleanup when unwinding from a waitForExpose
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
  2348
    [
1359
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2349
        aView flush.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2350
        Processor activeProcessIsSystemProcess ifTrue:[
1873
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2351
            endPollTime := AbsoluteTime now addSeconds:10.
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2352
            stopPoll := false.
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2353
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2354
            "/
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2355
            "/ cannot really suspend, if its a systemProcess
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2356
            "/ must poll for the event
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2357
            "/
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2358
            [(gotExpose includes:aView) or:[stopPoll]] whileFalse:[
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2359
                (device exposeEventPendingFor:aView id withSync:true) ifTrue:[
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2360
                    device dispatchExposeEventFor:aView id.
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2361
                ].
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2362
                stopPoll := (AbsoluteTime now > endPollTime).
1359
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2363
                Processor yield.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2364
            ]
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2365
        ] ifFalse:[
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2366
            lostExpose := 1.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2367
            "
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2368
              block interrupt here, to resolve race between
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2369
              testing gotExpose and the semaphore, which is woken up
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2370
              with #signalForAll.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2371
            "
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2372
            blocked := OperatingSystem blockInterrupts.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2373
            [ (gotExpose includes:aView) or:[lostExpose > 2] ] whileFalse:[
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2374
                "
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2375
                 just in case we have a (network or software) problem ...
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2376
                 explanation: it may happen, that an expose event is totally
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2377
                 lost - for example, if the network breaks down.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2378
                 To not block forever, we wait with a timeout, to get out of here
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2379
                 if the event does not arrive after 15 seconds.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2380
                "
1505
e9682a002469 checkin from browser
ca
parents: 1492
diff changeset
  2381
                (exposeEventSemaphore waitWithTimeout:(1 * lostExpose)) isNil ifTrue:[
1873
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2382
                    device flush.         "/ we are paranoid
1359
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2383
                    lostExpose == 1 ifTrue:[
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2384
                        "
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2385
                         you can put a comment around the following line, 
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2386
                         if you don't like the message ...
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2387
                        "
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2388
                        ('WindowSensor [info]: late expose event (' , aView printString , ')') infoPrintCR.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2389
                    ] ifFalse:[
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2390
                        'WindowSensor [warning]: lost expose event' errorPrintCR.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2391
                    ].
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2392
                    lostExpose := lostExpose + 1.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2393
                ].
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2394
            ].
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2395
        ].
1013
32d804ff472d cleanup when unwinding from a waitForExpose
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
  2396
    ] valueNowOrOnUnwindDo:[
1359
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2397
        gotExpose remove:aView ifAbsent:nil.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2398
        catchExpose remove:aView ifAbsent:nil.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2399
        blocked ifFalse:[
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2400
            OperatingSystem unblockInterrupts.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2401
        ].
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  2402
1359
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2403
        "/
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2404
        "/ other incoming events have been ignored during the wait.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2405
        "/ Now handle those ...
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2406
        "/
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2407
        (gotOtherEvent includes:aView) ifTrue:[
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2408
            gotOtherEvent remove:aView ifAbsent:nil.
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2409
        ].
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2410
        eventSemaphore signalOnce
1013
32d804ff472d cleanup when unwinding from a waitForExpose
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
  2411
    ].
26
ac9f66dc8f53 *** empty log message ***
claus
parents: 19
diff changeset
  2412
1359
ab88659a5000 Fix race in #waitForExposeFor: which could cause a "late expose event"
Stefan Vogel <sv@exept.de>
parents: 1340
diff changeset
  2413
    "Modified: 20.2.1997 / 09:24:31 / stefan"
1873
a67649816bc8 break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1864
diff changeset
  2414
    "Modified: 19.8.1997 / 17:36:20 / cg"
47
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
  2415
!
209bc432e4e3 last version with separate queue
claus
parents: 46
diff changeset
  2416
157
claus
parents: 154
diff changeset
  2417
waitNoButton
claus
parents: 154
diff changeset
  2418
    "ST-80 compatibility: wait until no mouse button is pressed.
claus
parents: 154
diff changeset
  2419
     Do not use this in your applications; polling the sensor is
claus
parents: 154
diff changeset
  2420
     bad style."
claus
parents: 154
diff changeset
  2421
claus
parents: 154
diff changeset
  2422
    [self anyButtonPressed] whileTrue:[
1320
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2423
        self pollForActivity
157
claus
parents: 154
diff changeset
  2424
    ].
1241
c65f1c9d8de4 use critical regions around queue manipulation code.
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
  2425
1320
478840db1666 more ST80 stuff
Claus Gittinger <cg@exept.de>
parents: 1318
diff changeset
  2426
    "Modified: 10.2.1997 / 13:30:43 / cg"
157
claus
parents: 154
diff changeset
  2427
! !
claus
parents: 154
diff changeset
  2428
1082
44d671491f5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  2429
!WindowSensor class methodsFor:'documentation'!
251
915de9a65169 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 244
diff changeset
  2430
915de9a65169 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 244
diff changeset
  2431
version
2072
a9770eb53908 reenabled flushing of expose events before map/unmap event.
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  2432
    ^ '$Header: /cvs/stx/stx/libview/WindowSensor.st,v 1.118 1998-02-27 14:22:26 cg Exp $'
251
915de9a65169 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 244
diff changeset
  2433
! !
140
claus
parents: 133
diff changeset
  2434
WindowSensor initialize!