HostGraphicsDevice.st
author Claus Gittinger <cg@exept.de>
Mon, 04 Sep 2000 17:35:30 +0200
changeset 3289 04fd7c7009b8
parent 3285 b39fff2bf608
child 3444 850728294356
permissions -rw-r--r--
utility method to create a dispatching instance
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1284
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
2840
c8f5ba536263 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2839
diff changeset
     3
	      All Rights Reserved
1284
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
3285
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
    15
"{ Package: 'stx:libview' }"
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
    16
1284
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
GraphicsDevice subclass:#HostGraphicsDevice
2840
c8f5ba536263 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2839
diff changeset
    18
	instanceVariableNames:'deviceColors deviceFonts deviceViews deviceForms deviceCursors'
1284
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	classVariableNames:''
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	poolDictionaries:''
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	category:'Interface-Graphics'
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
!HostGraphicsDevice class methodsFor:'documentation'!
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
copyright
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
"
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
2840
c8f5ba536263 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2839
diff changeset
    29
	      All Rights Reserved
1284
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 This software is furnished under a license and may be used
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 only in accordance with the terms of that license and with the
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 inclusion of the above copyright notice.   This software may not
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 be provided or otherwise made available to, or used by, any
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 other person.  No title to or ownership of the software is
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 hereby transferred.
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
"
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
!
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
documentation
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
"
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    this abstract class was inserted to provide a home for ST-80 classes
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
    (previously, DeviceWorkstation was directly under Object).
2813
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
    46
    We will (over time) move common functionality from there into this class.
1284
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    In ST/X, this is mostly dummy.
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
    [see also:]
2840
c8f5ba536263 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2839
diff changeset
    51
	DeviceWorkstation XWorkstation
1284
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    [author:]
2840
c8f5ba536263 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2839
diff changeset
    54
	Claus Gittinger
1284
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
"
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
! !
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
3289
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    60
!HostGraphicsDevice class methodsFor:'instance creation'!
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    61
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    62
newDispatchingFor:aScreenName
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    63
    "create a new instance of mySelf, which serves aDeviceName.
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    64
     Only useful for device-classes which support multiple devices -
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    65
     i.e. X-Workstations"
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    66
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    67
    |newDevice someScreen app|
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    68
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    69
    newDevice := self new.
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    70
    newDevice := newDevice initializeFor:aScreenName.
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    71
    newDevice isNil ifTrue:[
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    72
        ^ nil.
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    73
    ].
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    74
    newDevice startDispatch.
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    75
    (someScreen := Screen current) isNil ifTrue:[
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    76
        someScreen := Screen default.
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    77
    ].
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    78
    someScreen notNil ifTrue:[
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    79
        newDevice keyboardMap:(someScreen keyboardMap).
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    80
        newDevice buttonTranslation:(someScreen buttonTranslation).
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    81
    ].
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    82
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    83
    "/ arrange for it to finish its event dispatch loop, 
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    84
    "/ when the last view on it is closed.
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    85
    newDevice exitOnLastClose:true.
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    86
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    87
    ^ newDevice.
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    88
! !
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
    89
2961
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
    90
!HostGraphicsDevice methodsFor:'Compatibility - Squeak'!
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
    91
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
    92
deferUpdates: aBoolean
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
    93
    "Set the deferUpdates flag in the virtual machine. 
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
    94
     When this flag is true, BitBlt operations on the Display are not 
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
    95
     automatically propagated to the screen. 
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
    96
     If this underlying platform does not support deferred updates, 
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
    97
     this primitive will fail. 
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
    98
     Answer the receiver if the primitive succeeds, nil if it fails."
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
    99
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   100
"/    <primitive: 126>
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   101
    ^ nil  "answer nil if primitive fails"
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   102
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   103
!
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   104
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   105
forceDisplayUpdate
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   106
    "On platforms that buffer screen updates, 
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   107
     force the screen to be updated immediately. 
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   108
     On other platforms, or if the primitive is not implemented, do nothing."
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   109
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   110
"/     <primitive: 231>
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   111
    "do nothing if primitive fails"
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   112
! !
3f5a60b6e06c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2847
diff changeset
   113
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   114
!HostGraphicsDevice methodsFor:'accessing'!
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   115
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   116
deviceColors
1371
22f586987cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   117
    "return the registry keeping track of colors which were allocated
2813
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   118
     on this device."
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   119
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   120
    ^ deviceColors
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   121
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   122
    "Created: 24.2.1997 / 18:01:41 / cg"
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   123
!
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   124
2843
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   125
deviceCursors
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   126
    "return the registry keeping track of cursors which were allocated
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   127
     on this device."
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   128
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   129
    ^ deviceCursors
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   130
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   131
    "Created: 24.2.1997 / 18:01:41 / cg"
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   132
!
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   133
1371
22f586987cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   134
deviceFonts
22f586987cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   135
    "return the registry keeping track of fonts which were allocated
2813
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   136
     on this device."
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   137
1371
22f586987cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   138
    ^ deviceFonts
2813
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   139
!
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   140
2839
36f61177428c color release
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   141
deviceForms
36f61177428c color release
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   142
    "return the registry keeping track of forms which were allocated
36f61177428c color release
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   143
     on this device."
36f61177428c color release
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   144
36f61177428c color release
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   145
    ^ deviceForms
36f61177428c color release
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   146
!
36f61177428c color release
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   147
2813
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   148
deviceViews
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   149
    "return the registry keeping track of views which were allocated
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   150
     on this device."
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   151
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   152
    ^ deviceViews
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   153
! !
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   154
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   155
!HostGraphicsDevice methodsFor:'initialize / release'!
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   156
1367
84941299a4df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
   157
initializeDeviceResourceTables
2813
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   158
    deviceViews := Registry new.
913aca399962 preps to keep the view & form lobbies on a per-display basis.
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
   159
    deviceForms := Registry new.
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   160
    deviceColors := Registry new.
2843
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   161
    deviceCursors := Registry new.
2809
96f6b7b449c7 use a CachingRegistry for fonts.
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   162
    deviceFonts := CachingRegistry new cacheSize:10.
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   163
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   164
    "Created: 24.2.1997 / 18:29:53 / cg"
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   165
!
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   166
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   167
releaseDeviceColors
2839
36f61177428c color release
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   168
    deviceColors do:[:aColor |
2845
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   169
        aColor releaseFromDevice
2839
36f61177428c color release
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   170
    ].
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   171
    deviceColors := Registry new.
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   172
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   173
    "Created: 24.2.1997 / 18:07:49 / cg"
2839
36f61177428c color release
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   174
1371
22f586987cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   175
!
22f586987cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   176
2843
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   177
releaseDeviceCursors
2847
8ef5b35346ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
   178
    deviceCursors do:[:aCursor |
2845
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   179
        aCursor releaseFromDevice
2843
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   180
    ].
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   181
    deviceCursors := Registry new.
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   182
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   183
    "Created: 24.2.1997 / 18:07:49 / cg"
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   184
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   185
!
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2840
diff changeset
   186
1371
22f586987cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   187
releaseDeviceFonts
2846
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   188
    deviceFonts do:[:aFont |
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   189
        aFont releaseFromDevice.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   190
    ].
2809
96f6b7b449c7 use a CachingRegistry for fonts.
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   191
    deviceFonts := CachingRegistry new cacheSize:10.
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   192
! !
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1315
diff changeset
   193
3285
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   194
!HostGraphicsDevice methodsFor:'misc'!
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   195
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   196
recolorCursorsToFgColor:fgColor defaultBgColor:bgColor
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   197
    "change the colors of all existing cursors"
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   198
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   199
    "/ recolor existing cursors
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   200
    deviceCursors do:[:eachCursor | eachCursor foreground:fgColor background:bgColor].
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   201
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   202
    "
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   203
     Display recolorCursorsToFgColor:(Color red) defaultBgColor:(Color white)
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   204
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   205
     Display recolorCursorsToFgColor:(Color blue) defaultBgColor:(Color white)
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   206
     Display recolorCursorsToFgColor:(Color blue) defaultBgColor:(Color black)
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   207
     Display recolorCursorsToFgColor:(Color white) defaultBgColor:(Color black)
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   208
     Display recolorCursorsToFgColor:(Color white) defaultBgColor:(Color red)
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   209
    "
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   210
! !
b39fff2bf608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   211
2846
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   212
!HostGraphicsDevice methodsFor:'registration'!
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   213
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   214
registerColor:aColor
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   215
    deviceColors register:aColor.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   216
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   217
    "Created: 24.2.1997 / 18:29:10 / cg"
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   218
!
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   219
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   220
registerCursor:aCursor
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   221
    deviceCursors register:aCursor.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   222
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   223
    "Created: 24.2.1997 / 18:29:10 / cg"
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   224
!
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   225
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   226
registerFont:aFont
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   227
    deviceFonts register:aFont.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   228
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   229
    "Created: 24.2.1997 / 18:29:10 / cg"
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   230
!
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   231
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   232
registerForm:aForm
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   233
    deviceForms register:aForm.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   234
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   235
    "Created: 24.2.1997 / 18:29:10 / cg"
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   236
!
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   237
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   238
registerView:aView
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   239
    deviceViews register:aView.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   240
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   241
    "Created: 24.2.1997 / 18:29:10 / cg"
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   242
!
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   243
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   244
unregisterColor:aColor
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   245
    deviceColors unregister:aColor.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   246
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   247
    "Created: 24.2.1997 / 18:29:14 / cg"
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   248
!
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   249
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   250
unregisterCursor:aCursor
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   251
    deviceCursors unregister:aCursor.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   252
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   253
    "Created: 24.2.1997 / 18:29:14 / cg"
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   254
!
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   255
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   256
unregisterFont:aFont
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   257
    deviceFonts unregister:aFont.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   258
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   259
    "Created: 24.2.1997 / 18:29:14 / cg"
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   260
!
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   261
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   262
unregisterForm:aForm
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   263
    deviceForms unregister:aForm.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   264
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   265
    "Created: 24.2.1997 / 18:29:14 / cg"
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   266
!
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   267
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   268
unregisterView:aView
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   269
    deviceViews unregister:aView.
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   270
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   271
    "Created: 24.2.1997 / 18:29:14 / cg"
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   272
! !
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   273
1284
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
!HostGraphicsDevice class methodsFor:'documentation'!
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   276
version
3289
04fd7c7009b8 utility method to create a dispatching instance
Claus Gittinger <cg@exept.de>
parents: 3285
diff changeset
   277
    ^ '$Header: /cvs/stx/stx/libview/HostGraphicsDevice.st,v 1.16 2000-09-04 15:35:30 cg Exp $'
1284
d17f4d91174d intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   278
! !