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