⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 selecttx.java

📁 java2d的源码分析
💻 JAVA
字号:
/* * @(#)SelectTx.java	1.22 99/04/23 * * Copyright (c) 1998, 1999 by Sun Microsystems, Inc. All Rights Reserved. *  * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use, * modify and redistribute this software in source and binary code form, * provided that i) this copyright notice and license appear on all copies of * the software; and ii) Licensee does not utilize the software in a manner * which is disparaging to Sun. *  * This software is provided "AS IS," without a warranty of any kind. ALL * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE * POSSIBILITY OF SUCH DAMAGES. *  * This software is not designed or intended for use in on-line control of * aircraft, air traffic, aircraft navigation or aircraft communications; or in * the design, construction, operation or maintenance of any nuclear * facility. Licensee represents and warrants that it will not use or * redistribute the Software for such purposes. */package demos.Transforms;import java.awt.*;import java.awt.event.*;import java.awt.font.TextLayout;import java.awt.font.FontRenderContext;import java.awt.geom.Rectangle2D;import java.awt.image.*;import javax.swing.*;import AnimatingContext;import DemoSurface;import DemoPanel;import CustomControls;/** * Scaling or Shearing or Rotating an image & rectangle. */public class SelectTx extends DemoSurface implements AnimatingContext, CustomControls {    protected static final int RIGHT = 0;    private static final int LEFT = 1;    private static final int XMIDDLE = 2;    private static final int DOWN = 3;    private static final int UP = 4;    private static final int YMIDDLE = 5;    private static final int XupYup = 6;    private static final int XdownYdown = 7;    private static final String[] title = { "Scale" , "Shear", "Rotate" };    private Image img, original;    private DemoControls controls;    private int iw, ih;    protected static final int SCALE = 0;    protected static final int SHEAR = 1;    protected static final int ROTATE = 2;    protected int transformType = SHEAR;    protected double sx, sy;    protected double angdeg;    protected int direction = RIGHT;    protected int transformToggle;    public SelectTx() {        setBackground(Color.white);        original = getImage("painting.gif");        iw = original.getWidth(this);        ih = original.getHeight(this);        controls = new DemoControls(this);    }    public String[] getCustomControlsConstraints() {        return new String[] { BorderLayout.NORTH };    }    public Component[] getCustomControls() {        return new Component[] { (Component) controls };    }    public void customControlsThread(int state) {        if (state == CustomControls.START) {            controls.start();        } else if (state == CustomControls.STOP) {            controls.stop();        }    }    public void reset(int w, int h) {        iw = w/3;        ih = h/3;        img = createImage(iw, ih);        Graphics big = img.getGraphics();        big.drawImage(original, 0, 0, iw, ih, Color.orange, null);        if (transformType == SCALE) {            direction = RIGHT;            sx = sy = 1.0;        } else if (transformType == SHEAR) {            direction = RIGHT;            sx = sy = 0;        } else {            angdeg = 0;        }    }    public void step(int w, int h) {        int rw = iw + 10;        int rh = ih + 10;        if (transformType == SCALE && direction == RIGHT) {            sx += .05;            if (w * .5 - iw * .5 + rw * sx + 10 > w) {                direction = DOWN;            }        } else if (transformType == SCALE && direction == DOWN) {           sy += .05;           if (h * .5 - ih * .5 + rh * sy + 20 > h) {               direction = LEFT;            }        } else if (transformType == SCALE && direction == LEFT) {            sx -= .05;            if (rw * sx - 10 <= -(w * .5 - iw * .5)) {                direction = UP;            }        } else if (transformType == SCALE && direction == UP) {            sy -= .05;            if (rh * sy - 20 <= -(h * .5 - ih * .5)) {                direction = RIGHT;                transformToggle = SHEAR;            }        }        if (transformType == SHEAR && direction == RIGHT) {            sx += .05;            if (rw + 2 * rh * sx + 20 > w) {                direction = LEFT;                sx -= .1;            }        } else if (transformType == SHEAR && direction == LEFT) {            sx -= .05;            if (rw - 2 * rh * sx + 20 > w) {                direction = XMIDDLE;            }        } else if (transformType == SHEAR && direction == XMIDDLE) {            sx += .05;            if (sx > 0) {                direction = DOWN;                sx = 0;            }        } else if (transformType == SHEAR && direction == DOWN) {            sy -= .05;            if (rh - 2 * rw * sy + 20 > h) {                direction = UP;                sy += .1;            }        } else if (transformType == SHEAR && direction == UP) {            sy += .05;            if (rh + 2 * rw * sy + 20 > h) {                direction = YMIDDLE;            }        } else if (transformType == SHEAR && direction == YMIDDLE) {            sy -= .05;            if (sy < 0) {                direction = XupYup;                sy = 0;            }        } else if (transformType == SHEAR && direction == XupYup) {            sx += .05; sy += .05;            if (rw + 2 * rh * sx + 30 > w || rh + 2 * rw * sy + 30 > h) {                direction = XdownYdown;            }        } else if (transformType == SHEAR && direction == XdownYdown) {            sy -= .05; sx -= .05;            if (sy < 0) {                direction = RIGHT;                sx = sy = 0.0;                transformToggle = ROTATE;            }        }        if (transformType == ROTATE) {            angdeg += 5;            if (angdeg == 360) {                 angdeg = 0;                transformToggle = SCALE;            }        }    }    public void drawDemo(int w, int h, Graphics2D g2) {        Font font = g2.getFont();        FontRenderContext frc = g2.getFontRenderContext();        TextLayout tl = new TextLayout(title[transformType], font, frc);        g2.setColor(Color.black);        tl.draw(g2, (float) (w/2-tl.getBounds().getWidth()/2),             (float) (tl.getAscent()+tl.getDescent()));        if (transformType == ROTATE) {            String s = Double.toString(angdeg);            g2.drawString("angdeg=" + s, 2, h-4);        } else {            String s = Double.toString(sx);            s = (s.length() < 5) ? s : s.substring(0,5);            TextLayout tlsx = new TextLayout("sx=" + s, font, frc);            tlsx.draw(g2, 2, h-4);            s = Double.toString(sy);            s = (s.length() < 5) ? s : s.substring(0,5);            g2.drawString("sy=" + s,(int)(tlsx.getBounds().getWidth()+4), h-4);        }        if (transformType == SCALE) {            g2.translate(w/2-iw/2, h/2-ih/2);            g2.scale(sx, sy);        } else if (transformType == SHEAR) {            g2.translate(w/2-iw/2,h/2-ih/2);            g2.shear(sx, sy);        } else {            g2.rotate(Math.toRadians(angdeg),w/2,h/2);            g2.translate(w/2-iw/2,h/2-ih/2);        }                g2.setColor(Color.orange);        g2.fillRect(0, 0, iw+10, ih+10);        g2.drawImage(img, 5, 5, this);    }    public static void main(String argv[]) {        final DemoPanel dp = new DemoPanel(new SelectTx());        Frame f = new Frame("Java2D Demo - SelectTx");        f.addWindowListener(new WindowAdapter() {            public void windowClosing(WindowEvent e) {System.exit(0);}            public void windowDeiconified(WindowEvent e) {                 dp.surface.start();             }            public void windowIconified(WindowEvent e) {                 dp.surface.stop();             }        });        f.add("Center", dp);        f.pack();        f.setSize(new Dimension(400,300));        f.show();        dp.surface.start();    }    static class DemoControls extends JPanel implements ActionListener, Runnable {        SelectTx demo;        JToolBar toolbar;        Thread thread;        public DemoControls(SelectTx demo) {            this.demo = demo;            setBackground(Color.gray);            add(toolbar = new JToolBar());            toolbar.setFloatable(false);            addTool("Scale", false);            addTool("Shear", true);            addTool("Rotate", false);            addMouseListener(new MouseAdapter() {                public void mouseClicked(MouseEvent e) {                    if (thread == null) start(); else stop();                }            });        }        public void addTool(String str, boolean state) {            JButton b = (JButton) toolbar.add(new JButton(str));            b.setBackground(state ? Color.green : Color.lightGray);            b.addActionListener(this);        }        public void actionPerformed(ActionEvent e) {            for (int i = 0; i < toolbar.getComponentCount(); i++) {                JButton b = (JButton) toolbar.getComponentAtIndex(i);                b.setBackground(Color.lightGray);            }            JButton b = (JButton) e.getSource();            b.setBackground(Color.green);            if (b.getText().equals("Scale")) {                demo.transformType = demo.SCALE;                demo.direction = demo.RIGHT;                demo.sx = demo.sy = 1;            } else if (b.getText().equals("Shear")) {                demo.transformType = demo.SHEAR;                demo.direction = demo.RIGHT;                demo.sx = demo.sy = 0;            } else if (b.getText().equals("Rotate")) {                demo.transformType = demo.ROTATE;                demo.angdeg = 0;            }        }        public Dimension getPreferredSize() {            return new Dimension(200,36);        }        public void start() {            if (thread != null) {                return;            }            thread = new Thread(this);            thread.setPriority(Thread.MIN_PRIORITY);            thread.setName("Transforms.SelectTx DemoControls Thread");            thread.start();        }        public synchronized void stop() {            if (thread != null) {                thread.interrupt();            }            thread = null;            notifyAll();        }        public void run() {            Thread me = Thread.currentThread();            demo.transformToggle = demo.transformType;            while (thread == me) {                try {                    thread.sleep(222);                } catch (InterruptedException e) { return; }                if (demo.transformToggle != demo.transformType) {                    ((JButton) toolbar.getComponentAtIndex(demo.transformToggle)).doClick();                }            }            thread = null;        }    } // End DemoControls class} // End SelectTx class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -