Cairo__RegionOverlap.st
author Jan Vrany <jan.vrany@labware.com>
Mon, 15 Jun 2020 15:16:56 +0100
changeset 90 b808c338d5c3
parent 88 9d51db2ba641
permissions -rw-r--r--
Fix `SimpleView >> redrawWithCairoBuffered:...` after an API change ...which happened a loong time ago but went unnoticed.

"
stx:goodies/libcairo - Cairo graphics bindings for Smalltalk/X

Copyright (C) 2008-2019 Jan Vrany

This code is licensed under Creative Commons Attribution-NonCommercial License.
For full text of the license, see file LICENSE.txt
"
"{ Package: 'stx:goodies/libcairo' }"

"{ NameSpace: Cairo }"

SharedPool subclass:#RegionOverlap
	instanceVariableNames:''
	classVariableNames:'CAIRO_REGION_OVERLAP_IN CAIRO_REGION_OVERLAP_OUT
		CAIRO_REGION_OVERLAP_PART'
	poolDictionaries:''
	category:'Cairo-Constants'
!

!RegionOverlap class methodsFor:'documentation'!

copyright
"
stx:goodies/libcairo - Cairo graphics bindings for Smalltalk/X

Copyright (C) 2008-2019 Jan Vrany

This code is licensed under Creative Commons Attribution-NonCommercial License.
For full text of the license, see file LICENSE.txt
"
! !

!RegionOverlap class methodsFor:'initialization'!

initialize

    CAIRO_REGION_OVERLAP_IN := 0.
    CAIRO_REGION_OVERLAP_OUT := 1.
    CAIRO_REGION_OVERLAP_PART := 2.
! !

!RegionOverlap class methodsFor:'constants'!

CAIRO_REGION_OVERLAP_IN

    ^CAIRO_REGION_OVERLAP_IN
!

CAIRO_REGION_OVERLAP_OUT

    ^CAIRO_REGION_OVERLAP_OUT
!

CAIRO_REGION_OVERLAP_PART

    ^CAIRO_REGION_OVERLAP_PART
! !

!RegionOverlap class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !


RegionOverlap initialize!