INTEGRATION: CWS presentationengine01 (1.2.2); FILE MERGED

2004/08/27 18:46:04 thb 1.2.2.3: #110496# Adapted to recent canvas API changes (XSpriteCanvas::updateScreen and sprite clip semantics
2004/08/23 18:29:01 thb 1.2.2.2: #i10000# Missing abstract method implementation (leftover from recent API change)
2004/07/28 10:44:58 thb 1.2.2.1: #110496# Brought javacanvas to comply with recent API changes
This commit is contained in:
Rüdiger Timm
2004-11-26 16:06:11 +00:00
parent e956927f9d
commit 01c8733855

View File

@@ -201,6 +201,11 @@ public class CanvasSprite
}
}
public synchronized void setPriority( double nPriority )
{
// TODO
}
public synchronized void setAlpha( double _alpha )
{
alpha = _alpha;
@@ -232,9 +237,7 @@ public class CanvasSprite
// TODO
}
public synchronized void clip( XPolyPolygon2D aClip,
ViewState viewState,
RenderState renderState ) throws com.sun.star.lang.IllegalArgumentException
public synchronized void clip( XPolyPolygon2D aClip )
{
// TODO
}
@@ -242,7 +245,7 @@ public class CanvasSprite
public synchronized void show()
{
canvas.showSprite( this );
canvas.updateScreen();
canvas.updateScreen( false );
}
public synchronized void hide()