You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Igor V. Stolyarov (JIRA)" <ji...@apache.org> on 2007/12/07 11:01:46 UTC

[jira] Updated: (HARMONY-5271) [classlib][awt] Graphics drawArc & drawOval methods work incorretly in XORMode

     [ https://issues.apache.org/jira/browse/HARMONY-5271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Igor V. Stolyarov updated HARMONY-5271:
---------------------------------------

    Attachment: Harmony.PNG
                RI.PNG
                H-5271.patch

Fix attached.

> [classlib][awt] Graphics drawArc & drawOval methods work incorretly in XORMode
> ------------------------------------------------------------------------------
>
>                 Key: HARMONY-5271
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5271
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Linux
>            Reporter: Igor V. Stolyarov
>         Attachments: H-5271.patch, Harmony.PNG, RI.PNG
>
>
> Graphics drawArc & drawOval methods work incorretly in XORMode
> Simple reproducer:
> import java.io.*; 
> import java.awt.*; 
> import java.awt.image.*; 
> import javax.swing.*; 
> public class DrawArcTest extends JFrame { 
>    public static void main(String[] args){ 
>       final DrawArcTest test = new DrawArcTest(); 
>       test.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
>       test.setSize(200, 200); 
>       test.add(new Panel(){
>           public void paint(Graphics g){
>               int w = getWidth();
>               int h = getHeight();
>               g.setColor(Color.green);
>               g.fillRect(0, 0, w, h);
>               g.setColor(Color.red);
>               g.setXORMode(Color.blue);
>               g.drawArc(w/4, h/4, w/2, h/2, 45, 270);
>           }
>       });
>       test.setVisible(true);
>    } 
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.