2003-02-13 Michael Koch <konqueror@gmx.de>
* gnu/java/awt/peer/gtk/GdkGraphics.java (drawString): New stubbed method. * java/awt/Graphics.java (drawString): New method. From-SVN: r62862
This commit is contained in:
parent
ffc8f11e8c
commit
1cb02bdfd3
@ -1,3 +1,10 @@
|
||||
2003-02-13 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* gnu/java/awt/peer/gtk/GdkGraphics.java
|
||||
(drawString): New stubbed method.
|
||||
* java/awt/Graphics.java
|
||||
(drawString): New method.
|
||||
|
||||
2003-02-13 Casey Marshall <rsdio@metastatic.org>
|
||||
|
||||
PR libgcj/9271:
|
||||
|
@ -40,6 +40,7 @@ package gnu.java.awt.peer.gtk;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.image.*;
|
||||
import java.text.AttributedCharacterIterator;
|
||||
|
||||
public class GdkGraphics extends Graphics
|
||||
{
|
||||
@ -211,6 +212,11 @@ public class GdkGraphics extends Graphics
|
||||
((GtkFontPeer)font.getPeer ()).getXLFD (), font.getSize ());
|
||||
}
|
||||
|
||||
public void drawString (AttributedCharacterIterator ci, int x, int y)
|
||||
{
|
||||
throw new Error ("not implemented");
|
||||
}
|
||||
|
||||
public void drawRoundRect(int x, int y, int width, int height,
|
||||
int arcWidth, int arcHeight)
|
||||
{
|
||||
|
@ -39,6 +39,7 @@ exception statement from your version. */
|
||||
package java.awt;
|
||||
|
||||
import java.awt.image.ImageObserver;
|
||||
import java.text.AttributedCharacterIterator;
|
||||
|
||||
/**
|
||||
* This is the abstract superclass of classes for drawing to graphics
|
||||
@ -595,6 +596,8 @@ fillPolygon(Polygon polygon)
|
||||
public abstract void
|
||||
drawString(String string, int x, int y);
|
||||
|
||||
public abstract void drawString (AttributedCharacterIterator ci, int x, int y);
|
||||
|
||||
/*************************************************************************/
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user