Cairo__SurfaceObserverMode.st
changeset 29 6ba06265e543
child 88 9d51db2ba641
equal deleted inserted replaced
28:1bd3d147cd77 29:6ba06265e543
       
     1 "{ Package: 'stx:goodies/libcairo' }"
       
     2 
       
     3 "{ NameSpace: Cairo }"
       
     4 
       
     5 SharedPool subclass:#SurfaceObserverMode
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:'CAIRO_SURFACE_OBSERVER_NORMAL
       
     8 		CAIRO_SURFACE_OBSERVER_RECORD_OPERATIONS'
       
     9 	poolDictionaries:''
       
    10 	category:'Cairo-Constants'
       
    11 !
       
    12 
       
    13 !SurfaceObserverMode class methodsFor:'initialization'!
       
    14 
       
    15 initialize
       
    16 
       
    17     CAIRO_SURFACE_OBSERVER_NORMAL := 0.
       
    18     CAIRO_SURFACE_OBSERVER_RECORD_OPERATIONS := 1.
       
    19 ! !
       
    20 
       
    21 !SurfaceObserverMode class methodsFor:'constants'!
       
    22 
       
    23 CAIRO_SURFACE_OBSERVER_NORMAL
       
    24 
       
    25     ^CAIRO_SURFACE_OBSERVER_NORMAL
       
    26 !
       
    27 
       
    28 CAIRO_SURFACE_OBSERVER_RECORD_OPERATIONS
       
    29 
       
    30     ^CAIRO_SURFACE_OBSERVER_RECORD_OPERATIONS
       
    31 ! !
       
    32 
       
    33 
       
    34 SurfaceObserverMode initialize!