SynchronousWindowSensor.st
author Claus Gittinger <cg@exept.de>
Tue, 23 Apr 2019 16:30:55 +0200
changeset 8674 e29a561c0fbe
parent 8503 fcd14f4ec13f
child 8987 bc8b27e8c34d
permissions -rw-r--r--
#FEATURE by cg class: SimpleView added: #isDialogBox
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8360
3d1049e9b1b1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8337
diff changeset
     1
"{ Encoding: utf8 }"
3d1049e9b1b1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8337
diff changeset
     2
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"
267
5728c37ff3f6 commentary
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
     4
 COPYRIGHT (c) 1995 by Claus Gittinger
2718
85d77ac33019 deltaTime arg in mouseWheelMotion
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
     5
	      All Rights Reserved
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 This software is furnished under a license and may be used
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
 hereby transferred.
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"
3450
4b5f22cd68e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
    14
"{ Package: 'stx:libview' }"
4b5f22cd68e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
    15
6817
0238692d35b5 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6575
diff changeset
    16
"{ NameSpace: Smalltalk }"
0238692d35b5 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6575
diff changeset
    17
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
WindowSensor subclass:#SynchronousWindowSensor
730
43d9c5848424 device instVar is not needed
Claus Gittinger <cg@exept.de>
parents: 615
diff changeset
    19
	instanceVariableNames:''
598
1a2339e902d4 commentary
Claus Gittinger <cg@exept.de>
parents: 267
diff changeset
    20
	classVariableNames:''
1a2339e902d4 commentary
Claus Gittinger <cg@exept.de>
parents: 267
diff changeset
    21
	poolDictionaries:''
5278
ed38d2e59efb category change
Claus Gittinger <cg@exept.de>
parents: 4212
diff changeset
    22
	category:'Interface-Support-UI'
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
1243
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
    25
!SynchronousWindowSensor class methodsFor:'documentation'!
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
copyright
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
"
267
5728c37ff3f6 commentary
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
    29
 COPYRIGHT (c) 1995 by Claus Gittinger
2718
85d77ac33019 deltaTime arg in mouseWheelMotion
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
    30
	      All Rights Reserved
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 This software is furnished under a license and may be used
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 only in accordance with the terms of that license and with the
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 be provided or otherwise made available to, or used by, any
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 other person.  No title to or ownership of the software is
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
 hereby transferred.
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
documentation
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
3888
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    43
    These sensors are not used with regular views.
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    44
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    45
    In contrast to a regular windowSensor, instances of SynchronousWindowSensor
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    do NOT put events into a queue and do NOT wakeup any windowGroup process.
266
1e234d542ef9 oops - forgot modifier key processing (altDown, shiftDown etc.)
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
    47
    Instead, the underlying view is notified synchronously (via a message send)
3888
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    48
    immediately about the event.
266
1e234d542ef9 oops - forgot modifier key processing (altDown, shiftDown etc.)
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
    49
3888
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    50
    SynchronousWindowSensor are used for only one single situation: 
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    51
        when a super-modal debugger is open
266
1e234d542ef9 oops - forgot modifier key processing (altDown, shiftDown etc.)
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
    52
    (i.e. one that is debugging the scheduler or event-dispatcher).
267
5728c37ff3f6 commentary
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
    53
3888
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    54
    This debugger's windowGroup is augmented with a synchronous Sensor, in order
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
    to prevent the event handling code from suspending any process 
266
1e234d542ef9 oops - forgot modifier key processing (altDown, shiftDown etc.)
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
    56
    (you cannot suspend the scheduler; you should not suspend the event dispatcher).
1e234d542ef9 oops - forgot modifier key processing (altDown, shiftDown etc.)
Claus Gittinger <cg@exept.de>
parents: 264
diff changeset
    57
7667
03e064bb2153 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7460
diff changeset
    58
    This is pretty tricky and magic - and you don't have to understand this.
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    (consider this system internal code)
612
8758d0c9933e documentation
Claus Gittinger <cg@exept.de>
parents: 598
diff changeset
    60
8758d0c9933e documentation
Claus Gittinger <cg@exept.de>
parents: 598
diff changeset
    61
    [author:]
3888
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    62
        Claus Gittinger
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
"
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
! !
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
3888
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    66
!SynchronousWindowSensor methodsFor:'dummy event flushing'!
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    67
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    68
compressKeyPressEventsWithKey:aKey
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    69
    ^ 0
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    70
!
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    71
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    72
flushEventsFor:aViewOrNil inQueue:anEventQueue where:aCondition
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    73
    ^ nil
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    74
! !
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    75
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
    76
!SynchronousWindowSensor methodsFor:'event processing'!
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
1299
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    78
addDamage:aRectangle view:aView wakeup:doWakeup
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    79
    "forward as an expose for some view"
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    80
8503
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    81
    aView dispatchEvent:
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    82
            (WindowEvent::DamageEvent 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    83
                for:aView 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    84
                type:#'exposeX:y:width:height:' 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    85
                arguments:{ aRectangle left . 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    86
                            aRectangle top .
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    87
                            aRectangle width .
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    88
                            aRectangle height })
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    89
"/    aView
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    90
"/        dispatchEvent:#exposeX:y:width:height:
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    91
"/        arguments:(Array with:aRectangle left 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    92
"/                         with:aRectangle top 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    93
"/                         with:aRectangle width
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
    94
"/                         with:aRectangle height)
1299
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    95
!
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    96
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
exposeX:x y:y width:w height:h view:aView
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
    "forward an expose for some view"
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
3594
76381e75d9d2 Handle lastEventQuerySignal (for exclusive debugger)
Stefan Vogel <sv@exept.de>
parents: 3450
diff changeset
   100
    ignoreExposeEvents ~~ true ifTrue:[
76381e75d9d2 Handle lastEventQuerySignal (for exclusive debugger)
Stefan Vogel <sv@exept.de>
parents: 3450
diff changeset
   101
        aView
8503
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   102
            dispatchEvent:
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   103
                (WindowEvent::DamageEvent 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   104
                    for:aView 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   105
                    type:#'exposeX:y:width:height:' 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   106
                    arguments:{ x . 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   107
                                y .
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   108
                                w .
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   109
                                h })
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   110
"/        aView
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   111
"/            dispatchEvent:#exposeX:y:width:height:
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   112
"/            arguments:(Array with:x with:y with:w with:h)
3594
76381e75d9d2 Handle lastEventQuerySignal (for exclusive debugger)
Stefan Vogel <sv@exept.de>
parents: 3450
diff changeset
   113
    ]
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
!
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
   116
graphicsExposeX:x y:y width:w height:h final:final view:aView
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
    "forward a graphic expose for some view"
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
1299
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   119
    "/ this is a possible response to a scroll operation
1244
d3182558fc9d hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1243
diff changeset
   120
    "/ (if an expose is pending)
d3182558fc9d hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1243
diff changeset
   121
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
   122
    final ifTrue:[
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3680
diff changeset
   123
        (catchExpose includes:aView) ifTrue:[
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3680
diff changeset
   124
            gotExpose add:aView.
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3680
diff changeset
   125
        ]
1244
d3182558fc9d hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1243
diff changeset
   126
    ].
d3182558fc9d hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1243
diff changeset
   127
2126
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   128
    aView
8503
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   129
        dispatchEvent:
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   130
            (WindowEvent::DamageEvent 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   131
                for:aView 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   132
                type:#'graphicsExposeX:y:width:height:final:' 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   133
                arguments:{ x . 
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   134
                            y .
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   135
                            w .
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   136
                            h .
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   137
                            final })
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   138
"/    aView
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   139
"/        dispatchEvent:#graphicsExposeX:y:width:height:final:
fcd14f4ec13f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8490
diff changeset
   140
"/        arguments:(Array with:x with:y with:w with:h with:final)
2126
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   141
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   142
    "Created: / 24.11.1995 / 19:16:38 / cg"
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   143
    "Modified: / 20.5.1998 / 22:57:32 / cg"
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
!
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
noExposeView:aView
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
    "forward a noExpose event for some view"
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
1243
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
   149
    catchExpose isNil ifTrue:[
7460
d6fb7221d01e #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7259
diff changeset
   150
        Logger info:'noExpose but not catching: %1' with:aView.
1243
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
   151
    ].
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
   152
1299
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   153
    (catchExpose includes:aView) ifTrue:[
7460
d6fb7221d01e #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7259
diff changeset
   154
        gotExpose add:aView.
d6fb7221d01e #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7259
diff changeset
   155
        catchExpose remove:aView.
1299
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   156
    ].
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
    aView noExpose.
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
    "Created: 24.11.1995 / 19:18:10 / cg"
1299
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   160
    "Modified: 29.1.1997 / 20:46:47 / cg"
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
!
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
saveAndTerminateView:aView
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
    "forward a saveAndTerminate event for some view"
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
    aView saveAndTerminate
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
    "Created: 24.11.1995 / 19:18:38 / cg"
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
!
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
terminateView:aView
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
    "forward a terminate event for some view"
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
    aView terminate
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
    "Created: 24.11.1995 / 19:18:48 / cg"
3888
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
   177
! !
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
   178
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
   179
!SynchronousWindowSensor methodsFor:'event processing-private'!
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
   180
6575
8a1490f0e1c7 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6287
diff changeset
   181
basicPushEvent:anEvent
8360
3d1049e9b1b1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8337
diff changeset
   182
    "dispach the event immediately"
6575
8a1490f0e1c7 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6287
diff changeset
   183
8360
3d1049e9b1b1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8337
diff changeset
   184
    anEvent ensureTimeStamped.
8478
a4efe2621fa8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8360
diff changeset
   185
    anEvent view dispatchEvent:anEvent
a4efe2621fa8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8360
diff changeset
   186
a4efe2621fa8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8360
diff changeset
   187
    "Modified: / 21-09-2018 / 12:33:48 / Claus Gittinger"
4212
b04d89b5695a Do not allocate Semaphores.
Stefan Vogel <sv@exept.de>
parents: 4120
diff changeset
   188
!
b04d89b5695a Do not allocate Semaphores.
Stefan Vogel <sv@exept.de>
parents: 4120
diff changeset
   189
6575
8a1490f0e1c7 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6287
diff changeset
   190
pushDamageEvent:anEvent
8a1490f0e1c7 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6287
diff changeset
   191
    "disptach the event immediately"
8a1490f0e1c7 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6287
diff changeset
   192
7076
b969091ec443 #REFACTORING
sr
parents: 6817
diff changeset
   193
    self basicPushEvent:anEvent
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   194
!
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
3888
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
   196
pushUserEvent:selector for:anyObject withArguments:argList
6575
8a1490f0e1c7 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6287
diff changeset
   197
    "disptach the event immediately"
8a1490f0e1c7 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6287
diff changeset
   198
3888
1e06f949dc58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
   199
    ^ anyObject perform:selector withArguments:argList.
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   200
! !
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   201
6817
0238692d35b5 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6575
diff changeset
   202
!SynchronousWindowSensor methodsFor:'event simulation'!
0238692d35b5 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6575
diff changeset
   203
0238692d35b5 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6575
diff changeset
   204
enqueueMessage:selector for:someone arguments:argList
0238692d35b5 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6575
diff changeset
   205
    "do it synchronously"
0238692d35b5 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6575
diff changeset
   206
    someone perform:selector withArguments:argList
0238692d35b5 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6575
diff changeset
   207
! !
0238692d35b5 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6575
diff changeset
   208
4212
b04d89b5695a Do not allocate Semaphores.
Stefan Vogel <sv@exept.de>
parents: 4120
diff changeset
   209
!SynchronousWindowSensor methodsFor:'initialization'!
b04d89b5695a Do not allocate Semaphores.
Stefan Vogel <sv@exept.de>
parents: 4120
diff changeset
   210
b04d89b5695a Do not allocate Semaphores.
Stefan Vogel <sv@exept.de>
parents: 4120
diff changeset
   211
initialize
6287
4f4be4afb377 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 6021
diff changeset
   212
    super initialize.
8337
9df76b209ba4 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8336
diff changeset
   213
    compressMotionEvents := false.
3680
4c096f11e018 more windowEvent types;
ca
parents: 3594
diff changeset
   214
8337
9df76b209ba4 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8336
diff changeset
   215
    "Modified: / 19-04-2018 / 12:29:07 / stefan"
3680
4c096f11e018 more windowEvent types;
ca
parents: 3594
diff changeset
   216
! !
4c096f11e018 more windowEvent types;
ca
parents: 3594
diff changeset
   217
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   218
!SynchronousWindowSensor methodsFor:'specials'!
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   219
1243
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
   220
catchExposeFor:aView
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
    "start catching noExpose events (must be done BEFORE a bitblt)."
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
1299
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   223
    catchExpose notEmpty ifTrue:[
7460
d6fb7221d01e #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7259
diff changeset
   224
        Logger warning:'already catching in catchExpose: %1' with:aView.
1243
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
   225
    ].
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
   226
1299
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   227
    gotOtherEvent remove:aView ifAbsent:nil.
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   228
    gotExpose remove:aView ifAbsent:nil.
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   229
    catchExpose add:aView.
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   230
1299
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   231
    "Modified: 29.1.1997 / 20:43:44 / cg"
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
!
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   233
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
waitForExposeFor:aView
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   235
    "wait until a graphicsExpose or a noExpose arrives (after a bitblt)."
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   236
7259
40a7c1e90b43 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7076
diff changeset
   237
    |viewsDevice windowId stopPoll endPollTime|
1872
2a10e693d93f break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
   238
7259
40a7c1e90b43 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7076
diff changeset
   239
    viewsDevice := aView graphicsDevice.
1872
2a10e693d93f break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
   240
2a10e693d93f break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
   241
    "/ this is only needed for X ...
7259
40a7c1e90b43 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7076
diff changeset
   242
    viewsDevice scrollsAsynchronous ifTrue:[
8490
71425cc35367 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8478
diff changeset
   243
        windowId := aView drawableId.
1872
2a10e693d93f break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
   244
4120
bd779aa2b314 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 3888
diff changeset
   245
        "/
bd779aa2b314 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 3888
diff changeset
   246
        "/ cannot suspend, I am a synchronous-modal sensor
bd779aa2b314 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 3888
diff changeset
   247
        "/ must poll for the event
bd779aa2b314 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 3888
diff changeset
   248
        "/
6021
95e38167b702 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
   249
        endPollTime := Timestamp now addSeconds:2.
4120
bd779aa2b314 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 3888
diff changeset
   250
        stopPoll := false.
1872
2a10e693d93f break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
   251
7460
d6fb7221d01e #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7259
diff changeset
   252
        [stopPoll or:[gotExpose includes:aView]] whileFalse:[
7259
40a7c1e90b43 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7076
diff changeset
   253
            (viewsDevice exposeEventPendingFor:windowId withSync:true) ifTrue:[
40a7c1e90b43 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7076
diff changeset
   254
                viewsDevice dispatchExposeEventFor:windowId.
4120
bd779aa2b314 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 3888
diff changeset
   255
            ].
bd779aa2b314 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 3888
diff changeset
   256
            stopPoll := Timestamp now > endPollTime.
bd779aa2b314 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 3888
diff changeset
   257
            Processor yield.
bd779aa2b314 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 3888
diff changeset
   258
        ].
8336
ab27804d3b46 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7667
diff changeset
   259
        stopPoll ifTrue:[
ab27804d3b46 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7667
diff changeset
   260
            Logger warning:'lost expose event: %1' with:aView.
ab27804d3b46 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7667
diff changeset
   261
        ].
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
    ].
1872
2a10e693d93f break non-windowGroup expose-poll loop after a while (10 seconds)
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
   263
1299
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   264
    catchExpose remove:aView ifAbsent:nil.
5ebe6f8165cf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   265
    gotExpose remove:aView ifAbsent:nil.
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   266
8336
ab27804d3b46 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7667
diff changeset
   267
    "Modified: / 19-08-1997 / 17:25:09 / cg"
ab27804d3b46 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7667
diff changeset
   268
    "Modified: / 19-04-2018 / 12:11:33 / stefan"
8490
71425cc35367 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8478
diff changeset
   269
    "Modified: / 01-10-2018 / 17:06:47 / Claus Gittinger"
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   270
! !
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   271
1243
0c33cb7f8458 hopefully fixed the 'lost expose' bug
Claus Gittinger <cg@exept.de>
parents: 1012
diff changeset
   272
!SynchronousWindowSensor class methodsFor:'documentation'!
264
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
fc9ecf4814a0 use another (synchronous) type of sensor while in a modal debugger.
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
version
7076
b969091ec443 #REFACTORING
sr
parents: 6817
diff changeset
   275
    ^ '$Header$'
8337
9df76b209ba4 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8336
diff changeset
   276
!
9df76b209ba4 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8336
diff changeset
   277
9df76b209ba4 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8336
diff changeset
   278
version_CVS
9df76b209ba4 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8336
diff changeset
   279
    ^ '$Header$'
615
59b046c2e44f documentation
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   280
! !
6021
95e38167b702 class: SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
   281