XWorkstation.st
changeset 2984 6a278fd02e74
parent 2977 abdb7cf1635a
child 2992 95837ca26ca0
equal deleted inserted replaced
2983:33a985356bbd 2984:6a278fd02e74
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
       
    12 
       
    13 'From Smalltalk/X, Version:3.5.4 on 26-oct-1999 at 06:32:43 pm'                 !
    12 
    14 
    13 DeviceWorkstation subclass:#XWorkstation
    15 DeviceWorkstation subclass:#XWorkstation
    14 	instanceVariableNames:'screen hasShapeExtension hasShmExtension hasDPSExtension
    16 	instanceVariableNames:'screen hasShapeExtension hasShmExtension hasDPSExtension
    15 		hasMbufExtension hasXVideoExtension hasSaveUnder hasPEXExtension
    17 		hasMbufExtension hasXVideoExtension hasSaveUnder hasPEXExtension
    16 		hasImageExtension hasInputExtension ignoreBackingStore blackpixel
    18 		hasImageExtension hasInputExtension ignoreBackingStore blackpixel
  7374 !
  7376 !
  7375 
  7377 
  7376 initializeDeviceSignals
  7378 initializeDeviceSignals
  7377     super initializeDeviceSignals.
  7379     super initializeDeviceSignals.
  7378 
  7380 
  7379     deviceIOTimeoutErrorSignal := deviceIOErrorSignal newSignalMayProceed:false.
  7381     deviceIOTimeoutErrorSignal := deviceIOErrorSignal newSignal.
  7380     deviceIOTimeoutErrorSignal nameClass:self message:#deviceIOTimeoutErrorSignal.
  7382     deviceIOTimeoutErrorSignal nameClass:self message:#deviceIOTimeoutErrorSignal.
  7381 
  7383 
  7382     ObjectMemory registerErrorInterruptHandler:self class forID:#DisplayError.
  7384     ObjectMemory registerErrorInterruptHandler:self class forID:#DisplayError.
  7383     ObjectMemory registerErrorInterruptHandler:self class forID:#DisplayIOError.
  7385     ObjectMemory registerErrorInterruptHandler:self class forID:#DisplayIOError.
  7384     ObjectMemory registerErrorInterruptHandler:self class forID:#DisplayIOTimeoutError.
  7386     ObjectMemory registerErrorInterruptHandler:self class forID:#DisplayIOTimeoutError.
 10166 ! !
 10168 ! !
 10167 
 10169 
 10168 !XWorkstation class methodsFor:'documentation'!
 10170 !XWorkstation class methodsFor:'documentation'!
 10169 
 10171 
 10170 version
 10172 version
 10171     ^ '$Header: /cvs/stx/stx/libview/XWorkstation.st,v 1.331 1999-10-19 17:58:44 cg Exp $'
 10173     ^ '$Header: /cvs/stx/stx/libview/XWorkstation.st,v 1.332 1999-10-26 19:38:54 stefan Exp $'
 10172 ! !
 10174 ! !
 10173 XWorkstation initialize!
 10175 XWorkstation initialize!