Double Buffer : Image « SWT JFace Eclipse « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » SWT JFace Eclipse » Image 




Double Buffer
Double Buffer



/*******************************************************************************
 * All Right Reserved. Copyright (c) 1998, 2004 Jackwind Li Guojie
 
 * Created on 2004-4-18 16:12:14 by JACK $Id$
 *  
 ******************************************************************************/

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Canvas;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class DoubleBuffer {
  Display display = new Display();
  Shell shell = new Shell(display);

  public DoubleBuffer() {
    shell.setLayout(new FillLayout());
    
    final Image imageEclipse = new Image(display, "java2s.gif");

//    final Canvas canvas = new Canvas(shell, SWT.NULL);
//    canvas.addPaintListener(new PaintListener() {
//      public void paintControl(PaintEvent e) {
//        Point size = canvas.getSize();
//
//        int x1 = (int) (Math.random() * size.x);
//        int y1 = (int) (Math.random() * size.y);
//        int x2 = Math.max(canvas.getBounds().width - x1 - 10, 50);
//        int y2 = Math.max(canvas.getBounds().height - y1 - 10, 50);
//
//        
//        e.gc.drawRoundRectangle(x1, y1, x2, y2, 5, 5);
//
//        display.timerExec(100, new Runnable() {
//          public void run() {
//            canvas.redraw();
//          }
//        });
//        
//      }
//    });

    final Canvas doubleBufferedCanvas = new Canvas(shell, SWT.NO_BACKGROUND);

    doubleBufferedCanvas.addPaintListener(new PaintListener() {
      public void paintControl(PaintEvent e) {
        // Creates new image only absolutely necessary.
        Image image = (ImagedoubleBufferedCanvas.getData("double-buffer-image");
        if (image == null
          || image.getBounds().width != doubleBufferedCanvas.getSize().x
          || image.getBounds().height != doubleBufferedCanvas.getSize().y) {
          image =
            new Image(
              display,
            doubleBufferedCanvas.getSize().x,
            doubleBufferedCanvas.getSize().y);
            doubleBufferedCanvas.setData("double-buffer-image", image);
        }
        
        // Initializes the graphics context of the image. 
        GC imageGC = new GC(image);
        imageGC.setBackground(e.gc.getBackground());
        imageGC.setForeground(e.gc.getForeground());
        imageGC.setFont(e.gc.getFont());
        
        // Fills background. 
        Rectangle imageSize = image.getBounds();
        imageGC.fillRectangle(00, imageSize.width + 1, imageSize.height + 1);
        
        // Performs actual drawing here ...
        Point size = doubleBufferedCanvas.getSize();

        int x1 = (int) (Math.random() * size.x);
        int y1 = (int) (Math.random() * size.y);
        int x2 = Math.max(doubleBufferedCanvas.getBounds().width - x1 - 1050);
        int y2 = Math.max(doubleBufferedCanvas.getBounds().height - y1 - 1050);

        
        imageGC.drawRoundRectangle(x1, y1, x2, y2, 55);
        
        // Draws the buffer image onto the canvas. 
        e.gc.drawImage(image, 00);
        
        imageGC.dispose();
        
        display.timerExec(100new Runnable() {
          public void run() {
            doubleBufferedCanvas.redraw();
          }
        });
      }
    });

    shell.setSize(300200);
    shell.open();
    //textUser.forceFocus();

    // Set up the event loop.
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        // If no more entries in event queue
        display.sleep();
      }
    }

    display.dispose();
  }

  /**
   * Equips the specified canvas with double buffering to reduce flicker.
   
   @param canvas
   */
  public static void enableDoubleBuffer(Canvas canvas) {

  }

  public static void main(String[] args) {
    new DoubleBuffer();
  }
}

           
       














Related examples in the same category
1.Image Analyzer in SWTImage Analyzer in SWT
2.Set icons with different resolutionsSet icons with different resolutions
3.Capture a widget image with a GCCapture a widget image with a GC
4.Create an icon (in memory)Create an icon (in memory)
5.Display an animated GIFDisplay an animated GIF
6.Rotate and flip an imageRotate and flip an image
7.Display an image in a groupDisplay an image in a group
8.SWT and Image
9.Draw Images ExampleDraw Images Example
10.Clip ImageClip Image
11.Image BasicsImage Basics
12.File Icon Util
13.Demonstrates how to draw imagesDemonstrates how to draw images
14.scroll an image (flicker free, no double buffering)scroll an image (flicker free, no double buffering)
15.Transfer type to transfer SWT ImageData objects.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.