Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The program displays a svg file. I needed to paint some elements after the svg is displayed and painted on screen. After finding out that setDoubleBuffered and setDoubleBufferedRendering won't help me I added a GVT tree renderer listener. For unknown reasons (curiosity I guess) I have coded so that the order of events are displayed on console. This is what i got:

prepare
cancelled
prepare
started
complete

Why is this happening? What causes rendering to be canceled? I looked on the internet and haven't found anything. I figure that repainting cancels current rendering but I am certain no repaint is called. I am using Batik library for svg.

@Override
    public void paint(Graphics g) {
        if(documentLoaded){
            try{
                rad = (int)(radInit+zoom*faktorRad); //max rad = 20
                super.paint(g);     
            }
            catch(NullPointerException nulle){
                //
            }
        }
    }

this.addGVTTreeRendererListener(new GVTTreeRendererListener() {

            @Override
            public void gvtRenderingStarted(GVTTreeRendererEvent arg0) {
                // TODO Auto-generated method stub
                //gvtRendering = false;
                System.out.println("started");
            }
...
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.