/hg/gfx-test: Added capability of showing values of selected pix...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Jul 22 06:45:32 PDT 2011
changeset 1d0b42c72878 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=1d0b42c72878
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Jul 22 15:46:54 2011 +0200
Added capability of showing values of selected pixels from sample
and test images and for computing difference between the selected
pixel.
diffstat:
ChangeLog | 7 +
src/org/gfxtest/harness/MainWindow.java | 181 +++++++++++++++++++++----
src/org/gfxtest/harness/PixelPanel.java | 216 ++++++++++++++++++++++++++++++++
3 files changed, 371 insertions(+), 33 deletions(-)
diffs (truncated from 515 to 500 lines):
diff -r f4113de94b6f -r 1d0b42c72878 ChangeLog
--- a/ChangeLog Thu Jul 21 11:31:09 2011 +0200
+++ b/ChangeLog Fri Jul 22 15:46:54 2011 +0200
@@ -1,3 +1,10 @@
+2011-07-22 Pavel Tisnovsky <ptisnovs at redhat.com>
+ * src/org/gfxtest/harness/PixelPanel.java: created
+ * src/org/gfxtest/harness/MainWindow.java:
+ Add capability of showing values of selected pixels from
+ sample and test images and for computing difference between
+ the selected pixel.
+
2011-07-21 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/ImageDiffer/ImageUtils.java:
* src/org/gfxtest/harness/MainWindow.java:
diff -r f4113de94b6f -r 1d0b42c72878 src/org/gfxtest/harness/MainWindow.java
--- a/src/org/gfxtest/harness/MainWindow.java Thu Jul 21 11:31:09 2011 +0200
+++ b/src/org/gfxtest/harness/MainWindow.java Fri Jul 22 15:46:54 2011 +0200
@@ -40,21 +40,55 @@
package org.gfxtest.harness;
+import java.awt.AWTException;
+import java.awt.Color;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
-import java.awt.event.*;
+import java.awt.Point;
+import java.awt.Robot;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import java.awt.event.ItemEvent;
+import java.awt.event.ItemListener;
+import java.awt.event.KeyEvent;
+import java.awt.event.MouseEvent;
+import java.awt.event.MouseMotionListener;
+import java.awt.event.MouseWheelEvent;
+import java.awt.event.MouseWheelListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
-import java.util.*;
+import java.util.Set;
+import java.util.TreeSet;
import javax.imageio.ImageIO;
-import javax.swing.*;
-import javax.swing.event.*;
+import javax.swing.DefaultListModel;
+import javax.swing.ImageIcon;
+import javax.swing.JButton;
+import javax.swing.JCheckBoxMenuItem;
+import javax.swing.JFileChooser;
+import javax.swing.JFrame;
+import javax.swing.JLabel;
+import javax.swing.JList;
+import javax.swing.JMenu;
+import javax.swing.JMenuBar;
+import javax.swing.JMenuItem;
+import javax.swing.JPanel;
+import javax.swing.JScrollPane;
+import javax.swing.JSplitPane;
+import javax.swing.JTable;
+import javax.swing.JTextArea;
+import javax.swing.KeyStroke;
+import javax.swing.ListSelectionModel;
+import javax.swing.SwingConstants;
+import javax.swing.event.ListSelectionEvent;
+import javax.swing.event.ListSelectionListener;
import javax.swing.table.DefaultTableModel;
+
+
import org.gfxtest.ImageDiffer.ComparisonResult;
import org.gfxtest.ImageDiffer.ImageComparator;
import org.gfxtest.ImageDiffer.ImageUtils;
@@ -93,10 +127,12 @@
private JLabel bottomRightLabel = new JLabel("test image");
private Dialogs dialogs = null;
private Configuration configuration = null;
+ private PixelPanel pixelPanel = new PixelPanel();
private BufferedImage sampleImage = null;
private BufferedImage testImage = null;
private BufferedImage diffImage = null;
+ private Robot robot = null;
private boolean tableIsErasing;
private float scale = 1.0f;
@@ -391,12 +427,11 @@
panel.add(resultTextPane, constraints(1, 7, 2, 1, 0.3, 0.5, GridBagConstraints.BOTH));
panel.add(this.commandShowSource, constraints(1, 1, 1, 1, 0.1, 0.0, GridBagConstraints.HORIZONTAL));
- panel.add(new JPanel(), constraints(1, 5, 1, 1, 0.1, 1.0, GridBagConstraints.BOTH));
panel.add(this.commandCompile, constraints(1, 2, 1, 1, 0.1, 0.0, GridBagConstraints.HORIZONTAL));
panel.add(this.commandRun, constraints(1, 3, 1, 1, 0.1, 0.0, GridBagConstraints.HORIZONTAL));
panel.add(this.commandDeleteClass, constraints(1, 4, 1, 1, 0.1, 0.0, GridBagConstraints.HORIZONTAL));
+ panel.add(this.pixelPanel, constraints(1, 5, 1, 1, 0.1, 1.0, GridBagConstraints.BOTH));
panel.add(this.commandRefresh, constraints(1, 6, 1, 1, 0.1, 0.0, GridBagConstraints.HORIZONTAL));
- panel.add(new JPanel(), constraints(1, 5, 1, 1, 0.1, 1.0, GridBagConstraints.BOTH));
}
/**
@@ -404,37 +439,68 @@
*/
protected void createMainWindow()
{
+ try
+ {
+ this.robot = new Robot();
+ }
+ catch (AWTException e)
+ {
+ e.printStackTrace();
+ }
JFrame window = new JFrame(Configuration.getWindowTitle());
this.dialogs = new Dialogs(Configuration.getWindowTitle(), window);
-
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
-
window.setJMenuBar(createMainMenuBar());
- JSplitPane horizontalSplitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
- horizontalSplitPane.setOneTouchExpandable(true);
- horizontalSplitPane.setDividerLocation(1. / 2);
-
- JSplitPane leftVerticalSplitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
- leftVerticalSplitPane.setOneTouchExpandable(true);
- leftVerticalSplitPane.setDividerLocation(1. / 2);
-
- JSplitPane rightVerticalSplitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
- rightVerticalSplitPane.setOneTouchExpandable(true);
- rightVerticalSplitPane.setDividerLocation(1. / 2);
+ JSplitPane horizontalSplitPane = createHorizontalSplitPane();
+ JSplitPane leftVerticalSplitPane = createRightVerticalSplitPane();
+ JSplitPane rightVerticalSplitPane = createRightVerticalSplitPane();
horizontalSplitPane.add(leftVerticalSplitPane);
horizontalSplitPane.add(rightVerticalSplitPane);
+ leftVerticalSplitPane.add(createTopLeftPanel());
+ rightVerticalSplitPane.add(createTopRightPanel());
+ leftVerticalSplitPane.add(createBottomLeftPanel());
+ rightVerticalSplitPane.add(createBottomRightPanel());
+
+ window.getContentPane().add(horizontalSplitPane);
+
+ // Display the window.
+ window.setSize(this.configuration.getMainWindowWidth(), this.configuration.getMainWindowHeight());
+ window.setVisible(true);
+ this.setMainWindow(window);
+ }
+
+ private JSplitPane createHorizontalSplitPane()
+ {
+ JSplitPane horizontalSplitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
+ horizontalSplitPane.setOneTouchExpandable(true);
+ horizontalSplitPane.setDividerLocation(1. / 2);
+ return horizontalSplitPane;
+ }
+
+ private JSplitPane createRightVerticalSplitPane()
+ {
+ JSplitPane rightVerticalSplitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
+ rightVerticalSplitPane.setOneTouchExpandable(true);
+ rightVerticalSplitPane.setDividerLocation(1. / 2);
+ return rightVerticalSplitPane;
+ }
+
+ private JPanel createTopLeftPanel()
+ {
JPanel topLeftPanel = new JPanel();
topLeftPanel.setLayout(new GridBagLayout());
//topLeftPanel.setMinimumSize(new Dimension(320, 240));
createTopLeftPanelControls(topLeftPanel);
- leftVerticalSplitPane.add(topLeftPanel);
+ return topLeftPanel;
+ }
+ private JPanel createTopRightPanel()
+ {
JPanel topRightPanel = new JPanel();
topRightPanel.setMinimumSize(new Dimension(320, 240));
- //topRightPanel.setBackground(Color.green);
topRightPanel.add(this.topRightLabel);
topRightPanel.addMouseWheelListener(new MouseWheelListener()
{
@@ -444,11 +510,27 @@
onMouseWheelRotated(e);
}
});
- rightVerticalSplitPane.add(topRightPanel);
+ topRightPanel.addMouseMotionListener(new MouseMotionListener()
+ {
+ @Override
+ public void mouseDragged(MouseEvent e)
+ {
+ // correct to be empty
+ }
+
+ @Override
+ public void mouseMoved(MouseEvent e)
+ {
+ onMouseMovedOverSampleImage(e);
+ }
+ });
+ return topRightPanel;
+ }
+ private JPanel createBottomLeftPanel()
+ {
JPanel bottomLeftPanel = new JPanel();
bottomLeftPanel.setMinimumSize(new Dimension(320, 240));
- //bottomLeftPanel.setBackground(Color.blue);
bottomLeftPanel.add(this.bottomLeftLabel);
bottomLeftPanel.addMouseWheelListener(new MouseWheelListener()
{
@@ -458,11 +540,13 @@
onMouseWheelRotated(e);
}
});
- leftVerticalSplitPane.add(bottomLeftPanel);
+ return bottomLeftPanel;
+ }
+ private JPanel createBottomRightPanel()
+ {
JPanel bottomRightPanel = new JPanel();
bottomRightPanel.setMinimumSize(new Dimension(320, 240));
- //bottomRightPanel.setBackground(Color.yellow);
bottomRightPanel.add(this.bottomRightLabel);
bottomRightPanel.addMouseWheelListener(new MouseWheelListener()
{
@@ -472,14 +556,21 @@
onMouseWheelRotated(e);
}
});
- rightVerticalSplitPane.add(bottomRightPanel);
-
- window.getContentPane().add(horizontalSplitPane);
-
- // Display the window.
- window.setSize(this.configuration.getMainWindowWidth(), this.configuration.getMainWindowHeight());
- window.setVisible(true);
- this.setMainWindow(window);
+ bottomRightPanel.addMouseMotionListener(new MouseMotionListener()
+ {
+ @Override
+ public void mouseDragged(MouseEvent e)
+ {
+ // correct to be empty
+ }
+
+ @Override
+ public void mouseMoved(MouseEvent e)
+ {
+ onMouseMovedOverTestImage(e);
+ }
+ });
+ return bottomRightPanel;
}
/**
@@ -681,6 +772,30 @@
this.tableIsErasing = false;
}
+ protected void onMouseMovedOverSampleImage(MouseEvent e)
+ {
+ if (this.sampleImage != null && this.robot != null)
+ {
+ Point location = e.getLocationOnScreen();
+ Color c1 = this.robot.getPixelColor(location.x, location.y);
+ int offsetY = this.bottomRightLabel.getY() - this.topRightLabel.getY();
+ Color c2 = this.robot.getPixelColor(location.x, location.y + offsetY);
+ this.pixelPanel.showPixelValues(c1, c2);
+ }
+ }
+
+ protected void onMouseMovedOverTestImage(MouseEvent e)
+ {
+ if (this.testImage != null && this.robot != null)
+ {
+ Point location = e.getLocationOnScreen();
+ Color c1 = this.robot.getPixelColor(location.x, location.y);
+ int offsetY = this.bottomRightLabel.getY() - this.topRightLabel.getY();
+ Color c2 = this.robot.getPixelColor(location.x, location.y - offsetY);
+ this.pixelPanel.showPixelValues(c1, c2);
+ }
+ }
+
protected void onMouseWheelRotated(MouseWheelEvent e)
{
int rotation = e.getWheelRotation();
diff -r f4113de94b6f -r 1d0b42c72878 src/org/gfxtest/harness/PixelPanel.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/harness/PixelPanel.java Fri Jul 22 15:46:54 2011 +0200
@@ -0,0 +1,216 @@
+/*
+ Java gfx-test framework
+
+ Copyright (C) 2010, 2011 Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.harness;
+
+import java.awt.Color;
+import java.awt.Dimension;
+import java.awt.GridLayout;
+
+import javax.swing.JLabel;
+import javax.swing.JPanel;
+
+
+
+/**
+ * Class representing panel which displays value of selected pixel from sample
+ * image and value of relevant pixel from the test image. Pixel values are
+ * printed as hexadecimal triplets (as in HTML) + colored panel (it's background
+ * is changed). Additionally red, green and blue difference between the two
+ * pixels are computed and shown on this panel too.
+ *
+ * @author Pavel Tisnovsky
+ */
+public class PixelPanel extends JPanel
+{
+ /**
+ * Generated serial version UID.
+ */
+ private static final long serialVersionUID = 579405820041982604L;
+
+ /**
+ * Label containing fixed test.
+ */
+ private JLabel samplePixelLabel = new JLabel("Sample:");
+
+ /**
+ * Label containing fixed test.
+ */
+ private JLabel testedPixelLabel = new JLabel("Tested:");
+
+ /**
+ * Label containing fixed test.
+ */
+ private JLabel differenceLabel = new JLabel("Diff:");
+
+ /**
+ * Label containing first pixel value (color)
+ */
+ private JLabel samplePixelValue = new JLabel("?");
+
+ /**
+ * Label containing second pixel value (color)
+ */
+ private JLabel testedPixelValue = new JLabel("?");
+
+ /**
+ * Label containing difference between two pixels.
+ */
+ private JLabel differenceValue = new JLabel("?");
+
+ /**
+ * Panel used to shown color of selected pixel from sample image.
+ */
+ private JPanel samplePixelPanel = new JPanel();
+
+ /**
+ * Panel used to shown color of selected pixel from tested image.
+ */
+ private JPanel testedPixelPanel = new JPanel();
+
+ /**
+ * Constructor.
+ */
+ public PixelPanel()
+ {
+ super();
+ setComponentSizes();
+ setLayout();
+ addComponentsToPanel();
+ }
+
+ /**
+ * Set sizes of panels using to shown pixel color.
+ */
+ private void setComponentSizes()
+ {
+ setSize(this.samplePixelPanel);
+ setSize(this.testedPixelPanel);
+ }
+
+ /**
+ * Set the panel layout.
+ */
+ private void setLayout()
+ {
+ this.setLayout(new GridLayout(3, 3, 0, 5));
+ }
+
+ /**
+ * Add all components to panel.
+ */
+ private void addComponentsToPanel()
+ {
+ this.add(this.samplePixelLabel);
+ this.add(this.samplePixelValue);
+ this.add(this.samplePixelPanel);
+ this.add(this.testedPixelLabel);
+ this.add(this.testedPixelValue);
+ this.add(this.testedPixelPanel);
+ this.add(this.differenceLabel);
+ this.add(this.differenceValue);
+ }
+
+ /**
+ * Set size of one panel used to show pixel color.
+ *
+ * @param panel
+ * selected panel
+ */
+ private void setSize(JPanel panel)
+ {
+ Dimension dimension = new Dimension(20, 20);
+ panel.setMaximumSize(dimension);
+ panel.setMinimumSize(dimension);
+ panel.setPreferredSize(dimension);
+ }
+
+ /**
+ * Compute and show value of pixel from sample image.
+ *
+ * @param rgb
+ * pixel value, ie. its RGB+alpha (unused)
+ */
+ private void computeAndShowSamplePixelValue(int rgb)
+ {
+ this.samplePixelValue.setText(String.format("%06x", Integer.valueOf(rgb)));
+ this.samplePixelPanel.setBackground(new Color(rgb));
+ }
+
+ /**
+ * Compute and show value of pixel from tested image.
+ *
+ * @param rgb
+ * pixel value, ie. its RGB+alpha (unused)
+ */
+ private void computeAndShowTestedPixelValue(int rgb)
+ {
+ this.testedPixelValue.setText(String.format("%06x", Integer.valueOf(rgb)));
+ this.testedPixelPanel.setBackground(new Color(rgb));
+ }
+
+ /**
+ * Compute and show differences between two pixels - one pixel is from
+ * sample image, second pixel is from tested image.
+ *
+ * @param color1 first pixel color
+ * @param color2 second pixel color
+ */
+ private void computeAndShowPixelDifferenceValue(Color color1, Color color2)
+ {
+ int deltaRed = color1.getRed() - color2.getRed();
+ int deltaGreen = color1.getGreen() - color2.getGreen();
+ int deltaBlue = color1.getBlue() - color2.getBlue();
+ this.differenceValue.setText(String.format("(%d) (%d) (%d)", Integer.valueOf(deltaRed), Integer.valueOf(deltaGreen), Integer.valueOf(deltaBlue)));
More information about the distro-pkg-dev
mailing list